.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 999;
    transition: 0.3s;
}

.header.sticky {
    animation: sticky 800ms 1 ease;
    animation-play-state: running;
    padding: 10px 0;
    top: 0;
    background: rgba(0, 0, 0);
    box-shadow: rgba(0, 0, 0, 0.12) 0 0 4px;
}

.brand {
    width: 145px;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-primary {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #0C0C0C;
    color: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
    padding: 50px 20px 20px;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.12);
}

.nav-primary.open {
    transform: translateX(0);
}

.close-nav-primary {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-primary.open .close-nav-primary {
    right: -26px;
    font-size: 20px;
    color: var(--white-color);
    background: #0C0C0C;
    padding: 0px 11px;
    border-radius: 8px;
}

.nav-primary ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-primary ul li {
    width: 100%;
}

.nav-primary ul li a {
    position: relative;
    display: inline-block;
    width: 100%;
    font-family: var(--Poppins-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #BCBCBC;
}

.nav-primary ul li:hover a {
    color: var(--read-color);
}

.nav-primary ul li.active a {
    color: var(--read-color);
}

.btn-toggle {
    width: 26px;
    display: block;
    cursor: pointer;
}

.btn-toggle div {
    width: 100%;
    height: 3px;
    margin: 9px 0 0 0;
    background: var(--white-color);
    transition: transform 0.4s ease;
}

.btn-toggle div.one {
    margin-top: 0;
}

.btn-toggle.close .two {
    opacity: 0;
}

.btn-toggle.close .one {
    transform: rotate(45deg) translate(8px, 8px);
}

.btn-toggle.close .three {
    transform: rotate(-45deg) translate(9px, -9px);
}

@media (min-width: 1024px) {
    .header {
        padding: 36px 0;
    }

    .close-nav-primary,
    .btn-toggle {
        display: none;
    }

    .brand {
        width: 145px;
    }

    .nav-primary {
        position: unset;
        width: unset;
        height: unset;
        transform: unset;
        z-index: unset;
        padding: 0;
        transition: none;
        box-shadow: none;
        background: transparent;
    }

    .nav-primary ul {
        flex-direction: row;
        gap: 28px;
        width: max-content;
        justify-content: flex-end;
    }

    .nav-primary ul li a {
        padding: 0 0;
    }

    .nav-primary ul li.menu-item {
        width: max-content;
    }

}

.masthead {
    position: relative;
}

.masthead-slider.slick-slide {
    position: relative;
    height: 100vh;

}

.masthead-slider.slick-slide .container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.masthead-slider__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.masthead-slider__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 6s ease;
}

.masthead-slider.slick-slide.slick-active .masthead-slider__image img {
    transform: scale(1.1);
}

.masthead-slider__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0C0C0C 0%, rgba(12, 12, 12, 0.2) 34.13%, rgba(12, 12, 12, 0) 47.18%, rgba(12, 12, 12, 0.4) 61.54%, #0C0C0C 100%);
}

.masthead-slider__heading h1 {
    color: var(--white-color);
    font-family: var(--Poppins-font);
    font-style: italic;
    font-weight: 900;
    font-size: 42px;
    line-height: 0.8571428571428571em;
    text-transform: uppercase;
}

.masthead-slider__heading h1 span {
    font-family: var(--Corinthia-font);
    font-weight: 400;
    font-size: 92px;
    line-height: 0.8333333333333334em;
    color: #FFFFFF;
    text-transform: capitalize;
    display: block;
}

.masthead-slider__paragraph p {
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.4em;
}

.masthead-slider__content {
    padding-bottom: 80px;
}

.inner-masthead {
    min-height: 400px;
    display: flex;
}

.inner-masthead .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: auto;
}

.inner-masthead h1 {
    font-size: 28px;
}

.inner-masthead h1 span {
    font-size: 48px;
    display: unset;
}

.inner-masthead .masthead-slider__image::after {
    background: linear-gradient(180deg, #0C0C0C 0%, rgba(12, 12, 12, 0.4) 34.13%, rgba(12, 12, 12, 0) 47.18%, rgba(12, 12, 12, 0.4) 61.54%, #0C0C0C 100%);
}

.block-header {
    min-height: unset;
    padding-top: 87px;
}

.block-header .masthead-slider__heading h1 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
}

