@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
:root {
    --maincolor: 159 121 61;
    --header-logo: 255 255 255;
    --header-h: 80px;
    --container: 1000px;
    --glass-bg: rgba(0,0,0,.6);
    --glass-blur: 10px;   
}
* {
    margin: 0;
    padding: 0;
    font-family: poppins, sans-serif;
}
html, body {
    overflow-x: hidden;
}
.content_header {
    position: relative;
    top: -80px;
}
.content_header .header_img {
    height: 700px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.content_header .header_img img {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50%));
}
.content_header .header_text {
    position: absolute;
    inset: 0;
    pointer-events: none;
    cursor: default;
}
.content_header .header_text .header_text_inner {
    width: var(--container);
    height: 100%;
    margin-inline: auto;
    display: block;
    margin-top: 180px;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
    padding-block: 80px;
    color: #fff;
}
.content_header .header_text .header_text_inner .content {
    max-width: 400px;
    animation: fadeDown 1s ease-out forwards;
    animation-delay: 0.3s;
}
.content_header .header_text .header_text_inner .content h1 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.content_header .header_text .header_text_inner .content span {
    display: block;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.content_header .header_text .header_text_inner .content button {
    width: 270px;
    height: 50px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 12px;
    border: none;
    background: rgb(var(--maincolor));
    color: white;
    transition: all 0.35s ease;
}
.content_header .header_text .header_text_inner .content button:hover {
    background: rgb(var(--header-logo));
    color: rgb(var(--maincolor));
    cursor: pointer;
}
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}
@media (max-width: 1100px) {
    .content .content_header .header_text .content {
        margin-left: 60px;
    }
}
@media (max-width: 900px) {
    .content .content_header .header_text .content h1{
        font-size: 35px;
    }
    .content .content_header .header_text .content span{
        font-size: 15px;
    }
    .content .content_header .header_text .content button{
        width: 180px;
        height: 40px;
        font-weight: 500;
        font-size: 13px;
    }
}