@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

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

body{
    font-family: 'Poppins', sans-serif;
}

.about-wrapper{
    min-height: 100vh;
}

.about-left{
 background: linear-gradient(
    to bottom,
    #000 0% 14.285%,
    #5d181b 14.285% 28.57%,
    #9d0a1d 28.57% 42.855%,
    #ff1d29 42.855% 57.14%,
    #ff8a28 57.14% 71.425%,
    #ffd505 71.425% 85.71%,
    #f9f721 85.71% 100%
);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: clamp(0.35rem, 2vw, 1.5rem);
    color: #fff;
}

.about-left-content{
    box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    -webkit-box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    border-radius: 12px;
    width: min(520px, 96vw);
    margin: 0 auto;
}

.about-left-content > div{
    background: #12192c;
    text-align: center;
    border-radius: 12px 12px 0 0;
    padding: clamp(1rem, 3vw, 2rem);
}

.shadow{
    margin: 0 auto;
    border-radius: 50%;
    width: clamp(140px, 38vw, 300px);
    aspect-ratio: 1 / 1;
}

.about-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}

.about-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-left-content h2{
    font-size: clamp(1.8rem, 5vw, 2rem);
    margin: 1.5rem 0 0.6rem 0;
    line-height: 1.2;
    padding-bottom: 1rem;
    border-bottom: 2px solid #B721FF;
}

.about-left-content h3{
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: clamp(2px, 1vw, 5px);
    margin-top: 1.2rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.icons{
    background: #12192c;
    display: flex;
    justify-content: center;
    padding: 0.8rem 0;
    border-radius: 0 0 12px 12px;
}

.icons li{
    list-style-type: none;
    background: #B721FF;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.icons li:hover{
    background: #edffec;
    color: #000;
}

.about-right{
    background: #12192c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.about-right h1{
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-transform: uppercase;
}

.about-right h1 span{
    color: #B721FF;
}

.about-right h2{
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.about-btns{
    display: flex;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.btn{
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 0.55rem 0;
    width: 130px;
    font-weight: 600;
    background: transparent;
    margin: 0.5rem;
    cursor: pointer;
    color: #fff;
}

.btn.btn-pink{
    background: #B721FF;
    color: #fff;
    border-color: #B721FF;
    transition: all 0.5s ease-in-out;
}

.btn.btn-pink:hover{
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn.btn-white{
    transition: all 0.5s ease-in-out;
}

.btn.btn-white:hover{
    background: #B721FF;
    border-color: #B721FF;
    color: #fff;
}

.about-para p{
    font-weight: 300;
    padding: 0.5rem;
    opacity: 0.8;
}

@media screen and (min-width: 992px){
    .about-wrapper{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .about-left,
    .about-right{
        min-height: 100vh;
    }

    .about-left-content{
        width: min(520px, 80%);
    }
}

@media screen and (max-width: 991px){
    .about-wrapper{
        display: block;
    }

    .about-left,
    .about-right{
        min-height: auto;
    }

    .about-right{
        padding: 1.5rem 1rem;
    }
}

@media screen and (max-width: 480px){
    .about-left{
        padding: 0.35rem;
    }

    .about-left-content{
        width: 98vw;
    }

    .about-left-content > div{
        padding: 0.9rem;
    }

    .about-left-content h2{
        margin-top: 1rem;
        padding-bottom: 0.75rem;
    }

    .about-left-content h3{
        margin-top: 0.9rem;
    }
}

.credit{
    text-align: center;
    color: #fff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.credit a{
    text-decoration: none;
    color: #B721FF;
    font-weight: bold;
}