@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Avenir+LT+W01_35+Light&display=swap');

:root {
    font-size: 62.5%;
}

html {
    margin: 0;
}

body {
    background-color: var(--primary-color);
    ;
    margin: 0;
    padding: 0;
}

button {
    transition: all 0.3s;

    &:hover {
        background-color: #05b9f2;
        border: none;
        color: white;
    }
}


header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 12rem 4rem 22rem;
    font-family: Arial, Helvetica, sans-serif;
    height: 20%;
    padding-bottom: 0;
}

header .nav {
    display: flex;
    align-items: center;
}

header .menu-icon {
    display: none;

    svg {
        width: 4rem;
        height: 4rem;
        color: white;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 2rem 4rem;
    }

    header .nav {
        display: none;
    }

    header .menu-icon {
        display: block;
    }

}

#side {
    display: none;
}

#side.open {
    box-sizing: border-box;
    padding: 2rem 4rem;
    background: var(--primary-color);
    z-index: 1100;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    gap: 2rem;

    .close {
        display: flex;
        width: 100%;
        justify-content: end;
        align-items: center;

        .menu-icon {
            display: block;

            svg {
                width: 4rem;
                height: 4rem;
                color: white;
            }
        }
    }

    .buttonContainer-mobile {
        display: flex;
        flex-direction: column;
        justify-content: baseline;
        align-items: center;
        gap: 5rem;

        button {
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 1rem 2rem;
            border: none;
            border-radius: 5rem;
            cursor: pointer;
            font-size: 2rem;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 2rem;
        }
    }
}

header .nav img {
    height: 2.5rem;
    width: 2.5rem;
}

header button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    ;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5rem;
    cursor: pointer;
    font-size: 1.8rem;
    margin-right: 4rem;
}

header a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.8rem;
    margin-right: 2rem;
}

.top-section {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 84rem;
}

.section-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding-inline: 3rem;
    padding-top: 13rem;
}

.top-section .bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    min-height: 100%;
    z-index: -1;
}

.section-1 .content {
    width: fit-content;
}

.section-1 .content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    color: var(--accent-color);
    margin: 0;
    width: 70%;
}

.section-1 .content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--secondary-color);
    margin: 0;
}

@media screen and (max-width: 768px) {
    .section-1 .content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin-left: 2rem;
        width: 100%;
        text-align: center;
    }

    .section-1 .content h1 {
        font-size: 4.5rem;
        margin-bottom: 1rem;
    }

    .section-1 .content h3 {
        font-size: 3.5rem;
    }

}

.section-2 {
    display: flex;
    flex-direction: row;
}

.section-2 img {
    flex: 1;
}

.section-2 .content {
    flex: 1;
    margin: auto;
    padding: 0 10rem;
}

.section-2 .content h3 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 4rem;
    font-family: 'Oswald', sans-serif;
}

