/* =========================================
   RESET
========================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #111827;

    background: #fff;

    overflow-x: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


img {

    max-width: 100%;

    display: block;

}


/* =========================================
   TOP BAR
========================================= */

.top-bar {

    min-height: 40px;

    padding: 8px 20px;

    background: #101a35;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    text-align: center;

    font-size: 15px;

    line-height: 22px;

}


.top-bar .new {

    color: #f4b53f;

    font-weight: 800;

}


.top-bar a {

    color: #f4c84a;

    font-weight: 700;

    text-decoration: underline;

}


/* =========================================
   HEADER
========================================= */

.header {

    min-height: 92px;

    padding: 8px 3%;

    display: flex;

    align-items: center;

    gap: 25px;

    background: white;

}


.logo {

    width: 150px;

    height: 120px;

    object-fit: contain;

}


.nav {

    flex: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 28px;

}


.nav a {

    font-family:
        "Gill Sans",
        "Gill Sans MT",
        Calibri,
        sans-serif;

    font-size: 19px;

    font-weight: 700;

    color: #111;

    white-space: nowrap;

}


.nav a:hover,
.nav a.active {

    color: #1665ff;

}


.nav a.active {

    text-decoration: underline;

    text-underline-offset: 7px;

}


.actions {

    display: flex;

    align-items: center;

    gap: 20px;

}


.actions i {

    font-size: 23px;

    color: #222;

    cursor: pointer;

}


.login-btn {

    border: 0;

    background: #0b1736;

    color: white;

    padding: 11px 22px;

    border-radius: 10px;

    font-size: 16px;

    cursor: pointer;

}


.login-btn:hover {

    background: #162a61;

}


/* =========================================
   ABOUT HERO
========================================= */

.about-hero {

    min-height: 500px;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(228,188,63,.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #080f24,
            #101a35 55%,
            #162b50
        );

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 6%;

    position: relative;

    overflow: hidden;

}


.about-hero::before {

    content: "";

    position: absolute;

    width: 480px;

    height: 480px;

    border: 1px solid
        rgba(255,255,255,.08);

    border-radius: 50%;

    right: -190px;

    top: -180px;

}


.about-hero::after {

    content: "";

    position: absolute;

    width: 360px;

    height: 360px;

    border: 1px solid
        rgba(228,188,63,.12);

    border-radius: 50%;

    left: -180px;

    bottom: -180px;

}


.about-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.about-tag {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 18px;

    border-radius: 30px;

    background: #17304e;

    color: #e4bc3f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 25px;

}


.about-hero h1 {

    font-family: Georgia, serif;

    font-size: 60px;

    line-height: 1.12;

    margin-bottom: 20px;

}


.about-hero h1 span {

    color: #e4bc3f;

    display: block;

}


.about-hero p {

    color: #c6cedb;

    font-size: 19px;

    letter-spacing: .5px;

}


.hero-line {

    width: 75px;

    height: 3px;

    background: #e4bc3f;

    margin: 28px auto;

    border-radius: 5px;

}


.since-box {

    display: inline-flex;

    flex-direction: column;

    align-items: center;

}


.since-box strong {

    font-family: Georgia, serif;

    font-size: 34px;

    color: #e4bc3f;

}


.since-box span {

    color: #aeb6c5;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


/* =========================================
   INTRODUCTION
========================================= */

.about-intro {

    max-width: 1250px;

    margin: auto;

    padding: 90px 5%;

    display: grid;

    grid-template-columns:
        1.2fr
        .8fr;

    gap: 70px;

    align-items: center;

}


.section-label {

    color: #1665ff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 12px;

}


.intro-content h2,
.section-heading h2,
.success-heading h2 {

    color: #101a35;

    font-family: Georgia, serif;

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 22px;

}


.intro-content h2 span,
.section-heading h2 span,
.success-heading h2 span {

    color: #1665ff;

}


.intro-content p {

    color: #5f6877;

    font-size: 16px;

    line-height: 28px;

    margin-bottom: 17px;

}


.intro-content strong {

    color: #101a35;

}


.intro-highlights {

    display: flex;

    flex-direction: column;

    gap: 17px;

}


.highlight-card {

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 20px;

    background: white;

    border: 1px solid #e2e6ed;

    border-radius: 15px;

    box-shadow:
        0 8px 25px
        rgba(16,26,53,.06);

}


.highlight-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef4ff;

    color: #1665ff;

    font-size: 21px;

}


