.header {
    display: block;
    width: 100%;
    min-height: 800px;
    height: 80vh;
    background: linear-gradient(#03367580 0%, #03367580 100%), url('../../assets/images/sau.png') no-repeat center top/cover fixed;
}

.header header-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.header .header-content {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
}

.header .header-title {
    font-size: 64px;
    color: white;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.header .header-title .header-title-item {
    display: inline-block;
}

.header .header-title .header-title-item {
    background-color: rgba(255, 255, 255, 10%);
    backdrop-filter: blur(2px);
    padding: 0 10px;
    border-radius: 8px;
}

.header .header-title span:first-child {
    margin-bottom: 20px;
}


.advert {
    display: flex;
    justify-content: space-around;
    position: relative;
    top: -50px;
    margin-bottom: -30px;
    gap: 5px;
}

.advert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    box-sizing: border-box;
}

.advert-icon {
    margin-bottom: 10px;
}

.advert-icon svg {
    height: 90px;
}

.advert-content {
    font-size: 24px;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 20px 30px;
    box-sizing: border-box;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.advert-item .advert-content {
    flex: 1;
}

.advert-item p {
    margin: 0;
    line-height: 1.5;
}


.line {
    height: 100px;
    margin-top: -100px;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0.6) 10%, rgba(242, 242, 242, 1) 100%);
    position: relative;
}

#new-companies {
    position: relative;
    margin-bottom: 200px;
}

#new-companies::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100vw);
    height: 100%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    z-index: -1;
}

.new-companies-title,
.prepare-ads-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .advert {
        flex-direction: column;
        align-items: center;
    }

    .advert .advert-item {
        margin-bottom: 30px;
        width: 100%;
    }

    .header .header-title {
        font-size: 32px;
    }

    .advert-content {
        margin-top: 30px;
    }
}