.block-header .masthead-slider__content {
    padding-bottom: 50px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1px 30px;
    margin: 10px 0 0;
}

.breadcrumb li {
    font-size: 14px;
    line-height: 1.5em;
    color: #fff;
}

.breadcrumb li a {
    position: relative;
    font-weight: 600;
    color: #fff;
}

.breadcrumb li a::after {
    content: "\e903";
    font-family: "epic";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: -19px;
    font-size: 8px;
    font-weight: normal;
    color: #fff;
}

.block-header {
    min-height: unset;
    padding-top: 87px;
}


@media (min-width :1200px) {

    .masthead-slider__heading {
        max-width: 385px;
    }

    .masthead-slider__heading h1 {
        font-size: 56px;
    }

    .masthead-slider__heading h1 span {
        font-size: 120px;
    }

    .masthead-slider__paragraph {
        max-width: 532px;
    }

    .masthead-slider__paragraph p {
        font-size: 20px;
    }

    .masthead-slider__content {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 30px;
        padding-bottom: 124px;
        width: 100%;
    }

    .masthead .slick-dots {
        bottom: 80px;
    }

    .inner-masthead {
        min-height: 563px;
        display: flex;
    }

    .inner-masthead h1 {
        font-size: 56px;
    }

    .inner-masthead h1 span {
        font-size: 120px;
    }

    .inner-masthead .masthead-slider__heading {
        max-width: 100%;
    }

    .inner-masthead .masthead-slider__content {
        padding-bottom: 80px;
    }

    .block-header {
        min-height: unset;
        padding-top: 150px;
    }

    .block-header .masthead-slider__heading h1 {
        font-size: 28px;
    }

    .breadcrumb li {
        font-size: 18px;
    }

    .breadcrumb li a:hover {
        color: var(--read-color);
    }
}

.trusted-by {
    overflow-x: hidden;
}

.trusted-by h3 {
    font-family: var(--Poppins-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.bg-light.trusted-by h3 {
    color: #0C0C0C;
}

.trusted-item.slick-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 21px;
    height: 84px;
    margin: 0 35px;
}

.trusted-item.slick-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 84px;
    background: url(../img/wrapper-left.svg) no-repeat;
}

.trusted-item.slick-slide::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 21px;
    height: 84px;
    background: url(../img/wrapper-right.svg) no-repeat;
}

.trusted-by .slick-list {
    margin: 0 -35px;
}

.trusted-by .slick-slider {
    padding-bottom: 64px;
}

.trusted-by .slick-dots {
    bottom: 0px;
}

.dark .upcoming-show-boder::after,
.dark .upcoming-show-boder::before,
.dark .upcoming-show.slick-slide::before,
.dark .upcoming-show.slick-slide::after {
    opacity: 0.4;
}


@media (min-width: 1200px) {
    .trusted-by .slick-slider {
        padding-bottom: 0px;
    }
}

.section-heading {
    max-width: 757px;
    margin: 0 auto 40px;
}

.section-heading h2 {
    margin-bottom: 16px;
}

.every-event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.every-event-image3 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.event-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width:768px) {
    .every-event-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }

    .every-event-image1 {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
    }

    .every-event-image2 {
        grid-column: 1 / 2;
        grid-row: 4 / 6;
    }

    .every-event-image3 {
        grid-column: 2 / 3;
        grid-row: 1 / 6;
    }

    .every-event-image4 {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }

    .every-event-image5 {
        grid-column: 3 / 4;
        grid-row: 3 / 6;
    }
}

.upcoming-shows {
    position: relative;
}

.upcoming-shows-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.upcoming-shows h2 {
    color: var(--white-color);
    margin-bottom: 40px;
}


.upcoming-shows h2 span {
    color: var(--white-color);
    display: unset;
}

.upcoming-show.slick-slide {
    position: relative;
    padding: 12px;
    margin: 0 12px;
    width: 250px;
}

.upcoming-show.slick-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 22px;
    background: url(../img/left-top.svg) no-repeat;
}

