/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap'); 

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');

:root{
  --surface-color:#ffffff;
    --orange:#35b75e;
    --pink:#e9768f;
    --black: #1d1c1c;
    --white: #fff;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
}


:root1{
  --first1:#D5AB9C;
  --second:#FDFBDA;
   --third:#47D0BD;
  --fourth:#4AC3BE ;
  --fifth:#FIEFE9;
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0; 
  padding: 0;
  box-sizing: border-box;
  outline: none; 
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
  scroll-behavior: smooth;
}

/* Apply Baloo 2 for headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', sans-serif;
}

/* Apply Poppins for body text */
body, p, span, a, li {
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}


section{
  padding: 3rem 8%;
}


.heading{
  /* color: var(--black); */
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6rem;
cursor: pointer;
width: fit-content;
  line-height: 2.25rem;
    position: relative;
    letter-spacing: 1.1px;
    text-decoration: none;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    color: #2c2a29;

}

@media screen and (min-width:768px) {
  .heading::before {
    content: "";
    position: absolute;
    bottom: -14px; /* Adjust as needed to position the underline */
    left: 50%;
    transform: translateX(-50%);
    width: 0%; /* Start with zero width */
    height: 2px; /* Adjust the thickness of the underline as needed */
    background-color: #2c2a29; /* Set the color of the underline */
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  
  .heading:hover::before {
    width: 100%; /* Full width on hover */
    opacity: 1;
  }
}


@media screen and (max-width:769px) {
  .heading{
    line-height: normal;
  }
}

.heading span{
  color: var(--orange);
  text-transform: uppercase;
}

.btn{
  font-size: 1.7rem;
  margin-top: 1rem;
  display: inline-block;
  padding: .8rem 3rem;
  border-radius: .5rem;
  border: .2rem solid var(--white);
  color: var(--white);
  background: none;
  cursor: pointer;
}

.btn:hover{
  background: var(--orange);
  color: var(--white);
}

/* header */

.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 9%;
  background: var(--white);
  box-shadow: var(--box-shadow);
}

.header .logo{
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--black);
}

.header .logo i{
  color: var(--orange);
}

.header .navbar a{
  font-size: 1.9rem;
  margin: 0 1rem;
  color: var(--black);
  font-weight: 500;
  font-family: 'Baloo 2', sans-serif;
  /* font-family: 'Poppins', sans-serif; */
  
}

.header .navbar a:hover,
.header .icons div:hover{
  color: var(--orange);
}

.header .icons div{
  font-size: 2.5rem;
  margin-left: 1.7rem;
  color: var(--black);
  cursor: pointer;
}

#menu-btn{
  display: none;
}

.header .login-form{
  position: absolute;
  top: 110%; right: -110%;
  width: 35rem;
  box-shadow: var(--box-shadow);
  padding: 2rem;
  border-radius: .5rem;
  background: var(--white);
  text-align: center;
}

.header .login-form.active{
  right: 2rem;
  transition: .4s linear;
}

.header .login-form h3{
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--black);
}

.header .login-form .box{
  width: 100%;
  margin: .7rem 0;
  background: #eee;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1.6rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .login-form p{
  font-size: 1.4rem;
  padding: .5rem 0;
  color: var(--light-color);
}

.header .login-form p a{
  color: var(--orange);
  text-decoration: underline;
}
@media screen and (max-width:768px) {
  .header{
    justify-content: center;
  }
}
/* header ends */

/* home */

