/*
Table Of Content
---
1. Common Css
2. Header Css
3. Flags Css
4. Banner Css
5. About Top Css
6. About Bottom Css
7. Cta Css
8. Payment Css
9. Footer Css
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* 1. Common Css */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
:root {
    --primary-color: #f8c4a6;
    --white-color: #fff;
    --black-color: #000000;
    --gray-color: #f7f7f7;
    --dark-gray: #f3f5f8;
    --footer-text: #787a88;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
a {
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

/* Container */
.container {
    width: 1400px;
    margin: 0 auto;
}
.container-fluid {
    width: 100%;
    margin: 0 auto;
}
.mhn-container {
    width: 1030px;
    margin: 0 auto;
}

/* 2. Header Css */
.header-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
.header-area.page {
    background-color: var(--black-color);
}
.header-top {
    background-color: #ececec;
    padding: 10px 50px;
    border-top: 2px solid #d8d8d8;
}
.header-top p {
    font-size: 14px;
    text-align: center;
}
.header-bottom {
    background-color: var(--black-color);
    padding: 10px 24px 10px 16px;
}
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-info {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-info .logo img.desktop-logo {
    max-width: 150px;
}
.mobile-logo {
    display: none;
}
.header-menu {
   -ms-flex-preferred-size: 65%;
       flex-basis: 65%;
}
.header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-menu .menu ul li a {
    display: block;
    color: var(--white-color);
    font-weight: 500;
    padding: 0 16px;
}
.header-btn a {
    display: inline-block;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--white-color);
    padding: 8px 40px;
    border: 2px solid #86baf9;
    border-radius: 50px;
    margin-left: 20px;
}
.header-btn a:last-child {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black-color);
}
.header-btn a:hover {
    background-color: var(--footer-text);
    color: var(--white-color);
}
.header-btn a:last-child:hover {
    background-color: var(--primary-color);
}
.stellarnav.desktop li.has-sub a.dd-toggle {
    display: none;
}
.stellarnav.desktop li.has-sub a:after {
    display: none;
}
.stellarnav.desktop li.has-sub ul {
    max-width: 180px;
    background-color: var(--white-color);
    -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 11px 0px;
            box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 11px 0px;
}
.stellarnav.desktop li.has-sub ul li {
    margin-bottom: 7px;
    padding: 7px 0;
}
.stellarnav.desktop li.has-sub ul li:last-child {
    margin-bottom: 0;
}
.stellarnav.desktop li.has-sub ul li a {
    color: var(--black-color);
}
.stellarnav.desktop li.has-sub ul li:hover {
    background-color: var(--primary-color);
}

/* 3. Flags Css */
.flag-menu {
    margin-left: 30px;
    position: relative;
    cursor: pointer;
}
.flag-menu img {
    max-width: 24px;
}
.flags-btn i {
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
}
.flags-btn.expand i {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}
.flags-btn i {
    display: inline-block;
    font-size: 14px;
    color: var(--white-color);
    margin-left: 3px;
}
.flag-box {
    display: none;
    position: absolute;
    top: 200%;
    left: 0;
    width: 320px;
    background-color: #ffffff59;
    padding: 8px;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 19px 0 rgba(0, 0, 0, .35);
            box-shadow: 0 3px 19px 0 rgba(0, 0, 0, .35);
    -webkit-backdrop-filter: blur(22px);
            backdrop-filter: blur(22px);
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
}
.flag-box.show {
    display: block;
}
.flag-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: var(--white-color);
    padding: 16px 16px 0;
    border-radius: 10px;
}
.flag-item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}
.flag-item ul li {
    margin-bottom: 7px;
    padding-bottom: 7px;
}
.flag-item ul li a {
    font-size: 14px;
    color: var(--black-color);
}
.flag-item ul li a span {
    margin-left: 7px;
}
.mobile-flag {
    display: none !important;
}

/* 4. Banner Css */
.banner-area {
    background-image: url('../img/banner-bg.jpg');
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
    padding: 150px 0 220px;
}
.banner-container {
    width: 1070px;
    margin: 0 auto;
}
.banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.banner-text {
    -ms-flex-preferred-size: 29%;
        flex-basis: 32%;
}
.banner-text h2 {
    font-size: 50px;
    font-weight: 500;
    line-height: 56px;
}
.banner-text p {
    font-size: 26px;
    line-height: 32px;
    margin-top: 20px;
}
.banner-text a {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 12px 25px;
    margin-top: 40px;
}
.banner-img {
    -ms-flex-preferred-size: 66%;
        flex-basis: 66%;
    position: relative;
}
.banner-img img {
    width: 100%;
}

