﻿/*==========================================
Google Font
==========================================*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter',sans-serif;
    background: #f8f6f2;
    overflow-x: hidden;
}

/*==========================================
Section
==========================================*/

.launching-page {
    position: relative;
    min-height: 100vh;
    padding: 25px 0 30px;
    overflow: hidden;
    background: #f9f7f3;
    background: url("../images/bg.png") center center no-repeat;
    background-size: cover;
    height: 100%;
}

/*==========================================
Background Images
==========================================*/

.bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 38%;
    height: 100%;
   /* background: url("../images/bg-left.jpg") center left no-repeat;*/
    background-size: cover;
    opacity: .12;
    z-index: 0;
}

.bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
   /* background: url("../images/bg-right.jpg") center right no-repeat;*/
    background-size: cover;
    opacity: .12;
    z-index: 0;
}

/* White Overlay */

.launching-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff6b;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

/*==========================================
Logo
==========================================*/

.logo-area {
    margin-bottom: 15px;
}

.logo {
    max-width: 200px;
}

/*==========================================
Heading
==========================================*/

.heading {
    margin-bottom: 55px;
    margin-top:55px;
}

.sub-title {
    display: block;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 7px;
    color: #b9892c;
    margin-bottom: 0px;
}

.heading h1 {
    margin: 0;
    line-height: 1;
    font-family: 'Cormorant Garamond',serif;
    font-size: 36px;
    font-weight: 700;
}

.blue {
    color: #132d59;
}

.gold {
    color: #c69a37;
}

.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 5px 0;
}

    .divider span {
        width: 120px;
        height: 1px;
        background: #c69a37;
    }

    .divider i {
        color: #c69a37;
        font-size: 20px;
    }

.heading p {
    max-width: 630px;
    margin: auto;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

/*==========================================
City
==========================================*/

.city-row {
    max-width:750px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 70px;
}

.city-box {
    text-align: center;
}

.city-image {
    width: 115px;
    height: 115px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 6px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.14);
}

    .city-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s;
    }

    .city-image:hover img {
        transform: scale(1.08);
    }

.city-name {
    margin-top: 7px;
    color: #132d59;
    font-size: 14px; 
    font-weight: 700;
}

    .city-name i {
        color: #c69a37;
        margin-right: 6px;
        font-size: 18px;
    }

/*==========================================
Features
==========================================*/

.feature-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    overflow: hidden;
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 7px 10px;
    border-right: 1px solid #ececec;
}

.feature-icon {
    width: 70px;
    height: 50px;
    min-width: 70px;
    border-radius: 50%;
    background: #faf7f2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #C89A3D;
    font-size: 34px;
}

.feature-text h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #163A70;
    font-family: 'Inter',sans-serif;
    letter-spacing: .5px;
}

.feature-text p {
    margin: 0px 0 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #163A70;
    font-family: 'Inter',sans-serif;
}

.border-0 {
    border-right: none;
}

/*==========================================
Decoration
==========================================*/

.launching-page:after {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -130px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(198,154,55,.05),transparent 70%);
    z-index: 0;
}


/*==================================================
Large Desktop
==================================================*/

@media (max-width:1400px) {

    .container {
        max-width: 1200px;
    }
}

/*==================================================
Laptop
==================================================*/

@media (max-width:1199px) {

    .logo {
        max-width: 180px;
    }

    .heading h1 {
        font-size: 32px;
    }

    .heading p {
        font-size: 13px;
    }

    .city-row {
        max-width: 700px;
    }

    .city-image {
        width: 105px;
        height: 105px;
    }

    .feature-item {
        padding: 8px;
    }

    .feature-icon {
        width: 58px;
        min-width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .feature-text h4 {
        font-size: 11px;
    }

    .feature-text p {
        font-size: 13px;
    }
}

/*==================================================
Tablet
==================================================*/

@media (max-width:991px) {

    .launching-page {
        padding: 35px 0;
        min-height: auto;
    }

    .logo-area {
        margin-bottom: 20px;
    }

    .logo {
        max-width: 170px;
    }

    .heading h1 {
        font-size: 30px;
    }

    .heading p {
        font-size: 14px;
        max-width: 550px;
    }

    .divider span {
        width: 70px;
    }

    .city-row {
        max-width: 100%;
        row-gap: 25px;
        margin-bottom: 55px;
    }

    .city-image {
        width: 100px;
        height: 100px;
    }

    .city-name {
        font-size: 14px;
    }

    .feature-section {
        display: block;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #ececec;
        padding: 18px;
        gap: 15px;
    }

        .feature-item:last-child {
            border-bottom: none;
        }
}

/*==================================================
Mobile
==================================================*/

@media (max-width:767px) {

    .launching-page {
        padding: 25px 0;
    }

    .logo {
        max-width: 150px;
    }

    .sub-title {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .heading h1 {
        font-size: 26px;
    }

    .divider {
        margin: 8px 0;
    }

        .divider span {
            width: 45px;
        }

    .heading p {
        font-size: 13px;
        padding: 0 10px;
    }

    .city-row {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .city-image {
        width: 85px;
        height: 85px;
        border-width: 4px;
    }

    .city-name {
        font-size: 13px;
        margin-top: 6px;
    }

        .city-name i {
            font-size: 14px;
            margin-right: 2px;
        }

    .feature-section {
        border-radius: 20px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 24px;
    }

    .feature-text h4 {
        font-size: 11px;
    }

    .feature-text p {
        font-size: 12px;
    }
}

/*==================================================
Small Mobile
==================================================*/

@media (max-width:575px) {

    .city-row > .col-4 {
        width: 33.333333%;
        padding: 5px;
    }

    .city-image {
        width: 75px;
        height: 75px;
    }

    .city-name {
        font-size: 12px;
    }

    .feature-item {
        padding: 14px 12px;
    }
}

/*==================================================
Very Small Mobile
==================================================*/

@media (max-width:400px) {

    .logo {
        max-width: 130px;
    }

    .sub-title {
        font-size: 14px;
    }

    .heading h1 {
        font-size: 22px;
    }

    .heading p {
        font-size: 12px;
    }

    .city-image {
        width: 65px;
        height: 65px;
    }

    .city-name {
        font-size: 11px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }

    .feature-text h4 {
        font-size: 10px;
    }

    .feature-text p {
        font-size: 11px;
    }
}
