@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*  */

/* VIDEO SECTION */

.video-background {
    position: relative;
    /*     border: 5px red solid; */
    height: 100vh;
    font-size: 1.56rem;
    background: transparent !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

#video-background__video {
    z-index: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

#video-background__play-button {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}

#video-background__play-button:hover {
    background: #ddd;
    color: black;
}

.video-background__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: absolute;
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
    font-size: 4vh;
    line-height: 1.7;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.91);
}



.video-background--hover {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    /*   background-color: #2222227e; */
    transition: .1s ease-in-out;
}

.video-background--hover:hover {
    transition: .5s ease-in-out;
}

.video-background--hover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.3px;
    background-color: #FFF;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s;
}

.video-background--hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.3px;
    background-color: #FFF;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

.video-background--hover:hover:before {
    transform: scaleX(1);
}

.video-background--hover:hover:after {
    transform: scaleX(1);
}

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

    .video-background--hover:before {
        width: 0;
        height: 0;
    }

    .video-background--hover:after {
        width: 0;
        height: 0;
    }


    .video-background__text {
        max-width: 55vw;
        font-size: 1.7rem;
    }
}

.video-background__down-arrow-frame {
    position: absolute;
    bottom: 9vh;
    width: 100%;
}

.video-background__down-arrow {
    bottom: 5%;
    cursor: pointer;
    width: auto;
    width: 3.5rem;
}

.up-arrow-frame {
    position: relative;
    transform: rotate(180deg);
    width: 100%;
    margin-top: 2rem;
}


.up-arrow {
    cursor: pointer;
    width: auto;
    width: 2rem;
}



/* END VIDEO SECTION */

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.--yellow {
    color: #FFD258;
}


/* END OF VIDEO SECTION */

/* GENERAL */
body {
    font-family: 'Poiret One', cursive;
    position: relative;
    color: #FFF;
    overscroll-behavior-y: none;
    display: flex;
    flex-direction: column;
}

button {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

h4,
h2,
h3 {
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}

label {
    display: none;
}

input,
textarea {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 14px 20px;
    outline: none;
    resize: none;
    border: none;
    background-color: #D1D1D1;
}

input::placeholder,
textarea::placeholder {
    color: #000;
}

img {
    object-fit: cover;
    width: 100%;
}

.--description-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
}

.--justify-center {
    display: flex;
    justify-content: center;
}

/* ---- END OF GENERAL ---- */



/* 1st Section */

.topbar {
    position: absolute;
    top: 4vh;
    z-index: 8;
}

.topbar li {
    position: relative;
    display: block;
    padding: 20px 0;
}

.topbar__link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 10px 0;
    color: #FFD258;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.91);
}

.topbar__link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.2px;
    bottom: 0;
    left: 0;
    background-color: #FFD258;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

.topbar__link:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.topbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    font-size: 3vh;
}

.topbar img {
    height: 6vw;
}

/* SIDEBAR */

.sidebar {
    display: flex;
    position: fixed;
    z-index: 2;
    height: 100vh;
    align-content: center;
    align-items: center;
}

.sidebar__list {
    height: 270px;
    width: 70px;
    /*   background-color: blue; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    position: fixed;
    margin-left: 1vw;
}

.sidebar__list img {
    width: 90%;
    transition: .1s ease-in-out;
    cursor: pointer;

}

.sidebar__list img:hover {
    width: 100%;
    margin: 10px;
    filter: drop-shadow(0px 0px 30px rgb(0, 0, 0));
    ;
    filter: brightness(2);
    transition: .3s ease-in-out;
}

/*   END SIDEBAR */


.--yellow {
    color: #FFD258;
}



@media screen and (max-width: 600px),
(max-height: 440px) {

    .video-background__down-arrow {
        width: 10vw;
    }

    .topbar img {
        width: 15vh;
        height: auto;
        margin: 0 1rem;
    }


    .sidebar {
        display: none;
    }



    .video-background__text h4,
    h5 {
        padding: 0;
    }
}



/* End of 1st Section */



/* NAV */

nav {
    /* background: rgb(94, 125, 95); */
    position: fixed;
    top: 50%;
    left: 50px;
    transform: translate(0%, -50%);
    z-index: 1;
}

.nav__list {
    display: flex;
    flex-direction: column;
    /*     gap: 20px; */
    cursor: pointer;
}

.nav__item {
    width: 80%;
    transition: .2s ease-in-out;
}

.nav__item img:hover {
    width: 100%;
    margin: 10px;
    transition: .3s ease-in-out;
}

/* ---- NAV ---- */


/* =============== SECTIONS =============== */

section {
    background: #000;
    padding: 3.5rem;
}

.section__title {
    font-size: 2rem;
    margin-bottom: 3rem;
}


/* SECTION 1 */

.first {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    min-height: 45rem;
    padding: 6rem;
    text-align: center;
    background-color: black;
    z-index: -4;
    overflow-x: hidden;
}

.first::before {
    z-index: -3;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./assets/bg/\ section1.jpeg) no-repeat center center fixed;
    filter: opacity(50%);
    background-size: cover;
    transform: translateZ(-1px) scale(1.1)
}

