#header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%),
                url('../../images/banner_bg.webp') no-repeat center;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    min-height: 40vh;
    height: 40vh;
    z-index: 0;
    display: flex;
    align-items: center;
}

#header .content {
    height: 40vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 150px;
    position: relative;
}

#header .content .left .buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-around;
}

/*privacy*/
#privacy .content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#privacy .privacy {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#privacy .content .privacy-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white-color);
    position: relative;
}

#privacy .content .privacy-title::before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 150px;
    height: 1px;
    border-radius: 5px;
    background: var(--description-color);
}

#privacy .content .privacy-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 5px;
    background: var(--main-color);
}

#privacy .content .privacy-description span {
    color: var(--main-color);
    font-weight: 600;
}

#privacy .content .privacy-description .policy-link {
    color: #39BEFF;
}

#privacy .content .privacy-description {
    color: var(--description-color);
    font-size: 17px;
    line-height: 1.6;
}

#privacy .content .privacy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 40px;
}

#privacy .content .privacy-list .privacy {
    color: var(--description-color);
    font-size: 17px;
    line-height: 1.6;
}

#privacy .content .privacy-list .privacy span {
    color: var(--main-color);
}



/*privacy*/
@media screen and (max-width: 621px) {
    #header .content {
        padding: 0px;
    }
}