* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

header {
    background-color: black;
    width: 100%;
    height: 12vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;


    >ul {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;

        >li {
            padding: .45rem 0;
            width: 15%;
            text-align: center;
            position: relative;

            &:nth-of-type(1) {
                >a {
                    color: #fff;
                    border: 1px solid #ffffffba;
                    border-radius: 5px;

                }
            }

            &:nth-of-type(3) {
                >nav {
                    width: 9rem;
                    height: 9rem;
                }
            }

            &:nth-of-type(5) {
                >nav {
                    width: 9rem;
                    height: 14rem;

                }
            }

            &:hover {
                >nav {
                    opacity: 1;
                    visibility: visible;
                }
            }

            >a {
                font-size: 0.9rem;
                padding: .45rem 2rem;
                color: #ffffffba;
                transition: .3s;
                display: flex;
                justify-content: center;
                align-items: center;

                &:hover {
                    color: #fff;
                }

                >span {
                    font-size: 11px;
                    border-radius: 1px;
                    text-align: center;
                    margin-left: .8rem;
                    color: black;
                    background-color: yellow;
                    padding: 1px 6px;
                }

                >i {
                    margin-left: 0.25rem;
                }
            }

            >nav {
                position: absolute;
                top: 2.308rem;
                left: 0;
                width: 8rem;
                height: 6rem;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                transition: .4s;
                opacity: 0;
                visibility: hidden;
                border-radius: 0 0 10px 10px;
                z-index: 3;


                >ul {
                    width: 100%;
                    height: calc(100% - 1.68rem);
                    display: flex;
                    flex-direction: column;
                    justify-content: space-around;
                    align-items: flex-start;
                    background-color: black;
                    border-radius: 0 0 7px 7px;

                    >li {
                        height: 50%;
                        width: 100%;

                        >a {
                            border-radius: 0 0 7px 7px;
                            color: #fff;
                            display: flex;
                            align-items: center;
                            font-size: 12px;
                            height: 100%;
                            width: 100%;
                            padding: 0 .7rem;
                            transition: .6s;

                            &:hover {
                                background-color: rgb(69, 69, 224);
                            }
                        }

                    }
                }
            }
        }

        >a {
            height: 40%;
            padding: 1rem 1rem;
            color: #fff;
            background-color: rgb(69, 69, 224);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-size: .7rem;
            border-radius: 1rem;
            margin-left: 1rem;
            transition: .5s;
            border: 1px solid #fff;

            &:hover {
                transform: scale(1.02);
                background-color: rgba(69, 69, 224, 0.625);
            }
        }
    }


    >form {
        width: 30%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;

        >input {
            position: relative;
            width: 0;
            height: 40px;
            padding: 0;
            border: none;
            border-radius: 20px;
            outline: none;
            transition: width 0.4s ease-in-out, padding 0.4s ease-in-out;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

            &:focus {
                width: 70%;
                padding: 0 1rem;
            }
        }

        >.search-icon {
            cursor: pointer;
            color: #333;
            padding: 10px;
            z-index: 1;

            >i {
                color: #ffffffba;
                background-color: black;
                width: 1.1rem;
                height: 1.1rem;
                text-align: center;
                font-size: 1.15rem;
                transition: .5s;
                border: 2px solid #ffffffba;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 15px;
                border-radius: 5px;

                &:hover {
                    color: #fff;
                    border: 2px solid #fff;
                    transform: scale(1.03);

                }
            }
        }

        >a {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 0.5rem;
            text-align: center;

            i {
                color: #ffffffba;
                background-color: black;
                width: 2.2rem;
                text-align: center;
                font-size: 1.15rem;
                transition: .5s;
                border: 2px solid #ffffffba;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 6px;
                border-radius: 5px;
            }

            i.fa-facebook-f:hover {
                color: #1877F2;
                border: 2px solid #1877F2;
                transform: scale(1.03);
            }

            i.fa-instagram:hover {
                color: #E4405F;
                border: 2px solid #E4405F;
                transform: scale(1.03);
            }

            i.fa-youtube:hover {
                color: #FF0000;
                border: 2px solid #FF0000;
                transform: scale(1.03);
            }
        }
    }
}

input:focus+.search-icon {
    pointer-events: none;
}