.section__description {
    position: relative;
    max-width: 90vw;
    font-size: 1.3rem;
    line-height: 2.5rem;
    /*     border: rgb(0, 92, 128) 5px solid; */
    white-space: pre-line;
    text-align: center;
}


.first .section__title {
    /*     border: 5px solid red; */
    z-index: 3;
}

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

    .first .section__title {
        border: 5px solid rgb(0, 217, 255);
        display: none;
    }

    .section__description {
        margin-top: 0;
        max-width: 50vw;
        text-align: start;
        /*         border: blue 5px solid; */
    }

    .item__icon {
        flex-direction: column;
    }

    .first::before {
        transform: translateZ(0) scale(0)
    }
}

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

    .section__description {
        margin-top: 0;
        min-width: 80vw;
        text-align: start;
    }
}



/* SECTION 2 */



.section__content__list {
    display: flex;
    flex-direction: column;
}

.section__content__list:after {
    display: block;
    content: '';
    height: 56px;
    width: 56px;
    background: linear-gradient(0deg, #ffd258, #cca742, #6c5924, #000000);
    position: relative;
    width: 5px;
    height: 640px;
    left: -90px;
    top: -790px;
    z-index: 0;
    background-size: 200% auto;
    background-position: 0 100%;
    margin-bottom: -40rem;
}

.section__content__item {
    width: 60vw;
    background: #D1D1D1;
    padding: 25px;
    margin-bottom: 3rem;
    color: #000;
}

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

    .section__content__item {
        width: 12rem;
        max-height: 15rem !important;
        position: relative !important;
        background-color: #fff;
    }

    .item__desc {
        justify-content: center !important;
    }


    .item__desc>span,
    .item__tile {
        /*         border: red 5px solid; */
        display: none;
    }


    .section__content__list:after {
        /* left: -59px !important; */
        display: none !important;
    }

    .section__content__item:after {
        /* left: -97px !important; */
        display: none !important;
    }

    #BAC::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        filter: opacity(55%);
        background-image: url(./assets/bg/lycee-germaine-tillon-montbeliard.jpg);
    }

    #DUT::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        filter: opacity(55%);
        background-image: url(./assets/bg/mmi.jpg);
    }

    #LPMD::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        filter: opacity(55%);
        background-image: url(./assets/bg/Iut_Corte.jpg);
    }

    .item__desc {
        padding: 0 !important;
        gap: 0 !important;
    }

    .item__icon {
        gap: 0 !important;
        padding: 0 !important;
    }


}

.section__content__item:after {
    display: block;
    content: '';
    border-radius: 100%;
    height: 56px;
    width: 56px;
    background: #FFD258;
    position: relative;
    left: -8rem;
    top: -3rem;
    width: 2rem;
    height: 2rem;
    z-index: 1;
}

.item__tile {
    text-transform: uppercase;
    font-weight: bold;
}

.big {
    font-size: 24px;
}

