*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}
p{
    margin: 0 !important;
}
body{
    overflow-x: hidden;
}
::-webkit-scrollbar{
    width: 8px;
    background-color: rgb(241, 241, 241);
}
::-webkit-scrollbar-track{
    width: 8px;
    border-radius: 0.2rem;
    background-color: rgb(241, 241, 241);
}
::-webkit-scrollbar-thumb{
    background-color: #2E3F6E;
    border-radius: 0.2rem;
}
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hero-section{
    width: 100%;
    display: flex;
    height: 100vh;
}
.main-background{
    width: 100%;
    height: 100vh;
    position: absolute;
}
.main-background img{
    width: 100%;
    height: 100%;
}
.background_dim{
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(
    to bottom,
    rgba(46, 63, 110, 0.01),
    rgb(0, 0, 0)
    );


}
/* #2E3F6E */
.hero-writeup{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: absolute;
    padding: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.logo{
    width: 300px;
    margin-bottom: 50px;
}
.logo img{
    width: 100%;
}
.hed{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.hero-headline-cont{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.hero-headline{
    font-size: 35px;
    font-weight: 600;
    color: white;
    line-height: 50px;
    text-align: center;
}
.hero-subheadline-cont{
    display: flex;
    width: 80%;
}
.hero-subheadline{
    font-size: 20px;
    color: white;
    text-align: center;
}
.hero-CTA-cont{
    display: flex;
    text-decoration: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.hero-CTA{
    font-size: 20px;
    background-color:#FF6B35;
    padding: 15px 30px;
    color: white;
    border: none;
    outline: none;
    transition: 1s;
    cursor: pointer;
}
.hero-CTA:hover{
    transform: scale(1.1);
}
/* .hero-partners-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.hero-patners{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
}
.hero-partner{
    width: 100%;
}
.hero-patners-2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
   
}
.hero-partner-2{
    width: 100%; */
/* } */
.hero-benefits{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7.5px;
}
.hero-benefit{
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 3px;
    border-right: 1px solid white;
    padding: 0 7.5px;
}
.hero-benefit:last-of-type{
    border-right: none;
}
.hero-benefit p{
    font-size: 18px;
    color: white;
}
.hero-benefit i{
    font-size: 18px;
    color: white;
}
.calculator-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    margin-top: 3%;
}
.calc{
    width: 92%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.calculator-section-header-cont{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.calculator-section-header{
    font-size: 35px;
    color: #2E3F6E;
    font-weight: 600;
}
.calculator-section-subheader{
    font-size: 18px;
    color: #5a5a5a;
}
.calculator-cont{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.selectors-cont{
    width: 100%;
    display: flex;
    gap: 2%;
}
.selectors{
    width: 49%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.selectors label{
    font-size: 15px;
    color: #5a5a5a;
}
.selector{
    width: 100%;
    background-color: #e5e9f3;
    padding: 15px;
    border: none;
    outline: none;
}
.selector:focus{
    box-shadow: 0 0 10px #99b1f1;
}
.calc-button-cont{
    width: 100%;
    display: flex;
    /* justify-content: center;
    align-items: center; */
}
.calc-button{
    font-size: 20px;
    background-color: #2E3F6E;
    padding: 15px 30px;
    color: white;
    border: none;
    outline: none;
    transition: 1s;
    cursor: pointer;
}
.calc-button:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}
.output-cont{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #c0cffa;
    border: none;
    /* justify-content: center;
    align-items: center; */
    padding: 30px 20px;
    gap: 10px;
    /* height: 200px; */
}
.calc-output-first-text,
.calc-output-second-text{
    font-size: 18px;
    color: #5a5a5a;
}
.calc-output{
    font-size: 40px;
    font-weight: 600;
    color: #2E3F6E;
}
.why-us-cont{
    margin-top: 7%;
    display: flex;
    padding: 20px 0px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.why-us-header-cont{
    display: flex;
    flex-direction: column;

}
.why-us-header{
    font-size: 35px;
    color: #2E3F6E;
    /* text-align: center; */
    font-weight: 600;
}
.mobile-wuh{
    display: none;
}
.why-us-subheader{
    font-size: 18px;
    color: #5a5a5a;
}
.why-us-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    padding: 20px;
}
.why-us-content-cont{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 55%;
}
.why-us{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    /* justify-content: center;
    align-items: center; */
    gap: 5px;
    border-bottom: 1px solid #c0cffa;
}
.why-us:last-of-type{
    border-bottom: none;
}
.why-us-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: fit-content;
    background-color: #2E3F6E;
}
.why-us-icon i{
    font-size: 35px;
    color: white;
}
.why-us-head p{
    font-size: 20px;
    color: #2E3F6E;
    font-weight: 600;
}
.why-us-writeup p{
    font-size: 15px;
    color: #5a5a5a;
    /* text-align: center; */
}
.testimonials-section{
    margin-top: 3%;
    display: flex;
    width: 100%;
    padding: 20px;
    flex-direction: column;
    gap: 30px;
}
.testimonial-header-cont{
    display: flex;
    width: 60%;
    flex-direction: column;
    gap: 10px;
    margin-left: 60px;
}
.testimonial-header{
    font-size: 35px;
    color: #2E3F6E;
    font-weight: 600;
}
.testimonial-subheader{
    font-size: 15px;
    color: #5a5a5a;
}
.testimonial-content{
    display: flex;
    width: 100%;
}
.testimonial-slides-content{
    display: flex;
    flex-direction: column;
    width: 92%;
    margin-left: 60px;
    gap: 30px;
    overflow-x: hidden;
}
.testimonial-slides-tracker{
    display: flex;
    gap: 20px;
    transition: 1s;
}
.testimonial-slide{
    display: flex;
    flex-direction: column;
    height: 350px;
    min-width: 600px;
    background-color: #e0e9ff;
    padding: 50px;
    gap: 30px;
}
.stars{
    display: flex;
    gap: 10px;
}
.star i{
    font-size: 20px;
    color: #2E3F6E;
}
.the-testimonial{
    width: 100%;
}
.the-testimonial p{
    font-size: 15px;
    text-align: justify;

}
.testimonial-customer-cont{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.testimonial-customer-name{
    font-size: 15px;
    font-weight: 600;
    color: #2E3F6E;
}
.testimonial-date-written{
    font-size: 13px;
}
.testimonials-extra-cont{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-extra{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.testimonials-overall-stars-cont{
    display: flex;
    align-items: center;
    gap: 10px;

}
.rating-words{
    font-size: 15px;
    font-weight: 600;
    color: #2E3F6E;
}
.overall-rating-writeup{
    font-size: 13px;
    color: #5a5a5a;
}
.testimonial-slide-button-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.testimonial-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #aec4fe;
    border-radius: 50%;
    cursor: pointer;
    background-color: white;
}
.testimonial-btn i{
    font-size: 30px;
    color: #2E3F6E;
}
.sales-section{
    margin-top: 3%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.sales{
    width: 92%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sales-header-cont{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sales-header{
    font-size: 35px;
    color: #2E3F6E;
    font-weight: 600;
}
.sales-subheader{
    font-size: 15px;
    color: #5a5a5a;
}
.sales-cont-e{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.sales-extras-btn-cont{
    display: flex;
    justify-content: right;
    align-items: center;
}
.sales-extras-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid #6d7ca5;
    background-color: white;
    font-size: 18px;
    gap: 7px;
    cursor: pointer;
}
.sales-extras-btn:hover #b{
    transform: scale(1.02);
}
.sales-extras-btn:hover #a{
    transform: translateX(12px);
}
.sales-extras-btn p{
    font-size: 18px;
    font-weight: 600;
    color: #2E3F6E;
    transition: 0.4s;
}
.sales-extras-btn i{
    font-size: 18px;
    font-weight: 600;
    color: #2E3F6E;
    transition: 0.4s;
}
.sales-cont{
    display: flex;
    width: 100%;
    gap: 2%;
}
.sales-card{
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    border: 1px solid #dedede;
    justify-content: center;
    align-items: center;
}
.sales-img-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    padding: 20px;
    overflow: hidden;
    background-color: #e6ecff;
}
.sales-img-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    /* height: 300px; */
    padding: 20px;
}
.sales-img{
    width: 100%;
    transition: 0.4s;
    /* height: 100%; */
}
.sales-img:hover{
    transform: scale(1.3);
}
.sales-writeup-cont{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}
.sales-item-name{
    font-size: 18px;
    font-weight: 600;
}
.sale-item-price-cont{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.sales-item-price{
    font-size: 15px;
    color: #2E3F6E;
    font-weight: 600;
}
.sales-item-former-price{
    font-size: 15px;
    text-decoration: line-through;
    color: #a0a0a0;
}
.tutorial-section{
    margin-top: 3%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.tutorial-container{
    width: 92%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.tutorial-header-cont{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}
.tutorial-header{
    font-size: 35px;
    color: #2E3F6E;
    font-weight: 600;
}
.tutorial-subheader{
    font-size: 15px;
    color: #5a5a5a;
}
.tutorial-cont{
    display: flex;
    width: 100%;
    gap: 2%;
}
.tutorial-card{
    display: flex;
    flex-direction: column;
    width: 32%;
    padding: 20px;
    gap: 20px;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}
.tutorial-card:hover{
    transform: translateY(-40px);
}
.tutorial-number{
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    background-color: #2E3F6E;
    border-radius: 50%;
}
.tutorial-number-two{
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 13px 27px;
    background-color: #2E3F6E;
    border-radius: 50%;
    transform: translateY(-20px);
}
.tutorial-number-three{
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 13px 27px;
    background-color: #2E3F6E;
    border-radius: 50%;
    transform: translateY(-40px);
}
.number-one{
    font-weight: 600;
    color: white;
    font-size: 30px;
}
.number-two{
    font-weight: 600;
    color: white;
    font-size: 33px;
}
.number-three{
    font-weight: 600;
    color: white;
    font-size: 36px;
}
.tutorial-writeup{
    width: 100%;
    padding: 20px;
    box-shadow: 0 5px 5px #dcdcdc;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tutorial-icon i{
    font-size: 50px;
    color: #2E3F6E;
}
.tutorial-card-header{
    font-size: 18px;
    font-weight: 600;
    color: #2E3F6E;
}
.tutorial-content{
    font-size: 15px;
    color: #5a5a5a;
}
.form-section{
    margin-top: 3%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.form-sect-cont{
    width: 92%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.form-header-cont{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}
.form-header{
    font-size: 35px;
    color: #2E3F6E;
    font-weight: 600;
}
.form-subheader{
    font-size: 18px;
    color: #5a5a5a;
}
.form-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
}
.form{
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 25px;
}
.small-inputs{
    display: flex;
    width: 100%;
    gap: 2%;
}
.small-input{
    display: flex;
    width: 49%;
    padding: 10px 20px;
    background-color: #e5e9f3;
    flex-direction: column;
    gap: 7px;
}
.form-label{
    font-size: 15px;
    color: #5a5a5a;
}
.form-small-input{
    border: none;
    outline: none;
    background-color: #e5e9f3;
    width: 100%;
    font-size: 15px;
}
.small-input:focus-within{
    box-shadow: 0 0 10px #99b1f1;
}
.long-inputs{
    display: flex;
    width: 100%;
}
.long-input{
    display: flex;
    width: 100%;
    padding: 10px 20px;
    background-color: #e5e9f3;
    flex-direction: column;
    gap: 7px;
}
.long-input:focus-within{
    box-shadow: 0 0 10px #99b1f1;
}
.form-long-input{
    border: none;
    outline: none;
    background-color: #e5e9f3;
    width: 100%;
    font-size: 15px;
}
.form-small-selects{
    border: none;
    outline: none;
    background-color: #e5e9f3;
    width: 100%;
    font-size: 15px;
}
.form-small-selects option{
    font-size: 15px!important;
    background-color: white;
}
.form-btn{
    background-color: #2E3F6E;
    color: white;
    font-size: 20px;
    padding: 20px 0;
    border: none;
    cursor: pointer;
}
.form-extra-things{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    width: 80%;
}
.book-call{
    font-size: 15px;
}
.form-trust{
    display: flex;
    align-items: center;
    gap: 5px;
}
.form-trust i{
    font-size: 20px;
    color: #2E3F6E;
}
.form-trust-write{
    font-size: 15px;
    color: #5a5a5a;
}
.faq-section{
    margin-top: 3%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.faq-container{
    width: 92%;
    display: flex;
    justify-content: space-between;
    gap: 2%;
    background-color:#e6ecff;
    padding: 40px;
}
.faq-header-cont{
    width: 39%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-header-icon i{
    font-size: 100px;
    color: #2E3F6E;
}
.faq-header{
    font-size: 35px;
    color: #2E3F6E;
    font-weight: 600;
}
.faq-content{
    width: 59%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faqs{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #94b0ff;
    gap: 25px;
}
.faqs:last-of-type{
    border-bottom: none;
}
.faq-head{
    font-size: 20px;
    font-weight: 600;
}
.faq{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faqed{
    font-size: 15px;
    color: #5a5a5a;
    text-align: justify;
}
.footer{
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    gap: 20px;
}
.footer-cont{
    width: 92%;
    display: flex;
    justify-content: space-between;
}
.footer-section{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-section-header{
    font-size: 18px;
    font-weight: 600;
    color: #2E3F6E;
}
.footer-section-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.div-comp-info{
    display: flex;
    gap: 15px;
}
.footer-logo{
    width: 250px;
}
.comp-info-icon i{
    font-size: 30px;
}
.company-info-text-cont{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.company-info-texts{
    font-size: 15px;
    font-weight: 600;
    padding: 0 !important;
    margin: 0 !important;
}
.company-info-text{
    font-size: 15px;
    color: #5a5a5a;
    padding: 0 !important;
    margin: 0 !important;
}
.quick-link{
    color: #5a5a5a;
    font-size: 15px;
    text-decoration: none;
}
.unn-line{
    width: 1px;
    height: 35px;
    background-color: #97aff0;
}
.social-logos{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pave{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px !important;
}
.social-links i{
    font-size: 25px;
    color: #2E3F6E;
}
.footer-extra-cont{
    display: flex;
    flex-direction: column;
    width: 92%;
    background-color:#e6ecff;
    padding: 20px;
    justify-content: center;
    align-items: center!important;
    gap: 10px;
}
.bell-rights{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.bell-logo{
    width: 30px;
}
.bell-logo img{
    width: 100%;
}
.bell-right{
    color: #2E3F6E;
    font-size: 15px;
    font-weight: 600;
}
.copy-rights{
    display: flex;
}
.copy-right{
    font-size: 15px;
    color: #5a5a5a;
}
.message-cont{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}
.message{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
#go-ahead{
  font-family: 'Material Symbols Outlined'; /* or Rounded / Sharp */
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    color: green;
    font-size: 200px;
}
#cancel{
  font-family: 'Material Symbols Outlined'; /* or Rounded / Sharp */
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    color: red;
    font-size: 200px;
}
.message-text-cont{
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.message-text{
    font-size: 25px;
}
.message-links{
    font-size: 20px;
}
@media screen and (max-width: 768px) {
    .hero-section,
    .main-background,
    .background_dim,
    .hero-writeup{
        height: 75vh;
    }
    .hero-writeup{
        padding: 10px;
    }
    .hero-subheadline-cont{
        width: 100%;
    }
    .hero-subheadline{
        font-size: 15px;
    }
    .hero-headline{
        line-height: 30px;
    }
    .hero-CTA{
        font-size: 15px;
    }
    .hero-benefit p{
        font-size: 13px;
    }
    .hero-benefits{
        gap: 3px;
    }
    .hero-benefit{
        padding: 0 4px;
    }
    .why-us-cont{
        padding: 15px;
        height: fit-content;
    }
    .why-us-header{
        display: none;
        font-size: 25px;
    }
    .mobile-wuh{
        display: flex;
    }
    .why-us-header-cont{
        padding: 10px;
    }
    .why-us-img-cont{
        display: none;
    }
    .why-us-content{
        width: 100%;
    }
    .why-us-content-cont{
        width: 100%;
    }
    .testimonials-section{
        padding: 25px;
        height: fit-content;
    }
    .testimonial-content{
        width: 100%;
    }
    .testimonial-header-cont{
        width: 100%;
        margin-left: 0;
    }
    .testimonial-header{
        font-size: 25px;
    }
    .testimonial-slides-content{
        margin: 0;
        width: 100%;
    }
    .testimonial-slides-tracker{
        width: 100%!important;
    }
    .testimonial-slide{
        min-width: 100%;
        padding: 20px;
    }
    .the-testimonial{
        height: fit-content;
        width: 100%;
    }
    .the-testimonial p{
        font-size: 13px;
        text-align: left;
        text-wrap: wrap!important;
        height: fit-content;
    
    }
    .testimonials-overall-stars-cont{
        flex-direction: column;
        justify-content: left;
        align-items: flex-start;
    }
    .calculator-section{
        padding: 25px;
        margin-top: 6%;
        height: fit-content;
    }
    .calc{
        width: 100%;
    }
    .calculator-section-header{
        font-size: 25px;
    }
    .calculator-cont{
        width: 100%;
    }
    .selectors-cont{
        gap: 6%;
    }
    .selectors{
        width: 47%;
    }
    .selector{
        padding: 8px;
        font-size: 13px;
    }
    .selector option{
        font-size: 13px;
    }
    .selectors label{
        font-size: 13px;
    }
    .calc-button{
        width: 100%;
    }
    .sales-section{
        padding: 18px;
        margin-top: 6%;
        height: fit-content;
    }
    .sales{
        width: 100%;
    }
    .sales-header{
        font-size: 25px;
    }
    .sales-extras-btn-cont{
        display: none;
    }
    .sales-cont{
        flex-direction: column;
    }
    .sales-card{
        width: 97%;
    }
    .tutorial-section{
        padding: 15px;
        margin-top: 6%;
        height: fit-content;
    }
    .tutorial-container{
        width: 100%;
    }
    .tutorial-header{
        font-size: 25px;
    }
    .tutorial-cont{
        flex-direction: column;
        gap: 70px;
    }
    .tutorial-card{
        width: 100%;
        padding: 5px;
    }
    .form-section{
        padding: 10px;
        margin-top: 6%;
        height: fit-content;
    }
    .form-sect-cont{
        width: 100%;
    }
    .form-header{
        font-size: 25px;
    }
    .form{
        width: 100%;
    }
    .form-label{
        font-size: 12px;
        color: black;
    }
    .form-small-selects{
        font-size: 12px;
    }
    .form-small-selects option{
        font-size: 12px;
    }
    .small-input{
        padding: 5px;
        gap: 3px;
    }
    .long-input{
        padding: 5px;
        gap: 3px;
    }
    .form-long-input{
        font-size: 12px;
    }
    .form-small-input{
        font-size: 12px;
    }
    .faq-section{
        padding: 0;
        height: fit-content;
    }
    .faq-container{
        width: 100%;
        padding: 10px;
        flex-direction: column;
        gap: 40px;
    }
    .faq-header-cont{
        width: 100%;
    }
    .faq-header-icon i{
        font-size: 75px;
    }
    .faq-header{
        font-size: 25px;
    }
    .faq-content{
        width: 100%;
    }
    .footer{
        padding: 0;
        height: fit-content;
    }
    .footer-cont{
        width: 100%;
        padding: 10px;
        flex-direction: column;
        gap: 40px;
    }
    .pave{
        flex-direction: row;
        justify-content: left;
    }
    .social-logos{
        flex-direction: row;
    }
    .unn-line{
    width: 35px;
    height: 1px;
    }
    .footer-extra-cont{
        width: 100%;
    }
    .bell-logo{
        width: 60px;
    }
    .bell-right{
        font-size: 13px;
    }
    .copy-right{
        text-align: center;
    }
}
