@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@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=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    /* 1rem = 10px */
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body,html{
    width: 100%;
    height: 100%;
}
body{
    font-size: 1.6rem;
}
:root{
    --mont-font: "Montserrat", sans-serif;
    --alt-font: "Montserrat Alternates", sans-serif;
    --sans-font: "Sofia Sans", sans-serif;
    --mono-font: "Monoton", sans-serif;
      --white: rgba(255, 255, 255, 1);  
    --secondary: rgba(7, 28, 90, 1);
    --secondary-blue: rgb(24, 46, 110);
    --tertiary-blue: rgb(51, 68, 121);
    --f-w-500 :  500;
    --f-w-700 :  700;
}


::-webkit-scrollbar {
  width: 12px; 
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(7, 28, 90, 1);
  border-radius: 10px;
  border: 2px solid rgba(7, 28, 90, 1); 
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tertiary-blue); 
}
/* <!-- == header == --> */
header{
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
header::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(assets/page1-img.png);
  background-position: center;
  background-size: cover;
  object-fit: cover;
  z-index: -1;

}
.clouds{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.nav-blur-class{
    backdrop-filter: blur(40px);
}
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 5%;
    padding-right: 5%;
    width: 100vw;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
   z-index: 99;
}
.logo{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#logo-img{
width: 4rem;
height: auto;
}
.logo p{
  font-family: var(--mono-font);
  font-size: clamp(2.2rem,3vw,2.4rem);
  font-weight: 400;
  color: rgba(157, 110, 54, 1);
  font-size: 2rem;
  white-space: nowrap;

}

.nav-btn .btn-3,
.nav-btn .btn-2{
    display: none;
}
.models{
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp{
  width: fit-content;
    padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 22px;
  margin-left: 1rem;

}
.whatsapp i{
  font-size: 2rem;
  color: var(--white);
}
  .description{
    
    position: relative;
    display: block;
    z-index: 3;
    color: var(--white);
  }
  .btn{
       position: relative;
    cursor: pointer;
    width: fit-content;
    padding: 1.5rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 1.5rem;
    transition: all 0.4s;
    overflow: hidden;
  }
  .nav-btn { 
    border: none;
    background: var(--secondary);
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--mont-font);
    font-weight: var(--f-w-500);
  } 
  .btn:hover{
    scale: 0.9;
  }

    .nav-btn {
      
      &:before, &:after {
        content: '';
        position: absolute;
        height: 1px;
        width: 1px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        border-radius: 50%;
      }
        
      &:before {
  
        background: var(--secondary-blue);
        transition: 0.6s ease-in;
        transition-delay: .1s;
      }
  
      &:after {
  
        background: var(--tertiary-blue);
        transition: 0.8s ease;
        transition-delay: .4s;
      }
  
      &:hover {
  
        &:before, &:after {
  
          transform: translate(-50%, -50%) scale(310);
        }
      }
    }  
    .page2 .btn:hover{
      border: none;
    }
    .show-less-btn:hover,
    .show-more-btn:hover,
  .input-send-box .btn:hover p,
    .page .btn:hover a{
      color: var(--white);
    }
    .input-send-box .btn p,
    .page .btn a{
      position: relative;
      z-index: 2;
    }
    .page .btn {
      
      &:before, &:after {
        content: '';
        position: absolute;
        height: 1px;
        width: 1px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        border-radius: 50%;
        z-index: 1;
      }
        
      &:before {
  
        background: var(--secondary-blue);
        transition: 0.4s ease-in;

      }
  
      &:after {
  
        background: var(--tertiary-blue);
        transition: 0.8s ease;
        transition-delay: .2s;
      }
  
      &:hover {
  
        &:before, &:after {
          transform: translate(-50%, -50%) scale(310);
        }
      }
    }  
    .form .btn{
      
      &:before, &:after {
        content: '';
        position: absolute;
        height: 1px;
        width: 1px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        border-radius: 50%;
        z-index: 1;
      }
        
      &:before {
  
        background: var(--secondary-blue);
        transition: 0.4s ease-in;

      }
  
      &:after {
  
        background: var(--tertiary-blue);
        transition: 0.8s ease;
        transition-delay: .2s;
      }
  
      &:hover {
  
        &:before, &:after {
          transform: translate(-50%, -50%) scale(700);
        }
      }
    }  
   
 /* <!-- == page1 == --> */
   .page{
    width: 100%;
    padding-top: 10rem;
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
   }


   .page1{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    min-height: 100vh;

   }
   .page1 h1{
    font-family: var(--alt-font);
    font-size: clamp(3rem,3vw,4.5rem);
    font-weight: var(--f-w-700);
   text-transform: uppercase;
   margin-bottom: 2rem;
   }
   .page1 h1 span{
    color: rgba(7, 28, 90, 1);

   }
   .page1 p{
    font-family: var(--mont-font);
   font-size: clamp(1.7rem,2vw,1.9rem);
  font-weight: 500;
  margin-bottom: 2rem;

   }

   .page1 .btn{
    margin: auto;
    text-transform: capitalize;
    font-family: var(--mont-font);
    font-weight: 600;
    transition: all 0.4s;
    border: 2px solid var(--white);
    background: var(--white);
   }
   .page1 .btn a{
    color: #000; 
   }

  
   .page1 .btn:hover{
    border: 2px solid rgba(7, 28, 90, 1);
   }
 /* <!-- == page2 == --> */