section {
    width: 100%;
    height: 88vh;
    display: flex;
    background-color: black;
    justify-content: flex-end;

    >figure {
        width: 60%;
        height: 100%;
        display: flex;
        justify-content: flex-end;

        >img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    >div {
        width: 55%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 2;
        gap: 80px;
        box-shadow: 20px -5px 5px 0px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);

        >div {
            display: flex;
            justify-content: center;
            flex-direction: column;
            width: 130%;
            height: 30%;
            transform: translateX(15%);
            gap: 20px;


            &:nth-of-type(2) {
                width: 90%;
                height: 20%;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                flex-direction: row;
                gap: 20px;
                transform: none;


                >a {
                    color: #fff;
                    background-color: rgb(69, 69, 224);
                    padding: 17px 22px;
                    border-radius: 30px;
                    transition: .5s;

                    &:hover {
                        background-color: rgb(232, 56, 56);
                    }

                    &:nth-of-type(2) {
                        background-color: transparent;
                        border: 2px solid white;

                        &:hover {
                            background-color: white;
                            color: black;
                        }
                    }
                }
            }

            >p {
                margin: 20px 0;
                color: rgb(232, 56, 56);
                font-size: 22px;

                &:nth-of-type(2) {
                    color: #9c9c9c;
                    width: 70%;
                }
            }

            >h2 {
                color: #FFFFFF;
                text-shadow: 0 1px 3px #FFF, 0 1px 20px rgb(165, 165, 112), 0 -1px 30px #ffd0a0;
                font-size: 55px;
                transition: .3s;

                &:hover {
                    text-shadow: none;
                    transition: .5s;
                }
            }
        }
    }

}

.challenge {
    box-shadow: none;
    background-color: #fff;
    width: 100%;
    height: 150vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #000000;
    background: linear-gradient(179deg, rgba(0, 0, 0, 1) 8%, rgba(9, 9, 121, 1) 54%, rgba(0, 212, 255, 1) 83%, rgba(255, 255, 255, 1) 100%);

    >div {
        box-shadow: none;
        width: 100%;
        height: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 60px;

        >a {
            width: 25%;

            >.figurs {
                width: 90%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                position: relative;
                overflow: hidden;
                border-radius: 0 0 40px 0;

                >img {
                    width: 100%;
                    transition: .5s;

                    &:hover {
                        transform: scale(1.05);
                    }
                }

                >figcaption {
                    position: absolute;
                    bottom: 8%;
                    left: 5%;
                    font-size: 22px;
                    background-color: #73737375;
                    padding: 5px 10px;
                    border-radius: 5px;

                    >p {
                        color: #ffffff;

                        &:nth-of-type(2) {
                            color: yellow;
                        }
                    }
                }
            }
        }

        &:last-child {
            height: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            >h3 {
                font-size: 40px;
                width: 70%;
                text-align: center;
                color: white;
                text-shadow: 1px 4px 0px rgba(0, 0, 0, 0.15), 6px 6px 0px #4d4c4c;
            }

            >figure {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                gap: 20px;

                >img {
                    width: 90px;
                    height: 90px;
                    border-radius: 50%;
                }

                >figcaption {
                    color: white;
                    font-size: 20px;
                }

                >span {
                    color: rgb(23, 43, 145);
                    font-size: 20px;

                }
            }
        }
    }

}