.upcoming-show.slick-slide::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 21px;
    height: 22px;
    background: url(../img/left-bottom.svg) no-repeat;
}

.upcoming-show-boder::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 21px;
    height: 22px;
    background: url(../img/right-top.svg) no-repeat;
}

.upcoming-show-boder::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 21px;
    height: 22px;
    background: url(../img/right-bottom.svg) no-repeat;
}

.js-upcoming-shows {
    padding-bottom: 40px;
}

.upcoming-shows .slick-dots {
    bottom: 0px;
}

.youtube-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 4px;
    background: #1B1B1B;
}

.youtube-content__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: #303030 1px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.youtube-content__top p {
    line-height: 1.25em;
    color: #BCBCBC;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    text-transform: capitalize;
}

.youtube-content__top h4 {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
}

.youtube-content__bottom p {
    color: #CDC9C9;
    line-height: 1.25em;
    text-transform: capitalize;
}

.youtube-video {
    position: relative;
}

.youtube-video span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(12, 12, 12, 0.5);
    border: 1px solid #0C0C0C;
    backdrop-filter: blur(10px);
    padding: 11px;
}

.youtube-video__wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.youtube-videos .upcoming-show.slick-slide {
    width: 360px;
    height: auto;
}

.youtube-videos .slick-track {
    display: flex !important;
}

.bg-light h2 {
    color: #0C0C0C;
}

.bg-light h2 span {
    color: #AF1F24;
}

.articles .youtube-content {
    background: #F4F4F4;
}

.articles .youtube-content__top p {
    color: #2D2D2D;
}

.articles .youtube-content h4 {
    color: #0C0C0C;
}

.articles .youtube-content__bottom p {
    color: #2D2D2D;
}


.articles .upcoming-show.slick-slide::after {
    background: url(../img/g-left-top.svg) no-repeat;
}

.articles .upcoming-show.slick-slide::before {
    background: url(../img/g-left-bottom.svg) no-repeat;
}

.articles .upcoming-show-boder::before {
    background: url(../img/g-right-bottom.svg) no-repeat;
}

.articles .upcoming-show-boder::after {
    background: url(../img/g-right-top.svg) no-repeat;
}

.articles.bg-light .slick-prev,
.articles.bg-light .slick-next {
    border: #0C0C0C 1px solid;
}

.articles.bg-light .slick-prev:hover,
.articles.bg-light .slick-next:hover {
    border: #0C0C0C 1px solid;
    background: #0C0C0C;
}

.articles.bg-light .slick-prev::before,
.articles.bg-light .slick-next::before {
    color: #0C0C0C;
}

.articles.bg-light .slick-prev:hover:before,
.articles.bg-light .slick-next:hover:before {
    color: #fff;
}

.bg-light .slick-dots li button::before {
    background: #6B0B1E;
}



@media (min-width:768px) {
    .upcoming-show.slick-slide {
        width: 519px;
    }
}

@media (min-width: 1200px) {
    .js-upcoming-shows .slick-prev {
        left: 50%;
        margin-left: 544px;
        top: -98px;
        transform: unset;
    }

    .js-upcoming-shows .slick-next {
        left: 50%;
        margin-left: 600px;
        top: -98px;
        transform: unset;
    }

    .youtube-content__top h4 {
        font-size: 20px;
    }

    .youtube-content__bottom p {
        color: #CDC9C9;
        font-size: 16px;
    }

    .youtube-videos .upcoming-show.slick-slide {
        width: 520px;
    }

    .youtube-content {
        height: 130px;
    }

    .articles .upcoming-show.slick-slide {
        width: 632px;
    }

}

.experiences-block {
    position: relative;
    background: linear-gradient(180deg, #0C0C0C 0%, rgba(12, 12, 12, 0.8) 22.29%, rgba(12, 12, 12, 0.61) 40.18%, rgba(12, 12, 12, 0.7) 59.32%, rgba(12, 12, 12, 0.83) 79.77%, #0C0C0C 100%);
}

.experiences-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.experiences-content h2,
.experiences-content h2 span {
    color: var(--white-color);
}

.experiences-content p {
    color: var(--white-color);
}

.number-counter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.number-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #840206;
    width: calc(50% - 8px);
    height: 157px;
}

