/*------------------------------------------------------------------
Project:  Fastservice
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Nunito:wght@300;400&display=swap');

:root {
    --e-global-color-primary: #150d45;
    --e-global-color-secondary: #fe7b53;
    --e-global-color-text: #4f4975;
    --e-global-color-accent: #50e3ae;
    --e-global-color-white: #ffffff;
    --e-global-color-bright-blue: #274df8;
    --e-global-color-Moderate-violet: #6639bd;
    --e-global-color-Very-dark-gray: #555555;
    --e-global-color-Light-grayish-red: #fceeed;
    --e-global-color-Light-grayish-blue: #e9f1fd;
    --e-global-color-Light-grayish-cyan:#e2faf7;
    --e-global-color-Very-pale-mostly-white-blue:#f2efff;
    --e-global-color-Very-pale-blue:#e4f6ff;
    --e-global-color-Strong-cyan:#2096bc;
    --e-global-color-Very-pale-mostly-white-magenta:#ffeefd;
    --e-global-color-Very-pale-mostly-white-yellow:#fffae8;
    --e-global-color-green-level-01: #c4e0c9;
    --e-global-color-green-level-02: #b4dcb8;
    --e-global-color-green-level-03: #8ecd9a;
    --e-global-color-green-level-04: #79c78d;
    --e-global-color-green-level-05: #308944;
    --e-global-color-green-level-06: #287a37;
    --e-global-color-green-level-07: #1e502a;
    --e-global-color-green-level-08: #1a3d1c;
}

html {
    scroll-behavior: smooth;
  }

body{
    font-family: 'Jost', sans-serif;
}

.h1, h1 {
    font-size: 57px;
    line-height: 65px;
    font-weight: 600;
    color: var(--e-global-color-white);
}
.h2, h2 {
    font-size: 45px;
    line-height: 53px;
    font-weight: 600;
    color: var(--e-global-color-primary);
}
.h3, h3{
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
    color: var(--e-global-color-primary);
}
.h4, h4 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    color: var(--e-global-color-secondary);
}
.h5, h5 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 400;
    color: var(--e-global-color-primary);
}
.h6, h6 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--e-global-color-primary);
}
p {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    color: var(--e-global-color-text);
}
.text-size-18 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

/* Home Page Style */

