@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@900&display=swap');

:root {
    --primary_text-very-dark-desaturated-blue: hsl(238, 29%, 16%);
    --primary_text-soft-red: hsl(14, 88%, 65%);
    --primary_bg-soft-violet: hsl(273, 75%, 66%);
    --primary_bg-soft-blue: hsl(240, 73%, 65%);
    --neutral_text-very-dark-grayish-blue: hsl(237, 12%, 33%);
    --neutral_text-dark-grayish-blue: hsl(240, 6%, 50%);
    --dividers_light-grayish-blue: hsl(240, 5%, 91%);
}

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Montserrat', serif;
    font-size: 14px;
    width: 100%;
    height: 100vh;
}

section {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, hsl(0deg 0% 100%), hsl(240deg 39.34% 94.29%));
    position: relative;
}

.faq {
    width: 70%;
    min-height: 440px;
    height: auto;
    background: white;
    border-radius: 10px;
    position: absolute;
    top: 70%;
    left: 50%;
   
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.faq .faq-left-desktop {
    width: 50%;
    height: 440px;
    display: none;
}

.faq .faq-left-desktop>img {
    position: absolute;
    top: 32%;
    left: -18%;
    width: 30%;
}

.faq .faq-left-desktop .faq-left-image-desktop {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.faq .faq-left-desktop .faq-left-image-desktop img:nth-of-type(1) {
    position: absolute;
    top: 50%;
    left: -14%;
    width: 100%;
    transform: translateY(-50%);
}

.faq .faq-left-desktop .faq-left-image-desktop::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(https://rvs-faq-accordion-card.netlify.app/images/bg-pattern-desktop.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: scale(2);
    position: absolute;
    top: -53px;
    left: -280px;
    z-index: -1;
}

.faq .faq-left-mobile {
    width: 85%;
    height: 140px;
}

.faq .faq-left-mobile>img {
    position: absolute;
    top: 32%;
    left: -18%;
    width: 30%;
}

.faq .faq-left-mobile .faq-left-image-mobile {
    width: 100%;
    height: 100%;
    position: relative;
}

.faq .faq-left-mobile .faq-left-image-mobile img:nth-of-type(1) {
    position: absolute;
    top: -6%;
    left: 44%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.faq .faq-left-mobile .faq-left-image-mobile::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(https://rvs-faq-accordion-card.netlify.app/images/bg-pattern-mobile.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: scale(.9);
    position: absolute;
    top: -15px;
    left: 0px;
}

.faq .faq-right {
    width: 60%;
    height: 100%;
    padding: 50px 60px 50px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq .faq-right .faq-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    
}

.faq .faq-right .faq-title legend{
    color: #01A560;
    font-size: 18px;
    letter-spacing: 1px;
}


.faq .faq-right .faq-body {
    position: relative;
}

.faq .faq-right .faq-body ::marker {
    content: "";
}

.faq .faq-right .faq-body details {
    border-bottom: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--dividers_light-grayish-blue);
    margin-bottom: 20px;
    cursor: pointer;
}

.faq .faq-right .faq-body details:not([open]) {
    padding-bottom: 15px;
}

.faq .faq-right .faq-body details:not([open]) summary:hover {
    color: var(--primary_text-soft-red);
}

.faq .faq-right .faq-body details summary {
    color: var(--neutral_text-very-dark-grayish-blue);
    font-weight: 700;
    display: block;
    position: relative;
}

.faq .faq-right .faq-body details summary::after {
    content: "";
    position: absolute;
    right: 0;
    background: url(https://rvs-faq-accordion-card.netlify.app/images/icon-arrow-down.svg);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: rotate(0deg);
}

.faq .faq-right .faq-body details[open] summary::after {
    transform: rotate(180deg);
}

.faq .faq-right .faq-body details p {
    color: var(--neutral_text-dark-grayish-blue);
    line-height: 18px;
    padding-right: 25px;
    font-weight: 400;
    font-size: 14px;
}


@media (min-width: 375px) {
    .faq .faq-left-desktop {
        display: block;
    }

    .faq .faq-left-mobile {
        display: none;
    }
}

@media (max-width: 375px) {
    body {
        height: auto;
    }

    section {
        padding: 160px 0px 80px;
    }

    .faq {
        width: 90%;
        height: auto;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
    }

    .faq .faq-right {
        width: 100%;
        padding: 25px;
        align-items: center;
    }

    .faq .faq-right .faq-title {
        margin-bottom: 35px;
    }

    .faq .faq-right .faq-body {
        width: 100%;
     
    }
}

/*-------------------------------------------------------------------------------------------------------------------*/
#partner-sec .partner_with_us {
	margin: 150px 150px 0px 150px;
	border-radius: 8px;		
}

#partner-sec{
  margin-top: 210px;
  margin-left: 200px;
  margin-right: 200px;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 8px;	
  height: auto;
}

#partner-sec h2{
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  color: #184876;
  padding-top: 20px;
  letter-spacing: 0.2rem;
  text-decoration: underline;
  text-underline-offset: 15px;  
  text-decoration-color: #478D4B;
}