.number-counter h3 {
    font-style: italic;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.0666666666666667em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.number-counter p {
    font-weight: 600;
    color: var(--white-color);
    padding: 0;
}

.experiences-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 20px;
}

.experiences-btn li {
    width: 100%;
}

.experiences-btn li a {
    font-family: var(--Poppins-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3333333333333333em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #E0E0E0;
    border: 1px solid #737273;
    padding: 10px 20px;
    background: transparent;
}

.experiences-btn li a:hover {
    background: #0C0C0C;
    border-color: #0C0C0C;
    color: var(--white-color);
}

.live-shows h2 {
    font-weight: 600;
    line-height: 1.1428571428571428em;
    color: #FFFFFF;
}

.live-shows__content p {
    color: var(--white-color);
}


@media (min-width:500px) {
    .experiences-btn li {
        width: max-content;
    }
}

@media (min-width:768px) {
    .number-counter h3 {
        font-size: 60px;
    }

}

@media (min-width: 1200px) {
    .experiences-btn {
        margin: 80px 0 40px;
    }

    .live-shows h2 {
        font-size: 28px;
        max-width: 247px;
    }

    .experiences-btn li a {
        font-size: 18px;
        padding: 18px 20px;
    }

}

.brands-choose {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.brands-choose li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: var(--Poppins-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4em;
    text-transform: uppercase;
    color: #E0E0E0;
    padding: 13px 24px;
    background: #0C0C0C;
}

.brands-choose li i {
    color: var(--white-color);
}

@media (min-width: 1200px) {
    .brands-choose li {
        font-size: 20px;
        padding: 20px 24px;
    }
}

.moments-block .section-heading {
    max-width: 1098px;
}

.momentsgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.momentsgrid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-drack h2,
.bg-drack h2 span,
.bg-drack p {
    color: var(--white-color);
}

@media (min-width:768px) {
    .momentsgrid {
        gap: 16px;
    }

    .momentsgrid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .moments-image1 {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
    }

    .moments-image2 {
        grid-column: 1 / 2;
        grid-row: 4 / 6;
    }

    .moments-image3 {
        grid-column: 2 / 3;
        grid-row: 1 / 6;
    }

    .moments-image4 {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }

    .moments-image5 {
        grid-column: 3 / 4;
        grid-row: 3 / 6;
    }

    .moments-image6 {
        grid-column: 1 / 2;
        grid-row: 6 / 11;
    }

    .moments-image7 {
        grid-column: 2 / 3;
        grid-row: 6 / 8;
    }

    .moments-image8 {
        grid-column: 2 / 3;
        grid-row: 8 / 11;
    }

    .moments-image9 {
        grid-column: 3 / 4;
        grid-row: 6 / 9;
    }

    .moments-image10 {
        grid-column: 3 / 4;
        grid-row: 9 / 11;
    }
}

.cta {
    position: relative;
}

.cta-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.cta-content {
    max-width: 757px;
    margin: 0 auto;
}

.cta-content p,
.cta-content h2 {
    color: var(--white-color);
}

.cta-content h2 span {
    color: var(--white-color);
    display: unset;
    margin: 0 8px 0 4px;
}


footer {
    background: #0C0C0C;
}

.footer-about-info p {
    color: #CDC9C9;
}

.footer-link-row {
    border-top: 3px solid #242424;
    border-bottom: 3px solid #242424;
    padding: 20px 0;
    margin: 52px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sosal-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sosal-icon a {
    font-size: 20px;
    color: #FFFFFF;
}

.sosal-icon a:hover {
    color: var(--read-color);
}

.footer-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-link li a {
    font-family: var(--Poppins-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25em;
    text-transform: uppercase;
    color: #BCBCBC;

}

.footer-link li a:hover {
    color: var(--read-color);
}

.copyright p {
    line-height: 1.25em;
    color: #AEAEAE;
    text-transform: none;
}


@media (min-width: 768px) {
    .footer-link-row {
        gap: 0;
        flex-direction: unset;
    }

    .footer-link {
        justify-content: flex-start;
    }

    .sosal-icon {
        justify-content: flex-end;
    }
}

@media (min-width: 1200px) {
    .footer-link {
        gap: 28px;
    }

    footer.section-padding {
        padding: 80px 0;
    }

    .copyright p {
        font-size: 16px;
    }
}


.content-block h2 span {
    display: unset;
}

.how-we-create {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.how-we-create-flex {
    display: flex;
    flex-direction: column;
    background: #F2F2F2;
    padding: 16px 24px;
    gap: 10px;
}

.how-we-create__heading h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1666666666666667em;
    text-transform: uppercase;
    color: #0C0C0C;
}

.how-we-create__heading h6 span {
    font-style: italic;
    font-weight: 700;
    color: #AF1F24;
}

.how-we-create__content p {
    color: #0C0C0C;
}

@media (min-width: 768px) {
    .how-we-create-flex {
        display: flex;
        flex-direction: row;
    }

    .how-we-create__heading h6 {
        font-size: 24px;
    }

    .how-we-create__heading {
        width: 40%;
    }

    .how-we-create__content {
        width: 60%;
    }
}

.bg-light .slick-prev,
.bg-light .slick-next {
    border: rgb(227, 227, 227) 1px solid;
}

.bg-light .slick-prev::before,
.bg-light .slick-next::before {
    color: rgba(175, 175, 175, 0.7);
}

.tab-button {
    overflow: auto;
    padding-bottom: 20px;
    margin: 0 0 20px;
}

.tab-button ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    width: max-content;
}

.tab-button ul.tabs li {
    display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    font-family: var(--Poppins-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
    color: #0C0C0C;
    margin: 0 8px;
}

.tab-button ul.tabs li.current {
    border: 1px solid #CEAB59;
    background: #0C0C0C;
    color: #FFFFFF;
}

.tab-bottom-content .tab-content {
    display: none;
}

.tab-bottom-content .tab-content.current {
    display: inherit;
}

@media (min-width: 1200px) {
    .tab-button ul.tabs {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .tab-button ul.tabs li {
        padding: 16px 18px;
        font-size: 18px;
        line-height: 24px;
        margin: 0px;
    }

    .tab-button {
        overflow: unset;
    }
}

.tabs__buttons {
    overflow: auto;
    margin: 0px 0 10px;
}

.tabs__buttons .tabs {
    display: flex;
    gap: 10px;
    width: max-content;
    padding: 0 0 15px;
}

.tabs__buttons .tab-btn {
    padding: 10px 15px;
    border: 1px solid #D0D0D0;
    background: transparent;
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3333333333333333em;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #0C0C0C;
}

.tabs__buttons .tab-btn.active {
    background: #000;
    color: #fff;
}

.hide {
    display: none;
}


.category-card {
    position: relative;
    border: none;
}

.category-card-wrapper {
    padding: 12px;
    display: block;
    height: 100%;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 21px;
    background: url(../img/g-left-top.svg);
}

.category-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 22px;
    width: 21px;
    background: url(../img/g-left-bottom.svg);
}

.category-card-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 22px;
    width: 21px;
    background: url(../img/g-right-top.svg);
}

.category-card-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 22px;
    width: 21px;
    background: url(../img/g-right-bottom.svg);
}

.category-card-image {
    position: relative;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    max-height: 224px;
    object-fit: cover;
}

.category-card-image span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(12, 12, 12, 0.5);
    border: 1px solid #0C0C0C;
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 11px;
}

.category-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: #F4F4F4;
}