.highlight-card strong {

    display: block;

    color: #101a35;

    font-size: 16px;

    margin-bottom: 5px;

}


.highlight-card span {

    display: block;

    color: #7a8494;

    font-size: 13px;

    line-height: 20px;

}


/* =========================================
   COURSES
========================================= */

.courses-section {

    padding: 90px 5%;

    background: #f7f9fc;

}


.section-heading {

    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;

}


.section-heading p {

    color: #687386;

    font-size: 16px;

    line-height: 26px;

}


.courses-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.course-card {

    padding: 27px 23px;

    background: white;

    border: 1px solid #e1e5eb;

    border-radius: 16px;

    min-height: 210px;

    transition: .25s;

}


.course-card:hover {

    transform: translateY(-6px);

    border-color: #d8b83f;

    box-shadow:
        0 12px 30px
        rgba(16,26,53,.09);

}


.course-icon {

    width: 50px;

    height: 50px;

    border-radius: 12px;

    background: #101a35;

    color: #e4bc3f;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    margin-bottom: 20px;

}


.course-card h3 {

    color: #101a35;

    font-size: 17px;

    line-height: 23px;

    margin-bottom: 10px;

}


.course-card p {

    color: #70798a;

    font-size: 13px;

    line-height: 21px;

}


.course-card-wide {

    grid-column: 1 / -1;

    min-height: auto;

    display: flex;

    align-items: center;

    gap: 22px;

}


.course-card-wide .course-icon {

    margin-bottom: 0;

    flex-shrink: 0;

}


/* =========================================
   TRUST SECTION
========================================= */

.trust-section {

    padding: 90px 5%;

    background: white;

}


.trust-box {

    max-width: 1150px;

    margin: auto;

    padding: 55px;

    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 35px;

    align-items: start;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #f5f8ff,
            #fff
        );

    border: 1px solid #e0e6f0;

    box-shadow:
        0 12px 35px
        rgba(16,26,53,.06);

}


.trust-icon {

    width: 90px;

    height: 90px;

    border-radius: 20px;

    background: #101a35;

    color: #e4bc3f;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 38px;

}


.trust-content h2 {

    color: #101a35;

    font-family: Georgia, serif;

    font-size: 38px;

    line-height: 1.2;

    margin-bottom: 20px;

}


.trust-content h2 span {

    color: #1665ff;

}


.trust-content p {

    color: #626c7c;

    font-size: 15px;

    line-height: 26px;

    margin-bottom: 14px;

}


.trust-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 25px;

}


.trust-points div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #343e4e;

    font-size: 13px;

}


.trust-points i {

    color: #1665ff;

}


/* =========================================
   MISSION
========================================= */

.mission-section {

    padding: 90px 8%;

    background: #101a35;

    color: white;

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 70px;

    align-items: center;

}


.mission-label {

    color: #e4bc3f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.6px;

    margin-bottom: 14px;

}


.mission-content h2 {

    font-family: Georgia, serif;

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 22px;

}


.mission-content h2 span {

    color: #e4bc3f;

}


.mission-content > p {

    color: #bfc7d5;

    font-size: 16px;

    line-height: 27px;

    margin-bottom: 15px;

}


.mission-highlight {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 28px;

    padding: 17px;

    background: #17304e;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 13px;

}


.mission-highlight > i {

    color: #e4bc3f;

    font-size: 25px;

}


.mission-highlight strong {

    display: block;

    font-size: 15px;

    margin-bottom: 5px;

}


.mission-highlight span {

    color: #9da8b8;

    font-size: 12px;

    line-height: 19px;

}


.mission-visual {

    min-height: 330px;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}


.visual-circle {

    position: absolute;

    border: 1px solid rgba(228,188,63,.18);

    border-radius: 50%;

}


.circle-one {

    width: 270px;

    height: 270px;

}


.circle-two {

    width: 200px;

    height: 200px;

}


.visual-icon {

    width: 105px;

    height: 105px;

    border-radius: 50%;

    background: #e4bc3f;

    color: #101a35;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 42px;

    position: relative;

    z-index: 2;

    box-shadow:
        0 0 0 15px
        rgba(228,188,63,.08);

}


.mission-visual > span {

    margin-top: 40px;

    color: #9faabd;

    font-size: 11px;

    letter-spacing: 3px;

    position: relative;

}

/* =========================================
   SUCCESS LIST SECTION
========================================= */

