/* ====================================
   GOOGLE FONT & RESET
==================================== */

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8fc;
    color:#1b2b4b;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ====================================
        NAVBAR
==================================== */

.custom-navbar{

    background:#ffffff;

    padding:16px 0;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.navbar-brand img{

    height:48px;

}

.navbar-nav .nav-link{

color:#16345f;

font-weight:600;

margin: 0 6px;

font-weight: 500;

ve;

transition:.35s;
}

.navbar-nav .nav-link:hover{

    color:#0d6efd;

}

.navbar-nav .nav-link.active{

    color:#0d6efd;

}

.navbar-nav .nav-link::after{content:"";position:absolute;left:0;bottom:-8px;width:0;height:3px;/* background:#0d6efd; */border-radius:50px;transition:.35s;}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

    width:100%;

}

/* ====================================
        PHONE BUTTON
==================================== */

.phone-btn{

    color:#16345f;

    font-weight:600;

    margin-right:20px;

}

.phone-btn i{

    color:#0d6efd;

    margin-right:6px;

}

/* ====================================
        ENQUIRY BUTTON
==================================== */

.enquiry-btn{

    background:linear-gradient(135deg,#0d6efd,#245dff);

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 25px rgba(13,110,253,.30);

}

.enquiry-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 20px 35px rgba(13,110,253,.35);

}

/* ====================================
        HERO SECTION
==================================== */

.hero{

    padding:170px 0 110px;

    background:
    linear-gradient(rgba(255,255,255,.78),
    rgba(255,255,255,.82)),
    url("../images/banner.jpg");

    background-size:cover;

    background-position:center;

}

.hero h5{

    color:#0d6efd;

    letter-spacing:2px;

    font-weight:600;

    margin-bottom:15px;

}

.hero h1{

    font-size:64px;

    font-weight:800;

    color:#16345f;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    font-size:18px;

    color:#5b6880;

    max-width:620px;

    line-height:1.8;

}

/* ====================================
        HERO BUTTONS
==================================== */

.hero-buttons{

    margin-top:35px;

}

.btn-blue{

    display:inline-block;

    background:#0d6efd;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    margin-right:15px;

    transition:.35s;

}

.btn-blue:hover{

    background:#003eb3;

    color:#fff;

}

.btn-white{

    display:inline-block;

    background:#fff;

    color:#16345f;

    padding:16px 34px;

    border-radius:50px;

    border:2px solid #0d6efd;

    transition:.35s;

}

.btn-white:hover{

    background:#0d6efd;

    color:#fff;

}

/* ====================================
        COUNTER
==================================== */

.hero-counter{

    display:flex;

    gap:50px;

    margin-top:55px;

}

.hero-counter h2{

    color:#0d6efd;

    font-size:40px;

    font-weight:700;

}

.hero-counter p{

    margin:0;

    color:#6b7280;

    font-size:15px;

}



/**/

/*====================================
        LEAD FORM
=====================================*/

.lead-form{
    background: rgb(255 255 255 / 7%);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.10);
    position:relative;
    overflow:hidden;
}

.lead-form::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#53b0ff);
}

.lead-form h3{
    font-size: 24px;
    font-weight:700;
    color: #ffffff;
    margin-bottom:25px;
}

.lead-form input,
.lead-form select{

    width:100%;
    height:55px;
    border:1px solid #dbe4ef;
    border-radius:12px;
    padding:0 18px;
    margin-bottom:18px;
    outline:none;
    transition:.3s;
    font-size:15px;
    background:#fff;

}

.lead-form input:focus,
.lead-form select:focus{

    border-color:#0d6efd;
    box-shadow:0 0 0 4px rgba(13,110,253,.12);

}

.lead-form button{

    width:100%;
    height:56px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#0d6efd,#2f80ff);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:.35s;

}

.lead-form button:hover{

    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(13,110,253,.30);

}