.item__desc {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.item__icon {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px;
    transition: .3s ease-in-out;
    z-index: 4;
}

.icon:hover {
    background: rgb(218, 218, 218);
    border-radius: 100vmax;
    /* filter: invert(100%); */
    transition: .3s ease-in-out;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
}



/* ===== MODAL ===== */

/* main */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal__text {
    font-size: 14px;
    letter-spacing: 0.2px;
    word-spacing: 0.5px;
    padding: 2rem;
}


.modal__content {
    width: 780px;
    height: fit-content;
    background: #FFF;
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: space-around;
}

.modal__desc {
    padding: 20px;
    width: 20rem;
}




.modal__close-btn {
    width: 2.5rem;
    height: auto;
    position: absolute;
    left: 15px;
    top: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.modal__close-btn:hover {
    filter: invert(40%);
    transition: .3s ease-in-out;
}


.second {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.second .modal__close-btn {
    width: 1.5rem;
}

.third .modal__close-btn {
    margin: 1rem;
}



.modal__title {
    font-size: 18px;
    font-weight: 500;
    padding: 0 30px;
}

.modal__icon__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 130px;
}

.modal__icon__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px;

}

.modal__icon {
    width: 35px;
    height: 35px;
}

.modal__image {
    width: 340px;
    z-index: 1;
}

.modal__image>img {
    object-fit: cover;
    height: 100%;
}


@media screen and (max-width: 1024px) {
    .modal__content {
        flex-direction: column;
        width: 60vw;
        justify-content: space-around;
    }

    .modal__icon__list {
        display: flex;
        flex-direction: row;
        width: auto;
    }

    .modal__desc {
        width: fit-content;
        padding: 2rem;
    }

    .modal__image {
        display: none;
    }

    .modal__text {
        padding: 0;
    }
}


@media screen and (max-width: 600px) {
    .modal__content {
        width: 100%;
    }
}

/* Display Effect */
.show {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}




/* SECTION 4 */


.section__part4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.title.yellow {
    color: #FFD258;
}

.contact__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    max-width: 70vw;
    gap: 20px;
    position: relative;
}

.contact__btn {
    border-radius: 0px !important;
    background: #D1D1D1;
    padding: 5px;
    width: 130px;
    border: none;
    right: 0;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    color: black;
}

/* SECTION 3 */



.third {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #232323;
    background-image: url(./assets/bg/fond.png);
    background-repeat: no-repeat;
    height: auto;
    padding: 5rem;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    .third {
        background-image: none;
    }
}

/* !!!!! DEPEND ON SLIDER ITEMS SIZE !!!!! */

.section__caroussel__item {
    width: 100%;
    height: 100%;
}

.caroussel__item {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    /* position: relative;  */
}


.caroussel__img {
    display: block;
    opacity: 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    transition: .5s ease;
}

.caroussel__title--hided {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
}

.title--hided {
    color: white;
    font-size: 16px;
}

.third__grid {
    display: none;
}



/* CAROUSEL FOR TABLET AND MOBILE */


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

    .swiper {
        display: none;
    }

    .third__grid {
        display: grid;
        grid-template-columns: repeat(2, 224px);
        grid-template-rows: repeat(2, 224px);
        grid-gap: 2rem;
        justify-content: center;
        margin-bottom: 5rem;
    }

    .grid1 {
        grid-area: 1 / 1 / 2 / 2;
        background-color: #333;
    }

    .grid2 {
        grid-area: 1 / 2 / 2 / 3;
        background-color: #333;
    }

    .grid3 {
        grid-area: 2 / 1 / 3 / 2;
        background-color: #333;
    }

    .grid4 {
        grid-area: 2 / 2 / 3 / 3;
        background-color: #333;
    }

    .hided {
        display: block;
    }

    .caroussel__item .caroussel__title--hided {
        opacity: 1;
        position: relative;
        top: -26px;
        padding: 1.1rem;
        background: rgba(255, 255, 255, 0.486);
    }


    .title--hided {
        color: black;
    }

}

@media screen and (max-width: 600px) {
    .third__grid {
        grid-template-columns: 224px;
        grid-template-rows: repeat(4, 224px);

    }

    .grid1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid3 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .grid4 {
        grid-area: 4 / 1 / 5 / 2;
    }


}



/* END CAROUSEL FOR TABLET AND MOBILE */



/* HOVER EFFECT */

.caroussel__item:hover .caroussel__img {
    opacity: 0.4;
}

.caroussel__item:hover .caroussel__title--hided {
    opacity: 1;
}


/* CAROUSSEL MODAL */

.modal--full {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #000;
    padding: 50px 0 30px;
}

