.header-area {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    width: 100%
}

@media(min-width: 1400px) {
    .header-area .container {
        max-width:1850px
    }
}

.header-area .header-area__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    height: 100px;
    border-bottom: 1px solid var(--border)
}

@media only screen and (max-width: 1919px) {
    .header-area .header-area__inner {
        height:80px
    }
}

.header-area .header-area__inner>*:nth-child(1) {
    margin-inline-end:auto}

@media(max-width: 575px) {
    .header-area .header__meta {
        display:none
    }
}
.testimonials_section {
    padding: 200px 0 120px;
}
.testimonials_section .section-header {
    display: flex;
    gap: 20px 60px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .testimonials_section .section-header {
        flex-direction:column;
        align-items: flex-start
    }
}
.testimonials_section .section-header .text {
    max-width: 350px;
    color: var(--white-2)
}
.testimonials_section .section-header .title-wrapper {
    margin-top: 17px
}
.testimonials_section .section-subtitle {
    color: var(--white)
}
.testimonials_section .section-title {
    position: relative;
    font-family: var(--font_teko);
    font-size: 76px;
    text-transform: uppercase;
    padding-bottom: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: .92;
}
.testimonials_section .section-title>span {
    color: var(--white-2);
    background: linear-gradient(0deg, #374bac, #58ef8e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.grid--content .column--wrapper {
    display: column;
    columns: 5;
    gap: 20;
    break-inside: avoid;
}
.post--item {
    break-inside: avoid;
    margin-bottom: 15px;
}
.grid--content .column--wrapper .post--item {
    border: 1px solid #dcdcdc;
    padding: 10px;
    border-radius: 15px;
}
.grid--content .column--wrapper .post--item video {
    width: 100%;
}
.grid--content .column--wrapper .post--item img {
    width: 100%;
    border-radius: 15px;
}
.grid--content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
@supports (grid-template-rows: masonry) {
    .grid--content .column--wrapper {
        display: grid;
        grid-template-columns: repeat(3), 1fr;
        grid-template-rows: masonry;
        grid-auto-flow: dense;
        align-tracks: stretch;
    }
}
@media screen and (max-width: 768px) {
    .grid--content .column--wrapper {
        columns: 2;
    }
}