#partner-sec .partner{
  background-color: #EBF3EB;
  margin: 25px;
  width: 170px;
  height: 100px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 4px;
}

#partner-sec .partner img{
  height:50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}


#partner-sec .partner img{
    width: 100%;
    /*padding: 20px;*/
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    display: block;
  }
  
  #partner-sec .partner img:hover{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }

@media (min-width: 1600px) and (max-width: 1800px){
  #partner-sec{
    margin-top: 100px;
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;	
    height: auto;
  }
}

@media (min-width: 1400px) and (max-width: 1599px){
  #partner-sec{
    margin-top: 150px;
    margin-left: 180px;
    margin-right: 180px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;	
    height: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1399px){
  #partner-sec{
    margin-top: 190px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;	
    height: auto;
  }
}

@media (min-width:992px) and (max-width: 1199px){
  #partner-sec{
    margin-top: 150px;
    margin-left: 120px;
    margin-right: 120px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;	
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #partner-sec{
    margin-top: 130px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;	
    height: auto;
  }
}

@media (min-width: 576px) and (max-width: 767px){
  #partner-sec{
    margin-top: 100px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;	
    height: auto;
  }
}

@media (min-width: 420px) and (max-width: 575px){
  #partner-sec{
    margin-top: 70px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;	
    height: auto;
  }
}

@media (min-width: 330px) and (max-width: 419px){
  #partner-sec{
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;	
    height: auto;
  }
  #partner-sec h2{
    text-underline-offset: 5px;
    line-height: 25px;
  }
}


body{
    background-color: #E3EEE4;
    /* background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); */
}
#parent{
height: fit-content;
padding-top: 600px;
padding-bottom: 500px;
/* background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); */
/* background: linear-gradient(180deg, var(--primary_bg-soft-violet), var(--primary_bg-soft-blue)); */
}
#parent1{
padding-top: 100px;
/* background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); */
/* background: linear-gradient(180deg, var(--primary_bg-soft-violet), var(--primary_bg-soft-blue)); */
}

#parent1 .card{
padding: 20px;

}

#parent1 .card h2{
text-align: center;
font-size: 18px;
}
#description{
    text-align: justify;
    letter-spacing: 1px;
}



/* Brief Features */

.offer .container-fluid{
padding-left: 120px;
padding-right: 120px;
}


.offer .container-fluid .title{
font-style: normal;
font-weight: 600;
font-size: 18px;
color: #184876;
line-height: 54px;
padding-bottom: 75px;
padding-top: 40px;
position: relative;
}

/* .offer .container-fluid .title:after{
position: absolute;
content: '';
width: 85px;
height: 2.5px;
background-color: green;
display: flex;
left: 785px;
border: 3px solid #478D4B;
} */

.offer .container-fluid img{
width: 100%;
/* height: 155px; */
box-shadow: 0px 4px 20px 2px rgba(0, 0, 0, 0.25);
}

.offer .container-fluid .sub-title{
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 30px;
color: #4F4F4F;
margin-top: 20px;
letter-spacing: 1px;
}

.offer .container-fluid p{
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 22px;
color: #828282;
padding: 15px;
letter-spacing: 1px;
text-align: justify;
}

@media (max-width: 800px) {
#parent {
padding-top: 740px;
padding-bottom: 740px;
}
}