.section-2 .content p {
    text-align: justify;
    font-size: 1.8rem;
    margin-top: 0;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 768px) {
    .section-2 {
        flex-direction: column;
    }

    .section-2 img {
        height: 60%;
    }

    .section-2 .content {
        padding: 0 2rem;
        text-align: left;
        margin: 2rem;
    }

    .section-2 .content h3 {
        font-size: 3rem;
        margin-top: 4rem;
        margin-bottom: 2rem;
    }

    .section-2 .content p {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

.section-3 {
    display: flex;
    flex-direction: row;
    margin: 4rem 4rem;
    justify-content: center;
    gap: 8rem;
    flex-wrap: wrap;
}

.section-3 .card {
    display: flex;
    flex-direction: column;
    width: 25rem;
}

.section-3 .card img {
    width: 12rem;
    height: 12rem;
    align-self: center;
}

.section-3 .card button {
    background-color: var(--accent-color);
    padding: 1rem 0.5rem;
    width: 100%;
    border: none;
    border-radius: 5rem;
    cursor: pointer;
    font-size: 1.8rem;
    margin-top: 2rem;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;

    &:hover {
        background-color: #05b9f2;
        border: none;
        color: white;
    }
}

@media screen and (max-width: 768px) {
    .section-3 {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .section-3 .card {
        width: fit-content;
    }

    .section-3 .card img {
        width: 13rem;
        height: 13rem;
    }

    .section-3 .card button {
        font-size: 2rem;
        padding: 1rem 1rem;
        margin-top: 1rem;
        border-radius: 10rem;
    }


}

.section-4 {
    position: relative;
    width: 100%;
    min-height: 45vh;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

.section-4 .bgImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.section-4 .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 10rem;
    gap: 4rem;
}

.section-4 .content .card {
    display: flex;
    flex-direction: column;
    padding-top: 3%;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    width: 47rem;
    height: 16.5rem;
}

.section-4 .content .card img {
    width: 5rem;
    height: 5rem;
}

.section-4 .content .card h3 {
    font-size: 1.5rem;
    font-family: 'avenir-lt-w01_35-light1475496', sans-serif;
    margin: 2rem 4rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .section-4 .content {
        width: 100%;
        grid-template-columns: 1fr;
        margin: 0 0rem;
        gap: 1.5rem;
    }

    .section-4 .content .card {
        box-sizing: border-box;
        width: 100%;
        padding: 2rem 2rem;
        height: auto;
    }

    .section-4 .content .card h3 {
        font-size: 2rem;
        margin: 3rem 0;
    }

    .section-4 .content .card img {
        width: 12rem;
        height: 12rem;
    }
}

.images-all {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.801);
    z-index: 1200;

    .btn-prev {
        cursor: pointer;
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%) rotate(180deg);
        color: var(--secondary-color);
    }

    .btn-next {
        cursor: pointer;
        color: var(--secondary-color);
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
    }

    .image-close {
        cursor: pointer;
        color: var(--secondary-color);
        position: absolute;
        right: 3rem;
        top: 3rem;

        svg {
            width: 4rem;
            height: 4rem;
        }
    }

    img {
        object-fit: cover;
        width: auto;
        height: 42rem;

    }
}

.images-all.open {
    display: flex;
}

.section-5 {
    width: 100%;
    box-sizing: border-box;
    padding: 10rem 6rem;
    text-align: center;
    position: relative;

    .swiper-button-next {
        transform: translateY(50%);
        color: var(--accent-color);
    }

    .swiper-button-prev {
        transform: translateY(50%);
        color: var(--accent-color);
    }
}

.section-5 h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 4rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .section-5 {
        width: 100%;
        padding: 3rem 2rem;
    }

    .section-5 h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

.swiper {
    position: relative;
    width: 100%;
}

.swiper-wrapper {
    transition: transform 0.5s ease-in-out;
    height: auto !important;
}

.swiper-slide {
    position: relative;
    cursor: pointer;

}

.swiper-slide .hover {
    z-index: 99999;
    position: absolute;
    width: calc(100% - 2rem);
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    background: var(--secondary-color);
    opacity: 0;
    margin-left: 10;
    transition: all 0.8s;

    &:hover {
        opacity: 0.7;
        ;
    }
}

.swiper-slide img {
    width: calc(100% - 2rem);
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}


@media screen and (max-width: 768px) {
    .slide img {
        width: 100%;
    }
}

.section-5 button {
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    border-radius: 5rem;
    cursor: pointer;
    font-size: 2.5rem;
    margin-top: 4rem;
    text-transform: uppercase;

    &:hover {
        border: 2px solid #05b9f2;
        background-color: #05b9f2;
        border: none;
        color: white;
    }
}

@media screen and (max-width: 768px) {
    .section-5 button {
        font-size: 2rem;
        padding: 2rem 4rem;
    }
}

.section-6 {
    border-block: 2px solid var(--secondary-color);
    width: 100%;
    background-color: black;
    box-sizing: border-box;
}

.section-6 h1 {
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
    color: var(--accent-color);
    margin: 0;
    margin-top: 4rem;
    text-align: center;
}

.section-6 h3 {
    font-size: 2rem;
    font-family: "Oswald", sans-serif;
    color: var(--accent-color);
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-6 .cards {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-top: 1rem;
    padding: 0;
}

.section-6 .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 0 6rem;
    border-inline: 1px solid var(--secondary-color);
    min-height: 23rem;
}

.section-6 .card h2 {
    font-size: 2.6rem;
    font-family: "Oswald", sans-serif;
    color: var(--secondary-color);
    margin: 0;
    margin: 0;
    text-align: center;
}

.section-6 .card h4 {
    font-size: 1.8rem;
    font-family: "Open Sans", sans-serif;
    color: var(--secondary-color);
    margin: 0;
    margin: 0;
    text-align: center;
}

.section-6 .card .starts {
    margin-bottom: 2.5rem;
}

.section-6 .card .starts span svg {
    width: 5rem;
    height: 5rem;
}

@media screen and (max-width: 768px) {
    .section-6 {
        .cards {
            flex-direction: column;
        }
    }

    .section-6 h1 {
        box-sizing: border-box;
        font-size: 3rem;
        margin-top: 4rem;
        padding-inline: 2rem;
    }

    .section-6 h3 {
        padding-inline: 2rem;
        font-size: 2.5rem;
        margin-top: 2rem;
    }
}

.section-7 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding-block: 4rem;
}

