@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

html {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    max-width: 100vw;
    /* height: 100vw; */
    overflow-x: hidden;
}

body > article,
body > header,
body > footer {
    box-sizing: border-box;
    width: 100vw;
    padding-left: 11vw;
    padding-right: 11vw;
}

/* --------- burger menu ---------- */
.burger-menu {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3vw;

    height: 0px;
    width: 100%;

    background-color: rgba(0, 0, 0, 0.614);

    transition: .3s;

    overflow: hidden;
}

.burger-menu button {
    width: 30vw;
    height: 9vh;

    border: none;

    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 3vw;
    color: white;

    background-color: transparent;

    transition: 0.3s;
}

.burger-menu button:hover {
    transform: scale(1.1);
}

#article-1 > header section:nth-child(3) {
    display: none;

}

/* article --------- 1 ---------- */
#article-1 {
    background-image: url("../images/bg-section-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#article-1 > header {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;

    height: 15vh;
    width: 100%;
}

#article-1 > header > section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#article-1 > header > section > div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    font-family: "Roboto", sans-serif;
    font-weight: 200;
    font-size: 1.1vw;
    color: white;
}

#article-1 > header > section > div > img {
    max-height: 3.3vw;
}

.video-section > iframe {
    height: 20vw;
    width: 40vw;
}

#article-1 > header > section button {
    width: 10vw;
    height: 100%;
    cursor: pointer;
    border: none;

    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.1vw;
    color: white;

    background-color: transparent;

    transition: 0.3s;
}

#article-1 > header > section button:hover {
    transform: scale(1.1);
}

#article-1 > section {
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vw;

    padding-top: 15vh;

    height: 85vh;
}

#article-1 > section > .column-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2vw;

    height: 100%;
    width: 50vw;
}

#article-1 > section > .column-section > h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 3vw;
    color: white;
}

#article-1 > section > .column-section > h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.5vw;
    color: white;
}

#article-1 > section > .column-section > button {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.1vw;
    text-transform: uppercase;
    color: white;

    border: none;
    border-radius: 0.5vw;

    height: 10vh;
    width: 50%;

    background: linear-gradient(90deg, rgba(34, 186, 140, 1) 0%, rgba(12, 171, 80, 1) 100%);

    transition: 0.3s;
}

#article-1 > section > .column-section > button:hover {
    transform: scale(1.05);
}

#article-1 > section > .video-section {
    height: 55%;
    width: 50vw;
}

/* article --------- 2 ---------- */
#article-2 {
    background-image: url("../images/bg-section-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    gap: 2vw;
}

#article-2 section:nth-child(1) {
    height: 35vw;
}

#article-2 section:nth-child(2) {
    height: 58vw;
}

#article-2 section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2vw;

    width: 100%;
}

#article-2 section div {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 2vw;
    width: 50vw;
    height: 70%;

    padding-top: 5vw;
}

#article-2 section div.centerEls {
    justify-content: flex-start;
    align-items: center;
}

#article-2 section div > img {
    height: 90%;
}

#article-2 section div > button {
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.1vw;
    text-transform: uppercase;
    color: white;

    border: none;
    border-radius: 0.5vw;

    height: 10vh;
    width: 50%;

    background: linear-gradient(90deg, rgba(34, 186, 140, 1) 0%, rgba(12, 171, 80, 1) 100%);

    transition: 0.3s;
}

#article-2 section div > button:hover {
    transform: scale(1.05);
}

#article-2 section div > h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 3.2vw;
    color: white;
}

#article-2 section div > h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.5vw;
    color: white;
}

/* article --------- 3 ---------- */

#article-3 {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;

    padding-top: 20vh;
    padding-bottom: 20vh;

    min-height: 100vh;

    background-image: url("../images/bg-section-3.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#article-3 > h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 7vh;
    color: white;
}

#article-3 > section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

#article-3 > section div {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1vw;

    padding: 1vw;

    border: 0.01vw solid rgba(128, 128, 128, 0.3);
    border-radius: 1vw;

    width: 25vw;
    height: 17vw;

    transition: 0.3s;
}

#article-3 > section div:hover {
    transform: scale(1.1);
}

#article-3 > section div > h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.7vw;
    color: white;
}

#article-3 > section div > h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.2vw;
    color: rgba(255, 255, 255, 0.4);
}

/* article --------- 4 ---------- */

#article-4 {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;

    padding-top: 18vh;
    padding-bottom: 23vh;

    min-height: 100vh;

    background-image: url("../images/bg-section-4.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#article-4 > section:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

#article-4 > section:nth-child(1) h3:nth-child(1) {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 3vh;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

#article-4 > section:nth-child(1) > h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 7vh;
    color: rgb(255, 255, 255);
    text-align: center;
}

#article-4 > section:nth-child(1) > h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 3vh;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

#article-4 > section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