main {
    width: 100%;
    height: 190vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;

    >div {
        margin-top: -60px;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 110px;

        >figure {
            width: 48%;
            height: 100%;

            >img {
                width: 100%;
                height: 100%;
                border-radius: 0 0 40px 0;
            }
        }

        >div {
            width: 52%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 55px;
            margin-top: 55px;

            >p {
                color: #1877F2;
                font-size: 28px;
                text-align: left;
                width: 90%;

                &:nth-of-type(2) {
                    color: #adabab;
                }
            }

            >h1 {
                font-size: 55px;
                width: 80%;
            }

            >a {
                padding: 15px 20px;
                background-color: #FF0000;
                border-radius: 40px;
                color: white;
                transition: .5s;

                &:hover {
                    background-color: #bb2222;
                }

                >i {
                    font-size: 18px;
                }
            }
        }
    }

    >.more {
        width: 87%;
        height: 10vh;
        display: flex;
        justify-content: space-between;
        margin-top: 60px;

        >span {
            font-size: 23px;
            font-weight: 600;
        }

        >a {
            color: black;
            transition: .4s;
            z-index: 1;
            font-size: 18px;

            &:hover {
                color: blue;
            }
        }
    }

    >.second {
        width: 100%;
        height: 80vh;
        margin-top: 10px;
        padding: 0 100px;
        margin-top: -80px;

        >.wrapper {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            width: 25%;
            height: 100%;
            perspective: 800px;

            &:nth-of-type(2) {
                >.card {
                    >.front-page {
                        background-image: url(images/fit1.jpg);
                    }
                }
            }

            &:nth-of-type(3) {
                >.card {
                    >.front-page {
                        background-image: url(images/fit3.jpg);
                    }
                }
            }

            &:nth-of-type(4) {
                >.card {
                    >.front-page {
                        background-image: url(images/fit4.jpg);
                    }
                }
            }

            >.card {
                width: 100%;
                height: 60%;
                transform-style: preserve-3d;
                transition: transform .4s ease-in-out;
                cursor: pointer;
                box-shadow: 5px 5px 10px rgba(0, 0, 0, .2),
                    -5px -5px 10px rgba(0, 0, 0, .05);
                border-radius: 5px;

                &:hover {
                    transform: rotateY(180deg);
                }


                >.front-page {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    backface-visibility: hidden;
                    border-radius: 5px;
                    background-image: url(images/fit2.jpg);
                    background-size: cover;


                    >.card-info {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        position: absolute;
                        bottom: 50px;
                        left: 8px;
                        text-shadow: 2px 2px 6px rgba(0, 0, 0, .5);
                        text-align: center;

                        >.card-title {
                            font-style: 2rem;
                            font-weight: bold;
                            color: white;
                        }

                        >.card-subtitle {
                            font-size: 1.2rem;
                            margin-top: 5px;
                            color: #0fbcf9;
                            width: 80%;
                        }
                    }
                }

                >.back-page {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    backface-visibility: hidden;
                    border-radius: 5px;
                    background-color: #7d8387;
                    color: white;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    transform: rotateY(180deg);
                    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);

                    >.card-content {
                        text-align: center;
                        padding: 20px;
                        /* max-width: 300px; */

                        >h3 {
                            font-size: 1rem;
                            font-weight: bold;
                            margin-bottom: 15px;
                        }

                        >.card-direction {
                            font-size: .7rem;
                            color: #ccc;
                            margin-bottom: 20px;
                            line-height: 1.6;
                        }

                        >.card-button {
                            background-color: #0fbcf9;
                            color: white;
                            padding: 12px 24px;
                            font-size: .75rem;
                            border: none;
                            border-radius: 5px;
                            cursor: pointer;
                            transition: all .3s ease;

                            &:hover {
                                background-color: transparent;
                                color: #0fbcf9;
                                border: 1px solid #0fbcf9;
                            }
                        }
                    }
                }
            }

            >figcaption {
                margin-top: -80px;
                text-align: center;

                >p {
                    font-size: 19px;
                    color: black;

                    &:nth-of-type(2) {
                        color: #1877F2;
                    }
                }
            }
        }
    }
}

aside {
    width: 100%;
    height: 100vh;
    background-image: url(images/10.jpg);
    background-size: cover;
    background-position: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;

    >.shadow {
        width: 40%;
        height: 100%;
        background-color: black;
        position: absolute;
        left: 0;
        box-shadow: 5px 0 80px 90px black;
        border-radius: 25%;
    }

    >.content {
        position: absolute;
        left: 40px;
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;

        >p {
            color: rgb(232, 56, 56);
            font-size: 29px;

            &:nth-of-type(2) {
                color: #9c9c9c;
                width: 85%;
                font-size: 23px;
            }
        }

        >h2 {
            color: #FFFFFF;
            text-shadow: 0 1px 3px #FFF, 0 1px 20px rgb(165, 165, 112), 0 -1px 30px #ffd0a0;
            font-size: 40px;
            transition: .3s;
            width: 90%;

            &:hover {
                text-shadow: none;
            }
        }

        >form {
            display: flex;
            align-items: center;
            width: 90%;
            height: 100px;
            gap: 10px;

            >input {
                width: 65%;
                height: 45%;
                border-radius: 25px;
                padding: 0 15px;
                font-size: 16px;
                outline: none;
            }

            >button {
                width: 30%;
                height: 45%;
                border-radius: 25px;
                font-size: 17px;
                background-color: #1877F2;
                color: white;
                position: relative;
                overflow: hidden;
                cursor: pointer;
                transition: .4s;

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -110%;
                    background: #0fbcf9;
                    width: 210px;
                    height: 70px;
                    transition: .2s;
                    z-index: 0;
                    transform: skew(-20deg);
                }

                &:hover {
                    &::before {
                        left: 100%;
                    }

                    transform: scale(1.03);
                }

            }
        }
    }
}