.success-section {

    padding: 90px 5%;

    background: #f7f9fc;

}


/* =========================
   HEADING
========================= */

.success-heading {

    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;

}


.success-heading .section-label {

    color: #1665ff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 12px;

}


.success-heading h2 {

    color: #101a35;

    font-family: Georgia, serif;

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 18px;

}


.success-heading h2 span {

    color: #1665ff;

}


.success-heading p {

    color: #687386;

    font-size: 16px;

    line-height: 26px;

}


/* =========================
   LIST
========================= */

.success-list {

    max-width: 1000px;

    margin: auto;

    background: white;

    border: 1px solid #e1e5eb;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 12px 35px
        rgba(16,26,53,.06);

}


/* =========================
   LIST ITEM
========================= */

.success-list-item {

    display: grid;

    grid-template-columns:
        65px
        60px
        1fr;

    align-items: center;

    gap: 22px;

    min-height: 125px;

    padding: 24px 30px;

    border-bottom: 1px solid #e7eaf0;

    position: relative;

    transition: .25s;

}


/* Last item */

.success-list-item:last-child {

    border-bottom: none;

}


/* Hover */

.success-list-item:hover {

    background: #f8faff;

}


/* =========================
   NUMBER
========================= */

.success-number {

    color: #b7bfcc;

    font-family: Georgia, serif;

    font-size: 20px;

    font-weight: bold;

}


/* =========================
   ICON
========================= */

.success-icon {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: #101a35;

    color: #e4bc3f;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    transition: .25s;

}


.success-list-item:hover .success-icon {

    background: #1665ff;

    color: white;

    transform: scale(1.06);

}


/* =========================
   TEXT
========================= */

.success-text h3 {

    color: #101a35;

    font-size: 18px;

    margin-bottom: 7px;

}


.success-text p {

    color: #737d8c;

    font-size: 14px;

    line-height: 23px;

    max-width: 700px;

}


/* =========================
   GOLD SIDE LINE
========================= */

.success-list-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 0;

    background: #e4bc3f;

    transition: .25s;

}


.success-list-item:hover::before {

    height: 100%;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 750px) {

    .success-section {

        padding: 70px 25px;

    }


    .success-heading h2 {

        font-size: 34px;

    }


    .success-list-item {

        grid-template-columns:
            45px
            55px
            1fr;

        gap: 15px;

        padding: 22px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .success-section {

        padding: 60px 16px;

    }


    .success-heading {

        margin-bottom: 35px;

    }


    .success-heading h2 {

        font-size: 29px;

    }


    .success-heading p {

        font-size: 14px;

        line-height: 23px;

    }


    .success-list {

        border-radius: 15px;

    }


    .success-list-item {

        grid-template-columns:
            38px
            48px
            1fr;

        gap: 12px;

        padding: 20px 15px;

        min-height: 115px;

    }


    .success-number {

        font-size: 15px;

    }


    .success-icon {

        width: 45px;

        height: 45px;

        font-size: 17px;

    }


    .success-text h3 {

        font-size: 15px;

        line-height: 21px;

        margin-bottom: 5px;

    }


    .success-text p {

        font-size: 12px;

        line-height: 19px;

    }

}

/* =========================================
   FINAL MESSAGE
========================================= */

.final-section {

    padding: 85px 5%;

    background: white;

}


.final-box {

    max-width: 900px;

    margin: auto;

    text-align: center;

    padding: 60px 35px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #101a35,
            #162b50
        );

    color: white;

    position: relative;

    overflow: hidden;

}


.final-box::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border: 1px solid rgba(228,188,63,.15);

    border-radius: 50%;

    right: -100px;

    top: -120px;

}


.final-icon {

    color: #e4bc3f;

    font-size: 25px;

    margin-bottom: 18px;

}


.final-box h2 {

    font-family: Georgia, serif;

    font-size: 38px;

    line-height: 1.2;

    margin-bottom: 18px;

}


.final-box h2 span {

    color: #e4bc3f;

}


.final-box p {

    max-width: 700px;

    margin: auto;

    color: #bfc7d5;

    font-size: 15px;

    line-height: 26px;

}


.final-divider {

    width: 60px;

    height: 2px;

    background: #e4bc3f;

    margin: 25px auto;

}


.final-box strong {

    color: #e4bc3f;

    font-size: 13px;

    letter-spacing: 1.5px;

}


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

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

.main-footer {

    background:#080d12;

    color:#d7d9de;

    margin-top:80px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

}