.page2{
    position: relative;
   }
   .page2-content{
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
   }
   .page2-content::before{
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    right: 0;
    width: 100%;
    height: 60%;
    background: url(assets/aboutimg.png);
    z-index: -2;
    background-position: center;
    background-size: cover; 
    background-repeat: no-repeat;
  

   }
   .page2-content::after {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    right: 0;
    width: 100%;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.562);
    z-index: -1; 
}
   .page .heading{
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 3rem;
   }
   .heading{
    font-family: var(--alt-font);
    font-size: clamp(2.5rem,3vw,3rem);
    font-weight: 500;
   text-align: left;
   text-transform: uppercase;

   }
   .box-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    width: 100%;
   }
   .box{
    border: 0.86px solid rgba(220, 220, 220, 1);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(254, 254, 254, 1); 
    transition: all 0.4s;
    cursor: pointer;

   }

   .box-header{
    width: 100%;
    height: 7rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;

   }
   .box-header img{
    width: 4rem;
    height: auto;
    margin-left: 2px;
   }
   .box-header-1{
    background: linear-gradient(90deg, #632F3C 0%, #C95F7A 100%);
   }
   .box-header-2{
    background: linear-gradient(90deg, #3A6A99 0%, #61B0FF 100%);
   }
   .box-header-3{
    background: linear-gradient(90deg, #6E3127 0%, #D45F4C 100%);
   }
   .box-header-4{
    background: linear-gradient(90deg, #2A1E4E 0%, #6246B4 100%);
   }
   .box-header-5{
    background: linear-gradient(90deg, #2D1333 0%, #863A99 100%);
   }
   .box-header-6{
    background: linear-gradient(90deg, #CD8A18 0%, #FDB946 100%);
   }
   .box-content h3{
    font-family: var(--alt-font);
    font-size: clamp(1.9rem,3vw,1.8rem);
    font-weight: 600;
    text-transform: uppercase;
   }
   .box p{
    font-family: var(--mont-font);
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 2rem;

   }
   .box-content{
    padding: 2rem;

   }
   .box-content i{
    font-size: clamp(1.6rem,1vw,1.8rem);
    color: rgba(7, 28, 90, 1);
    margin-left: 1rem;
   }
   .box-content a{
    font-family: var(--mont-font);
    font-size: clamp(1.6rem,1vw,1.8rem);
    font-weight: 500;
    color: rgba(7, 28, 90, 1);
    padding: 1.2rem;
    border-radius: 30px;
    transition: all 0.4s;
    position: relative;



   }
   .box-content a:hover{
    background: var(--secondary-blue);
    color: var(--white);

   }
   .box-content a:hover i{
    color: var(--white);
   }
   .page2-btn{
    width: 12rem;
    height: 5rem;
    background: rgba(254, 254, 254, 1);
    border: 0.59px solid rgba(220, 220, 220, 1);
    border-radius: 27.24px;
    cursor: pointer;
    transition: all 0.4s;

   }
   .page2-btn:hover{
    scale: 0.9;
   }
   .page2-btn a{
    font-family: var(--alt-font);
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);


   }

   .page2-btn-1{
    position: absolute;
    top: 17%;
    right: 5%;
   }
   .page2-btn-2{
    position: absolute;
    bottom: 17%;
    right: 5%;
   }
   .page2-btn-3{
    display: none;
   }
  
 /* <!-- == page3 == --> */
   .combine-page{
    overflow-x: hidden;
   }
   .page3{
    position: relative;
    z-index: 15;

   }
   .page3::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(assets/page3-bg-img.png);
    background-position: center;
    background-size: cover;
    z-index: -1; 
}
   .page3-content{
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;

   }
   .vector-blue{
    position: absolute;
    top: 20%;
    left: 0;
    width: 5rem;
    z-index: 4;
   }
   .vector-gold{
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 2rem;
    z-index: 4;
   }
   .page3 .heading span{
    color: rgba(59, 89, 165, 1);

   }
   .page3-container-1{
    width: 60%;
    position: relative;
   }
   .page3-container-2{
    width: fit-content;
    position: relative;
    z-index: -1;
    height: 50rem;
    width: 100%;
    max-width: 40rem;
   }
   .page3-container-2 .pc{
    position: relative;
    width: 100%;
    z-index: 5;
   }
   .page3-container-2 .client{
    position: absolute;
    right: -10vmin;
    bottom: 4vmin;
    width: 30rem;
    z-index: 6;

   }
   .page3-container-1 p{
    font-family: var(--mont-font);
   font-weight: 400;
   }
   .services-text{
    padding: 2rem 2rem;
    box-shadow: 0px 0px 20.6px 0px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(238, 238, 238, 1);
    border-radius: 21px;



   }
   .services-text h3{
    font-family: var(--alt-font);
    font-size: clamp(1.6rem,2vw,1.8rem);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;


   }
   
   .services-text p{
    margin-bottom: 4px;
   }
   .services-text p span{
    font-weight: 600;

   }
   .dash span{
    font-weight: 600;
    font-family: var(--mont-font);

   }
   .services-text .para {
    margin-top: 2rem;
   }
   .dash{
    font-family: var(--mont-font);
   }
   .page3-container-1 li{
    margin-left: 5px;
   }
   .page3-container-1 .popup-q {
    font-family: var(--mont-font);
    font-weight: 400;
    padding: 1rem 2rem;
    border-radius: 21px;
    margin: 1rem 0;
    transition: all 0.4s;
    border: 1px solid transparent;
    cursor: pointer;
    width: auto;
    font-size: 1.7rem;
    transition: all 0.4s;

   
   }
   .dash{
    margin: 0;
    padding: 0;
   }
   .page3-container-1 .popup-q:hover{
    scale: 1.009;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(213, 213, 213, 0.82) 100%);
    box-shadow: 0px 0px 20.6px 0px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(238, 238, 238, 1);
   }
.popup-q.active {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(213, 213, 213, 0.82) 100%);
    box-shadow: 0px 0px 20.6px 0px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(238, 238, 238, 1);
}
   .page3-container-1{
    display: grid;
    grid-template-columns: repeat(2,1fr);
   }
   .page3-container-1 ul{
    display: flex;
    list-style: none;
   }
   .services-text{
    height: fit-content;
    display: none;
   }

.services-text.active {
    display: block; 
}
.services-text .ri-close-fill{
    float: right;
    cursor: pointer;
    font-size: 2rem;
}


.popup-q {
    position: relative; 
    z-index: 5; 
    width: fit-content;
}
.popup-answer {
    display: none;
    position: absolute;
    top: 18%;
    left: 52%;
    backdrop-filter: blur(20px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(213, 213, 213, 0.82) 100%);
    box-shadow: 0px 0px 20.6px 0px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(238, 238, 238, 1);
    padding: 1rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-right: 2rem;
    z-index: 30;
}


.popup-answer.active {
    display: block;
}
 /* <!-- == page4 == --> */
.page4{
    background: var(--Color-Theme, rgba(7, 28, 90, 1));
    padding-left: 5%;
    padding-right: 5%;
    position: relative;


}
.page4-content{
    display: flex;
    position: relative;
    width: 100%;
    min-height: 100vh;
    border-radius: 20px;
    overflow: hidden;
    padding: 4rem 8rem;
    border-radius: 40px;

 

   }
   .page4 h2{
   color: rgba(255, 255, 255, 1);

   }
   .page4-content::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(assets/page4-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1; 

   }
   .card{
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 20px;
    width: 30rem;
    min-height: 30rem;
    margin: auto;

    
  
   }

   .card img{
    width: 100%;
      transition: all 0.4s;
   }
   .card img:hover{
    scale:1.1;
}
   .card p{
    font-family: var(--alt-font);
    font-size: clamp(16px,1vw,2.4rem);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 2rem;
    margin-left: 5px ;
    margin-right: 5px;
    text-align: center;

   }
   .card-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3rem;
    width: 100%;
   }
  /* <!-- == page5 == --> */
   .page5{
        padding-left: 5%;
    padding-right: 5%;

   }
   .page5-content{
    display: flex;
    justify-content: space-between;
    gap: 8rem;

   }
   .page5-container1{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
   }
   .page5-container2{
   width: 60rem;
    height: 48rem;
    border-radius: 20px;
    overflow: hidden;
   }
   .page5-container2 img{
    width: 100%;
    height: 100%;
    transition: all 0.4s;
   }
   .page5-container2 img:hover {
    scale:1.1;
   }
   .question{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    width: 100%;
    background: rgba(62, 62, 62, 0.06);
    padding: 2rem;
    border-radius: 26px;
    cursor: pointer;

   }
   .question i{
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.4s;
   }
   .answer{
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 0;
    height: 0;
    overflow: hidden; 
    padding: 0 2rem; 
    margin-top: 1rem;
  transition: all 0.6s ease; 


   }
   .faq p{
    font-family: var(--mont-font);
    font-weight: 400;

   }

.answer.show-answer {
    height: auto;
    opacity: 1;

}

.ri-arrow-down-s-line.rotate-arrow {
    transform: rotate(180deg); 
}
.answer ul{
  list-style: circle;
}
.answer p{
  margin-top: 1rem;
}
.faq:nth-child(n+6) {
  display: none; 
}
.page5 .btn a{
  color: black;

}
.page5 .btn {
margin: auto;

}
.show-more-btn,
.show-less-btn{
  width: 16rem;
  min-height: 4.3rem;
  border: 1px solid transparent;

}
.show-more-btn span,
.show-less-btn span{
  position: relative;
  z-index: 5;
} 


 /* <!-- == linked page == --> */
.box-page{
  width: 100%;
  display: flex;
  justify-content: center;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: rgba(249, 249, 249, 1);

  
}
.box-heading{
  font-family: var(--alt-font);
font-size: clamp(2.5rem,3vw,3rem);
 font-weight: var(--f-w-700);
margin-bottom: 1rem;


}
.box1-page-content{
  display: flex;
  gap: 5rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 5%;
  padding-right: 5%;
}
.box-page p{
  font-family: var(--mont-font);
font-weight: 500;
margin-bottom: 2rem;
width: 80%;


}
.box-img img{
  width: 100%;
  height: 100%;
}
.box-img{
  width: 100%;
  max-width: 35rem;
  position: relative;
  z-index: 10;
}
.box-page h5{
  font-family: var(--mont-font);
  font-size: clamp(1.8rem,2vw,2.2rem);
font-weight: 500;
margin-bottom: 3rem;


}
.linked-page{
  min-height: 60vh;
}
.box1-page-content  div:first-of-type{
  width: fit-content;
}
 /* <!-- == loader == --> */

.loader-cont{
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height:100vh;
  width: 100vw;
  color: var(--secondary-blue);
  background-color: #fff;
}
.loader {
  color: var(--secondary-blue);
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 3rem;
  clip-path: inset(0 100% 0 0);
  animation: l5 2s steps(11) infinite;
}
.loader:before {
  content:"Loading..."
}
@keyframes l5 {to{clip-path: inset(0 -1ch 0 0)}}

/* <!-- == footer == --> */
.footer{
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: rgba(248, 248, 248, 0.76);


}
.footer img{
width: 2.2rem;
height: auto;
}
.footer-content{
  display: flex;
  justify-content: space-between;
  gap: 5%;


}
.footer p{
  font-family: var(--mont-font);
font-weight: 500;
margin: 1rem 0;
font-size: 1.8rem;
 
}
.column h3{
  text-transform: uppercase;
  font-family: var(--alt-font);
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
}
.column a{
  list-style: none;
  font-family: var(--mont-font);
font-weight: 400;
text-transform: capitalize;
display: flex;
flex-direction: column;


}
.column1 a{
color: rgba(0, 0, 0, 1);
margin-top: 1.3rem;


}
.column1 a:hover{
  color: var(--secondary);
}

.column li{
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.3rem;
}
.right-footer-side{
  display: flex;
  gap: 3rem;
  white-space: nowrap;
}

.footer-bottom{
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer-bottom p{
  font-family: var(--sans-font);
  font-weight: 400;
  letter-spacing: 1.2999999523162842px;

  
}
/* form */

.form {
  position: fixed; 
  z-index: 112;
  left: 0;
  top: 0;
  background: rgba(62, 62, 62, 0.06);
  color: hsla(0, 0%, 100%, 1);
  min-height: 100vh;
  width: 100%;
  font-family: var(--mont-font);
  backdrop-filter: blur(15px);
  overflow: hidden; 
  display: none;
  opacity: 0;
  transform: scale(0.5) ;
  transition: all 0.5s;
  
}
.show-form {
  display: block;
  transform: scale(1) ;
  opacity: 1; 

}
.form-container {
  scrollbar-width: none; 
  max-height: 100vh; 
  overflow-y: auto; 
  margin: 2rem auto;
  padding: 2rem;

  
}
.form-container::-webkit-scrollbar {
  display: none;
}



form .close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  margin: 1rem auto;
  cursor: pointer;
  color: #000;
  width: fit-content;

}

  
  .form-container h2{
  text-align: center;
  color: #000;
  
  }

  .form-info{
      max-width: 70rem;
      margin: 1rem auto ;
      background: var(--secondary);
      border-radius: 20px;
      padding: 2rem 2rem;
  
  }
  .input-main{
    display: flex;
  
   }

  .input-box{
  display: flex;
  flex-direction: column;
  font-family: var(--sans-font);
  font-weight: 500;
  text-align: left;
  padding: 0.5rem 1rem;
  flex-grow: 1; 
  width: 100%;
 
  
  }
  .input-box span{
      padding: 0.5rem 1.4rem;
      font-family: var(--alt-font);
      font-size: clamp(1.6rem,1vw,1.8rem);
      font-weight: 600;
      text-transform: uppercase;

  }

  .input-box textarea,
  .input-box input{
    border: none; 
    font-family: var(--mont-font);
  border-radius: 20px;
  padding: 1.2rem 1rem;
  outline: none;
  }
  .input-send-box{
    border: 1px solid transparent;
  }
  .input-send-box button{
    width: 100%;
    border: none;

  }
  .input-send-box p{
        font-family: var(--mont-font);
  }

  .input-box textarea::placeholder,
  .input-box input::placeholder{
      color: #000;
  
  }


  .form-loader{
    pointer-events: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #000;
    animation: form-loader 1s ease infinite;
    position: relative;
    z-index: 20;
  
}
@keyframes form-loader{
    0%{
        transform: rotate(0turn);
    }
    100%{
        transform: rotate(1turn);
    }
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    
}