@media(max-width: 600px) {
.offer .container-fluid {
padding-left: 30px;
padding-right: 30px;
}

.offer .container-fluid .title {       
font-size: 18px;
}

.offer .container-fluid img {
width: 200px;
height: 200px;
box-shadow: 0px 4px 20px 2px rgba(0, 0, 0, 0.25);
}

#parent {
padding-top: 740px;
padding-bottom: 740px;
}
}

/*@media (max-width: 374px) {
#parent {
padding-top: 60px;
padding-bottom: 60px;
}
}*/


#testimonials {
  padding: 90px 90px 90px 160px;
  margin-left: 295px;
  margin-right: 310px;
  width: 70%;
  min-height: 440px;
  height: auto;
  align: center;
  text-align: center;
  background: #F5F0E0;
}

.testimonial-text {
  line-height: 1.5;
  font-size: 14px;
}

.testimonial-img {
  width: 10%;
  border-radius: 100%;
  margin: 20px;
}
.color-section{
  background-color: #bdfafc;
  color: black;
}


#parent1 .container-fluid-content{
width: 100%;
height: auto;
font-size: 14px;
padding: 20px 40px 20px 40px;
text-align: justify;
}


#parent1 .card a{
padding: 10px 10px 10px 10px;
margin: 10px 10px 20px 10px;
}

#four-images{
background: white;
}


#four-images .partner-w-u-image img{
width: 100%;
padding: 10px 30px 10px 20px;
margin-left: 30px;
}

#four-images .partner-w-u-image img{
width: 100%;
padding: 10px 30px 10px 20px;
overflow: hidden;
}

#four-images .partner-w-right-image img{
width: 100%;
padding: 10px 30px 10px 20px;
overflow: hidden;
}

#four-images .partner-w-u-left-content{
align-item: center;
margin-top: 10px;
margin-left: 10px;
font-size: 14px;
padding: 10px 30px 10px 20px;
text-align: justify;
}

#four-images .partner-w-u-content{
align-item: center;
margin-top: 10px;
margin-left: 10px;
font-size: 14px;
text-align: justify;
padding: 10px 30px 10px 20px;
}