.home {
  background: url('./images/pngtree3d-render-of-bear-plush-6297708-32738290.jpeg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}
.home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-attachment: scroll;

}
#home1 {
  background: url('./images/pngtrecountry-style-kids-playroom-with-5824767-68077618.jpeg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}
.home .content{
  flex: 1 1 40rem;
  padding-top: 6.5rem;
  z-index: 33;
}

.home .content h1{
  font-size:48px;
  /* color: var(--black); */
  color: #fff;
  font-weight: 700;

}

.home .content h3 span{
  /* color: var(--orange); */
  color: #35b75e;
}

.home .content p{
  color: #ffffff;
  font-size: 1.7rem;
  /* color: var(--light-color); */
  line-height: 1.8;
  padding: 1rem 0;
}

.home .image{
  flex: 1 1 40rem;
}

.home .image img{
  width: 100%;
  padding: 4rem;
}

.custom-shape-divider-bottom-1718772477 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1718772477 svg {
  position: relative;
  display: block;
  width: calc(154% + 1.3px);
  height: 158px;
}

.custom-shape-divider-bottom-1718772477 .shape-fill {
  fill: #FFFFFF;
  border-color: #FFFFFF;
}
.box1{
  cursor: pointer;
}
.box1:hover .box_shade {
  background-color: #35b75e; /* New background color on hover */
  transform-origin: bottom; /* Set the transformation origin to bottom */
  transition: all 0.6s ease-in-out; /* Smooth transition for all properties */
}

/* end */

/* about us */

.about{
  /* background: var(--pink); */
  background-color: #ffffff
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width:768px) {
  .about .row {
    padding: 20px;
  }
}

.about .row .image {
  flex: 1 1 15rem;
  position: relative;
  filter:brightness(85%) ;
}



.about .row .image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adjust the shadow values as needed */
}




.about .row .content{
  flex: 1 1 40rem;
}

.about .row .content h3{
  font-size: 32px;
    color: #2eb657;
  line-height: 1.3;
 
  line-height: 2.25rem;
    letter-spacing: 1.1px;
    text-decoration: none;
    font-weight: 600;
    
}
h2.text-primary.py-5{
  font-size: 4rem;
  color: var(--black) !important;
line-height: 1.5;
font-weight: bolder;
text-transform: uppercase;
}

.about .row .content p {
  font-size: 16px;
  font-family: 'Poppins', sans-serif; /* Ensure font family is correctly referenced */
  color: #4d4d4f; /* Gray color for text */
  padding: 0.2rem 0; /* Vertical padding, adjust if needed */
  line-height: 1.6; /* Adjust line-height for readability */
  margin-bottom: 1rem; /* Uncomment if needed for spacing between paragraphs */
}

/* end */

/* education */

.education .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
  
}

.education .box-container .box{
  background: var(--white);
  border-radius: 2rem;
  box-shadow: var(--box-shadow);
  /* outline: .1rem solid rgba(0,0,0,.1); */
  outline-offset: -1rem;
  overflow: hidden;

}

