/*--------------------------Home ---------------------------------*/
.home {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    min-height: 700px;
    gap: 12vw;
}

.avtar img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    box-shadow: 0.1px 0.2px 5px rgb(237, 235, 232);
}

.paragraph {
    width: 100%;
    font-size: 16px;
}

.text-2 {
    font-size: 55px;
    font-weight: 600;

}

.text-2 span {
    color: rgb(243, 176, 52);
}

.column p {
    text-align: center;
}

.home-content p {
    color: white;
}

.text-btn {
    display: flex;
    border-radius: 10px;
    gap: 20px;

}

.text-btn a {
    text-decoration: none;
    color: white;
}

.hire-btn {
    width: 100px;
    margin-top: 25px;
    font-size: 18px;
    padding: 13px;
    cursor: pointer;
    border: 1.5px solid rgb(243, 176, 52);
    border-radius: 10px;
    background: rgb(8, 0, 0);
    transition: all 0.5s ease;
}

.download-btn {
    width: 170px;
    margin-top: 25px;
    font-size: 18px;
    cursor: pointer;
    border: 1.5px solid rgb(243, 176, 52);
    border-radius: 10px;
    background: rgb(8, 0, 0);
    transition: all 0.5s ease;
}

.download-btn:hover {
    background-color: rgb(243, 176, 52);
}

.hire-btn:hover {
    background-color: rgb(243, 176, 52);
}

.download-btn i {
    font-size: 20px;
}

.social-icon {
    display: flex;
    margin-top: 25px;
    gap: 32px;
}

.social-icon a {
    color: white;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.icon i {
    font-size: 25px;
}

.icon:hover {
    border: 0.1px solid rgb(243, 176, 52);
    border-radius: 50%;
    box-shadow: 0px 0px 5px 1px rgb(229, 210, 173);
}

@media (max-width: 1200px) {
    .home {
        flex-direction: column;
        height: fit-content;
    }

    .home-content {
        display: flex;
        flex-direction: column;
        align-items: center;

    }
}

@media (max-width: 768px) {
    .home {
        height: fit-content;
        padding-top: 100px;
        padding-bottom: 15px;
        align-items: center;
        justify-content: center;
    }

    .avtar img {
        height: 300px;
        width: 300px;
    }

    .text-2 {
        font-size: 26px;
        font-weight: 600;
    }

    .text-2 span {
        font-size: 28px;
    }

    .text-btn {
        justify-content: center;
    }

    .social-icon {
        justify-content: center;
    }

    .icon i {
        font-size: 20px;
    }

    .paragraph {
        margin-top: 12px;
        font-size: 16px;
    }

}