/* =========================================
   MAIN FOOTER CONTENT
========================================= */

.footer-content {

    max-width:1400px;

    margin:auto;

    padding:65px 5% 55px;

    display:grid;

    grid-template-columns:
        1.35fr
        1fr
        1.1fr
        1.25fr;

    gap:55px;

}


/* =========================================
   LOGO
========================================= */

.footer-logo {

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:22px;

}


.footer-logo img {

    width:68px;

    height:68px;

    object-fit:contain;

    background:white;

    border-radius:7px;

    padding:5px;

}


.footer-logo h2 {

    color:#e4bc3f;

    font-family:Georgia,serif;

    font-size:27px;

    line-height:29px;

    margin:0;

}


.company-description {

    max-width:310px;

    color:#b8bdc5;

    font-size:15px;

    line-height:25px;

}


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

.footer-column h3,
.footer-contact h3,
.connect-social h3,
.footer-app h3,
.telegram-box h3,
.footer-map h3 {

    color:white;

    font-family:Georgia,serif;

    font-size:20px;

    margin:0 0 22px;

}


/* =========================================
   QUICK LINKS / RESOURCES
========================================= */

.footer-column {

    display:flex;

    flex-direction:column;

}


.footer-column a {

    color:#b8bdc5;

    text-decoration:none;

    font-size:15px;

    margin-bottom:16px;

    transition:.2s;

}


.footer-column a:hover {

    color:#e4bc3f;

    padding-left:3px;

}


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

.footer-contact p {

    display:flex;

    align-items:flex-start;

    gap:14px;

    color:#b8bdc5;

    font-size:15px;

    line-height:23px;

    margin-bottom:18px;

}


.footer-contact i {

    color:#e4bc3f;

    font-size:18px;

    width:20px;

    margin-top:3px;

}


/* =========================================
   CONNECT SECTION
========================================= */

.footer-connect {

    max-width:1400px;

    margin:auto;

    padding:35px 5%;

    border-top:1px solid #252d35;

    border-bottom:1px solid #252d35;

    display:grid;

    grid-template-columns:
        1fr
        1.25fr
        1.25fr
        1.35fr;

    gap:45px;

    align-items:center;

}


/* =========================================
   SOCIAL ICONS
========================================= */

.social-icons {

    display:flex;

    gap:12px;

}


.social-icons a {

    width:44px;

    height:44px;

    border:1px solid #39434d;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#d9dce0;

    text-decoration:none;

    font-size:18px;

    transition:.25s;

}


.social-icons a:hover {

    background:#e4bc3f;

    border-color:#e4bc3f;

    color:#101010;

    transform:translateY(-3px);

}


/* =========================================
   APP
========================================= */

.footer-app {

    display:flex;

    gap:15px;

    align-items:flex-start;

}


.app-icon {

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:10px;

    background:#173957;

    border:1px solid #2c5574;

    color:#e4bc3f;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:21px;

}


.footer-app h3 {

    margin-bottom:8px;

}


.footer-app p,
.telegram-box p {

    color:#aeb5c0;

    font-size:14px;

    line-height:21px;

    margin-bottom:13px;

}


.app-btn {

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:9px 15px;

    background:#e4bc3f;

    color:#101010;

    text-decoration:none;

    border-radius:6px;

    font-size:13px;

    font-weight:bold;

}


.app-btn:hover {

    background:#f0c94d;

}


/* =========================================
   TELEGRAM
========================================= */

.telegram-box {

    display:flex;

    gap:15px;

    align-items:flex-start;

}


.telegram-icon {

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:10px;

    background:#173957;

    border:1px solid #2c5574;

    color:#29b6f6;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:25px;

}


.telegram-box h3 {

    margin-bottom:8px;

}


.telegram-btn {

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:9px 15px;

    background:#19c9e8;

    color:#06151d;

    text-decoration:none;

    border-radius:6px;

    font-size:13px;

    font-weight:bold;

}


.telegram-btn:hover {

    background:#43ddf4;

}


/* =========================================
   MAP
========================================= */

.footer-map {

    background:#061d36;

    border:1px solid #173957;

    border-radius:12px;

    overflow:hidden;

}


.footer-map h3 {

    margin:0;

    padding:17px 18px;

    border-bottom:1px solid #24425d;

}


.footer-map a {

    display:block;

    position:relative;

    height:170px;

}


.footer-map img {

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.3s;

}