.education .box-container .box:hover img{
  transform: scale(1.1);
}
.education .box-container .box::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}
.education .box-container .box:nth-child(1){
  /* background: var(--pink); */
  background: url('https://cdn.pixabay.com/photo/2015/11/20/17/51/stuffed-animal-1053580_640.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 450px;
}

.education .box-container .box:nth-child(2){
  /* background: var(--orange); */
  background: url('https://media.istockphoto.com/id/932263376/photo/happy-little-female-child-and-her-teddy-bear-reading-book-on-the-floor-at-home.jpg?s=612x612&w=0&k=20&c=UwBvov8etOaRduAlQOSRHpqWuhGtIKBoLSKDIFMjt3M=');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;  height: 450px;

 
}
.education .box-container .box:nth-child(3){
  /* background: var(--orange); */
  background: url('https://media.istockphoto.com/id/1203062063/photo/the-soft-toy-bunny-sits-on-a-bright-background.jpg?s=612x612&w=0&k=20&c=rcaQ6-4tFnqqAnIOt3Bn5HgXP7sFz0j8bTQ7DwMzXyg=');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;  height: 450px;

}
.education .box-container .box h3{
  position: relative;
  font-size: 2rem;
  color:white;
  line-height: 1.8;
  padding-top: 3rem;
  padding-left: 2rem;
  z-index: 2;
}

.education .box-container .box p{
  font-size: 1.5rem;
  line-height: 1.8;
  color: #ffffff;
  padding: 1rem 2rem;
  position: relative;
  z-index: 2;
}

.education .box-container .box img{
  width: 100%;
  height: 66%;
}

/* end */

/* teacher */

.teacher{
  background: url(images/teacher-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.teacher .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.teacher .box-container .box{
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  border-radius: 2rem;
}

.teacher .box-container .box img{
  height: 30rem;
}

.teacher .box-container .box h3{
  font-size: 2.5rem;
  color: var(--black);
}

.teacher .box-container .box p{
  font-size: 1.7rem;
  color: var(--light-color);
  margin-bottom: 1rem;
}

.teacher .box-container .box .share i{
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  border-radius: .5rem;
  background: none;
  color: var(--pink);
  border: .1rem solid var(--pink);
  margin-left: .5rem;
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.teacher .box-container .box .share i:hover{
  color: var(--white);
  border: .1rem solid var(--orange);
  background: var(--orange);
}

/* end */

/* activities */

.activities .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.activities .box-container .box{
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 2rem;
  outline: .1rem solid rgba(0,0,0,.1);
  outline-offset: -1rem;
}

.activities .box-container .box img{
  height: 8rem;
}

.activities .box-container .box:hover img{
  transform: scale(1.1);
}

.activities .box-container .box h3{
  font-size: 2.2rem;
  padding: 2rem 0;
  color: var(--black);
}

/* end */

/* gallery */

.gallery {
  background: url() no-repeat;
  background-size: cover; 
}

.gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller minimum size for images */
  gap: 1.5rem; /* Reduced gap */
}

.gallery .gallery-container .box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: flex; /* Use flex to center content */
  align-items: center;
  justify-content: center;
}

.gallery .gallery-container .box img {
  max-width: 100%; /* Ensure image doesn't exceed container width */
  max-height: 150px; /* Set maximum height for images */
  object-fit: contain; /* Fit image within container without cropping */
}



.gallery .gallery-container .box:hover .p_shade {
  z-index: 22;
  background-color: #269f4c; /* Initial background color */
  transition: background-color 0.2s ease-in; /* Transition for color change */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(to top, transparent 0%, #269f4c 100%); /* Gradient for bottom to top effect */
  background-size: 100% 200%; /* Initial background size for gradient */
  background-position: bottom; /* Start position for gradient */
}

.gallery .gallery-container .box:hover .p_shade:hover {
  background-position: top; /* End position for gradient on hover */
}

/* .gallery .gallery-container .box:hover img {
  transform: scale(1.2);
} */

.gallery .gallery-container .box .icon {
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.2);
  display: none; /* Hide by default */
}

.gallery .gallery-container .box:hover .icon {
  display: flex; /* Show on hover */
}

.gallery .gallery-container .box .icon i {
  font-size: 3rem;
  color: var(--white);
}

.bt1 {
  position: absolute;
  width: 120px;
  height: 30px;
  border-radius: 15px;
  background-color: #F96543;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 15px;
  padding: 0;
  right: 10px;
  bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery .gallery-container {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row on small screens */
  }
}

@media (max-width: 480px) {
  .gallery .gallery-container {
    grid-template-columns: repeat(2, 1fr); /* Ensure 2 images per row on very small screens */
  }
}

/* Optional: Limit height for gallery to show only 2 rows */
@media (max-width: 480px) {
  .gallery {
    max-height: calc(170px * 2 + 1.5rem); /* Adjust height to fit 2 rows */
    overflow: hidden; /* Hide overflow if there are more images */
  }
}
/* end */

/* contact */

.contact .icons-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
  gap: 1.5rem;
}

.contact .icons-container .icons{
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border-radius: 2rem;
  text-align: center;
  outline: .1rem solid rgba(0,0,0,.1);
  outline-offset: -1rem;
}

.contact .icons-container .icons i{
  font-size: 2.5rem;
  height: 6rem;
  width: 6rem;
  color: var(--white);
  line-height: 6rem;
  border-radius: 50%;
  background:  rgb(243, 129, 129);
  
}

.contact .icons-container .icons h3{
  font-size: 2.2rem;
  padding: 1rem 0;
  color: var(--black);
}

.contact .icons-container .icons p{
  font-size: 1.5rem;
  line-height: 2;
  color: var(--light-color);
}

.contact .row{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
}

.contact .row .image{
  flex: 1 1 20rem;
}

.contact .row .image img{
  width: 100%;
}

.contact .row form{
  flex: 1 1 50rem;
  padding: 2rem;
  border: 0.1rem solid rgba(0,0,0,.4);
  box-shadow: var(--box-shadow);
  border-radius: .5rem;
}

.contact .row form h3{
  font-size: 3rem;
  padding-bottom: 1rem;
  color: var(--black);
  
}

.contact .row form .inputBox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputBox input{
  width: 49%;
}

.contact .row form .inputBox input,
.contact .row form textarea{
  font-size: 1.6rem;
  border: 0.1rem solid rgba(0,0,0,.3);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  color: var(--black);
  margin: .7rem 0;
}

.contact .row form .inputBox input:focus,
.contact .row form textarea:focus{
  border: 0.1rem solid var(--orange);
}

.contact .row form textarea{
  height: 15rem;
  width: 100%;
  resize: none;
}

/* end */

/* footer */

.footer{
  /* background: var(--pink); */
  background: #f8ad9d;
}

.footer .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem,1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3{
  font-size: 2.2rem;
  /* color: var(--orange); */
  color: #1d1c1c;

  padding: 1rem 0;

  
}

.footer .box-container .box p{
  font-size: 1.5rem;
  color: #1d1c1c;
font-weight: 400;
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box a{
  display: block;
  font-size: 1.4rem;
  color: #1d1c1c;

  padding: 1.1rem 0;
}

.footer .box-container .box a:hover{
  color: var(--orange);
}

.footer .box-container .box a i{
  padding-right: .5rem;
  color: rgb(243, 129, 129);
  /* color: white; */
}

.footer .credit{
  margin-top: 2.5rem;
  padding: 1rem;
  padding-top: 2rem;
  border-top: .1rem solid rgba(0,0,0,.3);
  text-align: center;
  color: var(--white);
  font-size: 2rem;
}

.footer .credit span{
  color: var(--orange);
}

/* end */

/* media query */

@media (max-width:991px){

  html{
    font-size: 55%;
  }

  .header{
    padding: 2rem 3rem;
  }

  section{
    overflow: hidden;
    padding: 10px;  }

}

@media (max-width:768px){

  #menu-btn{
    display: inline-block;
  }

  .header .navbar{
    position: absolute;
    top: 110%; 
    right: -105%;
    flex-direction: column;
    width: 30rem;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    background: var(--white);
  }

  .header .navbar.active{
    right: 0.07rem;
    transition: .4s linear;
  
  }

  .header .navbar a{
    font-size: 2rem;
    margin: 2rem 2.5rem;
    display: block;
  }

  .home .content h3{
    font-size: 4.5rem;
  }

}

@media (max-width:450px){
  html{
    font-size: 50%;
  }
  .home .content h3{
    font-size: 3.5rem;
  }
}


.marquee{
  position: relative;
  background: black;
  color: #eee;
  padding: 30px 0;
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  overflow: hidden;
}
.marquee_inner{
  display: flex;
  flex: auto;
  width: fit-content;
  flex-direction: row;
}
.marquee_part{
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 4px;
}

.arrow{
  width: 60px;
  height: 80px;
  margin: 0 1em;
  transform: rotate(180deg);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.arrow.active{
  transform: rotate(0deg);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}


p {
  color: #b3b3b3;
  font-weight: 300; }


  
a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.content {
  /* padding: 7rem 0;  */
}

h2 {
  font-size: 20px; }

.bg-left-half {
  position: relative; }


.media-29101 img {
  margin-bottom: 20px; }

.media-29101 h3 {
  font-size: 15px;
  font-family: 'Baloo 2', sans-serif;
        font-weight: 600 !important;
       }
  .media-29101 h3 a {
    color: #000;
   }

/* .owl-2-style .owl-nav {
  display: none; }

.owl-2-style .owl-dots {
  text-align: center;
  position: relative;
  bottom: -30px; }
  .owl-2-style .owl-dots .owl-dot {
    display: inline-block; }
    .owl-2-style .owl-dots .owl-dot span {
      display: inline-block;
      width: 40px;
      
      height: 3px;
      border-radius: 0px;
      background: #cccccc;
      -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      margin: 3px; }

    .owl-2-style .owl-dots .owl-dot.active span {
      background: #258042; }
    .owl-2-style .owl-dots .owl-dot:active, .owl-2-style .owl-dots .owl-dot:focus {
      outline: none; } */
    
      .tab-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
      }
      
      .tab-link {
        background-color: #fff;
        border: none;
        padding: 12.5px 25px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin: 0 5px;
        font-size:1.875rem;
        font-weight: 600;
        color: #2c2a29;
        border-radius: 0.5rem;
        text-transform: uppercase;
      }
      
      
  
      .tab-content {
        display: none;
      }
      
      .tab-content.active {
        display: block;
        /* text-decoration: underline; */
      }
      
      .content {
        margin-top: 20px;
      }
      
      .site-section {
        /* padding: 20px 0; */
      }
      
      h2.text-primary {
        text-align: center;
      }
      
      .media-29101 {
        margin: 20px;
        text-align: center;
      }
      
      .media-29101 img {
        max-width: 100%;
        border-radius: 10px;
      }
      
     

      /*** 

====================================================================
		Testimonial Section
====================================================================

***/

.large-container {
  position: static;
  max-width: 1580px;
  padding: 0px 30px;
  margin: 0 auto;
}

.testimonial-section {
  position: relative;
  /* padding-top: 80px; */
  padding-bottom: 210px;
  overflow: hidden;
  &:before {
    position: absolute;
    left: -200px;
    top: 22%;
    background-image: url('./images/orbit-charts-03-removebg-preview.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 701px;
    height: 756px;
    content: "";
    -webkit-animation: fa-spin 25s infinite alternate;
    -moz-animation: fa-spin 25s infinite alternate;
    -ms-animation: fa-spin 25s infinite alternate;
    -o-animation: fa-spin 25s infinite alternate;
    animation: fa-spin 25s infinite alternate;
  }
  .sec-title {
    position: relative;
    margin-bottom: 115px;
    .title {
      margin-bottom: 20px;
    }
  }
  .testimonial-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 -50px;
  }
}

.testimonial-block {
  position: relative;
  padding: 50px;
  .inner-box {
    padding: 80px 105px;
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
  }
  .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #282331;
    font-weight: 400;
    margin-bottom: 50px;
    /* font-family: "Muli", sans-serif; */
  }
  .info-box {
    position: relative;
    padding-left: 115px;
    padding-top: 10px;
    .thumb {
      position: absolute;
      left: 0;
      top: 0;
      height: 82px;
      width: 82px;
      img {
        border: 6px solid #e5e6fa;
        border-radius: 50%;
        overflow: hidden;
        display: block;
        width: 100%;
        box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
      }
    }
    .name {
      position: relative;
      display: block;
      font-size: 21px;
      line-height: 1.2em;
      color: #382c4d;
      font-weight: 700;
      margin-bottom: 10px;
      /* font-family: "Niramit", sans-serif; */
    }
    .designation {
      position: relative;
      display: block;
      font-size: 16px;
      line-height: 24px;
      color: #8053f7;
      font-weight: 400;
      /* font-family: "Muli", sans-serif; */
    }
  }
}

