@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&family=Covered+By+Your+Grace&display=swap');


* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #F6FFF6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bakbak One', sans-serif;
}

p {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.menubar {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 20px 0px;
}

nav {
  width: 100%;
  background-color: #ffffff;
  display: flex;
}

nav ul {
  margin-bottom: 0px;
  padding-left: 50px;
}

/*Styling logo*/
.logo {
  padding-right: 150px;
  text-align: center;
}

.logo img {
  height: 150px;
    width: 150px;
    position: absolute;
    z-index: 5;
    margin-top: -20px;
}

/*Styling Links*/
.nav-links {
  display: flex;
  list-style: none;
  padding: 0px 30px;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
  width: 100% !important;
}

.nav-links li a {
  text-decoration: none;
  margin: 0 0.7vw;
}

.nav-links li {
  position: relative;
  padding: 15px;
}

/* .nav-links li a::before {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background-color: #61dafb;
  position: absolute;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
} */

/* .nav-links li a:hover::before {
  width: 80%;
} */

.nav-links li:hover {
  color: #ffffff;
  background-color: #999999;
  transition: all ease-in-out 250ms;

}

/*Styling Buttons*/
.login-button {
  background-color: transparent;
  border: 2px solid #008a2c;
  border-radius: 2em;
  padding: 12px 30px;
  margin-left: 2vw;
  font-size: 1rem;
  cursor: pointer;
  color: #008616;
}

.login-button:hover {
  color: #ffffff;
  background-color: #008b21;
  /* border: 1.5px solid #f2f5f7; */
  transition: all ease-in-out 350ms;
}

.join-button {
  color: #131418;
  background-color: #61dafb;
  border: 1.5px solid #61dafb;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}

.join-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #616161;
  margin: 5px;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

.intro-area {
  position: absolute;
  width: 100%;
  left: 0;
  top: 30%;
  z-index: 1;
  text-align: center;
}

.innercont .container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.mainbanner::before {
  right: 0px;
  content: '';
  position: absolute;
  height: 100px;
  width: 100%;
  bottom: 0px;
  background-image: url(../images/waveshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}


/*Stying for small screens*/
@media screen and (max-width: 800px) {
  .mainbanner .container {
    padding: 0px !important;
  }

  nav {
    position: fixed;
    z-index: 3;
    background-color: #ffffff;
  }

  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 15%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }

  .nav-links {
    position: fixed;
    background: #131418;
    height: 80vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }

  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }

  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }

  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }

  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }

  .nav-links li:nth-child(7):hover {
    background-color: #B22485;
  }

  li.fade {
    opacity: 1;
  }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.fade:not(.show) {
  opacity: 100;
}

.banner {
  position: relative;
}

.bannerimg {
  position: relative;
}




/* banner sec */
.mainbanner {
  position: relative;
}

.mainbanner img {
  width: 100%;
}

.mainbanner1 img {
  height: 730px;
	position: absolute;
	object-fit: cover;
}

.mainbanner2 img {
  height: 630px;
}

.intro-area h1 {
  font-family: 'Bakbak One', sans-serif;
  font-size: 65px;
  text-align: center;
  color: #ffffff;
}

.btn01 {
  padding: 14px 30px;
  background-color: #008b21;
  color: #ffffff;
  border-radius: 50px;
}

.intro-area p {
  color: #ffffff;
}

.wrapper1 .mainheading {
  text-align: center;
  width: 40%;
  margin: auto;
}

.mainheading h3 {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 26px;
  font-weight: 300;
  color: #008b21;
  position: relative;
  margin-bottom: 30px;
}

.mainheading h5 {
  font-size: 42px;

}

.aboutus-cont p {
  line-height: 25px;
}

.aboutus-img img {
  width: 100%;
  border-radius: 10px;
/* 	height: 360px;
    object-fit: cover; */
}

/* service section */