/* /****************************New Begining***************************************** */
    /*********************1st Container Start******************************/
    .bnr_img {
      margin: auto;
      position: relative;
      padding-top: 80px;
    }
 
    .text-container h1{
      position: absolute;
      color: white;
      left: 70rem;
      top: 32rem;
      padding: 0 1rem;
      width: 40%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 12rem;
      font-size: 14px;
      top: 47rem;
      padding: 0 1rem;
      width: 40%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 15rem;
      top: 53rem;
      padding: 0 1rem;
    }
  .text-container h1{
    font-size: 45px;
    margin: 20px;
  }
  .text-container p{
    font-size: 14px;
    margin: 20px;
  }
  .text-container .quick-equiry{
    padding-left: 280px;
  }

  @media (min-width: 1600px) and (max-width: 1800px){
    .text-container h1{
      position: absolute;
      color: white;
      left: 57rem;
      top: 32rem;
      padding: 0 1rem;
      width: 50%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 12rem;
      font-size: 14px;
      top: 41rem;
      padding: 0 1rem;
      width: 40%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 15rem;
      top: 48rem;
      padding: 0 1rem;
    }
  }

  @media (min-width: 1400px) and (max-width: 1599px){
    .text-container h1{
      position: absolute;
      color: white;
      left: 44rem;
      top: 26rem;
      padding: 0 1rem;
      width: 47%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 9rem;
      font-size: 14px;
      top: 37rem;
      padding: 0 1rem;
      width: 40%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 11rem;
      top: 42rem;
      padding: 0 1rem;
    }
  }

  @media (min-width: 1200px) and (max-width: 1399px){
    .text-container h1{
      position: absolute;
      color: white;
      left: 44rem;
      top: 23rem;
      padding: 0 1rem;
      width: 40%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 9rem;
      font-size: 14px;
      top: 32rem;
      padding: 0 1rem;
      width: 42%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 11rem;
      top: 38rem;
      padding: 0 1rem;
    }
  }

  @media (min-width: 992px) and (max-width: 1199px){
    .text-container h1{
      position: absolute;
      color: white;
      left: 24rem;
      top: 18rem;
      padding: 0 1rem;
      width: 57%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 5rem;
      font-size: 14px;
      top: 27rem;
      padding: 0 1rem;
      width: 42%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 9rem;
      top: 32rem;
      padding: 0 1rem;
    }
  }

  @media (min-width: 768px) and (max-width: 991px){
    .text-container h1{
      position: absolute;
      color: white;
      font-size: 35px;
      left: 19rem;
      top: 15rem;
      padding: 0 1rem;
      width: 55%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 1rem;
      font-size: 14px;
      top: 21rem;
      padding: 0 1rem;
      width: 52%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 5rem;
      top: 26rem;
      padding: 0 1rem;
    }
  }
  
  @media (min-width: 576px) and (max-width: 767px){
    .text-container h1{
      position: absolute;
      color: white;
      left: 15rem;
      top: 12rem;
      font-size: 25px;
      padding: 0 1rem;
      width: 51%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 0rem;
      font-size: 14px;
      top: 16rem;
      padding: 0 1rem;
      margin-left: 0 !important;
      width: 65%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 3rem;
      top: 21rem;
      padding: 0 1rem;
      font-size: 13px;
    }
  }
  @media (min-width: 420px) and (max-width: 575px){
    .text-container h1{
      position: absolute;
      color: white;
      left: 7rem;
      top: 7rem;
      font-size: 25px;
      padding: 0 1rem;
      width: 63%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 0rem;
      font-size: 14px;
      top: 12rem;
      padding: 0 1rem;
      margin-left: 0 !important;
      width: 95%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 3rem;
      top: 16rem;
      padding: 0 1rem;
      font-size: 13px;
    }
    .text-container h1{
      font-size: 25px;
      margin: 20px;
    }
    .text-container p{
      font-size: 14px;
      margin: 20px;
    }
    .text-container .quick-equiry{
      padding-left: 80px;
      font-size: 12px;
    }
    .text-container .quick-equiry a {
      font-size: 12px;
    }
  }

  @media (min-width: 330px) and (max-width: 419px){
    .text-container h1{
      position: absolute;
      color: white;
      left: 2rem;
      top: 6rem;
      font-size: 25px;
      padding: 0 1rem;
      width: 73%;
    }
    .text-container p{
      position: absolute;
      color: white;
      left: 0rem;
      font-size: 14px;
      top: 9rem;
      padding: 0 1rem;
      width: 100%;
    }
    
    .text-container .appointment-btn{
      position: absolute;
      color: white;
      left: 4rem;
      top: 13rem;
      padding: 0 1rem;
      font-size: 13px;
    }
    .text-container h1{
      font-size: 20px !important;
      margin: 0;
    }
    .text-container p{
      font-size: 14px;
      margin: 0;
      margin-bottom: 5px;
    }
    .text-container .quick-equiry{
      padding-left: 80px;
      font-size: 12px;
    }
    .text-container .quick-equiry a {
      font-size: 12px;
    }
  }

  .button {
    font-size: 14px;
    padding: 10px;
    color: #fff;
    border: 2px solid #cba24c;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    background: #cba24c;
    margin: auto;
    margin-top: 100px;
  }

  @media (min-width: 1600px) and (max-width: 1800px){
    .popupbtn{
      padding-top: 40px;
      width: 10% !important;
    }
  }
  @media (min-width: 1400px) and (max-width: 1599px){
    .popupbtn{
      padding-top: 40px;
      width: 11.5% !important;
    }
  }

  @media (min-width: 1200px) and (max-width: 1399px){
    .popupbtn{
      padding-top: 40px;
      width: 13% !important;
    }
  }

  @media (min-width: 992px) and (max-width: 1199px){
    .popupbtn{
      padding-top: 40px;
      width: 16% !important;
    }
  }

  @media (min-width: 768px) and (max-width: 991px){
    .popupbtn{
      padding-top: 40px;
      width: 20.5% !important;
    }
  }

  @media (min-width: 576px) and (max-width: 767px){
    .popupbtn{
      padding-top: 40px;
      width: 27% !important;
    }
  }

  @media (min-width: 420px) and (max-width: 575px){
    .popupbtn{
      padding-top: 40px;
      width: 37% !important;
    }
  }

  @media (min-width: 330px) and (max-width: 419px){
    .popupbtn{
      padding-top: 40px;
      width: 47% !important;
    }
  }

  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popup {

  
    overflow-y: auto;
    margin: 70px auto;
    padding: 20px;
    padding-top: 40px;
    background: #fff;
    border-radius: 5px;
    width: 50%;
    position: relative;
    transition: all 5s ease-in-out;
    height: fit-content;
    
  }
  
  .popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
  }
  .popup .close {
    position: absolute;
    top: 0px;
    right: 20px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .close:hover {
    color: #184876;
  }
  .popup .content {
    max-height: 30%;
    /* overflow: auto; */
  }
/*********************1st Container End******************************/
/*********************2nd Container Start*****************************/
  
  #parent21{
    background: #fff;
color: #333;
margin: auto;
margin-top: 100px !important;
width: 60%;
height: auto;
border-radius: 2rem;
margin-bottom: 100px !important;
  }
  #parent21 h2{
    text-align: center;
    font-size: 18px;
    color: #184876;
    text-decoration-color: #478d44 !important;
    text-underline-offset: 15px;
    font-weight: 600;
    padding-top: 50px;
    padding-bottom: 70px;
    text-decoration: underline;
  }
  #parent21 .content2{
    text-align: justify;
    font-size: 14px;
    /*padding-top: 7%;
    padding-right: 40%;*/
    padding: 20px;
    line-height: 30px;
  }
  #parent21 .container2{
    text-align: right;

  }