.logo {
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;

    >div {
        width: 26%;
        height: 75%;
        border: 5px solid #2376e3;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        transition: .5s;

        &:hover {
            transform: scale(1.03);
        }

        >i {
            padding: 20px;
            color: white;
            text-align: center;
            font-size: 55px;
            margin: 50px 0 40px 0;
        }

        >h5 {
            font-size: 25px;

            &:nth-of-type(2) {
                color: yellow;
                margin-bottom: 10px;
            }
        }

        >p {
            text-align: center;
            margin: 50px;
            color: #9c9c9c;
        }

        >a {
            color: white;

            &:hover {
                color: #1877F2;
            }
        }
    }
}

.slider {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;

    >.see-more {
        width: 90%;
        height: 10vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;


        >span {
            font-size: 23px;
            font-weight: 600;
        }

        >a {
            color: black;
            transition: .4s;
            z-index: 1;
            font-size: 18px;

            &:hover {
                color: blue;
            }
        }
    }

    >.photos {
        width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
        padding: 0 80px;

        >div {
            width: 25%;
            height: 80%;
            position: relative;
            overflow: hidden;
            border-radius: 10px;

            &:nth-of-type(2) {
                >figure {
                    &:nth-of-type(1) {
                        animation-name: img1;
                    }

                    &:nth-of-type(2) {
                        animation-name: img2;
                    }

                    &:nth-of-type(3) {
                        animation-name: img3;
                    }

                    &:nth-of-type(4) {
                        animation-name: img4;
                    }

                    &:nth-of-type(5) {
                        animation-name: img5;
                    }

                    &:nth-of-type(6) {
                        animation-name: img6;
                    }
                }
            }

            &:nth-of-type(3) {
                >figure {
                    &:nth-of-type(1) {
                        animation-name: img1;
                    }

                    &:nth-of-type(2) {
                        animation-name: img2;
                    }

                    &:nth-of-type(3) {
                        animation-name: img3;
                    }

                    &:nth-of-type(4) {
                        animation-name: img4;
                    }

                    &:nth-of-type(5) {
                        animation-name: img5;
                    }

                    &:nth-of-type(6) {
                        animation-name: img6;
                    }
                }
            }

            &:nth-of-type(4) {
                >figure {
                    &:nth-of-type(1) {
                        animation-name: img1;
                    }

                    &:nth-of-type(2) {
                        animation-name: img2;
                    }

                    &:nth-of-type(3) {
                        animation-name: img3;
                    }

                    &:nth-of-type(4) {
                        animation-name: img4;
                    }

                    &:nth-of-type(5) {
                        animation-name: img5;
                    }

                    &:nth-of-type(6) {
                        animation-name: img6;
                    }
                }
            }

            >figure {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: -100%;
                animation: 30S linear infinite;

                &:nth-of-type(1) {
                    animation-name: img1;
                }

                &:nth-of-type(2) {
                    animation-name: img2;
                }

                &:nth-of-type(3) {
                    animation-name: img3;
                }

                &:nth-of-type(4) {
                    animation-name: img4;
                }

                &:nth-of-type(5) {
                    animation-name: img5;
                }

                &:nth-of-type(6) {
                    animation-name: img6;
                }

                >img {
                    width: 100%;
                    height: 100%;
                    object-fit: 80%;
                }

                >figcaption {
                    width: 100%;
                    height: 60px;
                    background-color: rgba(0, 0, 0, 0.498);
                    color: white;
                    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 20px;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    animation: txt ease-in-out 5s infinite;
                }
            }

        }
    }
}

