* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Ubuntu", sans-serif;
    box-sizing: border-box;
}

/* Scroll Bar */
body::-webkit-scrollbar {
    width: 16px;
    background-color: #333333;
}

body::-webkit-scrollbar-track {
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
    height: 56px;
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
    background-color: #888888;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #555555;
}

html {
    scroll-behavior: smooth;
}

/* Global */
.inner-width {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    background-color: transparent;
    width: 100%;
    padding: 20px 0;
    top: 0;
    z-index: 98;
    transition: .3s linear;
}

.navbar .inner-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 180px;
    height: 80px;
    background: url(/assets/logo_white.png) no-repeat;
    background-size: contain;
}

/* Menu Toggler */
.menu-toggler {
    background: none;
    width: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
    z-index: 98;
    display: none;
}

.menu-toggler span {
    display: block;
    height: 3px;
    background-color: #ffffff;
    margin: 6px 0;
    position: relative;
    transition: .3s linear;
}

.navbar-menu a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 30px;
    transition: .3s linear;
}

.navbar-menu a:hover {
    color: #ffffff7f !important;
}

.sticky {
    background-color: #2c3a47;
    padding: 12px 0;
}

.sticky .navbar-menu a {
    color: #ffffff;
}

.sticky .menu-toggler span {
    background-color: #ffffff;
}

/* Home */
#home {
    height: 100vh;
    min-height: 500px;
    background: url(/assets/background.jpg) no-repeat scroll center;
    background-size: cover;
    background-attachment: fixed;
}

#home .inner-width {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

#home .content {
    width: 100%;
    color: #ffffff;
}

#home .content h1 {
    color: #ffffff;
    font-size: 60px;
    margin-bottom: 60px;
}

#home .content h1 a {
    color: #ffffff;
}

.sm a {
    color: #ffffff;
    font-size: 24px;
    margin: 0 6px;
    transition: .3s linear;
}

.sm a:hover {
    opacity: .7;
}

#home .buttons {
    margin-top: 40px;
}

#home .buttons a {
    display: inline-block;
    margin: 15px 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    width: 160px;
    border: 2px solid #20b2aa;
    padding: 14px 0;
    border-radius: 2rem;
    transition: .3s linear;
}

#home .buttons a:hover {
    background-color: #20b2aa66;
}

/* Sections */
section {
    padding: 90px 0;
    background-color: #222222;
}

.section-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
    font-size: 26px;
    padding-bottom: 20px;
    color: #ffffff;
}

.section-title::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #ffffff;
    bottom: 0;
    left: calc(50% - 40px);
}

.section-title::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 10px;
    background-color: #ffffff;
    border: 4px solid #222222;
    left: calc(50% - 12px);
    bottom: -7px;
}

/* Info */
.info-content {
    color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -100px;
}

.item {
    padding: 25px 0;
    width: calc(33% - 20px);
    text-align: center;
}

.item img {
    border-radius: 8px;
    transition: .3s linear;
}

.item img:hover {
    transform: scale(1.05);
}

.item h1 {
    font-size: 25px;
}

.item h4 {
    margin-top: 10px;
    font-weight: 500;
}

.item h4:after {
    content: "..."
}

/* About Us */
.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-pic {
    border-radius: 100%;
    display: inline-block;
    margin: auto;
    margin-right: 40px;
}

.about-pic img {
    display: block;
    width: 175px;
    height: 175px;
    border-radius: 100%;
    transition: .3s linear;
}

.about-pic img:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    color: #ffffff;
}

.about-text h3 {
    color: #949494;
    font-size: 16px;
    font-weight: 500;
}

.about-text h3 span:nth-child(1):after,
.about-text h3 span:nth-child(2):after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    display: inline-block;
    border-radius: 50%;
    margin: 0 10px;
}

.about-text p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
}

.about-sm a {
    margin-top: 8px;
    margin-right: 2px;
    color: #ffffff;
    font-size: 22px;
    transition: .3s linear;
}

.about-sm a:hover {
    opacity: .7;
}

/* Services */
.services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service {
    background-color: #99999933;
    color: #f9f9f9;
    font-size: 18px;
    width: calc(33% - 20px);
    text-align: center;
    border: none;
    border-radius: 6px;
    margin: 15px 0;
    padding: 30px 20px;
    transition: height .3s linear, .3s linear;
    height: 150px;
}

.service:hover {
    background-color: #0277bda5;
    height: 200px;
}

.service:hover p {
    color: #ffffff;
}

.service .icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.service h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service p {
    color: transparent;
    font-size: 15px;
    transition: .3s ease;
}

/* Contact Us */
.contact-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-form button,
.contact-form input,
.contact-form textarea {
    font-size: 15px;
    width: 100%;
    height: 50px;
    margin: 8px 0;
    background-color: #353b48;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 6px;
}

.firstname:focus,
.lastname:focus,
.email:focus,
.phone:focus,
.message:focus {
    box-shadow: 0 0 4px #ffffff;
}

.firstname,
.lastname,
.email,
.phone {
    max-width: calc(50% - 10px);
}

.contact-form textarea {
    min-height: 150px;
    max-height: 300px;
    resize: vertical;
}

.contact-form .btn {
    width: 170px;
    font-size: 16px;
    padding: 0;
    margin-right: auto;
    cursor: pointer;
    border-radius: 6px;
    transition: .3s linear;
}

.contact-form .btn:hover {
    background-color: #353b48b2;
}

.contact-form .cf-turnstile {
    margin-top: 8px;
    margin-right: 100%;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

.copyright {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-sm a {
    color: #ffffff;
    font-size: 22px;
    margin: 0 4px;
    margin-bottom: 20px;
    transition: .3s linear;
}

.footer-sm a:hover {
    color: #ffffffa5;
}

.liability {
    font-size: 12px;
}

/* Go Top Button */
.goTop {
    display: none;
    color: #ffffff;
    position: fixed;
    z-index: 97;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: #0055b3;
    border: none;
    border-radius: 100%;
    font-size: 20px;
    cursor: pointer;
}

/* Mobile */
@media screen and (max-width: 980px) {
    .menu-toggler {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        right: -100%;
        max-width: 400px;
        padding: 80px 50px;
        background-color: #2c3a47;
        transition: .3s linear;
    }

    .navbar-menu a {
        display: block;
        font-size: 30px;
        margin: 30px 0;
    }

    .sticky .navbar-menu {
        background-color: #2c3a47;
    }

    .navbar-menu.active {
        right: 0;
    }
    
    .menu-toggler.active span:nth-child(1) {
        transform: rotate(-45deg);
        top: 4px;
    }
    
    .menu-toggler.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggler.active span:nth-child(3) {
        transform: rotate(45deg);
        bottom: 14px;
    }

    .inner-width {
        max-width: 800px;
    }

    /* Info */
    .item {
        width: 100%;
    }

    /* About Us */
    .about-pic {
        margin: 0 auto 20px;
    }

    .about-text {
        flex: 100%;
        margin: 0 20px;
        text-align: center;
    }

    .about-text p {
        text-align: center;
        margin-top: 14px;
    }

    .about-sm {
        margin-top: 2px;
    }

    /* Services */
    .service {
        width: calc(50% - 20px);
    }

    .service p {
        display: block;
    }

    /* Contact Us */
    .contact-form .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .inner-width {
        padding: 0 20px;
    }

    /* Home */
    #home {
        background-size: fill;
    }

    /* Services */
    .service {
        width: 100%;
        height: 200px;
    }

    .service p {
        color: #ffffff;
    }

    /* Contact Us */
    .firstname,
    .lastname,
    .email,
    .phone {
        max-width: 100%;
    }
}
