section{
    padding: 160px 15% 120px;
}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url(../../assets/background/background.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide{
    margin-bottom: 20px;
}

.one{
    display: inline-block;
    margin-right: 15px;
    height: 32px;
    padding: 0 15px;
    line-height: 32px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    background: var(--gs-color-primary);
    color: var(--gs-color-gray-lighter);
}

.two{
    display: inline-block;
    color: var(--second-color);
    font-size: 20px;
    font-weight: 600;
}

.home-text h1{
    font-size: var(--gs-font-big-name);
    font-weight: 800;
    color: var(--gs-color-black);
    line-height: 1.1;
    margin: 0 0 8px;
}

.home-text h3{
    color: var(--gs-color-black);
    margin: 0 0 35px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
}

.home-text h3 span{
    color: var(--gs-color-primary);
}

.home-text p{
    color: var(--second-color);
    font-size: var(--p-font);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.link{
    color: rgb(0, 0, 0);
    transition: .5s;
}

.link:hover{
    transition: .5s;
    color: #e4ab32;
}

.button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.button a{
    font-size: 22px;
    text-decoration: none;
}

.button i{
    font-size: 22px;
}

.button span{
    font-size: 18px;
}

.btn{
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--gs-color-primary);
    border-radius: 8px;
    color: var(--gs-color-gray-lighter);
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all .45s ease;
}

.btn:hover{
    transform: scale(0.9);
}

.btn2{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--gs-color-black);
    margin-left: 35px;
}

.btn2 span i{
    height: 55px;
    width: 55px;
    background: var(--gs-color-primary);
    color: var(--gs-color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border-radius: 50%;
    margin-right: 15px;
    transition: all .45s ease;
}

.btn2 span i:hover{
    transform: scale(0.9);
}

.socials{
    display: flex;
    align-items: center;
    justify-content: left;
    margin-top: 5em;
}

.btn-socials{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--gs-color-black);
    margin-right: 15px;
}

.btn-socials:nth-child(6){
    margin-right: 0px;
}

.btn-socials span i{
    height: 55px;
    width: 55px;
    background: var(--gs-color-primary);
    color: var(--gs-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border-radius: 50%;
    transition: all .45s ease;
}

.btn-socials span i:hover{
    transform: scale(0.9);
}

@media (max-width: 1100px){
    .home-text h3{
        font-size: 1.6rem;
    }

    .home{
        height: 87vh;
    }
}

@media (max-width: 800px){
    .home{
        position: relative;
        height: 87vh;
        width: 100%;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .btn{
        font-size: 0.7rem;
    }

    .home{
        height: 100vh;
    }

    .home-text p{
        color: var(--gs-color-black);
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}