.banner_outer{
    background: url("../images/banner-background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 125px 125px;
    position: relative;
}

/* NAV */

.navbar-collapse ul{
    align-items: center; 
    display: inherit; 
}
.navbar-nav .nav-item a{
    font-size: 18px;
    line-height: 18px;
    font-weight: 400; 
    color: var(--e-global-color-white) !important;
}
.navbar-nav .nav-item a:hover{
    color: var(--e-global-color-accent) !important;
    background-color: transparent;
}
.navbar-nav .active > a{
    color: var(--e-global-color-accent) !important;
}
.navbar-nav .nav-item .try_free_btn{
    font-weight: 500;
    padding: 18px 32px; 
    text-align: center;
    display: inline-block;
    border-radius: 5px; 
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.navbar-nav .active > .try_free_btn{
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-white) !important;
}
.navbar-nav .nav-item .try_free_btn:hover{
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-white) !important;
}
.navbar-brand{
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand.brand-unsticky {
    display: block;
}

.navbar-brand.brand-sticky {
    display: none;
}

.sticky .navbar-brand.brand-unsticky {
    display: none;
}

.sticky .navbar-brand.brand-sticky {
    display: block;
}

.navbar{
    position: fixed;
    padding: 42px 0;
    z-index: 3;
}
.navbar-nav li{
    margin: 0 16px;
}
.navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-nav li:last-child{
    margin-right: 0;
    padding-right: 0;
    margin-left: 31px;
}

/*BANNER */

.banner-section{
    position: relative;
    padding: 245px 0 292px;
}
.banner_outer .bannersidelayer{
    position: absolute;
    top: 0;
    left: 0;
}
.banner-section .bannersidecircle1 {
    position: absolute;
    top: 225px;
    left: 45px;
}
.banner-section .bannersidecircle2 {
    position: absolute;
    top: 390px;
    left: 0;
}
.banner-section .banner_content{
    padding-top: 90px;
}
.banner-section .banner_content h1{
    margin-bottom: 28px;
}
.banner-section .banner_content h3{
    margin-bottom: 5px;
}
.banner-section .banner_content p{
    font-weight: 300;
    margin-bottom: 42px;
    font-size: 22px;
}
.banner-section .banner_content span{
    font-family: 'Nunito', sans-serif;
    color: var(--e-global-color-white);
    font-size: 18px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    display: block;
}
.banner-section .banner_content .image_wrapper{
    display: inline-flex;
} 
.banner-section .banner_content .image_apple{
    margin-right: 12px;
}
.banner-section .banner_wrapper2{
    position: relative;
}
.banner-section .banner_wrapper2 .bannerphoneback{
    position: absolute;
    top: -36px;
    right: -79px;
}
.banner-section .banner_wrapper2 .bannerphone2 {
    position: absolute;
    top: 26px;
    left: 44px;
}
.banner-section .banner_wrapper2 .bannerphone-circleicon{
    position: absolute;
    top: -26px;
    right: 149px;
}
.banner-section .banner_wrapper2 .bannerphone-circle{
    position: absolute;
    top: 68px;
    right: 122px;
}
.banner-section .banner_wrapper2 .bannerphone1{
    position: absolute;
    top: -28px;
    right: -181px;
}

/* PARTNER */

.partner-section .partner_box {
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 100%;
    margin-top: -80px;
    padding: 62px 50px 62px 86px;
    background-color: var(--e-global-color-white);
    z-index: 1;
    position: relative;
}
.partner-section .partner_box li{
    display: inline-block;
    margin-right: 36px;
}
.partner-section .partner_box li:first-child{
    margin-left: 0;
}
.partner-section .partner_box li:last-child{
    margin-right: 0;
}
.partner-section .partner_box .partner1{
    filter: grayscale(100%);
}
.partner-section .partner_box .partner1:hover{
    filter: none;
}

/* ABOUT */

.aboutus-section {
    padding: 106px 0 102px;
}
.aboutus-section .aboutus_text{
    padding: 48px 0 0;
}

/* FEATURED */

.basic-feature{
    padding-bottom: 69px;
}
.basic-feature .feature_wrapperleft{
    position: relative;
}
.basic-feature .feature-circle{
    position: absolute;
    left: 2px;
    top: 98px;
}
.basic-feature .featurephoneback{
    position: absolute;
    left: -30px;
    top: 88px;
}
.basic-feature .featurephoneback img{
    width: 574px;
}
.basic-feature .featurephone{
    position: absolute;
    left: 112px;
    top: 4px;
}
.basic-feature .featurephone-over {
    position: absolute;
    right: -30px;
    top: 296px;
}
.basic-feature .feature_wrapperright {
    padding-left: 42px;
}
.basic-feature .feature_content h2{
    margin-bottom: 35px;
}
.basic-feature .feature_lowercontent{
    padding-left: 2px;
}
.basic-feature .feature_lowercontent h6{
    margin-bottom: 5px;
}
.basic-feature .feature-design{
    padding-left: 13px;
}
.basic-feature .feature-box{
    margin-bottom: 47px;
}
.basic-feature .feature-box figure{
    background: var(--e-global-color-Light-grayish-red);
    border-radius: 100px;
    height: 85px;
    width: 85px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.basic-feature .feature-box figure:hover{
    transform: translateY(-10px);
}
.basic-feature .feature-box .feature-box-2 {
    background: var(--e-global-color-Light-grayish-cyan);
}
.basic-feature .feature-box .feature-box-3 {
    background: var(--e-global-color-Very-pale-mostly-white-blue);
}
.basic-feature .feature-box .feature-box-4 {
    background: var(--e-global-color-Very-pale-blue);
}

.basic-feature .feature-box figure{
    border-radius: 100px;
    height: 85px;
    width: 85px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.basic-feature .feature-box figure.green-1{
    background: var(--e-global-color-green-level-01);
}
.basic-feature .feature-box figure.green-2{
    background: var(--e-global-color-green-level-02);
}
.basic-feature .feature-box figure.green-3{
    background: var(--e-global-color-green-level-03);
}
.basic-feature .feature-box figure.green-4{
    background: var(--e-global-color-green-level-04);
}
.basic-feature .feature-box figure.green-5{
    background: var(--e-global-color-green-level-05);
}
.basic-feature .feature-box figure.green-6{
    background: var(--e-global-color-green-level-06);
}
.basic-feature .feature-box figure.green-7{
    background: var(--e-global-color-green-level-07);
}
.basic-feature .feature-box figure.green-8{
    background: var(--e-global-color-green-level-08);
}


.manage_content{
    padding-left: 88px;
}

/* PRICE */

.price-section{
    background-image: url("../images/price-background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 109px 0;
    overflow: hidden;
}
.price-section .price-circle{
    position: absolute;
    top: -290px;
    right: -114px;
}
.price_heading{
    text-align: center;
}
.price-section .price_heading h4{
    margin-bottom: 6px;
}
.price-section .price_heading h2{
    margin-bottom: 38px;
}
.price-section .price-block{
    position: relative;
}
.price-block .price-sidecircle{
    position: absolute;
    right: -60px;
    top: -52px;
}
.price-section .price-block .price_content{
    text-align: center;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 100%;
    padding: 62px 50px;
    background-color: var(--e-global-color-white);
    border: 1px solid white;
    transition: all 0.3s ease-in-out;
}
.price-section .hover1:hover{
    border: 1px solid var(--e-global-color-secondary);
}
.price-section .hover2:hover{
    border: 1px solid var(--e-global-color-accent);
}
.price-section .hover3:hover{
    border: 1px solid var(--e-global-color-Moderate-violet);
}
.price-section .price_content .icon-size1{
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    margin-bottom: 27px;
    display: inline-block;
    background: var(--e-global-color-green-level-06);
    transition: all 0.3s ease-in-out;
}
.price-section .price_content .icon-size1:hover{
    transform: translateY(-10px);
}
.price-section .price_content .icon-size2{
    background: var(--e-global-color-green-level-07);
}
.price-section .price_content .icon-size3{
    background: var(--e-global-color-green-level-08);
}
.price-section .price_content .text1{
    font-size: 42px;
    line-height: 64px;
    font-weight: 500;
    color: var(--e-global-color-secondary);
    display: block;
    margin-bottom: 10px;
}
.price-section .price_content .text2{
    color: var(--e-global-color-accent);
}
.price-section .price_content .text3{
    color: var(--e-global-color-green-level-06);
}
.price-section .price_content .text-size-18{
    color: var(--e-global-color-Very-dark-gray);
    margin-bottom: 10px;
}
.price-section .price_content .for-space{
    margin-bottom: 30px;
}
.price-section .price_content .get_started{
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 19px 54px;
    border-radius: 8px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-green-level-06);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.price-section .price_content .premium{
    background-color: var(--e-global-color-accent);
}
.price-section .price_content .business{
    background-color: var(--e-global-color-Moderate-violet);
}
.price-section .price_content:hover .get_started{
    background-color: var(--e-global-color-bright-blue);
}

/* FOOTER */

.footer-section{
    padding: 80px 0 0px;
}
.footer-section .footer-left{
    display: flex;
    justify-content: flex-start;
  }
.footer-section .footer-right{
    display: flex;
    justify-content: flex-end;
  }
.footer-section .middle-portion .footer-logo{
    margin-bottom: 38px;
}
.footer-section .middle-portion .icons ul li{
    display: inline-block;
    margin-right: 15px;
}
.footer-section .middle-portion .icons ul li:last-child{
    margin-right: 0;
}
.footer-section .middle-portion .icons ul li a{
    color: var(--e-global-color-text);
}
.footer-section .middle-portion .icons ul li a:hover{
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion {
    margin-bottom: 45px;
}
.footer-section .heading{
    font-size: 30px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--e-global-color-primary);
}
.footer-section .text{
    font-size: 18px;
    line-height: 36px;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    color: var(--e-global-color-text);
}
.footer-section .text:hover{
    color: var(--e-global-color-secondary);
}
.footer-section .footer-lower{
    border-top: 1px solid #dae7fb;
    color: var(--e-global-color-text);
    padding: 40px 0;
}
.footer-section .footer-lower .text-size-18{
    font-size: 18px;
    line-height: 40px;
    font-weight: 400;
}
.footer-section .footer-lower .term{
    text-align: right;
    padding-right: 30px;
    color: var(--e-global-color-green-level-05);
}
.footer-section .middle-portion .services{
    padding-left: 20px;
}
.footer-section .middle-portion .links{
    padding-left: 40px;
}
.footer-section .middle-portion .aboutus{
    padding-left: 60px;
}

/* FAQ */

/* .accordian-section{
    padding: 110px 0 0px;
} */

.accordian-section{
    background-image: url("../images/price-background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.accordian_content{
    text-align: center;
}
.accordian_content h4{
    color: var(--e-global-color-secondary);
}
.accordian_content h2{
    margin-bottom: 35px;
}
.accordian-section .accordian-inner .accordion-card h6{
    padding: 11px 0;
    margin-bottom: 0;
}
.accordian-section .accordian-inner .accordion-card .btn-link h6{
    color: var(--e-global-color-green-level-06);
}
.accordian-section .accordion-card{
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    background: var(--e-global-color-white);
    width: 100%;
    border-radius: 10px;
    margin-bottom: 22px;
    border: 1px solid #dae7fb;
    padding: 0 28px;
}
.accordian-section .accordion-card a.btn.btn-link {
    position: relative;
}
.accordian-section .accordian-inner .accordion-card .btn {
    padding: 10px 0px;
    text-decoration: none;
    text-align: left;
    display: block;
}
.accordian-section .accordian-inner .accordion-card .collapsed h6{
    color: var(--e-global-color-primary);
}
.accordian-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
}
.accordian-section .accordian-inner .card-body {
    padding: 25px 0;
}
.accordian-section .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.accordian-section .accordion-card .btn-link:before {
    content: "\f063";
    position: absolute;
    right: -8px;
    top: 28%;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    color: var(--e-global-color-green-level-06);
    font-size: 28px;
    line-height: 28px;
}
.accordian-section .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-primary);
}
.accordian-section .accordian-inner .accordion-card:last-child {
    margin-bottom: 0 !important;
}
.accordian-section .faq_shape{
    position: absolute;
    top: -52px;
    left: 35px;
}

/* About Page Style */


.about-section{
    background-color: var(--e-global-color-Light-grayish-blue);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 237px 0 117px;
    overflow: hidden;
    margin-top: -120px;
}
.about-section .price-circle{
    position: absolute;
    top: -208px;
    right: -134px;
}
.about-section .price-sidecircle{
    position: absolute;
    right: -62px;
    top: -38px;
}
.about-section .about_content{
    text-align: center;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 100%;
    padding: 62px 52px 50px;
    background-color: var(--e-global-color-white);
    border: 1px solid white;
    transition: all 0.3s ease-in-out;
}
.about-section .about_content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about-section .hover1{
    border: 1px solid var(--e-global-color-accent);
}
.about-section .hover2{
    border: 1px solid var(--e-global-color-Moderate-violet);
}
.about-section .about_content .icon-size1{
    border-radius: 100px;
    height: 142px;
    width: 142px;
    line-height: 142px;
    margin-bottom: 29px;
    display: inline-block;
    background: var(--e-global-color-Light-grayish-cyan);
    transition: all 0.3s ease-in-out;
}
.about-section .about_content .icon-size1:hover{
    transform: translateY(-10px);
}
.about-section .about_content .icon-size2{
    background: var(--e-global-color-Very-pale-mostly-white-blue);
}

/* FAQ Page Style */

.faq-section {
    padding: 233px 0 127px;
    position: relative;
}
.faq-section .price-circle {
    position: absolute;
    top: -170px;
    right: -130px;
}
.faq-section .price-sidecircle {
    position: absolute;
    right: -10px;
    top: 15px;
}

/* Pricing Page Style */

.pricing-section{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 0 0 88px;
    overflow: hidden;
    margin-top: -145px;
    z-index: 1;
}
.pricing-section .price-circle{
    position: absolute;
    top: -244px;
    right: -126px;
}
.pricing-section .price-sidecircle{
    position: absolute;
    right: -58px;
    top: 164px;
}
.pricing-section .pricing-box {
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 100%;
    padding: 24px;
    background-color: var(--e-global-color-white);
    border: 1px solid white;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}
.pricing-section .pricing-box:hover {
    border: 1px solid var(--e-global-color-secondary);
}
.pricing-section .pricing-box2:hover {
    border: 1px solid var(--e-global-color-Moderate-violet);
}
.pricing-section .pricing-box3:hover {
    border: 1px solid var(--e-global-color-accent);
}
.pricing-section .pricing-box:hover .hover1 {
    border: 1px solid var(--e-global-color-secondary);
}
.pricing-section .pricing-box2:hover .hover3 {
    border: 1px solid var(--e-global-color-Moderate-violet);
}
.pricing-section .pricing-box3:hover .hover2 {
    border: 1px solid var(--e-global-color-accent);
}
.pricing-section .pricing_content {
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 95%;
    padding: 22px 8px 12px;
    text-align: center;
    background-color: var(--e-global-color-white);
    border: 1px solid #dae7fb;
    transition: all 0.3s ease-in-out;
}
.pricing-section .pricing-box li.text-size-18:before {
    content: "\2022";
    color: var(--e-global-color-secondary);
    font-weight: bold;
    display: inline-block;
    margin-left: 0;
    position: absolute;
    top: 0;
    left: -20px;
    font-size: 30px;
    line-height: 30px;
}
.pricing-section .pricing-box li.dot2:before {
    color: var(--e-global-color-accent);
}
.pricing-section .pricing-box li.dot3:before {
    color: var(--e-global-color-Moderate-violet);
}
.pricing-section .pricing_content .icon-size1{
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    margin-bottom: 16px;
    display: inline-block;
    background: var(--e-global-color-Light-grayish-red);
}
.pricing-section .pricing_content .icon-size2{
    background: var(--e-global-color-Light-grayish-cyan);
}
.pricing-section .pricing_content .icon-size3{
    background: var(--e-global-color-Very-pale-mostly-white-blue);
}
.pricing-section .pricing-box .content1{
    padding: 55px 0 0 40px;
}
.pricing-section .pricing-box .content2{
    padding: 55px 0 0 28px;
}
.pricing-section .pricing-box .content3{
    padding: 35px 0 0 26px
}
.pricing-section .pricing-box .value{
    padding: 35px 0 0 16px
}
.pricing-section .pricing-box .price-button{
    padding-left: 16px;
}
.pricing-section .pricing-box .text1{
    font-size: 40px;
    line-height: 64px;
    font-weight: 500;
    color: var(--e-global-color-secondary);
    display: block;
    margin-bottom: 7px;
}
.pricing-section .pricing-box .text2{
    color: var(--e-global-color-accent);
}
.pricing-section .pricing-box .text3{
    color: var(--e-global-color-Moderate-violet);
}
.pricing-section .pricing-box .text-size-18{
    font-size: 17px;
    color: var(--e-global-color-Very-dark-gray);
    margin-bottom: 10px;
    position: relative;
}
.pricing-section .pricing-box .get_started{
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 19px 54px;
    border-radius: 8px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.pricing-section .pricing-box .get_started:hover{
    background-color: var(--e-global-color-bright-blue);
}
.pricing-section .pricing-box .premium{
    background-color: var(--e-global-color-accent);
}
.pricing-section .pricing-box .business{
    background-color: var(--e-global-color-Moderate-violet);
}

/* Contact Page Style */

.message-section {
    position: relative;
    padding: 30px 0;
}
.message-section .price-sidecircle {
    position: absolute;
    right: -52px;
    top: -2px;
}
.message-section .price-circle {
    position: absolute;
    top: -174px;
    right: -124px;
}
.message-section .manage_content {
    padding-left: 38px;
}
.message-section .message_content h2{
    text-align: center;
    margin-bottom: 26px;
}
/* .message-section .message_content {
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 100%;
    padding: 48px 35px;
    background-color: var(--e-global-color-white);
    border: 1px solid white;
    transition: all 0.3s ease-in-out;
} */

.form_style::placeholder{
    color: var(--e-global-color-text);
}
.message-section .message_content input {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 25px;
    width: 100%;
    overflow: visible;
    outline: none;
}
.message-section .message_content textarea {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 15px 20px;
    width: 100%;
    height: 200px;
    margin-bottom: 18px;
    resize: none;
    outline: none;
    overflow: auto;
}
.message-section .message_content .submit_now {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 19px 54px;
    border-radius: 8px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: block;
    text-align: center;
    outline: none;
    border-style: none;
    width: 100%;
}
.message-section .message_content .submit_now:hover{
    background-color: var(--e-global-color-accent);
}

.message-section .message_content .submit_now {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 19px 54px;
    border-radius: 8px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: block;
    text-align: center;
    outline: none;
    border-style: none;
    width: 100%;
}
.message-section .message_content .submit_now:hover {
    background-color: var(--e-global-color-accent);
}

/* Estilos para los popups */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
}

.popup p {
    margin: 0;
}

.popup button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#privacyCheck {
    margin: 0;
    height: 24px;
    width: 24px;
    margin: 0 10px;
  }

  /* Estilos para los popups */
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
}