#article-4 > section:nth-child(2) h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 10vh;
    background: -webkit-linear-gradient(45deg, rgba(12, 171, 80, 1), rgba(34, 186, 140, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: start !important;
}

#article-4 > section:nth-child(2) h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 2vh;
    color: rgba(255, 255, 255, 0.7);
    text-align: start;
}

/* article --------- 5 ---------- */

#article-5 {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;

    padding-top: 20vh;
    padding-bottom: 20vh;

    min-height: 100vh;

    background-image: url("../images/bg-section-3.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#article-5 > h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 7vh;
    color: white;
}

#article-5 > section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    width: 100%;
}

#article-5 > section div {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1vw;

    padding: 1vw;

    border: 0.01vw solid rgba(128, 128, 128, 0.3);
    border-radius: 1vw;

    width: 25vw;
    height: 17vw;

    transition: 0.3s;
}

#article-5 > section div:hover {
    transform: scale(1.1);
}

#article-5 > section div > h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 4vw;
    background: -webkit-linear-gradient(45deg, rgba(12, 171, 80, 1), rgba(34, 186, 140, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

#article-5 > section div > h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.7vw;
    color: white;
}

#article-5 > section div > h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.2vw;
    color: rgba(255, 255, 255, 0.4);
}

/* article --------- 6 ---------- */
#article-6 {
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vw;

    padding-top: 13vh;
    padding-bottom: 15vh;

    /*height: 85vh;*/

    background-image: url("../images/bg-section-6.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#article-6 section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2vw;

    width: 100%;
    height: 100%;
}

#article-6 section > h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 7vh;
    color: white;
}

#article-6 section > h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 3vh;
    color: rgba(255, 255, 255, 0.7);
}

#article-6 section > form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1vw;

    width: 100%;
    height: 100%;
}

#article-6 section > form input,
#article-6 section > form button {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.1vw;
    color: black;

    height: 8vh;
    width: 80%;

    border: none;
    border-radius: 1vw;

    transition: 0.3s;
}

#article-6 section > form input {
    box-sizing: border-box;

    padding-left: 2vw;
}

input[name="phone"] {
    width: 100% !important;
    padding-left: 50px !important;
}

#article-6 section > form button {
    background: linear-gradient(90deg, rgba(34, 186, 140, 1) 0%, rgba(12, 171, 80, 1) 100%);

    text-transform: uppercase;
    color: white;
}

#article-6 section > form button:hover {
    transform: scale(1.05);
}

/* footer ---------  ---------- */

body > footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    /*height: 10vw;*/

    background-color: black;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    font-family: "Roboto", sans-serif;
    font-weight: 200;
    font-size: 1.1vw;
    color: white;
}

.footer-logo > img {
    max-height: 3.3vw;
}

.footer-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.footer-info a,
.footer-info span {
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    font-size: 1vw;
    color: white;
}

.footer-contact {
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    font-size: 1vw;
    color: white;
    text-align: end;
}

