html {
    --main-color: #646464;
    --second-color: #f0ba34;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

a {
    color: none;
    direction: none;
}

.header {
    height: 100vh;
    background-color: #000;
}

.right-box {
    clip-path: polygon(100% 0%, 50% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
    padding: 1rem 4rem 1rem 1rem;
    background-color: #222222;
    position: absolute;
    height: 100%;
    width: 20%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.right-box .image {
    height: 165px;
    width: 210px;
}

.right-box .socials {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.right-box .socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #222;
    transition: color ease-in-out .3s;
}

.right-box .socials a:hover {
    color: var(--second-color);
}

.left-box {
    padding: 0;
    height: 100%;
}

.left-box .swiper {
    width: 100%;
    height: 100%;
}

.left-box .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    background: #000;
}

.left-box .swiper .swiper-pagination-bullet {
    background-color: var(--second-color);
    width: 2rem;
}

main .about {
    margin: 5rem 0;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    position: relative;
}

main .about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--main-color);
    border-radius: 100% 0% 0% 100% / 0% 100% 0% 100%;
}

main .about .title {
    text-align: center;
    margin-bottom: 2rem;
}

main .about h2 {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

main .about .socials {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

main .about .socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #222;
    background-color: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    border: 1px solid #fff;
    transition: .3s;
}

main .about .socials a:hover {
    transform: translate(0, -10px);
}

main .about .socials a:nth-child(1) {
    color: #4267b2;
}

main .about .socials a:nth-child(2) {
    color: #c13584;
}

main .about .socials a:nth-child(3) {
    color: #ff0000;
}

@media (max-width: 768px) {
    .right-box {
        padding: 1rem 3rem 1rem 1rem;
    }
    .right-box .image {
        height: 4rem;
        width: 4rem;
    }
    .right-box .socials a {
        font-size: 1.5rem;
    }
}



@media (max-width: 576px) {
    .header {
        height: 350px;
    }
    .right-box {
        padding: 0.5rem 1.5rem 0.5rem 0.5rem;
        height: 350px;
        z-index: 1;
    }
    .right-box .image {
        height: 3rem;
        width: 3rem;
              z-index: 99;
    }
    .right-box .socials a {
        font-size: 1rem;
    }
    .right-box .socials {
        gap: 2rem;
    }
}