.popup p {
    margin: 0;
    color: white;
}

.popup button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/*
* Fullscreen modifications for Magnific Popup.
*
* 1. Remove the default padding around Magnific Popup elements. We don't want this for fullscreen.
* 2. `.mfp-content` has 100% width by default, but it must be 100% height too!
*/
.mfp-fullscreen .mfp-container {
padding: 0;
/* 1 */
}
.mfp-fullscreen .mfp-content {
height: 100%;
/* 2 */
}

.full-popup {
background: #FFF;
height: 100%;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-y: scroll;
padding: 24px;
}

#modal-content p {
font-size: 16px;
}

#mymodal h1 {
font-size: 22px;
}


button.modal-btn {
border: 1px solid steelblue;
background: #FFF;
color: steelblue;
padding: 10px 20px;
font-size: 16px;  
}

button.modal-btn:hover {
background: steelblue;
color: #FFF;
}

.mfp-close:focus {
border: 1px solid steelblue;
}

.submit_now:disabled {
    opacity: 0.5; /* Reduce opacity */
    cursor: not-allowed; /* Change cursor to indicate it's not clickable */
}

#successPopup, #errorPopup {
    display: none; /* Hide popups by default */
    /* Add your styling for the popups here */
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    transition: all 0.4s ease;
  }
  nav.sticky {
    padding: 5px 20px;
    background: var(--e-global-color-green-level-07);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  nav .nav-content {
    height: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav .logo a {
    font-weight: 500;
    font-size: 35px;
    color: #353842;
  }
  nav.sticky .logo a {
    color: #fff;
  }
  
  .nav-content .nav-links {
    display: flex;
  }
  
  .nav-content .nav-links li {
    list-style: none;
    margin: 0 8px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #0e2431;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 4px;
    transition: all 0.3 ease;
  }
  
  .nav-links li a:hover {
    color: #fecd03;
  }
  
  .nav.sticky .nav-links li a {
    color: #fff;
    transition: all 0.4 ease;
  }
  
  .nav.sticky .nav-links li a:hover {
    color: #0e2431;
  }