.map-overlay {

    position:absolute;

    inset:0;

    background:rgba(8,13,18,.58);

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    color:white;

    font-size:15px;

    font-weight:600;

    opacity:0;

    transition:.3s;

}


.footer-map a:hover img {

    transform:scale(1.05);

}


.footer-map a:hover .map-overlay {

    opacity:1;

}


.map-overlay i {

    color:#e4bc3f;

    font-size:20px;

}


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

.footer-bottom {

    max-width:1400px;

    margin:auto;

    min-height:75px;

    padding:20px 5%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

}


.footer-bottom p {

    color:#c2c5ca;

    font-size:14px;

    margin:0;

}


.footer-bottom > span {

    color:#e4bc3f;

    font-size:11px;

    font-weight:bold;

    letter-spacing:1.5px;

}


.bottom-links {

    display:flex;

    align-items:center;

    gap:10px;

}


.bottom-links a {

    color:#c2c5ca;

    text-decoration:none;

    font-size:14px;

}


.bottom-links a:hover {

    color:#e4bc3f;

}


.bottom-links b {

    color:#50575e;

    font-weight:400;

}


/* =========================================
   TABLET
========================================= */

@media (max-width:1000px) {

    .footer-content {

        grid-template-columns:
            1.3fr
            1fr
            1fr;

        gap:40px;

    }


    .footer-connect {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-map {

        grid-column:span 2;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width:650px) {

    .footer-content {

        grid-template-columns:1fr;

        padding:50px 25px 40px;

        gap:38px;

    }


    .footer-connect {

        grid-template-columns:1fr;

        padding:35px 25px;

        gap:35px;

    }


    .footer-map {

        grid-column:auto;

    }


    .footer-map a {

        height:220px;

    }


    .footer-bottom {

        flex-direction:column;

        text-align:center;

        padding:25px 20px;

        gap:15px;

    }


    .bottom-links {

        flex-wrap:wrap;

        justify-content:center;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width:400px) {

    .footer-logo img {

        width:58px;

        height:58px;

    }


    .footer-logo h2 {

        font-size:23px;

    }


    .social-icons a {

        width:40px;

        height:40px;

    }


    .footer-app,
    .telegram-box {

        gap:12px;

    }

}


/* =========================================================
   FINAL FOOTER FIX
   This section styles the footer classes that are actually
   present in about.html. Nothing above this section is changed.
========================================================= */

.main-footer{
    background:#080d12;
    color:#d7d9de;
    margin-top:80px;
    font-family:Arial, Helvetica, sans-serif;
    width:100%;
}

.main-footer .footer-top{
    max-width:1400px;
    margin:0 auto;
    padding:55px 3%;
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1.25fr;
    gap:45px;
    align-items:start;
}

.main-footer .footer-brand{
    min-width:0;
}

.main-footer .footer-brand img{
    width:68px;
    height:68px;
    object-fit:contain;
    background:#fff;
    border-radius:7px;
    padding:5px;
    display:block;
    margin-bottom:14px;
}

.main-footer .footer-brand h2{
    margin:0 0 12px;
    color:#e4bc3f;
    font-family:Georgia,serif;
    font-size:27px;
    line-height:1.1;
}

.main-footer .footer-brand p{
    max-width:310px;
    margin:0;
    color:#b8bdc5;
    font-size:15px;
    line-height:25px;
}

.main-footer .footer-column{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.main-footer .footer-column h3,
.main-footer .contact-column h3,
.main-footer .app-content h3,
.main-footer .location-section h3,
.main-footer .social-section h3{
    color:#fff;
    font-family:Georgia,serif;
    font-size:20px;
    margin:0 0 20px;
}

.main-footer .footer-column > a{
    color:#b8bdc5;
    text-decoration:none;
    font-size:15px;
    line-height:22px;
    margin-bottom:13px;
    transition:.2s;
}

.main-footer .footer-column > a:hover{
    color:#e4bc3f;
    padding-left:3px;
}

.main-footer .footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:18px;
}

.main-footer .footer-contact-item > i{
    color:#e4bc3f;
    font-size:18px;
    width:20px;
    min-width:20px;
    margin-top:3px;
}

.main-footer .footer-contact-item a,
.main-footer .footer-contact-item p{
    color:#b8bdc5;
    font-size:15px;
    line-height:23px;
    text-decoration:none;
    margin:0;
}

.main-footer .footer-contact-item a{
    display:block;
    margin-bottom:3px;
}

.main-footer .footer-contact-item a:hover{
    color:#e4bc3f;
}

.main-footer .footer-middle{
    max-width:1400px;
    margin:0 auto;
    padding:32px 3%;
    border-top:1px solid #252d35;
    border-bottom:1px solid #252d35;
    display:grid;
    grid-template-columns:1fr 1.25fr 1.35fr;
    gap:45px;
    align-items:center;
}

.main-footer .social-section h3{
    margin-bottom:16px;
}

.main-footer .social-icons{
    display:flex;
    align-items:center;
    gap:12px;
}

.main-footer .social-icons a{
    width:44px;
    height:44px;
    border:1px solid #39434d;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d9dce0;
    text-decoration:none;
    font-size:18px;
    transition:.25s;
}

.main-footer .social-icons a:hover{
    background:#e4bc3f;
    border-color:#e4bc3f;
    color:#101010;
    transform:translateY(-3px);
}

.main-footer .app-section{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.main-footer .app-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:10px;
    background:#173957;
    border:1px solid #2c5574;
    color:#e4bc3f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.main-footer .app-content{
    min-width:0;
}

.main-footer .app-content h3{
    margin-bottom:7px;
}

.main-footer .app-content p{
    color:#aeb5c0;
    font-size:14px;
    line-height:21px;
    margin:0 0 12px;
}

.main-footer .app-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 15px;
    background:#e4bc3f;
    color:#101010;
    text-decoration:none;
    border-radius:6px;
    font-size:13px;
    font-weight:bold;
}

.main-footer .app-btn:hover{
    background:#f0c94d;
}

.main-footer .location-section{
    min-width:0;
}

.main-footer .location-section h3{
    margin-bottom:12px;
}

.main-footer .map-card{
    position:relative;
    display:block;
    width:100%;
    height:150px;
    overflow:hidden;
    border:1px solid #173957;
    border-radius:10px;
    background:#061d36;
    text-decoration:none;
}

.main-footer .map-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.3s;
}

.main-footer .map-overlay{
    position:absolute;
    inset:0;
    background:rgba(8,13,18,.58);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    opacity:0;
    transition:.3s;
}

.main-footer .map-card:hover img{
    transform:scale(1.05);
}

.main-footer .map-card:hover .map-overlay{
    opacity:1;
}

.main-footer .map-overlay i{
    color:#e4bc3f;
    font-size:20px;
}

.main-footer .map-address{
    color:#aeb5c0;
    font-size:12px;
    line-height:19px;
    margin:9px 0 0;
}

.main-footer .footer-bottom{
    min-height:75px;
    padding:20px 3%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    max-width:1400px;
    margin:0 auto;
}

.main-footer .footer-bottom p{
    color:#c2c5ca;
    font-size:14px;
    margin:0;
}

.main-footer .footer-bottom-links{
    display:flex;
    align-items:center;
    gap:10px;
}

.main-footer .footer-bottom-links a{
    color:#c2c5ca;
    text-decoration:none;
    font-size:14px;
}

.main-footer .footer-bottom-links a:hover{
    color:#e4bc3f;
}

.main-footer .footer-bottom-links span{
    color:#50575e;
}

.main-footer .footer-tagline{
    color:#e4bc3f;
    font-size:11px;
    font-weight:bold;
    letter-spacing:1.5px;
}

/* TABLET */
@media (max-width:1000px){
    .main-footer .footer-top{
        grid-template-columns:1.3fr 1fr 1fr;
        gap:35px;
    }

    .main-footer .contact-column{
        grid-column:1 / -1;
    }

    .main-footer .footer-middle{
        grid-template-columns:1fr 1fr;
    }

    .main-footer .location-section{
        grid-column:1 / -1;
    }
}

/* MOBILE */
@media (max-width:650px){
    .main-footer .footer-top{
        grid-template-columns:1fr;
        padding:45px 25px;
        gap:35px;
    }

    .main-footer .contact-column{
        grid-column:auto;
    }

    .main-footer .footer-middle{
        grid-template-columns:1fr;
        padding:35px 25px;
        gap:35px;
    }

    .main-footer .location-section{
        grid-column:auto;
    }

    .main-footer .map-card{
        height:220px;
    }

    .main-footer .footer-bottom{
        flex-direction:column;
        text-align:center;
        padding:25px 20px;
        gap:15px;
    }

    .main-footer .footer-bottom-links{
        flex-wrap:wrap;
        justify-content:center;
    }
}