/*====================================
        SECTION TITLE
=====================================*/

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:#0d6efd;
    text-transform:uppercase;
    font-weight:600;
    letter-spacing:2px;

}

.section-title h2{

    font-size:44px;
    color:#16345f;
    font-weight:700;
    margin-top:10px;

}

.section-title p{

    color:#6b7280;
    max-width:650px;
    margin:15px auto 0;

}

/*====================================
        COMMON BUTTON
=====================================*/

.primary-btn{

    display:inline-block;
    padding:15px 34px;
    border-radius:50px;
    background:#0d6efd;
    color:#fff;
    transition:.35s;
    font-weight:600;

}

.primary-btn:hover{

    color:#fff;
    background:#004ed6;

}

/*====================================
        CARD
=====================================*/

.card-box{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;

}

.card-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(13,110,253,.15);

}

.card-box i{

    width:70px;
    height:70px;
    background:#eaf3ff;
    color:#0d6efd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;

}

.card-box h4{

    font-size:24px;
    font-weight:700;
    color:#16345f;
    margin-bottom:15px;

}

.card-box p{

    color:#6b7280;
    line-height:1.8;

}

/*====================================
        IMAGE
=====================================*/

.image-box{

    position:relative;

}

.image-box img{

    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

/* Floating Badge */

.floating-box{

    position:absolute;
    right:-20px;
    bottom:30px;

    background:#0d6efd;
    color:#fff;

    padding:25px;

    border-radius:18px;

    width:220px;

    box-shadow:0 20px 50px rgba(13,110,253,.30);

}

.floating-box h3{

    font-size:34px;
    font-weight:700;

}

.floating-box p{

    margin:0;

}

/*====================================
        RESPONSIVE
=====================================*/

@media(max-width:991px){

.hero{

padding-top:120px;

text-align:center;

}

.hero h1{

font-size:46px;

}

.hero-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

}

.hero-counter{

justify-content:center;

flex-wrap:wrap;

gap:30px;

margin-top:40px;

}

.phone-btn{

display:none;

}

.lead-form{

margin-top:40px;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:576px){

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.lead-form{

padding:25px;

}

.btn-blue,
.btn-white{

display:block;

margin:10px 0;

text-align:center;

}

}


/* ===========================
   ABOUT SECTION
=========================== */

.about-section{
    background:#ffffff;
}

.section-heading span{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size: 36px;
    font-weight: 600;
    color:#16345f;
    margin:15px 0;
}

.section-heading p{
    color:#6b7280;
    line-height:1.8;
}

.feature-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.feature-item i{
    color:#0d6efd;
    font-size:24px;
    margin-top:4px;
}

.feature-item h5{
    margin-bottom:5px;
    color:#16345f;
    font-weight:600;
}

.feature-item p{
    margin:0;
    color:#6b7280;
}

/* ===========================
   STATS
=========================== */

.stats-section{
    background: #0e56a8;
    padding: 41px 0;
}

.stat-card h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
}

.stat-card p{
    color:#dce8ff;
    margin-top:10px;
    font-size:18px;
}

/*============================
      AMENITIES
=============================*/

.amenities-section{

background:#f5f8fc;

}

.amenity-card{

background:#fff;

padding: 20px;

border-radius:20px;

text-align:center;

transition:.4s;

height:100%;

box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.amenity-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(13,110,253,.18);

}

.amenity-card .icon{

width:85px;

height:85px;

background:#eaf3ff;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

transition:.4s;

}

.amenity-card:hover .icon{

background:#0d6efd;

}

.amenity-card i{

font-size:34px;

color:#0d6efd;

transition:.4s;

}

.amenity-card:hover i{

color:#fff;

}

.amenity-card h4{

margin-bottom:15px;

font-weight: 600;

color:#16345f;
}

.amenity-card p{

color:#6b7280;

line-height:1.8;

font-size:15px;

}


/*==============================
        GALLERY
==============================*/