.category-card-content-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: #CECCCC 1px solid;
    padding-bottom: 9px;
    margin-bottom: 9px;
}

.category-card-content-top h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3333333333333333em;
    text-transform: uppercase;
    color: #0C0C0C;
}

.category-card-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

.category-card-content-bottom .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.category-card-content-bottom .time {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.category-card-content-bottom .date,
.category-card-content-bottom .time {
    color: #2D2D2D;
}

.cards-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .category-card {
        width: calc(50% - 8px);
    }
}

@media (min-width: 1200px) {
    .category-card-content-top h4 {
        font-size: 18px;
    }

    .category-card {
        width: calc(33.333% - 11px);
    }

    .tabs__buttons .tabs {
        width: unset;
        justify-content: space-between;
    }

    .tabs__buttons {
        margin: 0px 0 25px;
    }


    .tabs__buttons .tab-btn {
        padding: 17px 24px;
        font-size: 18px;
    }

    .cards-filter h2 {
        margin-bottom: 40px;
    }
}

.from-area {
    padding: 36px 20px;
    background: #FFFFFF;
    box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.1);
}

.icon-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0;
}

.icon-card__flex {
    background: #FAFAFA;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.icon-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 24px;
}

.icon-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-border {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0C0C0C;
    border: #0C0C0C 1px solid;
}