.testimonial-carousel {
  .owl-nav {
    position: absolute;
    right: 75px;
    bottom: 70px;
  }
  .owl-next, .owl-prev {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .owl-next:hover, .owl-prev:hover {
    background-color: #00df97;
    box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);

  }
}

.arrow-right, .arrow-left {
  position: relative;
  display: inline-block;
  height: 9px;
  width: 43px;
  background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
  background-repeat: no-repeat;
  background-position: center;
}

.arrow-right {
  background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
}

.testimonial-section .thumb-layer {
  position: absolute;
  right: 30px;
  top: 120px;
  .image {
    position: relative;
    margin-right: 0;
    img {
      display: inline-block;
      max-width: 100%;
      height: auto;
    }
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section{
    margin-bottom: 50px;
    display: grid;
    place-items: center;
  }
  .testimonial-section {
    &:before{
      display: none;
    }
  }
  .sec-title {
    margin-bottom: 50px;
    text-align: center;
    /* display: grid;
    place-items: center; */
  }
  .testimonial-block {
    padding: 0.6rem;
    .inner-box {
      box-shadow: none;
      border: 2px solid #f1f1f1;
      border-radius: 1rem;
      text-align: center;
      padding: 1rem;
    }
  }
  .testimonial-carousel {
    .owl-nav {
      display: grid;
      place-items: center;
      /* position: relative; */
      left: 0;
      bottom: 0;
      margin-top: 20px;
      text-align: center;
    }
    .owl-next, .owl-prev {
      border: 2px solid #f1f1f1;
    }
  }
}






@media only screen and (max-width: 1366px) {
  .large-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section-header {
  /* margin-bottom: 60px; */
  position: relative;
  padding-bottom: 20px;
}

/* .section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f82249;
  bottom: 0;
  left: calc(50% - 25px);
} */

.section-header h2 {
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}
.subscribe {
    padding: 20vh 0;
    background-color: #a1ccc8;
    /* background: url('images/—Pngtree—adorable\ children\ s\ room\ featuring_8099232.jpg') center center no-repeat; */
    background-size: cover;
    overflow: hidden;
    position: relative;
    /* min-height: 100vh; */
}

.subscribe:before {
  content: "";
  /* background: rgba(6, 12, 34, 0.6); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.subscribe .section-header h2,
.subscribe p {
  color: #fff;
}

.subscribe input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  /* border-radius: 50px; */
  font-size: 14px;
  height: 50px;
}

.subscribe button {
  border: 0;
  padding: 12.5px 25px;
  cursor: pointer;
  background: #f38181;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  font-size: 1.7rem;
  border-radius: 0.5rem;
}

.subscribe button:hover {
  background: #e0072f;
}

@media only screen and (min-width: 768px) {
  .subscribe input {
    min-width: 400px;
}

}
@media screen and (min-width:319px) and (max-width:430px){
  .about .row .content h3{
    font-size: 3rem !important;
  }
  iframe{
    width: 250 !important;
  }
  h2.text-primary.py-5{
    font-size: 3rem;
  }
  .section-header h2{
    font-size: 3rem;
  }
  h1.font-weight-light.mt-2{
    font-size: 3rem !important;
  }
  .heading{
    font-size: 3rem;
  }
  .testimonial-block {
    .inner-box {
        padding: 40px 5px;
        /* padding-left: 10px; */
}}
.owl-carousel .owl-stage-outer{
  width: 100%;

}
.testimonial-block {
  .text {
      position: relative;
      display: block;
      font-size: 15px;
      line-height: 32px;
      color: #282331;
      font-weight: 400;
      margin-bottom: 50px;
      /* font-family: "Muli", sans-serif; */
  }
 
}}
.contact3 h1,
.contact3 h2,
.contact3 h3,
.contact3 h4,
.contact3 h5,
.contact3 h6 {
  color: #3e4555;
}

.contact3 .font-weight-medium {
  font-weight: 500;
}

.contact3 .card-shadow {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.contact3 .btn-danger-gradiant {
  /* background: #ff4d7e;
  background: -webkit-linear-gradient(legacy-direction(to right), #ff4d7e 0%, #ff6a5b 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff4d7e), to(#ff6a5b));
  background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
  background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
  background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%); */
  border: 0 !important;
  padding: 12.5px 25px !important;
  cursor: pointer;
  background: #f38181 !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
  outline: none;
  font-size: 1.7rem !important;
  border-radius: 0.5rem !important;







}

.contact3 .btn-danger-gradiant:hover {
  background: #ff6a5b;
  background: -webkit-linear-gradient(legacy-direction(to right), #ff6a5b 0%, #ff4d7e 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff6a5b), to(#ff4d7e));
  background: -webkit-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
  background: -o-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
  background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
}
h1.font-weight-light.mt-2 {
  font-size: 4rem;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
    /* font-weight: bolder !important; */
    margin-bottom: 6rem;
    margin-top: 6rem;
    line-height: 2.25rem !important;;
    position: relative;
    letter-spacing: 1.1px !important;;
    text-decoration: none;
    font-size: 30px !important;;
    font-weight: 600 !important;;
    text-align: center;
    color: #269f4c;
}

@media screen and (max-width:768px) {
  h1.font-weight-light.mt-2 {
    font-size: 20px !important;
    line-height: normal !important;
  }
}



.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  /* margin: 4rem 5vw; */
  padding: 0;
  list-style-type: none;
  border-radius: 2rem;

}

.card {
  position: relative;
  display: block;
  height: 100%;  
  border-radius: 2rem;
  overflow: hidden;
  text-decoration: none;
}

.card__image {      
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  border-radius: calc(var(--curve) * 1px);    
  background-color: var(--surface-color);      
  transform: translateY(100%);
  transition: .2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;    
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: .2s ease-in-out;
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;      
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}       

.card:hover .card__header {
  transform: translateY(0);
}

.card__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;      
  border-radius: 50%;      
}

.card__title {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 .3em;
  color: #282331;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  /* font-family: "MockFlowFont";   */
  font-size: 18px;; 
  color: #282331;  
}

.card__status {
  color: #282331;
  font-size: 1.7rem;
}

.card__description {
  padding: 0 2em 2em;
  margin: 0;
  color: #D7BDCA;
  /* font-family: "MockFlowFont";    */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}    




@media screen and (max-width: 768px) {

  .icons .fa-bars {
      display: block;
  }
}
.custom_css{
  line-height: 2.25rem;
  letter-spacing: 1.1px;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
  color: #2c2a29;
}
@media only screen and (max-width: 320px) {
  .about .row .image::before{
    width: 96%;
  }
}
@media only screen and (max-width: 375px) {
  .about .row .image::before{
    width: 97%;
  }
}

.process-section {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  padding: 70px;
  background-color: #f9f9f9;
}

.content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}
.content1 p {
	/* width: 60%; */
	margin: auto;
  color: #2c2a29;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.8rem;
}
.image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  align-items: start;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.step i {
  font-size: 14px;
  color: green;
  margin-right: 10px;
  transform: rotate(270deg);
  margin-top: 4px; /* Aligns the pencil with the first line of text */
}

.step-content {
  max-width: 90%; /* Ensures the text doesn't overflow and keeps it aligned */
  color: #333;
}
 .step-content p{
  margin-bottom: 10px;
  font-family: 'poppins', sans-serif;
  line-height: 1.8rem;
 }

h3 {
  font-size: 32px;
  color: #2eb756;
font-family: 'Baloo 2' , sans-serif;
line-height: 2.25rem;
  /* letter-spacing: 1.1px; */
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .process-section {
      flex-direction: column;
      padding:10px;
      /* text-align: center; */
  }
  h3{
    font-size: 22px;
  }
  
  .image {
      margin-top: 20px;
  }
  
  h2 {
      font-size: 28px;
  }
}

@media (max-width: 480px) {
  h2 {
      font-size: 24px;
  }
  
  .step i {
      font-size: 20px;
  }
  
  .step p {
      font-size: 14px;
  }
 
}