.carousel .card {
  width: 100%;
  color: #fff;
  text-align: center;
  margin: 20px 0;
  border-radius: 10px;
	height: 265px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.owl-dots {
  display: none;
}

.owl-dot {
  height: 15px;
  width: 45px;
  margin: 0 5px;
  outline: none;
  border-radius: 14px;
  border: 2px solid #0072bc !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.owl-dot.active,
.owl-dot:hover {
  background: #0072bc !important;
}

.owl-carousel .owl-item img {
  width: 80px;
  height: 80px;
  margin: auto;
}

.wrapper1 {
  position: relative;
}

.wrapper1::before {
  right: 0px;
  content: '';
  position: absolute;
  height: 774px;
  width: 850px;
  top: 0px;
  background-image: url(../images/backgroundwave.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.testimonials {
  position: relative;
}

.testimonials::before {
  left: 0px;
  content: '';
  position: absolute;
  height: 660px;
  width: 750px;
  top: 0px;
  background-image: url(../images/backgroundwave2.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.whyus .mainheading h3::before {
  left: 0px;
  content: '';
  position: absolute;
  height: 10px;
  width: 140px;
  top: 35px;
  background-image: url(../images/headingshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}

.aboutus .mainheading h3::before {
  left: 0px;
  content: '';
  position: absolute;
  height: 10px;
  width: 140px;
  top: 35px;
  background-image: url(../images/headingshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}

.contactus .mainheading h3::before {
  left: 0px;
  content: '';
  position: absolute;
  height: 10px;
  width: 140px;
  top: 35px;
  background-image: url(../images/headingshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}

.testimonials .mainheading h3::before {
  left: 0px;
  content: '';
  position: absolute;
  height: 10px;
  width: 140px;
  top: 35px;
  background-image: url(../images/headingshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}

.faqsection .mainheading h3::before {
  left: 0px;
  content: '';
  position: absolute;
  height: 10px;
  width: 140px;
  top: 35px;
  background-image: url(../images/headingshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}

.blogsection .mainheading h3::before {
  left: 0px;
  content: '';
  position: absolute;
  height: 10px;
  width: 140px;
  top: 35px;
  background-image: url(../images/headingshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}

.homeprocess .mainheading h3::after {
  right: 42%;
  content: '';
  position: absolute;
  height: 10px;
  width: 140px;
  top: 35px;
  background-image: url(../images/headingshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.wrapper1 .mainheading h3::after {
  right: 36%;
  content: '';
  position: absolute;
  height: 10px;
  width: 140px;
  top: 35px;
  background-image: url(../images/headingshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}





.testimonials-image img {
  border-radius: 20px;
}

.wrapper1 .card {
  padding: 30px;
}

.wrapper1 .card h4,
p {
  color: #131418;
}

.wrapper1 .container {
  padding: 0px !important;
}

.wrapper1 {
  padding-bottom: 100px;
}

.whyus p {
  line-height: 25px;
}

.whyus-img img {
  width: 100%;
  border-radius: 10px;
}

.social-icon i {
  font-size: 20px;
  height: 50px;
  width: 50px;
  padding: 14px;
  border: 2px solid rgb(0, 128, 40);
  border-radius: 300px;
  margin: 0px 10px;
	color: black;
}

.contactus-form input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
}

.contactus-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
	height: 105px;
}

.contactus-form .btn {
  width: 100%;
  margin-top: 30px;
  border-radius: 10px;
}

.contactus {
  padding: 100px 0px;
}




/* review */

.wrapper2 {
  max-width: 60em;
  margin: 1em auto;
  position: relative;
}

.testimonials input {
  display: none;
}

.inner {
  width: 500%;
  line-height: 0;
}

article {
  width: 20%;
  float: left;
  position: relative;
}

article img {
  height: 80px;
  width: 80px;
}

/*---- SET UP CONTROL ----*/
.slider-prev-next-control {
  height: 50px;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-prev-next-control label {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}

.slider-prev-next-control label:hover {
  opacity: 1;
}

.slider-dot-control {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

.slider-dot-control label {
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.slider-dot-control label:hover {
  background: #ccc;
  border-color: #777;
}

/* Info Box */
.info {
  position: absolute;
  font-style: italic;
  line-height: 20px;
  opacity: 0;
  color: #000;
  text-align: left;
  -webkit-transition: all 1000ms ease-out 600ms;
  -moz-transition: all 1000ms ease-out 600ms;
  transition: all 1000ms ease-out 600ms;
}

.info h3 {
  color: #fcfff4;
  margin: 0 0 5px;
  font-weight: normal;
  font-size: 1.5em;
  font-style: normal;
}

.info.top-left {
  top: 30px;
  left: 30px;
}

.info.top-right {
  top: 30px;
  right: 30px;
}

.info.bottom-left {
  bottom: 30px;
  left: 30px;
}

.info.bottom-right {
  bottom: 30px;
  right: 30px;
}

/* Slider Styling */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 1px 1px 4px #666;
  background: #fff;
  background: #fcfff4;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

.slider-wrapper .inner {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

/*---- SET POSITION FOR SLIDE ----*/
#slide1:checked~.slider-prev-next-control label:nth-child(5)::after,
#slide5:checked~.slider-prev-next-control label:nth-child(4)::after,
#slide4:checked~.slider-prev-next-control label:nth-child(3)::after,
#slide3:checked~.slider-prev-next-control label:nth-child(2)::after,
#slide2:checked~.slider-prev-next-control label:nth-child(1)::after,
#slide5:checked~.slider-prev-next-control label:nth-child(1)::after,
#slide4:checked~.slider-prev-next-control label:nth-child(5)::after,
#slide3:checked~.slider-prev-next-control label:nth-child(4)::after,
#slide2:checked~.slider-prev-next-control label:nth-child(3)::after,
#slide1:checked~.slider-prev-next-control label:nth-child(2)::after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  margin: 0;
  line-height: 38px;
  font-size: 3em;
  display: block;
  color: #777;
}

#slide5:checked~.slider-prev-next-control label:nth-child(1)::after,
#slide4:checked~.slider-prev-next-control label:nth-child(5)::after,
#slide3:checked~.slider-prev-next-control label:nth-child(4)::after,
#slide2:checked~.slider-prev-next-control label:nth-child(3)::after,
#slide1:checked~.slider-prev-next-control label:nth-child(2)::after {
  content: "";
  padding-left: 15px;
}

#slide5:checked~.slider-prev-next-control label:nth-child(1),
#slide4:checked~.slider-prev-next-control label:nth-child(5),
#slide3:checked~.slider-prev-next-control label:nth-child(4),
#slide2:checked~.slider-prev-next-control label:nth-child(3),
#slide1:checked~.slider-prev-next-control label:nth-child(2) {
  display: block;
  float: right;
  margin-right: 5px;
}

#slide1:checked~.slider-prev-next-control label:nth-child(5),
#slide5:checked~.slider-prev-next-control label:nth-child(4),
#slide4:checked~.slider-prev-next-control label:nth-child(3),
#slide3:checked~.slider-prev-next-control label:nth-child(2),
#slide2:checked~.slider-prev-next-control label:nth-child(1) {
  display: block;
  float: left;
  margin-left: 5px;
}

#slide1:checked~.slider-prev-next-control label:nth-child(5)::after,
#slide5:checked~.slider-prev-next-control label:nth-child(4)::after,
#slide4:checked~.slider-prev-next-control label:nth-child(3)::after,
#slide3:checked~.slider-prev-next-control label:nth-child(2)::after,
#slide2:checked~.slider-prev-next-control label:nth-child(1)::after {
  content: "";
  padding-left: 8px;
}

#slide5:checked~.slider-dot-control label:nth-child(5),
#slide4:checked~.slider-dot-control label:nth-child(4),
#slide3:checked~.slider-dot-control label:nth-child(3),
#slide2:checked~.slider-dot-control label:nth-child(2),
#slide1:checked~.slider-dot-control label:nth-child(1) {
  background: #333;
}

#slide5:checked~.slider-wrapper article:nth-child(5) .info,
#slide4:checked~.slider-wrapper article:nth-child(4) .info,
#slide3:checked~.slider-wrapper article:nth-child(3) .info,
#slide2:checked~.slider-wrapper article:nth-child(2) .info,
#slide1:checked~.slider-wrapper article:nth-child(1) .info {
  opacity: 1;
}

#slide1:checked~.slider-wrapper .inner {
  margin-left: 0%;
}

#slide2:checked~.slider-wrapper .inner {
  margin-left: -100%;
}

#slide3:checked~.slider-wrapper .inner {
  margin-left: -200%;
}

#slide4:checked~.slider-wrapper .inner {
  margin-left: -300%;
}

#slide5:checked~.slider-wrapper .inner {
  margin-left: -400%;
}

/*---- TABLET ----*/
@media only screen and (max-width: 850px) and (min-width: 450px) {
  .slider-wrapper {
    border-radius: 0;
  }
}

/*---- MOBILE----*/
@media only screen and (max-width: 450px) {
  .slider-wrapper {
    border-radius: 0;
  }

  .slider-wrapper .info {
    opacity: 0;
  }
}

.tdata p {
  color: #131418;
}

.testimonials h5,
h6 {
  color: #000;
}

.testimonials .card p {
  width: 70%;
  margin: auto;
}

.testimonials .card {
  color: rgb(255, 196, 0);
  background-color: #F6FFF600;
}

.testimonials .card i {
  color: rgb(255, 196, 0);
}

.testimonials .card {
  box-shadow: none;
  border: none;
}




.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1250px;

  padding: 20px;
  gap: 20px;
}

.card-list .card-item {
  background: #fff;
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  list-style: none;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border 0.5s ease;
}

.card-list .card-item:hover {
  border: 2px solid #000;
}

.card-list .card-item img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  object-fit: cover;
}

.card-list span {
  display: inline-block;
  background: #F7DFF5;
  margin-top: 32px;
  padding: 8px 15px;
  font-size: 0.75rem;
  border-radius: 50px;
  font-weight: 600;
}

.card-list .developer {
  background-color: #F7DFF5;
  color: #B22485;
}

.card-list .designer {
  background-color: #d1e8ff;
  color: #2968a8;
}

.card-list .editor {
  background-color: #d6f8d6;
  color: #205c20;
}

.card-item h3 {
  color: #000;
  font-size: 18px;
  margin-top: 17px;
}

.card-item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-35deg);
  height: 40px;
  width: 40px;
  color: #000;
  border: 1px solid #000;
  border-radius: 50%;
  margin-top: 40px;
  transition: 0.2s ease;
}

.card-list .card-item:hover .arrow {
  background: #000;
  color: #fff;
}

@media (max-width: 1200px) {
  .card-list .card-item {
    padding: 15px;
  }
}

@media screen and (max-width: 980px) {
  .card-list {
    margin: 0 auto;
  }
}

.accordion-button:not(.collapsed) {
  color: rgb(0, 0, 0);
}


.testimonials {
  padding: 70px;
}

.faqsection {
  padding: 70px 0px;
}

.blogsection {
  padding: 70px 0px;
}

.footer {
  background-color: #898888;
  color: #ffffff;
  padding: 150px 0px 50px 0px;
  position: relative;
}

.footer a {
  color: #ffffff;
}

.process {
  text-align: center;
}

.processbox {
  background: url(../images/pshape.png);
  height: 200px;
  width: 250px;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  margin: auto;

}

.prebox1::after {
  position: absolute;
  content: '01';
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  height: 50px;
  width: 50px;
  color: #000000;
  right: 25%;
  top: 5%;
  font-size: 18px;
  font-weight: bold;
}

.processbox img {
  top: 25%;
  margin-top: 65px;
}

.process {
  padding: 100px 0px;
}

.process .mainheading {
  text-align: center;
  width: 70%;
  margin: auto;
}

.prebox2::after {
  position: absolute;
  content: '02';
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  height: 50px;
  width: 50px;
  color: #000000;
  right: 25%;
  top: 5%;
  font-size: 18px;
  font-weight: bold;
}

.prebox3::after {
  position: absolute;
  content: '03';
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  height: 50px;
  width: 50px;
  color: #000000;
  right: 25%;
  top: 5%;
  font-size: 18px;
  font-weight: bold;
}

.prebox4::after {
  position: absolute;
  content: '04';
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  height: 50px;
  width: 50px;
  color: #000000;
  right: 25%;
  top: 5%;
  font-size: 18px;
  font-weight: bold;
}

.prebox5::after {
  position: absolute;
  content: '05';
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  height: 50px;
  width: 50px;
  color: #000000;
  right: 25%;
  top: 5%;
  font-size: 18px;
  font-weight: bold;
}

.prebox6::after {
  position: absolute;
  content: '06';
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  height: 50px;
  width: 50px;
  color: #000000;
  right: 25%;
  top: 5%;
  font-size: 18px;
  font-weight: bold;
}

.prebox7::after {
  position: absolute;
  content: '07';
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  height: 50px;
  width: 50px;
  color: #000000;
  right: 25%;
  top: 5%;
  font-size: 18px;
  font-weight: bold;
}

.prebox8::after {
  position: absolute;
  content: '08';
  padding: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  height: 50px;
  width: 50px;
  color: #000000;
  right: 25%;
  top: 5%;
  font-size: 18px;
  font-weight: bold;
}

.processcont {
  padding: 0px 20px;
}

.footermenu li {
  list-style-type: none;
  text-decoration: none;
  padding: 10px 0px;
}

.footermenu li a {
  text-decoration: none;
  padding: 10px 0px;
}






/* ihher pages */
.inner-aboutus {
  padding: 100px 0px;
}

/* inner cont */
.innercont .mainheading {
  text-align: center;
  width: 60%;
  margin: auto;
}

.innercont {
  padding: 100px 0px;
}

.innercont .container {
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
}

.innercont .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.innercont .container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.innercont .content .left-side::before {
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.innercont .content .left-side .details {
  margin: 14px;
  text-align: center;
}

.innercont .content .left-side .details i {
  font-size: 30px;
  color: #008f3b;
  margin-bottom: 10px;
}

.innercont .content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

.container .content .right-side {
  width: 75%;
  margin-left: 75px;
}

.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #3e2093;
}

.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 14px 15px;
  resize: none;
}