/* 5. About Top Css */
.about-top-area {
    background-color: var(--primary-color);
    padding: 90px 0 80px;
    position: relative;
}
.about-top-note {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
}
.about-top-note p {
    font-size: 12px;
}
.about-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.about-top-img {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
}
.about-top-img img {
    width: 100%;
}
.about-top-text {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    margin-left: 30px;
}
.about-top-text ul li {
    text-align: left;
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
}
.about-top-text p {
    font-size: 27px;
    line-height: 32px;
    margin-top: 15px;
}
.about-top-btn {
    margin-top: 40px;
}
.about-top-btn a {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
}
.about-top-btn a:nth-child(1) {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 12px 25px;
}
.about-top-btn a:hover:nth-child(1) {
    background-color: var(--footer-text);
}
.about-top-btn a:nth-child(2) {
    border: 2px solid var(--black-color);
    margin-left: 15px;
    padding: 10px 25px;
    color: #333;
}

/* 6. About Bottom Css */
.about-bottom-area {
    background-color: #0c1731;
    padding: 80px 0;
}
.about-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.about-bottom-text {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    color: var(--white-color);
    margin-right: 100px;
}
.about-bottom-text h2 {
    font-size: 60px;
    line-height: 60px;
    color: var(--primary-color);
}
.about-bottom-text p {
    font-size: 27px;
    line-height: 32px;
    margin: 30px 0 50px;
}
.about-bottom-text a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--black-color);
    padding: 10px 40px;
    text-transform: capitalize;
    text-align: center;
    border-radius: 50px;
}
.about-bottom-img {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
}

/* 7. Cta Css */
.cta-area {
    background-image: url('../img/cta.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 250px 0;
}
.cta-content {
    text-align: center;
}
.cta-content img {
    max-width: 120px;
    width: 100%;
    margin-bottom: 30px;
}
.cta-content h2 {
    font-size: 40px;
    line-height: 48px;
    color: var(--white-color);
}

/* 8. Payment Css */
.payment-area {
    padding: 60px 0 30px;
}
.payment-area .bx-wrapper {
    width: 100%;
    margin: 0;
    border: none;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.payment-area .bx-viewport {
    height: 80px !important;
}
.single-payment {
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.15);
            box-shadow: 0 5px 10px 0 rgba(0,0,0,.15);
    width: 113px;
    height: 70px;
    margin: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
}
.payment-area p {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}

/* 9. Footer Css */
.footer-area {
    background-color: var(--gray-color);
    padding: 60px 0;
    border-top: 2px solid #d8d8d8;
}
.footer-text {
    color: var(--footer-text);
}
.footer-text h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.footer-text p {
    font-size: 14px;
    margin-bottom: 20px;
}
.footer-text a {
    color: var(--footer-text);
    text-decoration: underline;
}

/* Account Css */
.account-title {
    text-align: center;
    margin: 30px 0;
}
.account-title h2 {
    font-size: 42px;
    line-height: 48px;
    font-weight: 500;
}
.account-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    margin-bottom: 30px;
}
.account-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #ddd;
    width: 150px;
    height: 1px;
}
.account-top::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #ddd;
    width: 150px;
    height: 1px;
}
.account-top-single {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    border: 1px solid #ddd;
    padding: 7px 30px;
    text-align: center;
}
.account-top-single:first-child {
    border-radius: 50px 0 0 50px;
}
.account-top-single:last-child {
    border-radius: 0 50px 50px 0;
}
.account-top-single h2 {
    font-size: 17px;
    font-weight: 400;
    line-height: 18px;
}
.account-top-single span {
    font-weight: 600;
}
.account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-account {
    -ms-flex-preferred-size: 24.5%;
        flex-basis: 24.5%;
}
.account-head {
    background-color: var(--black-color);
    text-align: center;
    color: var(--white-color);
    padding: 40px 20px;
}
.single-account:first-child .account-head {
    border-radius: 10px 0 0 10px;
}
.single-account:last-child .account-head {
    border-radius: 0 10px 10px 0;
}
.account-head h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}
.account-head h2 {
    display: block;
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
}
.account-head h2:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--white-color);
}
.account-body {
    background-color: #f6f6f6;
    padding: 20px 30px;
    margin-top: 10px;
}
.single-account:first-child .account-body {
    border-radius: 10px 0 0 10px;
}
.single-account:last-child .account-body {
    border-radius: 0 10px 10px 0;
}
.account-body ul li:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.account-body ul li span {
    float: right;
    font-weight: 500;
}
.account-footer {
    margin-top: 10px;
}
.account-footer a {
    display: block;
    padding: 15px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-weight: 500;
    border-radius: 5px;
}
.account-bottom {
    text-align: center;
    padding: 30px 0 80px;
}