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

body {
    font-family: Arial, sans-serif;
    background: #031514;
    color: white;
}


/* HEADER */

.navbar {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 6%;
    background: #031010;
    border-bottom: 1px solid #12433f;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #00e6d0;
}

.logo small {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 3px;
    color: #ddd;
}

.navbar nav {
    display: flex;
    gap: 35px;
    margin-left: 90px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 25px 0;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #00e6d0;
    border-bottom: 3px solid #00e6d0;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.search {
    width: 280px;
    height: 38px;
    border: 1px solid #17645d;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
}

.search i {
    color: #00e6d0;
}

.nav-right a {
    color: #00e6d0;
    font-size: 21px;
    text-decoration: none;
}


/* ABOUT BANNER */

.about-banner {
    height: 360px;
    background-image: url("../image/about/about-banner.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-content {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
}


/* BANNER TEXT */

.banner-content {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
    width: 430px;
}

.small-title {
    color: #00e6d0;
    letter-spacing: 4px;
    font-size: 11px;
    margin-bottom: 15px;
}

.banner-content h1 {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 15px;
}

.banner-content h1 span {
    color: #00e6d0;
}

.banner-content h3 {
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
}

.description {
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
}

.highlight {
    color: #00e6d0;
    margin-top: 15px;
}


/* SERVICES */

.services {
    min-height: 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #12433f;
    border-bottom: 1px solid #12433f;
    background: #031918;
}

.services div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid #12433f;
}

.services i {
    font-size: 30px;
    color: #00e6d0;
}

.services h3 {
    font-size: 15px;
}

.services p {
    color: #aaa;
    font-size: 12px;
    margin-top: 5px;
}


/* FOUNDERS */

.founders {
    width: 88%;
    margin: auto;
    padding: 45px 0;
}

.founders h2 {
    font-size: 30px;
    line-height: 1.1;
}

.founders h2 span {
    color: #00e6d0;
}

.intro {
    color: #bbb;
    margin-top: 12px;
    line-height: 1.5;
}

.founder-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.founder {
    border: 1px solid #17645d;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 20px;
    background: #061d1b;
}

.founder-image {
    width: 150px;
    min-width: 150px;
    height: 190px;
    border-radius: 8px;
    background: #092522;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image i {
    font-size: 50px;
    color: #00e6d0;
}

.founder-info h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.founder-info span {
    color: #00e6d0;
    font-size: 13px;
}

.founder-info p {
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
    margin: 15px 0;
}

.founder-info > i {
    color: #aaa;
    font-size: 12px;
}


/* STORY */

.story {
    width: 88%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 40px 0;
    border-top: 1px solid #12433f;
}

.story-text h2 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.story-text h2 span {
    color: #00e6d0;
}

.story-text p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-image {
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 25px;
    border: 2px solid #00e6d0;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
}

.button:hover {
    background: #00e6d0;
    color: #031514;
}


/* VALUES */

.values {
    width: 88%;
    margin: auto;
    padding: 30px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #12433f;
}

.values div {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid #12433f;
}

.values div:last-child {
    border-right: none;
}

.values i {
    font-size: 28px;
    color: #00e6d0;
    margin-bottom: 10px;
}

.values h3 {
    font-size: 15px;
    margin-bottom: 7px;
}

.values p {
    color: #aaa;
    font-size: 12px;
}


/* FOOTER */

footer {
    min-height: 100px;
    padding: 25px 7%;
    border-top: 1px solid #12433f;
    background: #02100f;
    display: flex;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-logo span {
    color: #00e6d0;
}

.footer-logo small {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 5px;
}

.social {
    margin-left: auto;
    display: flex;
    gap: 18px;
}

.social i {
    font-size: 18px;
}

.footer-right {
    margin-left: 50px;
    padding-left: 30px;
    border-left: 1px solid #17645d;
    color: #ccc;
    font-size: 13px;
}

.copyright {
    background: #010908;
    color: #999;
    padding: 12px 7%;
    font-size: 12px;
}


/* MOBILE */

@media (max-width: 900px) {

    .navbar nav {
        display: none;
    }

    .search {
        display: none;
    }

    .founder-box,
    .story {
        grid-template-columns: 1fr;
    }

    .services,
    .values {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .banner-content {
        width: 80%;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .services,
    .values {
        grid-template-columns: 1fr;
    }

    .founder {
        flex-direction: column;
    }

    .founder-image {
        width: 100%;
    }

    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social {
        margin-left: 0;
    }

    .footer-right {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

}