.gallery-section{

background:#ffffff;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.gallery-item img{

width:100%;

height:320px;

object-fit:cover;

transition:.5s;

}

.gallery-item.large img{

height:420px;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(13,110,253,.70);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

transition:.4s;

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

.gallery-overlay a{

width:65px;

height:65px;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

}

.gallery-overlay i{

font-size:24px;

color:#0d6efd;

}

/*==============================
        VIDEO
==============================*/

.video-section{

background:#f5f8fc;

}

.video-box{

position:relative;

overflow:hidden;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.play-btn{

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

width:90px;

height:90px;

background:#0d6efd;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:32px;

text-decoration:none;

transition:.35s;

}

.play-btn:hover{

background:#16345f;

color:#fff;

transform:translate(-50%,-50%) scale(1.08);

}



/*=========================
LOCATION
=========================*/

.location-section{

background:#fff;

}

.location-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.location-card:hover{

transform:translateY(-10px);

background:#0d6efd;

color:#fff;

}

.location-card i{

font-size:40px;

margin-bottom:20px;

color:#0d6efd;

}

.location-card:hover i{

color:#fff;

}

/*=========================
PRICE
=========================*/

.price-section{

background:#f5f8fc;

}

.price-card{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

position:relative;

height:100%;

}

.price-card:hover{

transform:translateY(-10px);

}

.featured{

border:2px solid #0d6efd;

}

.popular{

position:absolute;

top:20px;

right:20px;

background:#0d6efd;

color:#fff;

padding:8px 16px;

border-radius:30px;

font-size:13px;

}

.price-card h2{

color:#0d6efd;

margin:25px 0;

font-weight:700;

}

.price-card ul{

padding-left:20px;

margin-bottom:30px;

}

.price-card li{

margin-bottom:12px;

}

/*=========================
FLOOR
=========================*/

.floor-section{

background:#fff;

}

.floor-section img{

transition:.4s;

}

.floor-section img:hover{

transform:scale(1.03);

}

/*=========================
TESTIMONIAL
=========================*/

.testimonial-section{
background:#f5f8fc;
}

.testimonial-box{
max-width:700px;
margin:auto;
padding:40px;
background:#fff;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
text-align:center;
}

.testimonial-box img{
width:90px;
height:90px;
border-radius:50%;
margin:auto;
margin-bottom:20px;
}

.stars{
color:#ffc107;
font-size:22px;
margin-bottom:15px;
}

/*=========================
CONTACT
=========================*/

.contact-section{
background:#fff;
}

.contact-section input,
.contact-section textarea{
border-radius:12px;
padding:15px;
}

/*=========================
FOOTER
=========================*/

.footer{
background:#0d1b2a;
color:#fff;
padding:70px 0 30px;
}

.footer a{
color:#cbd5e1;
text-decoration:none;
}

.footer a:hover{
color:#fff;
}

.footer ul{
padding-left:0;
list-style:none;
}

.footer hr{
border-color:rgba(255,255,255,.15);
margin:40px 0 20px;
}

/*=========================
FLOATING BUTTONS
=========================*/

.call-btn,
.whatsapp-btn,
.top-btn{
position:fixed;
width:55px;
height:55px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:22px;
text-decoration:none;
z-index:999;
box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.call-btn{
left:20px;
bottom:20px;
background:#0d6efd;
}

.whatsapp-btn{
right:20px;
bottom:20px;
background:#25D366;
}

.top-btn{
right:20px;
bottom:90px;
background:#16345f;
}


/**/

.hero{

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background: url("images/banner.webp") no-repeat center center;

    background-size: cover;

    overflow: hidden;

}

/* Dark Overlay */

.hero::before{

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(8, 18, 38, 0.65);

    z-index: 1;

}

/* Content Above Overlay */

.hero .container{

    position: relative;

    z-index: 2;

}

.hero h5{

color: #6da0f7;

font-size:16px;

letter-spacing:3px;

text-transform:uppercase;

margin-bottom:20px;
}

.hero h1{

color:#fff;

font-size: 36px;

font-weight:700;

line-height: 1.3;

margin-bottom: 10px;
}

.hero p{

color:rgba(255,255,255,.90);

font-size:20px;

line-height:1.8;

margin-bottom: 20px;
}

.btn-blue{

    background:#0d6efd;

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    margin-right:15px;

    text-decoration:none;

}

.btn-white{

    border:2px solid #fff;

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    background:transparent;

}

.btn-white:hover{

    background:#fff;

    color:#0d6efd;

}

/**/
.hero-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:25px 0 35px;
}

.hero-highlights span{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.25);
    border-radius:50px;
    color:#fff;
    font-size:15px;
    font-weight:500;
    backdrop-filter:blur(8px);
}

.hero-highlights span i{
    color: #126bfe;
    font-size:14px;
}

@media (max-width:768px){
    .hero-highlights{
        gap:10px;
    }

    .hero-highlights span{
        font-size:14px;
        padding:8px 14px;
    }
}






.primary-btn{
    background:linear-gradient(135deg,#1F5EFF,#123C73);
    color:#fff;
    border-radius:40px;
    padding:14px 35px;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    background:linear-gradient(135deg,#123C73,#0D2C54);
    transform:translateY(-3px);
}

.secondary-btn{
    border:2px solid var(--gold);
    color:var(--gold);
    background:transparent;
}

.secondary-btn:hover{
    background:var(--gold);
    color:#000;
}



.residence-section{
    background:#f5f8fd;
}

.residence-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #e8eef7;
}

.residence-card:hover{
    transform:translateY(-8px);
}

.residence-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.card-content{
    padding: 15px;
}

.card-content h4{
    color:#163b72;
    font-weight: 600;
}

.card-content small{
    color:#777;
    font-size:15px;
}

.label{
    color:#888;
    font-size:14px;
}

.card-content h6{
    color:#163b72;
    font-weight:700;
}

.price-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
}

.price-box h3{
    color:#1f5eff;
    font-weight: 600;
    margin:0;
    font-size: 24px;
}

.view-btn{
    background:#1f5eff;
    color:#fff;
    text-decoration:none;
    padding:10px 22px;
    border-radius:30px;
    transition:.3s;
    font-weight:600;
}

.view-btn:hover{
    background:#163b72;
    color:#fff;
}

.section-title span{
    color:#1f5eff;
    font-weight:700;
    letter-spacing:1px;
}

.section-title h2{
    color:#163b72;
    font-size: 36px;
    font-weight: 600;
}

.section-title p{
    color:#6c757d;
}

hr{
    opacity:.15;
}

@media(max-width:768px){

.residence-card img{
    height:220px;
}

.price-box{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.section-title h2{
    font-size:34px;
}

}


.price-section{
    background:#f5f8ff;
    padding:80px 0;
}

.price-section .section-title span{
    color:#2563eb;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.price-section .section-title h2{
    color:#123c73;
    font-size: 36px;
    font-weight: 600;
    margin:15px 0;
}

.price-section .section-title p{
    color:#6b7280;
    font-size:18px;
}

/* Card */

.price-table{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

/* Table */

.price-table table{
    margin:0;
}

.price-table thead th{
    background:#123c73;
    color:#fff;
    border:none;
    padding:22px;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.price-table tbody td{
    padding:24px;
    vertical-align:middle;
    border-color:#eef2f7;
    font-size:18px;
}

.price-table tbody tr{
    transition:.3s;
}

.price-table tbody tr:hover{
    background:#f8fbff;
}

/* Unit */

.price-table tbody td:first-child{
    font-size:24px;
    font-weight:700;
    color:#123c73;
}

/* Price */

.price{
    font-size:28px;
    font-weight:700;
    color:#0d6efd;
}

/* Button */

.price-btn{
    display:inline-block;
    background:linear-gradient(135deg,#2563eb,#123c73);
    color:#fff;
    padding:12px 26px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.price-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(37,99,235,.30);
}

/* Footer */

.price-table small{
    color:#777;
}

@media(max-width:768px){

.price-section .section-title h2{
    font-size:34px;
}

.price-table{
    overflow-x:auto;
}

.price-table table{
    min-width:700px;
}

}


.footer-disclaimer{
    /* background:#16233d; */
    color:#c9d4e5;
    padding: 10px 0;
    text-align:center;
    font-size:14px;
    line-height:1.7;
    /* border-top:1px solid rgba(255,255,255,.08); */
}

.footer-disclaimer p{
    margin:0 0 8px;
}

.footer-disclaimer strong{
    color:#ffffff;
}

.footer-disclaimer a{
    color:#4da3ff;
    text-decoration:none;
    font-weight:600;
}

.footer-disclaimer a:hover{
    color:#ffffff;
    text-decoration:underline;
}



.hero-info-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin: 20px 0;
    padding: 20px 20px;
    /* background:rgba(14,34,65,.75); */
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:12px;
}

.info-item{
    flex:1;
    position:relative;
}

.info-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-10px;
    top:10%;
    width:1px;
    height:80%;
    background:rgba(255,255,255,.25);
}

.info-item span{
    display:block;
    color:#d8d8d8;
    font-size:15px;
    margin-bottom:6px;
}

.info-item h4{
    margin:0;
    color:#fff;
    font-size: 18px;
    font-weight: 500;
}

.info-item:first-child h4{
    color: #116bfe;
}

@media(max-width:991px){

.hero-info-bar{
    flex-direction:column;
    align-items:flex-start;
}

.info-item{
    width:100%;
    padding-bottom:15px;
}

.info-item:not(:last-child)::after{
    display:none;
}

.info-item{
    border-bottom:1px solid rgba(255,255,255,.15);
}

.info-item:last-child{
    border-bottom:none;
}

.info-item h4{
    font-size:24px;
}

}


.payment-section{
    background:linear-gradient(180deg,#f8fbff,#eef5ff);
    padding:90px 0;
}

.payment-section .section-title span{
    color:#2563eb;
    font-weight:700;
    letter-spacing:3px;
}

.payment-section .section-title h2{
    color:#123c73;
    font-size: 36px;
    font-weight: 600;
}

.payment-wrapper{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.payment-card{
    text-align:center;
    padding: 25px 20px;
    position:relative;
    height:100%;
}

.payment-card::after{
    content:"";
    position:absolute;
    right:0;
    top:20%;
    width:1px;
    height:60%;
    background:#d7e3f4;
}

.payment-wrapper .col-lg-4:last-child .payment-card::after{
    display:none;
}

.payment-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#eaf2ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.payment-card h3{
    color:#123c73;
    font-size: 28px;
    font-weight: 600;
}

.payment-card p{
    margin-top:15px;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.payment-card:hover{
    background:#123c73;
    transition:.4s;
}

.payment-card:hover h3,
.payment-card:hover p{
    color:#fff;
}

.payment-card:hover .payment-icon{
    background:#fff;
    color:#123c73;
}

@media(max-width:991px){

.payment-card::after{
    display:none;
}

.payment-card{
    border-bottom:1px solid #eee;
}

.payment-wrapper .col-lg-4:last-child .payment-card{
    border-bottom:none;
}

.payment-section .section-title h2{
    font-size:36px;
}

.payment-card h3{
    font-size:32px;
}

}

@media only screen and (max-width:767px) {
.hero h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}
.hero p {
    color: rgba(255, 255, 255, .90);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 35px;
}
.section-heading h2 {
    font-size: 28px;
    font-weight: 600;
    color: #16345f;
    margin: 15px 0;
}
    .section-title h2 {
        font-size: 28px;
    }
        .price-section .section-title h2 {
        font-size: 28px;
    }
    form {
    margin-bottom: 20px;
}
}


