/* =========================================================
   BASIC
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #17201a;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.wrap {
    width: min(1120px, 92%);
    margin: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #e5ebe7;
    z-index: 5;
}

.nav {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

nav {
    display: flex;
    gap: 22px;
}

nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 70px 0;
    background: linear-gradient(135deg, #eef9f2, #fff);
}

.hero-grid,
.two {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 55px;
    align-items: center;
}

.hero small,
.section small,
.contact small {
    font-weight: 800;
    letter-spacing: 2px;
    color: #0066CC;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin: 5px 0 15px;
}

.hero p {
    font-size: 19px;
    max-width: 650px;
}

.btn {
    display: inline-block;
    background: #0066CC;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 9px;
    font-weight: 800;
    margin-top: 15px;
}

.hero-box {
    background: #0066CC;
    color: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 50px #0066CC22;
    font-size: 55px;
}

.hero-box h2 {
    font-size: 28px;
    line-height: 1.2;
}

.hero-box p {
    font-size: 16px;
    color: #e5ebf5;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 30px 0;
    margin: 0;
}

.pale {
    background: #f5f8f5;
}

.section h2 {
    font-size: 40px;
    line-height: 1.1;
    margin: 5px 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    background: #fff;
    border: 1px solid #e1e9e3;
    border-radius: 16px;
    padding: 27px;
}

.card b {
    font-size: 11px;
    letter-spacing: 1px;
    color: #0066CC;
    background: #eaf6ee;
    padding: 6px 9px;
    border-radius: 99px;
}

.card h3 {
    font-size: 21px;
}

.icon {
    font-size: 34px;
}


/* =========================================================
   IMAGE SLIDERS
   ========================================================= */

.image-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #fff;

    margin: 0 !important;
    padding: 0 !important;

    display: block;
}

.image-track {
    display: flex;
    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 0;
}

.slide img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0 !important;
    padding: 0 !important;

    border: 0;
}


/* =========================================================
   IMPORTANT:
   REMOVE SPACE BETWEEN SLIDER AND NEXT SECTION
   ========================================================= */

.image-slider + .section {
    margin-top: 0 !important;
    padding-top: 30px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    background: #0066cc;
    color: #fff;
    padding: 55px 0;
}

.contact small {
    color: #8be2b1;
}

.contact p {
    color: #c8d2cb;
}

.map {
    background: #f79502;
    border-radius: 20px;
    padding: 32px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    margin: 0;
    padding: 0;
}

.foot {
    display: flex;
    justify-content: space-between;
    padding: 28px 0;
}

.foot span {
    color: #66716a;
    font-size: 14px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .nav {
        flex-direction: column;
        padding: 14px 0;
        gap: 10px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero-grid,
    .two,
    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-box {
        padding: 30px;
    }

    .section {
        padding: 30px 0;
    }

    .section h2 {
        font-size: 34px;
    }

    .contact {
        padding: 40px 0;
    }

    .foot {
        flex-direction: column;
        gap: 8px;
    }

}