.right-side .message-box {
  min-height: 110px;
}

.right-side .input-box textarea {
  padding-top: 6px;
  height: 115px;
}

.right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.right-side .button input[type="button"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #00922e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="button"]:hover {
  background: #00922e;
}


@media (max-width: 720px) {
  .innercont .container {
    height: 100%;
  }

  .innercont .container {
    width: 100%;
  }

  .innercont .container .content {
    flex-direction: column-reverse;
  }

  .container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .container .content .left-side::before {
    display: none;
  }

  .container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

.copyright p {
  margin-bottom: 0px;
  color: #ffffff;
  border-top: 1px solid rgb(194, 194, 194);
  text-align: center;
  padding-top: 30px;
}

.innerservice {
  padding-top: 70px;
}

.innerservice .card {
  text-align: center;
}

.innerservice .card img {
  margin: 5px 0px;
  width: 70px;
  height: 70px;
}

.innerservice::after {
  display: none;
}

.card-cont h4 {
  font-size: 18px;
}





/* animation */
.mmshape {
  position: relative;
}

.box {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #000;
}

.up-down {
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: up-down linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: up-down linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: up-down linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: up-down linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes up-down {
  0% {
    transform: translate(1px, 20px);
  }

  24% {
    transform: translate(1px, 30px);
  }

  50% {
    transform: translate(1px, 12px);
  }

  74% {
    transform: translate(1px, 22px);
  }

  100% {
    transform: translate(1px, 22px);
  }
}

@-moz-keyframes up-down {
  0% {
    -moz-transform: translate(1px, 20px);
  }

  24% {
    -moz-transform: translate(1px, 30px);
  }

  50% {
    -moz-transform: translate(1px, 12px);
  }

  74% {
    -moz-transform: translate(1px, 22px);
  }

  100% {
    -moz-transform: translate(1px, 22px);
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translate(1px, 20px);
  }

  24% {
    -webkit-transform: translate(1px, 30px);
  }

  50% {
    -webkit-transform: translate(1px, 12px);
  }

  74% {
    -webkit-transform: translate(1px, 22px);
  }

  100% {
    -webkit-transform: translate(1px, 22px);
  }
}

@-o-keyframes up-down {
  0% {
    -o-transform: translate(1px, 20px);
  }

  24% {
    -o-transform: translate(1px, 30px);
  }

  50% {
    -o-transform: translate(1px, 12px);
  }

  74% {
    -o-transform: translate(1px, 22px);
  }

  100% {
    -o-transform: translate(1px, 22px);
  }
}

@-ms-keyframes up-down {
  0% {
    -ms-transform: translate(1px, 20px);
  }

  24% {
    -ms-transform: translate(1px, 30px);
  }

  50% {
    -ms-transform: translate(1px, 12px);
  }

  74% {
    -ms-transform: translate(1px, 22px);
  }

  100% {
    -ms-transform: translate(1px, 22px);
  }
}


.footer::before {
  right: 0px;
  content: '';
  position: absolute;
  height: 220px;
  width: 100%;
  bottom: 0px;
  background-image: url(../images/waveshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.footer::before {
  right: 0px;
  content: '';
  position: absolute;
  height: 100px;
  width: 100%;
  top: 0px;
  background-image: url(../images/footerwaveshape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}





/* responsive */
@media screen and (max-width: 480px) {
	
	.s-service {
    margin-top: 60px !important;
    margin-bottom: 30px;
	}
	
  .mainbanner::before {
    display: none;
  }

  .intro-area {
    padding: 0px 30px;
  }

  .menubar {
    height: 70px;
    position: sticky;
    top: 0px;
    z-index: 999;
  }

  .card-list {
    padding: 0px !important;
  }

  .aboutus-cont {
    margin-top: 50px;
  }

  .card-list a {
    margin-bottom: 25px;
  }

  .mainbanner2 img {
    height: 200px !important;
  }

  .hamburger {
    margin-top: 15px;
  }

  .mainbanner img {
    height: 665px;
    width: 100%;
    object-fit: cover;
  }

  .intro-area h1 {
    font-size: 28px;
  }

  .social-icon i {
    margin: 0px 7px !important;
  }

  .mainheading h5 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
    text-align: left;
  }

  .aboutus {
    padding: 50px 30px;
  }

  .aboutus-cont p {
    line-height: 20px;
  }

  .mainheading h3::after {
    display: none;
  }

  .mainheading h3 {
    margin-bottom: 15px !important;
    font-size: 20px;
	  text-align: center;
  }
	
	.mainheading h5 {
		text-align: center;
	}

  .process {
    padding: 60px 30px;
  }

  .wrapper1 {
    padding: 50px 30px;
  }

  .wrapper1::before {
    display: none;
  }

  .wrapper1 .mainheading {
    width: 100%;
  }

  .whyus {
    padding: 0px 30px 50px 30px;
  }

  .whyus .mainheading h3::before {
    display: none;
  }

  .whyus p {
    line-height: 25px;
  }

  .whyus-img {
    margin-top: 30px;
  }

  .contactus {
    padding: 50px 30px;
  }

  .contactus .mainheading h3::before {
    display: none;
  }

  .contactus .mainheading {
    padding-top: 50px;
  }

  .testimonials {
    padding: 50px 30px;
  }

  .testimonials::before {
    display: none;
  }

  .testimonials .mainheading h3::before {
    display: none;
  }

  .faqsection {
    padding: 50px 30px;
  }

  .faqsection .mainheading h3::before {
    display: none;
  }

  .faq-accro {
    margin-top: 30px;
  }

  .blogsection {
    padding: 50px 30px;
  }

  .blogsection .mainheading h3::before {
    display: none;
  }

  .footer {
    padding: 100px 30px 50px 30px;
    position: relative;
  }

  .aboutus .mainheading h3::before {
    display: none;
  }

  .aboutus .mainheading h3 {
    margin-top: 50px;
  }

  .inner-aboutus {
    padding: 50px 30px;
  }

  .process .mainheading {
    width: 100%;
  }

  .innerservice {
    padding: 50px 50px;
  }

  .innerservice .card {
    margin-top: 30px;
  }

  .wrapper1 {
    padding: 50px 50px;
  }

  .logo img {
    height: 110px;
    width: 110px;
  }
	.s-service img {
		margin-bottom: 40px;
		height: 260px !important;
	}
	
	.intro-area p {
		text-align: center !important;
		padding: 20px 0px;
	}
	
	.overlay {
		height: 665px !important;
	}
	.innercont .container .content .left-side {
		width: 100% !important;
	}

}

@media screen and (min-width: 481px) and (max-width: 720px) {
	.innercont .container .content .left-side {
		width: 100% !important;
	}
	.overlay {
		height: 665px !important;
	}
	.s-service {
    margin-top: 60px !important;
    margin-bottom: 30px;
	}
	
	.s-service img {
		margin-bottom: 40px;
	}
	
  .intro-area {
    padding: 0px 30px;
  }

  .hamburger {
    margin-top: 15px;
  }

  .menubar {
    height: 70px !important;
  }

  .mainbanner::before {
    display: none;
  }

  .mainbanner img {
    height: 650px;
    width: 100%;
  }

  .intro-area h1 {
    font-size: 45px;
  }

  .mainheading h5 {
    font-size: 26px;
  }

  p {
    font-size: 14px;
  }

  .aboutus {
    padding: 50px 30px;
  }

  .aboutus-cont p {
    line-height: 20px;
  }

  .mainheading h3::after {
    display: none;
  }

  .mainheading h3 {
    margin-bottom: 15px !important;
    font-size: 20px;
  }

  .process {
    padding: 60px 30px;
  }

  .wrapper1 {
    padding: 50px 30px;
  }

  .wrapper1::before {
    display: none;
  }

  .wrapper1 .mainheading {
    width: 100%;
  }

  .whyus {
    padding: 0px 30px 50px 30px;
  }

  .whyus .mainheading h3::before {
    display: none;
  }

  .whyus p {
    line-height: 25px;
  }

  .whyus-img {
    margin-top: 30px;
  }

  .contactus {
    padding: 50px 30px;
  }

  .contactus .mainheading h3::before {
    display: none;
  }

  .contactus .mainheading {
    padding-top: 50px;
  }

  .testimonials {
    padding: 50px 30px;
  }

  .testimonials::before {
    display: none;
  }

  .testimonials .mainheading h3::before {
    display: none;
  }

  .faqsection {
    padding: 50px 30px;
  }

  .faqsection .mainheading h3::before {
    display: none;
  }

  .faq-accro {
    margin-top: 30px;
  }

  .blogsection {
    padding: 50px 30px;
  }

  .blogsection .mainheading h3::before {
    display: none;
  }

  .footer {
    padding: 50px 30px;
    position: relative;
  }

  .aboutus .mainheading h3::before {
    display: none;
  }

  .aboutus .mainheading h3 {
    margin-top: 50px;
  }

}

@media screen and (min-width: 721px) and (max-width: 1100px) {
  .mainbanner::before {
    display: none;
  }
  .nav-links li {
    padding: 0px 15px !important;
  }

  .login-button {
    display: none;
  }
  .mainbanner2 img {
    height: auto !important;
  }
  .aboutus {
    margin-top: 65px;
  }
}


/* after wordpress migrate cass */

input[type="submit"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #00922e;
  cursor: pointer;
  transition: all 0.3s ease;
}


.not_found_404 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 30px !important;
}

.not_found_404 span {
  color: red;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.searchform {
  text-align: center;
  width: 100%;
  padding-bottom: 35px;
}

#s {
  padding: 8px 15px;
  border-radius: 10px;
}

.sbt {
  padding: 8px 15px;
  border: none;
  border-radius: 10px;
  background-color: #005b8f;
  color: #fff;
}

.s-service {
	margin-top: 80px;
}

.s-service img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

.overlay {
	background-color: rgba(0,0,0,0.5);
    height: 730px;
    width: 100%;
    position: relative;
}

.processbox img {
	height: 66px;
	width: 66px;
}

.cn h5 {
	text-align: center;
}

.aboutus {
	padding-top: 70px;
}

#popmake-186 {
	border: none;
}


/* after wordpress migrate cass end */