.icon-card__content h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3333333333333333em;
    text-align: center;
    color: #0C0C0C;
}

.icon-card__content p {
    color: #2D2D2D;
    text-align: center;
}

.category-card-wrapper:hover .btn-border {
    border: var(--read-color) 1px solid;
    color: var(--read-color);
}

.bottom-text p {
    color: #2D2D2D;
}

@media (min-width:1200px) {
    .icon-cards-wrapper {
        margin: 40px 0;
    }

    .icon-card__content p {
        font-size: 16px;
        line-height: 22px;
    }
}


.contact-info-flex {
    background: #FFFFFF;
    box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.contact-card {
    position: relative;
}

.contact-card h4 {
    font-size: 18px;
    line-height: 1.1666666666666667em;
    color: #252122;
    text-align: center;
    margin-bottom: 6px;
}

.contact-card p {
    font-weight: 500;
    line-height: 1.375em;
    color: #56504F;
    text-align: center;
}

.contact-card a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1666666666666667em;
    color: #EE1F23;
    text-align: center;
}

.contact-card {
    width: 100%;
    text-align: center;
}

.contact-card img {
    margin: 0 auto 16px auto;
}

.available {
    margin: 20px 0 0 0;
}

.available p {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #56504F;
    text-align: center;
}

.google-map iframe {
    width: 100%;
    height: 400px;
}

@media (min-width: 768px) {
    .contact-card {
        width: calc(50% - 15px);
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .contact-card p {
        font-size: 16px;
    }

    .contact-card a {
        font-size: 24px;
    }

    .contact-card h4 {
        font-size: 24px;
    }

    .contact-info-flex {
        justify-content: space-between;
    }

    .contact-card {
        width: calc(33.333% - 21px);
        max-width: 354px;
        text-align: center;
    }

    .contact-card::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: -19%;
        width: 1px;
        height: 152px;
        background: #E7E4E4;
    }

    .contact-info-flex {
        padding: 40px 20px;
    }

    .available p {
        font-size: 16px;
    }

    .google-map iframe {
        width: 100%;
        height: 700px;
    }
}

.blog-details__content h2,
.blog-details__content h3,
.blog-details__content h4 {
    color: #0C0C0C;
    margin: 15px 0 15px;
}

.blog-details__content ul {
    display: flex;
    flex-direction: column;

}

.blog-details__content ul li,
.blog-details__content ul li a,
.blog-details__content p {
    position: relative;
    color: #2D2D2D;
    font-family: var(--Poppins-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    text-transform: uppercase;
}

.blog-details__content ul li{
    padding: 0 0 15px 20px;
}

.blog-details__content ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--black-color);
}

.blog-details__header img {
    width: 100%;
    height: 100%;
}

.blog-details__date {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 20px;
}

.date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.date p {
    color: #56504F;
}

.blog-details__header {
    margin-bottom: 20px;
}

.blog-details__header img {
    border-radius: 20px;
}

.similer-blogs .category-card {
    width: 100%;
}


@media (min-width: 1200px) {
    .date p {
        font-size: 16px;
    }

    .blog-details__header {
        margin-bottom: 50px
    }

    .blog-details__header img{
        height: 500px;
        object-fit: cover;
        object-position: top;
    }

    .blog-details__content ul li,
    .blog-details__content ul li a,
    .blog-details__content p {
        font-size: 20px;
    }
}