#about  .title{
    margin-bottom: 20px;
}

#about  .title > span {
    color: var(--gs-color-black);
    font-size: var(--gs-font-title-size);
    font-weight: 800;
    margin-right: 10px;
}

#about  .title > .title2 {
    color: var(--gs-color-primary);
}

#about  .socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

#about a {
    text-decoration: none;
    border-radius: 50%;
}

#about a > i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 18px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gs-color-black);
    background-color: var(--gs-color-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all ease 0.5s;
}

#about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
    background-color: var(--gs-color-gray);
}

.about-img img {
    width: 100%;
    max-width: 430px;
    height: 430px;
    border-radius: 10px;
    box-shadow: var(--gs-color-primary) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}



.about-text p {
    font-size: 1.1 rem;
    color: var(--gs-color-black);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 1100px) {
    #about > .about-content {
        height: 100dvh;
    }
}

@media (max-width: 920px) {
    #about {
        grid-template-columns: 1fr;
    }

    .about-img {
        display: none;
    }

    .about-text {
        text-align: center;
    }
}

@media (max-width: 800px){
    .socials{
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0;
        margin:0;
    }
    
    .link{
        color: rgb(0, 0, 0);
        transition: .5s;
    }
    
    .link:hover{
        transition: .5s;
        color: #e4ab32;
    }
}

@media screen and (min-width: 600px) and (max-width: 1099px),
       screen and (min-width: 370px) and (max-width: 599px),
       screen and (min-width: 300px) and (max-width: 369px) {

    #about > .about-content {
        display: grid;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        min-height: 100dvh;
    }

    #about > .about-content > .left {
        display: flex;
        justify-content: center;
    }

    #about > .about-content > .left > .photo-content > img {
        width: 100%;
        border-radius: 10px;
        box-shadow: var(--gs-color-primary) 2px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }
}

@media screen and (min-width: 600px) and (max-width: 1099px) {
    #about > .about-content > .left > .photo-content > img {
        max-width: 380px;
        height: 380px;
    }
}

@media screen and (min-width: 370px) and (max-width: 599px) {
    #about > .about-content > .left > .photo-content > img {
        max-width: 340px;
        height: 340px;
    }
}

@media screen and (min-width: 300px) and (max-width: 369px) {
    #about > .about-content > .left > .photo-content > img {
        max-width: 280px;
        height: 280px;
    }
}