#parent21 img{
height: 300px;
width: 300px;
justify-content: center;
} 

#parent21 .container2{
  margin: auto;
  padding-bottom: 40px;
}

@media (min-width: 1601px) and (max-width: 1820px){
  #parent21 {
    margin: auto;
    width: 80%;
  }
  #parent21 .content2 {
    margin: 40px;
  }
}

@media (min-width: 1541px) and (max-width: 1600px){
  #parent21 {
    margin: auto;
    width: 80%;
  }
  #parent21 .content2 {
    margin: 25px;
  }
}

@media (min-width: 1401px) and (max-width: 1540px){
  #parent21 {
    margin: auto;
    width: 80%;
  }
  #parent21 .content2 {
    margin: 15px;
  }
}

@media (min-width: 1201px) and (max-width: 1400px){
  #parent21 {
    margin: auto;
    width: 80%;
  }
  #parent21 .content2 {
    margin: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1200px){
  #parent21 {
    margin: auto;
    width: 80%;
  }
  #parent21 .content2 {
    margin: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px){
  #parent21 {
    margin: auto;
    width: 90%;
  }
  #parent21 .content2 {
    margin: 15px;
  }
}

@media (min-width: 576px) and (max-width: 767px){
  #parent21 {
    margin: auto;
    width: 80%;
  }
  #parent21 h2{
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  #parent21 .container2{
    margin: auto;
    text-align: center;
  }
  #parent21 .content2 {
    margin: 15px;
  }
}

@media (min-width: 420px) and (max-width: 575px){
  #parent21 {
    margin: auto;
    width: 80%;
  }
  #parent21 h2{
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  #parent21 img{
    width: 260px;
    height: 260px;
  }
  #parent21 .container2{
    margin: auto;
    text-align: center;
  }
  #parent21 .content2 {
    margin: 15px;
  }
}

@media (min-width: 330px) and (max-width: 419px){
  #parent21 {
    margin: auto;
    width: 80%;
  }
  #parent21 h2{
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
    text-underline-offset: 5px;
    line-height: 25px;
  }
  #parent21 img{
    width: 190px;
    height: 190px;
  }
  #parent21 .container2{
    margin: auto;
    text-align: center;
  }
  #parent21 .content2 {
    margin: 15px;
  }
}
/*********************2nd Container End******************************/

/*=======================benefits==================*/

.snip3 {
  background-color: #fff;
  color: #ffffff;
  font-family: 'Montserrat', serif;
  font-size: 14px;
  margin: 20px;
  max-width: 370px;
  min-width: 230px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  height: 270px;
}

