@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    font-family: "Inter", sans-serif;
}

:root {
    --main-color: #141e4a;
    --secondary-color: #fdcb6e;
    --text-main-color: #111;
    --text-secondary-color: #71717B;
}

.btn-primary {
    background-color: var(--main-color);
    border: var(--main-color);
}

.title {
    font-weight: bold;
    line-height: 110%;
    font-size: 48px;
}

.subtitle {
    line-height: 110%;
    font-size: 32px;
}

.text-main-color {
    color: var(--main-color);
}

.text-secondary-color {
    color: var(--secondary-color);
}

.bg-main-color {
    background-color: var(--main-color);
}

.bg-secondary-color {
    background-color: var(--secondary-color);
}

#header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 16px 0;
    z-index: 999;
}

#header.header-scroll {
    padding: 8px 0;
    box-shadow: rgba(0,0,0,.1) 0 0 16px;
}

.header_logo img {
    height: 80px;
}

.desktop-nav li {
    list-style: none;
}

.desktop-nav .desktop-item a {
    color: var(--text-main-color);
    font-weight: bold;
    text-decoration: none;
}

.desktop-nav .desktop-item a:hover {
    color: var(--main-color);
}

.desktop-nav .btn {
    font-weight: bold;
}

#home {
    margin-top: 112px;
}

#home .subtitle {
    color: var(--text-secondary-color);
    font-size: 18px;
}

#about {
    background-color: var(--main-color);
    padding: 120px 0;
    position: relative;
    z-index: 99;
}

#about .subtitle {
    margin-bottom: 40px;
}

.about-item {
    padding: 0 32px;
}

.about-item p:first-of-type {
    font-size: 60px;
    color: #fdcb6e;
}

#pre-services {
    padding: 120px 0;
    background-color: #efefef;
}

.pre-service-item img {
    background-color: #fff;
    padding: 8px;
    border-radius: 100px;
    box-shadow: rgba(0,0,0,.1) 0 0 8px;
}

.service {
    padding: 120px 0;
}

.service li {
    margin-bottom: 16px;
}

.service-content {
    padding: 0 64px;
}

#team {
    padding: 120px 0;
    background-color: #efefef;
}

#team .title {
    margin-bottom: 60px;
}

.employee {
    padding-left: 32px;
    padding-right: 32px;
}

.employee img {
    border: #fff solid 4px;
    box-shadow: rgba(0,0,0,.3) 0 0 16px;
}

.employee a {
    color: var(--main-color);
    text-decoration: none;
}

#footer {
    padding: 60px 0 16px 0;
}

#footer img {
    filter: brightness(100);
}

#float_01 {
    position: fixed;
    top: calc((100% / 2) - 75px);
    left: -80px;
    width: 150px;
    z-index: 9;
}

#float_02 {
    position: fixed;
    bottom: -32px;
    right: -16px;
    width: 150px;
    z-index: 9;
}

.btn:hover i {
    position: relative;
    left: 5px;
}

@media(max-width: 991px){
    #header {
        padding: 16px 0;
    }
    #about, #team, .service, #pre-services {
        padding: 32px 0;
    }

    #pre-services {
        padding-left: 32px;
        padding-right: 32px;
    }

    .title {
        font-size: 32px;
    }
    .subtitle {
        font-size: 24px;
    }

    .employee img {
        width: 150px;
    }

    .service-content {
        padding: 0 32px;
    }
}