@import url('../css/base.css');

.head_content {
    width: 100%;
    height: 100vh;
    /* background: #e3dfc8;
    background: radial-gradient(circle, #F7F7F3 9%, #c9c29b 100%); */

    background: #F7F7F3;
    background: radial-gradient(circle, rgba(247, 247, 243, 1) 0%, rgba(197, 219, 211, 1) 100%);
    background-image: url("../images/bg.jpeg");
    background-position: center;
    background-size: cover;
    
}

#img_container {
    position: relative;
    overflow: hidden;
}
#img_container img {
    height: 100vh;
    position: absolute;
    left: -50px;
}

#head-text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    height: 100vh;
    position: relative;
}

#head-text h1 {
    font-size: 75px;
    color: var(--green);
    /* background-color: var(--green); */
    padding: 0px 30px;
    /* padding-bottom: 20px; */
    visibility: hidden;
}

#head-text h2 {
    font-size: 45px;
    /* margin-top: 20px; */
    /* background-color: var(--gold); */
    color: var(--green);
    padding: 10px;
    visibility: hidden;
}

#head-text p {
    color: var(--green);
    font-size: 22px;
    margin-top: 20px;
    visibility: hidden;
}

#head-text #buttons {
    width: 100%;
    justify-content: start;
    align-items: center;
    gap: 30px;
}

#head-text #buttons a {
    padding: 10px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    font-size: 20px;
}

#head-text #buttons a:first-child {
    background-color: var(--green);
    color: var(--bacground_color);
}

#head-text #buttons a:first-child img {
    height: 40px;
    background-color: var(--bacground_color);
    border-radius: 50%;
    padding: 5px;
    margin-right: 10px;
}

#head-text #buttons a:last-child {
    background-color: var(--gold);
    color: var(--green);
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
}
#head-text #buttons a:hover {
    transform: scale(1.1);
}

#head-text .tail_content {
    bottom: 0;
    right: 0;
    position: absolute;
    padding: 20px;
    width: 150%;
    background: #1F3230;
    background: linear-gradient(90deg, rgba(31, 50, 48, 0) 0%, rgba(31, 50, 48, 1) 100%);
    color: var(--dark_bacground_color);
}

#colum img {
    visibility: hidden;
}

@media (max-width: 768px) {

    .head_content {
        background-image: url("../images/bg_v.jpeg");
    }

    #img_container  {
        height: 50vh;
    }

    #img_container img {
        height: 60vh;
        bottom: 0;
    }
    #head-text {
        justify-content: space-between;
        align-items: center;
        height: 100vh;
        padding: 10px !important;
    }

    #head-text h1{
        font-size: 42px;
        /* margin-top: 60px; */
        /* margin-top: 20px; */
    }

    #head-text h2{
        font-size: 26px;
    }

    #head-text p{
        font-size: 16px;
        text-align: center;
        margin-top: 30px;
        visibility: hidden;
    }

    #head-text #buttons a {
        font-size: 12px;
        padding: 5px;
    }

    #head-text #buttons a:first-child img {
        height: 30px;
    }

    #head-text #buttons {
        justify-content: center;
        margin-bottom: 80px;
    }

    #head-text .tail_content {
        width: 50%;
    }

     #head-text .tail_content {
        /* display: none; */
        width: 100%;
        /* position: absolute; */
        bottom: 0;
     }

    #head-text .tail_content h3 {
    font-size: 20px;
    }

     #img_container {
        display: none;
     }

     #colum {
        flex-direction: column;
        margin-top: 100px;
        justify-content: center;
        align-items: center !important;
        gap: 0;
     }

     #colum img {
        width: 150px !important;
     }

}