@keyframes img1 {
    0% {
        left: 0;
    }

    16.5% {
        left: 0;
    }

    17.5% {
        left: 100%;
    }

    17.500000001% {
        left: -100%;
    }

    99% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

@keyframes img2 {
    0% {
        left: -100%;
    }

    16.5% {
        left: -100%;
    }

    17.5% {
        left: 0;
    }

    33% {
        left: 0;
    }

    34% {
        left: 100%;
    }

    34.00000001% {
        left: -100%;
    }

    100% {
        left: -100%;
    }
}

@keyframes img3 {
    0% {
        left: -100%;
    }

    33% {
        left: -100%;
    }

    34% {
        left: 0;
    }

    49.5% {
        left: 0;
    }

    50.5% {
        left: 100%;
    }

    50.500000001% {
        left: -100%;
    }

    100% {
        left: -100%;
    }
}

@keyframes img4 {
    0% {
        left: -100%;
    }

    49.5% {
        left: -100%;
    }

    50.5% {
        left: 0;
    }

    66% {
        left: 0;
    }

    67% {
        left: 100%;
    }

    67.00000001% {
        left: -100%;
    }

    100% {
        left: -100%;
    }
}

@keyframes img5 {
    0% {
        left: -100%;
    }

    66% {
        left: -100%;
    }

    67% {
        left: 0;
    }

    82.5% {
        left: 0;
    }

    83.5% {
        left: 100%;
    }

    83.500000001% {
        left: -100%;
    }

    100% {
        left: -100%;
    }
}

@keyframes img6 {

    0%,
    82.5% {
        left: -100%;
    }

    83.5% {
        left: 0;
    }

    99% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

@keyframes txt {

    0%,
    10%,
    90%,
    100% {
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }
}

.end {
    width: 100%;
    height: 130vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    >.sec1 {
        box-shadow: none;
        width: 80%;
        height: 20vh;
        display: flex;
        flex-direction: row;
        margin: -60px 0 50px 0;

        >div {
            display: flex;
            flex-direction: column;
            height: 100%;

            &:nth-of-type(1) {
                width: 20%;
                display: flex;
                justify-content: flex-start;
                align-items: center;

                >a {
                    width: 50%;
                    height: 20%;
                    font-size: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 5px 15px;
                    background-color: rgb(255, 217, 0);
                    color: black;
                    font-weight: 700;
                    border-radius: 10px;
                    transition: .5s;

                    &:hover {
                        transform: translateY(-3px);
                        color: #9c9c9c;
                    }
                }
            }

            &:nth-of-type(2) {
                width: 50%;
                display: flex;
                align-items: flex-start;

                >h5 {
                    font-size: 38px;
                    font-weight: 500;
                }

                >p {
                    margin-top: 0;
                    font-size: 18px;
                    color: #adabab;
                }

            }

            &:nth-of-type(3) {
                width: 30%;
                display: flex;
                justify-content: center;
                align-items: flex-start;
                flex-direction: row;

                >.holder {
                    width: 55%;
                    height: 30%;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    transition: .3s;
                    background-color: #1877F2;

                    &:hover {
                        width: 45%;
                        border: 3px solid #1877F2;
                        background-color: transparent;

                        >a {
                            color: #1877F2;
                        }

                        >.icons {
                            right: -37px;
                            opacity: 1;
                        }
                    }

                    >a {
                        width: 100%;
                        height: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: white;
                    }

                    >.icons {
                        position: absolute;
                        top: 0;
                        right: 0;
                        border: 3px solid #1877F2;
                        width: 40px;
                        height: 40px;
                        transform: rotate(45deg);
                        display: flex;
                        justify-content: center;
                        transition: .3s;
                        opacity: 0;

                        >svg {
                            transform: rotate(-45deg);
                            fill: #1877F2;
                            width: 25px;
                        }
                    }
                }
            }
        }
    }

    >.sec2 {
        box-shadow: none;
        height: 50vh;
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 35px;

        >figure {
            width: 33.4%;
            height: 100%;
            border-radius: 15px;
            position: relative;

            >img {
                width: 100%;
                height: 100%;
                border-radius: 15px;
            }

            >figcaption {
                position: absolute;
                top: 65%;
                left: 5%;
                width: 70%;
                background-color: #afacac74;
                padding: 10px;
                border-radius: 15px;

                >a {
                    color: white;
                    font-size: 20px;
                    transition: .5s;

                    &:nth-of-type(2) {
                        font-size: 15px;
                        margin-top: 30px;
                        color: #85b2ec;
                    }

                    &:hover {
                        border-bottom: 1px solid white;

                        &:nth-of-type(2) {
                            border-bottom: 1px solid #2376e3;

                        }
                    }
                }

                >span {
                    color: white;
                    font-size: 13px;
                }
            }
        }

        >div {
            width: 70%;
            height: 100%;
            border-radius: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #f0f0f0;

            >figure {
                width: 35%;
                height: 100%;
                border-radius: 15px;

                >img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 15px;

                }
            }

            >div {
                width: 60%;
                height: 90%;
                display: flex;
                justify-content: center;
                align-items: center;

                >div {
                    width: 90%;
                    height: 90%;
                    display: flex;
                    justify-content: space-around;
                    align-items: flex-start;
                    flex-direction: column;

                    >h4 {
                        font-size: 24px;
                    }

                    >p {
                        font-size: 20px;
                    }

                    >a {
                        color: #1877F2;
                        transition: .5s;

                        &:hover {
                            transform: scale(1.04);
                        }

                        >i {
                            margin-left: 5px;
                        }
                    }
                }
            }
        }
    }

    >.sec3 {
        box-shadow: none;
        margin-top: 35px;
        height: 30vh;
        width: 80%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 35px;

        >div {
            width: 40%;
            height: 100%;
            border-radius: 15px;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-direction: column;
            background-color: rgb(243, 250, 241);

            >div {
                display: flex;
                align-items: center;
                flex-direction: column;
                text-align: center;

                &:nth-of-type(1) {
                    flex-direction: row;
                }

                &:nth-of-type(2) {
                    >a {
                        color: black;
                        font-size: 20px;
                        width: 90%;
                        transition: .5s;

                        &:hover {
                            color: #2376e3;
                        }
                    }

                    >p {
                        margin-top: 1rem;
                        width: 90%;
                    }
                }

                >a {
                    color: #2376e3;
                }

            }
        }
    }
}

footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 2rem;
    margin-top: 3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    height: 85vh;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 3rem;
    width: 100%;
    margin: auto;
    height: 30vh;
}