.snip_heading h1{
  text-align: center;
  font-size: 18px;
  color: #184876;
  padding-top: 40px;
  padding-bottom: 50px;
  text-decoration: underline;
  text-decoration-color: #478D4B;
  text-underline-offset: 10px;
  font-style: normal;
  font-weight:600;
  }
  .snip_heading{
  justify-content: center;
  width: 90%;
  margin-bottom: 100px !important;
  margin: auto;
  }

.snip3 *,
.snip3 *:before,
.snip3 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.snip3 .benefit_img{
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: top;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

.snip3:before,
.snip3:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background-color: #184876;
  opacity: 0.5;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.snip3:before {
  -webkit-transform: skew(30deg) translateX(-80%);
  transform: skew(30deg) translateX(-80%);
}

.snip3:after {
  -webkit-transform: skew(-30deg) translateX(-70%);
  transform: skew(-30deg) translateX(-70%);
}

.snip3 figcaption {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  bottom: 0;
  padding: 25px 5% 25px 20px;
}

.snip3 figcaption:before,
.snip3 figcaption:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #184876;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  content: '';
  opacity: 0.5;
  z-index: -1;
}

.snip3 figcaption:before {
  -webkit-transform: skew(30deg) translateX(-100%);
  transform: skew(30deg) translateX(-100%);
}

.snip3 figcaption:after {
  -webkit-transform: skew(-30deg) translateX(-90%);
  transform: skew(-30deg) translateX(-90%);
}

.snip3 h3,
.snip3 p {
  margin: 0;
  opacity: 0;
  letter-spacing: 1px;
}

.snip3 h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.snip3 p {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 2px;
}

.snip3 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.snip3:hover h3,
.snip3.hover h3,
.snip3:hover p,
.snip3.hover p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 0.9;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.snip3:hover:before,
.snip3.hover:before {
  -webkit-transform: skew(30deg) translateX(-20%);
  transform: skew(30deg) translateX(-20%);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.snip3:hover:after,
.snip3.hover:after {
  -webkit-transform: skew(-30deg) translateX(-10%);
  transform: skew(-30deg) translateX(-10%);
}

.snip3:hover figcaption:before,
.snip3.hover figcaption:before {
  -webkit-transform: skew(30deg) translateX(-40%);
  transform: skew(30deg) translateX(-40%);
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.snip3:hover figcaption:after,
.snip3.hover figcaption:after {
  -webkit-transform: skew(-30deg) translateX(-30%);
  transform: skew(-30deg) translateX(-30%);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

@media (min-width: 1600px) and (max-width: 1800px){

}
@media(min-width: 330px) and (max-width: 419px){
  .snip_heading h1{
    text-underline-offset: 5px;
    line-height: 25px;
  }
}


/******************3rd Container End*******************************/

.img-content{
  background-color: #fff;
  padding: 50px;
}
.img-content h1{
  text-align: center; 
  justify-content: center;
  color:#184876;
  text-decoration-color: #478d44 !important;
  text-decoration: underline;
  text-underline-offset: 15px;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
  padding-bottom: 50px;
}
.img-content .img_sec{
  text-align: center;
}
.img-content .row{
  width: 80%;
  margin: auto;
  background-color: #478d44;
  border-radius: 15px;
  color: #fff;
  justify-content: center;
}

@media (min-width: 330px) and (max-width: 419px){
  .img-content h1{
    text-underline-offset: 5px;
    line-height: 25px;
  }
}
/*********************4th Container Start******************************/
.fluid1 #parent2{
height: 145%;
  padding-right: 0px;
  padding-left: 0px;
  padding-bottom: 50px; 
margin-bottom: 100px;
}
#parent2{
background: #ffffffa0;
color: #000000;
margin: 100px auto;
width: 60%;
height: auto;
border-radius: 2rem;
}
#parent2 h2{
text-align: center;
font-size: 18px;
color: #184876;
padding-top: 20px;
padding-bottom: 40px;
text-decoration: underline;
}
#parent2 .content2{
text-align: justify;
font-size: 14px;
padding-top: 4%;
padding-right:38%;
align-items: center;
color: #000000;
font-size: 14px;
perspective: 400px; 
transition: 0.5ms;
z-index: index 3;
}
#parent2 .container2{
text-align: right;
}
#parent2 img{
height: 300px;
width: 300px;
justify-content: center;
margin: auto;
margin-bottom: 40px !important;
}




