@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&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: 12px;
    width: 100%;
    height: 100vh;
}

section {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary_bg-soft-violet), var(--primary_bg-soft-blue));
    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: 15px;
    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: 12px;
}


@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: 280px;
  margin-right: 280px;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 8px;	
  
}

#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: 200px;
  height: 120px;
  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%);
  }
  
  #partner-sec .partner img:hover{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }


@media only screen and (max-width: 1024px) {
  
  #partner-sec{
    margin-left: 280px;
    margin-right: 280px;
  }

  #partner-sec .partner{
      margin: 10px;
      width: 200px;
      height: 110px;
      margin-top: 30px;
  }

  #partner-sec .partner img{
      padding: 0px;
      padding-top: 10px;
  }
}

@media only screen and (max-width: 920px) {
  
  #partner-sec{
    margin-left: 280px;
    margin-right: 280px;
  }

  #partner-sec .partner{
      margin: 10px;
      width: 140px;
      height: 80px;
      margin-top: 30px;
  }

  #partner-sec .partner img{
      padding: 0px;
      padding-top: 10px;
  }
}

@media only screen and (max-width: 768px) {
  
  #partner-sec{
    margin-left: 280px;
    margin-right: 280px;
  }

  #partner-sec .partner{
      margin: 10px;
      width: 140px;
      height: 80px;
      margin-top: 30px;
  }

  #partner-sec .partner img{
      padding: 0px;
      padding-top: 10px;
  }
}

@media only screen and (max-width: 600px) {
 
   #partner-sec .partner{
       margin: 10px;
       width: 140px;
       height: 80px;
       margin-top: 30px;
   }
   #partner-sec{
    margin-left: 280px;
    margin-right: 280px;
  }

   #partner-sec .partner img{
       padding: 0px;
       padding-top: 10px;
   }
}
@media only screen and (max-width:479px){
  #partner-sec {
    overflow-x: hidden;
    overflow-y: hidden;
    margin-top: -80px
}
#partner-sec{
    margin-left: 280px;
    margin-right: 280px;
  }

}
@media only screen and (max-width: 320px) {
  
   #partner-sec .partner{
       margin: 10px;
       width: 140px;
       height: 80px;
       margin-top: 30px;
   }
   #partner-sec{
    margin-left: 280px;
    margin-right: 280px;
  }

   #partner-sec .partner img{
       padding: 0px;
       padding-top: 10px;
   }
  }

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: 15px;
line-height: 30px;
color: #4F4F4F;
margin-top: 20px;
letter-spacing: 1px;
}

.offer .container-fluid p{
font-style: normal;
font-weight: 600;
font-size: 12px;
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: 12px;
}

.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: 12px;
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: 12px;
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: 12px;
text-align: justify;
padding: 10px 30px 10px 20px;
}


/*============chatbot==================*/


#init{
align-items: center;
border-radius: 35px 7px 35px 35px;
box-shadow: 0 5px 4px 0 rgba(0,0,0,.26);
color: #fff;
cursor: pointer;
display: flex;
justify-content: center;
position: absolute;
right: 5px;
z-index: 9995;
height: 70px;
width: 70px;
margin-bottom: 40px;
} 

#test{
overflow: visible;
  border: 1px;
  border-color:black;
  display: flex;
  z-index: 9995;
}

.text{
    font-size: 18px;
    font-weight: 800;
    color: cadetblue;
    margin: 0;
}

.child{
    height: 30rem;
    width: 16rem;
    margin: auto;
    background: transparent;
    position: relative;
}

.chat-header{
    position: absolute;
    display: flex;
    align-items: center;
    background: white;
    width: 16rem;
    padding: 2px 0 2px 0;
    /*box-shadow: -0.25em -0.25em 0.25em rgba(0, 0, 0, 0.25), 0.25em -0.25em 0.25em rgba(0, 0, 0, 0.25);*/
    box-shadow: -10px -0px 10px rgba(0, 0, 0, 0.25);
    z-index: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px; 
    
}

.h-child{
    display: flex;
    padding: 1px 0 2px 15px;
    justify-content: space-between;
}

.chat-header span{
    font-size: 13px;
    margin: 0;
    padding: 0;
}

.chat-footer{
    position: absolute;
    bottom: 0;
    width: 16rem;
    background: white;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    /*color: indianred;*/
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
   /* box-shadow:0 0.25em   0.25em 0.25em rgba(0, 0, 0, 0.25);*/
   box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
}

#chat-box{
    position: relative;
    top: 62px;
    padding: 8px 10px;
    font-size: 12px;
    height: 17.7rem;
    overflow: auto;
    background: rgb(224,241,253);
    text-align: center;
    padding-top: 12px;
    background-color: #d1e8e2;
  /*box-shadow:0 0 0 0.25em rgba(0, 0, 0, 0.25);*/
  /*box-shadow:0.25em  0.25em 0 rgba(0, 0, 0, 0.25);*/ 
    box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
}

.msg{
    background: white;
    padding: 5px 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: max-content;
    font-size: 14px;
    color: lightslategrey;
    box-shadow: 0 0 5px rgb(226,226,226);
    max-width: 65%;
    text-align: left;
}

.test{
    margin: 20px 0;
}

.rep{
    background: rgb(253,243,224);
    color:  #d8a0ea ;
    padding: 5px 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    font-size: 14px;
    box-shadow: 0 0 5px rgb(211,211,211);
}

.input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input[type="text"] {
  padding: 10px;
  border-radius: 5px;
  width: 80%;
}

#send-btn {
  background-color: #4CAF50;
  color: #fff;
  margin-top:5px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 30%;
}

#send-btn:hover {
  background-color: #3e8e41;
}

.user-message {
  background-color:   #cba122;;
  border-radius: 5px;
  padding: 10px;
  color: white;
  margin-bottom: 10px;
  float: right;
  clear: both;
  border-radius: 10px 1px 10px 10px;
}

.chatbot-message {
  background-color: #4CAF50;
  border-radius: 1px 10px 10px 10px;
  border: 1px;
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  float: left;
  clear: both;
  border: none;
  
}

#closeBtn{
  cursor: pointer;
  font-weight:600; 
  position: relative;
  color: black;
  border: none;
  outline: none;
  top: 2%;
  background: none;
  font-size: 35px;
  left: 9.5rem;
  width: 20px; 
  height: 20px; 
  right: 1rem;
  margin-top: o;
  padding-top: 0; 
}

.chat-icon::before{
  background-color:#478D4B;
  border-radius: 2px 2px 2px 2px;
  border-top: 5px;
  content: "";
  height: 2px;
  left: 25px;
  position: absolute;
  top: 29px;
  width: 24%;
}

.chat-icon::after {
  background-color: #478D4B;
  border-radius: 2px 2px 2px 2px;
  border-top: 5px;
  content: "";
  height: 2px;
  left: 25px;
  position: absolute;
  top: 35px;
  width: 15%;
}

.chat-icon {
  border-radius: 6px 6px 6px 2px;
  background-color: white;
  height: 20px;
  background-color:#478D4B;
  position: fixed;
  right: 1.5rem;
  bottom: 7.7rem;
  width: 47%;
}	


/*=============end chat bot=====================*/