.footer-container h3,
.footer-container h4 {
    margin-bottom: 1rem;
    color: #a3e635;
    /* lime-400 */
}

.footer-about p {
    font-size: 0.9rem;
    color: #9c9c9c;
    margin-bottom: 1rem;
}

.card {
    display: flex;
    height: 70px;
    width: 80%;
}

.card svg {
    position: absolute;
    display: flex;
    width: 60%;
    height: 100%;
    transition: 0.25s;
    cursor: pointer;
}

.card .social-link1,
.card .social-link2,
.card .social-link3,
.card .social-link4 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    color: whitesmoke;
    font-size: 24px;
    text-decoration: none;
    transition: 0.25s;
    border-radius: 50px;
}

.card .social-link1:hover {
    background-color: #1a1e22;
    animation: anime 0.4s linear;
}

.card .social-link2:hover {
    background-color: #0a66c2;
    animation: anime 0.4s linear;
}

.card .social-link3:hover {
    background-color: #0059f7;
    animation: anime 0.4s linear;
}

.card .social-link4:hover {
    background-color: #1d4292;
    animation: anime 0.4s linear;
}

@keyframes anime {
    40% {
        transform: scale(1.1);
    }

    60% {
        transform: scale(0.6);
    }

    80% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}


.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #9c9c9c;
    transition: .3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact ul li {
    font-size: 1rem;
    color: #9c9c9c;
}

.footer-contact ul li i {
    margin-right: 0.5rem;
    color: #a3e635;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: #9c9c9c;
    margin-bottom: 3rem;
}

.footer-newsletter form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: 20px;
    outline: none;
}

.footer-newsletter button {
    padding: 0.6rem 1rem;
    border: none;
    background: #a3e635;
    border-radius: 20px;
    cursor: pointer;
    transition: .3s;
}

.footer-newsletter button:hover {
    background: #84cc16;
    color: #000;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #9c9c9c;
}

.my-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    overflow: hidden;
}

.card2 {
    position: relative;
    width: 250px;
    height: 250px;
    background-color: #f2f2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 900px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card2 img {
    width: 100%;
    fill: #333;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card__image {
    width: 100%;
    height: 100%;
}

.card2:hover {
    transform: scale(1.05);
}

.card_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #c9d0e0;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;

}

.card2:hover .card_content {
    transform: rotateX(0deg);
    opacity: 1;
}

.card_title {
    margin: 0;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}


.card_description {
    margin: 10px 0 10px;
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}


.secondary {
    background: transparent;
    color: #777;
}

.card3 {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 25px;
    gap: 5px;
}

.socialContainer {
    width: 102%;
    height: 42px;
    background-color: rgb(93, 88, 88);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: .3s;
    border-radius: 15px;
}

.containerOne:hover {
    background-color: #d62976;
    transition-duration: .3s;
}

/* twitter*/
.containerTwo:hover {
    background-color: #00acee;
    transition-duration: .3s;
}

/* linkdin*/
.containerThree:hover {
    background-color: #0072b1;
    transition-duration: .3s;
}

/* Whatsapp*/
.containerFour:hover {
    background-color: #128C7E;
    transition-duration: .3s;
}

.socialContainer:active {
    transform: scale(0.9);
    transition-duration: .3s;
}

.socialSvg {
    width: 19px;
}

.socialSvg path {
    fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}