@media only screen and (max-width: 800px) {
    .burger-menu-active {
        padding-top: 2vh;
        padding-left: 2vh;
        padding-bottom: 2vh;

        height: 30vw !important;
    }

    .burger-menu-btn {
        height: 10vw;
        width: 10vw !important;
        font-size: 5vw !important;
    }

    #article-1 > header section:nth-child(3) {
        display: block;
    }

    /* article --------- 1 ---------- */
    #article-1 {
        background-image: url("../images/bg-section-1-mob.png");
    }

    #article-1 > section {
        flex-direction: column-reverse !important;
        align-items: center !important;
        height: fit-content !important;

        padding-bottom: 10vw;
    }

    #article-1 > header section:nth-child(2) {
        display: none;
    }

    #article-1 > header > section > div {
        font-size: 3vw;
    }

    #article-1 > header > section > div > img {
        max-height: 5vw;
    }

    .video-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        margin-bottom: 10vw;
    }

    .video-section > iframe {
        height: 40vw;
        min-width: 70vw;
    }

    #article-1 > section {
        box-sizing: border-box;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2vw;

        padding-top: 15vh;

        height: 85vh;
    }

    #article-1 > section > .column-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 3vw;

        height: 100%;
        width: 100%;
    }

    #article-1 > section > .column-section > h1 {
        font-size: 5.5vw;

        text-align: center;
    }

    #article-1 > section > .column-section > h3 {
        font-size: 3.3vw;

        text-align: center;
    }

    #article-1 > section > .column-section > button {
        font-size: 3.4vw;

        height: 10vh;
        width: 100%;
    }

    #article-1 > section > .column-section > button:hover {
        transform: scale(1.05);
    }

    #article-1 > section > .video-section {
        height: 55%;
        width: 50vw;
    }

    /* article --------- 2 ---------- */
    #article-2 {
        padding-top: 15vw;
        padding-bottom: 15vw;

        background-image: url('../images/bg-section-2-mob.png');
    }

    #article-2 section:nth-child(1) {
        height: fit-content;
        min-height: fit-content;
        flex-direction: column-reverse !important;
        margin-bottom: 5vw;
    }

    #article-2 section:nth-child(2) {
        height: fit-content;
        min-height: fit-content;
    }

    #article-2 section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2vw;

        width: 100%;
        min-height: 20vw;
    }

    #article-2 section div {
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        gap: 2vw;
        width: 100%;
        height: 70%;

        /* padding-top: 5vw; */
    }

    #article-2 section div.centerEls {
        justify-content: flex-start;
        align-items: center;

        margin-top: 5vw;
    }

    #article-2 section:nth-child(1) div > img {
        height: 35vw;
    }

    #article-2 section:nth-child(2) div > img {
        height: 50vw;
    }

    #article-2 section div > button {
        display: none;
    }

    #article-2 section div > h1 {
        font-size: 5.5vw;

        text-align: center;
    }

    #article-2 section div > h3 {
        font-size: 2.5vw;

        text-align: center;
    }

    /* article --------- 3 ---------- */
    #article-3 {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }

    #article-3 > h1 {
        font-size: 7vw;

        text-align: center;

        margin-bottom: 7vw;
    }

    #article-3 > section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

        width: 100%;
    }

    #article-3 > section div {
        padding: 5vw;

        width: 55vw;
        height: 47vw;

        margin: 3vw;
        gap: 3vw;
    }

    #article-3 > section div:hover {
        transform: scale(1.1);
    }

    #article-3 > section div > h3 {
        font-size: 4vw;
    }

    #article-3 > section div > h5 {
        font-size: 3vw;
    }

    /* article --------- 4 ---------- */
    #article-4 {
        padding-top: 15vw;
        padding-bottom: 15vw;
    }

    #article-4 > section:nth-child(2) div {
        width: 30vw;
        margin-bottom: 5vw;
    }

    #article-4 > section:nth-child(1) > h1 {
        font-size: 8vw;
    }

    #article-4 > section:nth-child(1) h3:nth-child(1) {
        font-size: 2vh;
    }

    #article-4 > section:nth-child(1) > h3 {
        font-size: 2vh;
    }

    #article-4 > section:nth-child(2) h1 {
        font-size: 10vw;
        text-align: start;
    }

    /* article --------- 5 ---------- */
    #article-5 {
        padding-top: 15vw;
        padding-bottom: 15vw;
    }

    #article-5 > h1 {
        font-size: 8vw;

        text-align: center;

        margin-bottom: 7vw;
    }

    #article-5 > section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

        width: 100%;
    }

    #article-5 > section div {
        padding: 5vw;

        width: 55vw;
        height: 47vw;

        margin: 3vw;
        gap: 3vw;
    }

    #article-5 > section div:hover {
        transform: scale(1.1);
    }

    #article-5 > section div > h1 {
        font-size: 8vw;
    }

    #article-5 > section div > h3 {
        font-size: 4vw;
    }

    #article-5 > section div > h5 {
        font-size: 3vw;
    }

    /* article --------- 6 ---------- */
    #article-6 {
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10vw;

        padding-top: 13vh;
        padding-bottom: 15vh;

        /*height: 85vh;*/

        background-image: url("../images/bg-section-6-mob.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    #article-6 section {
        justify-content: center;
        align-items: center;

        width: 100%;
        height: 100%;
    }

    #article-6 section > h1 {
        font-size: 8vw;
        text-align: center;
    }

    #article-6 section > h3 {
        font-size: 3vw;

        text-align: center;
    }

    #article-6 section > form {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1vw;

        width: 100%;
        height: 100%;
    }

    #article-6 section > form input,
    #article-6 section > form button {
        font-size: 3vw;

        height: 8vh;
    }

    #article-6 section > form input {
        box-sizing: border-box;

        padding-left: 2vw;
    }

    /*  --------- footer ---------- */
    body > footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        /*height: 15vh;*/

    }

    .footer-logo {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;

        font-family: "Roboto", sans-serif;
        font-weight: 200;
        font-size: 1.5vh;
        color: white;
    }

    .footer-logo > img {
        max-height: 5vw;
    }

    .footer-info {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1vw;
    }

    .footer-info {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-self: center;
        flex-wrap: wrap;
        gap: 1vw;

        width: 30%;
    }

    .footer-info a,
    .footer-info span {
        font-family: "Roboto", sans-serif;
        font-weight: 200;
        font-size: 1.5vh;
        color: white;
    }

    .footer-info span {
        display: none;
    }

    .footer-contact {
        font-family: "Roboto", sans-serif;
        font-weight: 200;
        font-size: 1.5vh;
        color: white;
        text-align: end;
    }
}

.hideRight,
.hideLeft,
.hideDonw {
    opacity: 0;
    transition: 0.5s;
}

.hideRight {
    transform: translateX(+15vw);
}

.hideLeft {
    transform: translateX(-15vw);
}

.hideDonw {
    transform: translateY(+5vw);
}

.scrl-show-acrive {
    transform: translate(0) !important;
    opacity: 1 !important;
}