.section-7 h1 {
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
    color: var(--accent-color);
    margin: 0;
    margin-top: 4rem;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .section-7 h1 {
        font-size: 3rem;
        margin-top: 4rem;
    }

    .section-7 .cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;

    }
}

.section-7 .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.section-7 .card-grid {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-7 .card-grid img {
    width: 18rem;
    height: 18rem;
}

.section-7 .card-grid h2 {
    margin: 0;
    padding: 2rem 0;
    width: 100%;
    background-color: var(--secondary-color);
    font-family: "Arial", sans-serif;
    font-size: 1.4rem;
    text-align: center;
}

.section-8 {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-8 .bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 60vh;
    object-fit: cover;
    z-index: -1;
}

.section-8 .content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.section-8 .content h1 {
    font-size: 2.5rem;
    font-family: "Oswald", sans-serif;
    color: var(--accent-color);
    margin: 0;
    margin-top: 4rem;
    text-align: center;

}

@media screen and (max-width: 768px) {
    .section-8 {
        height: 70vh !important;
    }

    .section-8 .bgVideo {
        height: 70vh !important;
    }

    .section-8 .content {
        width: 100%;
    }

    .section-8 .content h1 {
        box-sizing: border-box;
        padding: 2rem 4rem;
        font-size: 2rem;
        width: 100%;
    }
}

.section-9 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    background-color: black;
}

.section-9 h1 {
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
    color: var(--accent-color);
    margin: 0;
    text-align: center;
}

.section-9 .adress {
    margin-bottom: 2rem;
}

.section-9 h3 {
    font-size: 1.8rem;
    font-family: 'Avenir LT W01_35 Light', sans-serif;
    color: var(--secondary-color);
    margin: 0;
    margin-top: 1rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .section-9 {
        box-sizing: border-box;
        padding-inline: 2rem;

    }

    .section-9 h1 {
        font-size: 3rem;
        margin-top: 4rem;
    }

    .section-9 h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .section-9 iframe {
        width: 100%;
        height: 60rem;
    }
}

.form {

    .wpcf7-response-output, p, ul, li {
        margin: 0;
        margin-top: 1rem;
        font-size: 1.3rem;
        color: white;
    }
    
    a {
        text-decoration: none;
        color: white;
    }

}

form {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;


}

.input-wrapper {
    flex: 1;
}

form input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ff6f61;
    background: transparent;
    padding: 10px;
    font-size: 16px;
    color: var(--secondary-color);
    outline: none;
}

form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.button-wrapper {
    flex-shrink: 0;
}

form input[type="submit"] {
    background: var(--secondary-color);
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

form input[type="submit"]:hover {
    background: #ddd;
}

form>p {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    form p {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    form p input {
        width: 100%;
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    form input[type="submit"] {
        width: 100%;
        font-size: 2rem;
    }

}

.section-10 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 4rem 0;
}

.section-10 h1 {
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
    color: var(--accent-color);
    margin: 0;
    text-align: center;
    width: 50%;

}

.section-10>p {
    font-size: 1.8rem;
    font-family: 'Avenir LT W01_35 Light', sans-serif;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 200;
    margin-top: 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {

    .section-10 {
        padding: 2rem 2rem;
    }

    .section-10 h1 {
        font-size: 3rem;
        margin-top: 4rem;
        width: 100%;
    }

    .section-10>p {
        font-size: 1.7rem;
        margin-top: 2rem;
    }

}

.section-11 {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.section-11 h1 {
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
    margin: 0;
    text-align: center;
    border-right: 2px solid black;
    padding-right: 2rem;
    margin-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .section-11 {
        flex-direction: column;
        gap: 3rem;
    }

    .section-11 div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 2rem;
    }

    .section-11 h1 {
        font-size: 4rem;
        margin-right: 0;
        width: 100%;
        border-right: none;
        text-align: center;
        padding-right: 0;
    }

    .section-11 div img {
        width: 30%;
        height: 30%;
    }
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 2rem 0;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Avenir LT W01_35 Light', sans-serif;
    font-weight: 100;
    margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {

    footer {
        padding-inline: 3rem;
        text-align: center;
    }

    footer a {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

}