/*******************4th Container End******************************/


/********************6th Container Start**************************************/
.video{
margin: 100px auto;
}
.video h1{
text-align: center;
font-size: 18px;
color: #184876;
font-weight: 600;
text-decoration: underline;
text-decoration-color: #478d44;
text-underline-offset: 15px;
}
.video .card1{
height: 70%;
width: 70%;
border-radius: 30px;
}
.card1 img{
border-radius: 30px;
}
@media (min-width: 330px) and (max-width: 419px){
 .video h1{
  text-underline-offset: 5px;
  line-height: 25px;
 } 
}
/******************6 Container End*******************************/
/**********************8th Container Start****************************************/
.card1 {
background: #fff;
color: #333;
margin-top: 100px;
margin-bottom: 12px;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 50rem;
border-radius: 2rem;
box-shadow: #ffffff9c;
}

.partner-banner{
display: flex;
justify-content: center;
transform: translateY(-55%);
}
.card1 .title{
  font-weight: 600;
  color: #184876;
  text-decoration: underline;
  text-decoration-color: #478d44;
  text-underline-offset: 15px;
}

.partner-banner .img {
height: 80px;
width: 80px;
filter: drop-shadow(0rem 1.5rem rgba(0,0,0,0.1));
transition: 0.3s ease-out;
transform: translate(-50%, -50%);
}

.card:hover .img {
filter: drop-shadow(0rem 2.5rem rgba(0,0,0,0.1));
}


.title {
text-align: center;
font-size: 18px;
padding: 1rem;
margin-top: 20px;
}

.acc-container {
padding: 4rem 2rem;
padding-top: 0px !important;
}
.acc-btn {
width: 100%;
padding: 1.6rem 2rem;
font-size: 16px;
cursor: pointer;
background: inherit;
border: none;
color:#595555;
outline: none;
text-align: left;
transition: all 0.5s linear;
}
.acc-btn:after {
content: "\27A4";
color: #fa8d0c;
float: right;
transition: all 0.3s linear;
}
.acc-btn.is-open:after {
transform: rotate(90deg);
}
.acc-btn:hover, .acc-btn.is-open {
color: #000;
}

.acc-content {
max-height: 0;
color: rgba(0,0,0,0.75);
font-size: 14px;
margin: 0 2rem;
padding-left: 1rem;
overflow: hidden;
transition: max-height 0.3s ease-in-out;
border-bottom: 1px solid #ccc;
}

.credit {
text-align: center;
padding: 1rem;
}
.credit a {
text-decoration: wavy underline;
color: dodgerblue;
}

@media (min-width: 330px) and (max-width: 419px){
  .card1 .title{
    text-underline-offset: 5px;
    line-height: 25px;
  }
}
/******************8th Container End*******************************/
/*******************************Our Partner************************************/
.team{
background-color: #ccdecc;
}

.section-heading {
text-align: center;
font-size: 18px;
color:#184876;
margin: 0 0 70px;
}

.container {
display: flex;
justify-content: center;
width: 90%;
max-width: 1440px;
margin: 0 auto;
}

.profile {
position: relative;
transition: all 0.3s;
}

.profile:hover {
transform: translateY(25px);
}

.profile img {
max-width: 100%;
border-radius: 50%;
border: 5px solid #f7f7f7;
filter: drop-shadow(-20px 0 10px rgba(0, 0, 0, 0.1));
cursor: pointer;
}

.profile:not(:first-child) img {
margin-left: -20px;
}

.profile .name {
position: absolute;
background-color: #ffffff;
color: #fff;
font-family: "Bebas Neue", cursive;
padding: 15px 30px;
border-radius: 100px;
bottom: -80px; left: 50%;
white-space: nowrap;
transform: translate(-50%, -50px);
letter-spacing: 1px;
font-size: 20px;
opacity: 0;
transition: all 0.3s;
}

.profile .name::before {
content: "";
position: absolute;
width: 15px; height: 15px;
background-color: #10996d;
top: 0; left: 50%;
transform: translate(-50%, -50%) rotate(45deg);
}

.profile img:hover + .name {
opacity: 1;
transform: translateX(-50%);
background-color: #ccdecc;
}