.graph {
    background-image: url(./assets/bg/graph-fond.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.vdo {
    background-image: url(./assets/bg/vdo-fond.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: 100% 12rem;
}

.photo {
    background-image: url(./assets/bg/camera-fond.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
}



.modal--full__image {
    width: 70vw;
    height: 350px;
    margin: 5vw 0;
}


.modal--full__image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal--full__recap {
    margin: 50px 0;
    font-size: 20px;
}

.modal--full__desc {
    display: flex;
    justify-content: space-between;
    max-width: 85vw;
    min-width: 70vw;
}

.modal--full__text {
    width: 350px;
}


.modal--full__icon {
    width: fit-content;
}

.modal--full__icon__list {
    margin: 10px 0 0;
    display: flex;
    gap: 15px;
}

.modal--full__icon__item {
    width: 80px;
    height: 80px;
}


.display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.--pdf::before {
    display: flex;
    content: url(/assets/icons/loupe.png);
    position: absolute;
    justify-content: center;
    width: inherit;
    align-items: center;
    height: inherit;
}


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

    .--pdf::before {
        height: 11rem;
    }

    .modal--full__desc {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

}



/* MODAL PROJECT VDO */


.modal--full__desc-vdo {
    display: flex;
    flex-direction: column;
    gap: 50px;

}

.modal--full__text-vdo {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

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


    .modal--full__text-vdo {
        flex-direction: column;
    }

    .modal__close-btn {
        width: 2rem;
    }

}

.text-vdo__desc {
    width: 450px;
    max-width: 80vw;
}

.modal--full__icon-vdo {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 2rem;
}

.modal--full__recap-vdo {
    margin-bottom: 50px;
}

.modal--full__icon__list-vdo {
    display: flex;
}

.modal--full__icon__list-vdo li {
    display: flex;
    margin: 0 1.5rem;
}

.modal__video {
    padding: 1rem 0;
    width: 50%;
    position: relative;
}

.modal--full__video {
    width: 100%;
}

.video__btn {
    display: none;
    position: absolute;
    z-index: 2;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .1s ease-in-out;
}

.video__btn:hover {
    filter: drop-shadow(0 -6mm 4mm rgb(210, 207, 0));
    width: 110px;
    height: 110px;
    transition: .3s ease-in-out;
}

.vdo--active {
    display: block;
}

.hided {
    display: none;
}

.modal__video:hover .video__btn {
    display: block
}

/* MODAL PROJECT PHOTO */

.modal--full__image-photo {
    margin: 50px 0;
    width: 450px;
    height: 450px;
}


.modal--full__image-photo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal--full__text-photo {
    width: 800px;
    max-width: 80vw;
}


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

    .modal--full__image-photo {
        width: 42vw;
        height: 42vw;
    }

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

    .modal--full__icon__list {
        gap: 0;
    }
    
    .modal--full__icon__list-vdo img, .modal--full__icon__item img {
        width: 3rem;
        object-fit: contain;
    }

    .modal--full__icon__list-vdo li{
        margin: 0;
    }
}



/* ANIMATIONS */

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}









/* CAROUSSEL */

.slide {
    position: relative;
}

.prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -90px;
    transform: translate(0%, -50%);
    padding: 8px 0;
    color: white;
    transition: 0.6s ease;
    user-select: none;
    border-radius: 10px;
}

.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translate(0%, -50%);
    padding: 8px 0;
    color: white;
    transition: 0.6s ease;
    user-select: none;
    border-radius: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(234, 233, 233, 0.8);
}

.dots {
    cursor: pointer;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: rgb(127, 127, 127);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease;
}


.dot:hover {
    background-color: #ebebeb;
}

.active {
    background-color: #ebebeb;
    transform: scale(1.3);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


/* -------------------------------------------------------- */
/* -------------------      SWIPER      ------------------- */
/* -------------------------------------------------------- */

.swiper {
    width: 90%;
    height: 120px;
    border: 1px solid #23232300;
    margin-bottom: 6rem;
}


.swiper-slide {
    width: 100px;
    height: 300px;
    background: rgb(202, 198, 198);
    display: flex;
    align-items: center;
}


.swiper-button-next,
.swiper-button-prev {
    color: #FFF !important;
    width: 10px !important;
}

/* -------------------------------------------------------- */
/* ----------------     END SWIPER      ------------------- */
/* -------------------------------------------------------- */


/* -------------------------------------------------------- */
/* ---------------------    FOOTER   ---------------------- */
/* -------------------------------------------------------- */

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #232323;
    padding: 50px 0;
}

.footer-icon__list {
    display: flex;
    gap: 30px;
}

.footer-icon {
    width: 40px;
    height: 40px;
}


@media screen and (max-width: 600px),
(max-height: 440px) {

    footer {
        flex-direction: column-reverse;
        gap: 2rem;
    }

}


/* -------------------------------------------------------- */
/* ------------------    END FOOTER    -------------------- */
/* -------------------------------------------------------- */


/*  SCROLLING ANIMATION */

/* .reveal {
    opacity: 0;
    transform: translateX(-2rem);
    transition: ease-in-out .3;
}

.revealed {
    opacity: 1;
    transform: translateX(0);
    transition: ease-in-out .3;
} */