@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100dvw;
    height: 3000px;
    background: radial-gradient(circle, rgb(5, 4, 7), rgb(2, 4, 5));
    font-family: Roboto;
}

/*----------------header------------------*/
body header {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;

}

body header .header--img {
    height: 600px;
    margin: auto;
    border-radius: 25%;
}

body header .header--social {
    width: 20%;
    height: 150px;
    position: absolute;
    top: 40px;
    right: 40px;
}

body header .header--social__content {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

body header .header--social___item a {
    width: 90px;
    height: 90px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

body header .header--social___item a:hover {
    background-color: #ffffffcb;
}

body header .header--social___item a img {
    height: 55px;
}

/*------------------section------------------*/

body main .main--section__white {
    width: 99%;
    height: 700px;
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 50px;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

body main .main--section__white .main--section__text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

body main .main--section__white .main--section__text h2 {
    font-size: 48px;
}

body main .main--section__white .main--section__text p {
    font-size: 30px;
    text-align: justify;
    margin-top: 35px;
}

body main .main--section__white .main--section__img {
    width: 600px;
    height: 600px;
    border: 5px solid #000;
    border-radius: 50px;
    overflow: hidden;
}

body main .main--section__img img {
    width: 100%;
}

body main .main--section__black {
    width: 99%;
    height: 800px;
    margin: auto;
    padding: 20px;
    border-radius: 50px;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

body main .main--section__black .main--section__text {
    width: 35%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body main .main--section__black .main--section__text h2 {
    font-size: 48px;
    color: #fff;
}

body main .main--section__black .main--section__text p {
    font-size: 30px;
    text-align: justify;

}

body main .main--section__black .main--section__text .section--black__text {
    font-size: 30px;
    text-align: e;
    color: #fff;

}

body main .main--section__black .main--section__text .main--section__info {
    width: 70%;
    height: 10%;
    font-size: 30px;
    margin-top: 35px;
    background-color: #fff;
    border-radius: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
}

body main .main--section__black .main--section__text .main--section__infoLarge {
    width: 70%;
    height: 15%;
    font-size: 25px;
    margin-top: 35px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

body main .main--section__black .main--section__text .main--section__infoLarge p {
    font-size: 25px;
}

body main .main--section__black .main--section__img {
    width: 55%;
    height: 500px;
    border: 5px solid #fff;
    border-radius: 50px;
    overflow: hidden;
}

body main .main--section__black .main--section__img img {
    width: 100%;
    position: relative;
    bottom: 50px;
}


footer {
    height: 100px;
    width: 100%;
    background-color: #fff;
    font-size: 40px;
    margin-top: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media screen and (max-width: 1320px) {
    .Dnone {
        display: none;
    }

    body header {
        flex-direction: column-reverse;
    }

    body header .header--social {
        width: 80%;
        height: 150px;
        padding: 0 20%;
        margin-top: 20px;
        position: static;
    }

    body main .main--section__white {
        width: 100%;
        margin: 35px auto;
        flex-direction: column;
        height: auto;
    }

    body main .main--section__white .main--section__text {
        width: 80%;
    }

    body main .main--section__white .main--section__text h2 {
        margin: 3px auto;
        font-size: 38px;
    }

    body main .main--section__white .main--section__text p {
        font-size: 25px;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 35px;
    }

    body main .main--section__black {
        width: 99%;
        height: auto;
        flex-direction: column-reverse;
    }

    body main .main--section__black .main--section__text {
        width: 80%;
        height: 90%;
        display: flex;
    }

    body main .main--section__black .main--section__text h2 {
        font-size: 38px;
        margin: 35px auto;
    }

    body main .main--section__black .main--section__text p {
        font-size: 25px;
        text-align: center;
        margin-bottom: 35px;
    }

    body main .main--section__black .main--section__text .section--black__text {
        font-size: 30px;
        text-align: e;
        color: #fff;

    }

    body main .main--section__black .main--section__img {
        width: 80%;
        height: 500px;
        margin: 50px auto;
        border: 5px solid #fff;
        border-radius: 50px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body main .main--section__black .main--section__img img {
        height: 100%;
        width: auto;
        position: static;
    }

    body main .main--section__black .main--section__text .main--section__info {
        width: 50%;
        height: 10%;
        font-size: 30px;
        margin-top: 35px;
        background-color: #fff;
        border-radius: 50px;
        padding-top: 20px;
        justify-content: center;
        align-items: center;
    }

    body main .main--section__black .main--section__text .main--section__infoLarge {
        width: 50%;
        height: 15%;
        font-size: 25px;
        padding-top: 20px;
        justify-content: center;
        align-items: center;
    }

    footer {
        height: 80px;
        width: 100%;
        background-color: #fff;
        font-size: 30px;
        margin-top: 50px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

@media screen and (max-width: 800px) {
    body {
        width: 100dvw;
    }

    .Dnone {
        display: none;
    }

    body header {
        flex-direction: column-reverse;
        padding: 0;
        height: 400px;

    }

    body header .header--social {
        width: 100%;
        height: 70px;
        margin-top: 20px;
        padding: 0;
    }

    body header .header--social .header--social__content {
        width: 100%;
    }

    body header .header--social___item a {
        width: 55px;
        height: 50px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    body header .header--social___item a img {
        height: 40px;
    }

    body header .header--img {
        width: 100%;
        height: auto;
    }

    body main .main--section__white {
        width: 99%;
        margin: 35px 0;
        padding: 0;
        flex-direction: column;
        height: auto;
    }

    body main .main--section__white .main--section__text {
        width: 80%;
    }

    body main .main--section__white .main--section__text h2 {
        margin: 3px;
        font-size: 30px;
    }

    body main .main--section__white .main--section__text p {
        font-size: 20px;
        text-align: left;
        margin: 0 auto;
        margin-bottom: 35px;
    }

    body main .main--section__white .main--section__img {
        width: 100%;
        height: 450px;
        margin-bottom: 10px;
    }

    body main .main--section__white .main--section__img .iframe {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body main .main--section__black {
        width: 100%;
        height: auto;
        margin: 0 ;
        padding: 0;
        flex-direction: column-reverse;
    }

    body main .main--section__black .main--section__text {
        width: 99%;
        height: 90%;
        display: flex;
    }

    body main .main--section__black .main--section__text h2 {
        font-size: 30px;
        margin: 20px auto;
        padding: 10px;
    }

    body main .main--section__black .main--section__text p {
        font-size: 25px;
        text-align: center;
        margin-bottom: 35px;
    }

    body main .main--section__black .main--section__text .main--section__info {
        width: 90%;
    }

    body main .main--section__black .main--section__text .section--black__text {
        font-size: 22px;
        text-align: left;
        padding: 10px;
        color: #fff;

    }

    body main .main--section__black .main--section__img {
        width: 100%;
        height: 300px;
        margin: 20px ;
        border: 5px solid #fff;
        border-radius: 50px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body main .main--section__black .main--section__img img {
        height: 100%;
        width: auto;
        position: static;
    }

    body main .main--section__black .main--section__text .main--section__info {
        width: 90%;
        height: 10%;
        font-size: 30px;
        margin-top: 20px;
        background-color: #fff;
        border-radius: 50px;
        padding-top: 20px;
        justify-content: center;
        align-items: center;
    }

    body main .main--section__black .main--section__text .main--section__infoLarge {
        width: 90%;
        height: 15%;
        font-size: 25px;
        padding-top: 20px;
        justify-content: center;
        align-items: center;
    }

    footer {
        height: 80px;
        width: 100%;
        background-color: #fff;
        font-size: 15px;
        margin-top: 50px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    footer .footer--item{
        width: 32%;
    }
}