* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    background-color: #000;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 999;
}

nav {
    max-width: 1416px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 48px;
    height: 48px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: #FFF;
    transition: .3s ease;
}

.nav-link:hover {
    color: #FF0000;
}

.burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: none;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #FF0000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
}

.menu-burger {
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    z-index: 999;
}

.menu-burger a {
    text-decoration: none;
    transition: 0.3s ease;
    color: #FFF;
}

.menu-burger a:hover {
    color: #FF0000;
}

.menu-burger h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 100%;
}

.flex {
    display: flex;
}

@media (max-width: 960px) {
    .nav-list {
        display: none;
    }

    .burger {
        display: block;
    }
}

.hero {
    max-width: 1416px;
    height: 100vh;
    padding: 128px 24px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 48px;
}

.hero-title {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-title h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 100%;
    color: #FFF;
    text-transform: uppercase;
}

.hero-title h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 100%;
    color: #FF0000;
    text-transform: uppercase;
}

.hero-main {
    max-width: 1176px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-main p {
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    color: #FFF;
    text-align: center;
}

.hero-main p span {
    color: #FF0000;
}

.btn {
    padding: 8px 16px;
    background-color: #FF0000;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    line-height: 100%;
    text-transform: uppercase;
    transition: .3s ease;
}

.btn:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
    }

    .hero-title {
        flex-direction: column;
        gap: 8px;
    }

    .hero-title h1 {
        font-size: 32px;
    }
    
    .hero-title h2 {
        font-size: 24px;
    }
    
    .hero-main p {
        font-size: 16px;
        text-align: justify;
    }
}

.container-testimonials {
    max-width: 1416px;
    margin: 0 auto;
    padding: 128px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.container-testimonials h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 100%;
    color: #FFF;
    text-align: center;
}

.container-testimonials p {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    color: #FFF;
    text-align: justify;
}

.testimonials-content {
    width: 100%;
}

.testimonials-item {
    width: 100%;
    padding: 24px;
    border: 2px solid #FF0000;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.name {
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    color: #FF0000;
}

.job {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    color: #FFF;
}

.swiper-pagination-bullet {
    background-color: #FF0000;
}

.swiper-pagination {
    position: relative;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .container-testimonials h1 {
        line-height: 150%;
    }
}

.container-location {
    max-width: 1416px;
    margin: 0 auto;
    padding: 128px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.container-location h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 100%;
    color: #FFF;
}

.container-location h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    color: #FF0000;
}

.container-location p {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    color: #FFF;
}

.location-01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
}

.location-01 > div {
    display: flex;
    gap: 8px;
}

.location-01 > div svg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-01 > div > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-02 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-location iframe {
    width: 100%;
}

@media (max-width: 1024px) {
    .container-location {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.container-services {
    max-width: 1416px;
    padding: 128px 24px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 48px;
}

.container-services ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.container-services li {
    font-size: 32px;
    font-weight: 900;
    line-height: 100%;
    color: #FFF;
    text-align: center;
}

.container-contact {
    max-width: 1416px;
    padding: 128px 24px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 48px;
}

.container-contact h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 100%;
    color: #FFF;
    text-align: center;
}

.container-contact p {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    color: #FFF;
    text-align: center;
}

.container-contact span {
    color: #FF0000;
}

@media (max-width: 1024px) {
    .container-contact h1 {
        line-height: 150%;
    }

    .container-contact p {
        text-align: justify;
    }
}

footer {
    width: 100%;
    background-color: #FFF;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    color: #000;
    text-align: center;
}