/* archive */
section.archive {
    background-color: var(--bg-color);
}

.archive--btn {
    width: max-content;
    margin-inline: auto;
    margin-block-start: 2rem;
}

/* archive--tabs */
.archive--title {
    padding-block: 5rem 2.5rem;
    background-color: var(--baseLight-color);
}

.archive--title__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 1rem;
}

.archive--title__content h1 {
    color: var(--baseDark-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form--group {
    display: flex;
    align-items: center;
    max-width: 250px;
    border-radius: var(--border-radius-100);
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.75rem 1rem;
    justify-content: space-between;
}

.form--group input {
    width: calc(100% - 24px);
    border: none !important;
    outline: none !important;
}

.form--group img {
    opacity: 0.5;
}

.archive--title__content>div {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    flex-wrap: wrap;
    row-gap: 1.5rem;
}

.newsroom--menu>ul {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.newsroom--menu>ul>li {
    padding: 8px;
}

.newsroom--menu>ul>li.current-menu-item {
    border-radius: var(--border-radius-100);
    background: rgba(0, 0, 0, 0.10);
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsroom--menu>ul>li>a {
    color: var(--baseDark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.newsroom--menu>ul>li:last-child {
    margin-inline-end: 2rem;
}

.newsroom--menu>ul>li.menu-item-has-children {
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
    position: relative;
    cursor: pointer;
}

.newsroom--menu>ul>li.menu-item-has-children::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    right: -14px;
    top: 55%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-image: url("../../assets/img/icons/arrow-down-black.svg");
}

.newsroom--menu>ul>li.menu-item-has-children>ul.sub-menu {
    padding: 1rem;
    background: var(--baseLight-color);
    box-shadow: 0px 6px 28px 5px rgba(16, 24, 40, 0.12);
    border-radius: var(--border-radius-8);
    position: absolute;
    min-width: 220px;
    z-index: 1;
}

@media screen and (min-width: 1200px) {
    .newsroom--menu>ul>li.menu-item-has-children>ul.sub-menu {
        opacity: 0;
        visibility: hidden;
        transition: all 0.15s ease;
        top: 1.95rem;
    }

    .newsroom--menu>ul>li.menu-item-has-children:hover>ul.sub-menu {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 1199px) {
    .newsroom--menu>ul>li.menu-item-has-children>ul.sub-menu {
        display: none;
        top: 2rem;
    }
}


.newsroom--menu>ul>li.menu-item-has-children>ul.sub-menu li:not(:last-child) {
    margin-block-end: 1rem;
}

/* archive--content */
.archive--wrapper__content {
    padding-block-end: 8rem;
}

/* archive--title */
.archive--wrapper__title {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-block: 2rem;
}

.titleArchive {
    color: var(--baseDark-color);
    font-feature-settings: 'liga' off;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
}

.archive--wrapper__title ul.social {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}


.archive--wrapper__title ul.social li img {
    filter: brightness(1) invert(0);
}


/* item */
.item {
    position: relative;
    background-color: var(--baseLight-color);
    position: relative;
    height: auto;
    display: flex;
}

.item--column {
    flex-direction: column;
    padding-block-end: 8rem;
}

.item--row {
    flex-direction: row;
}

.item img {
    width: 100%;
    height: auto;
    aspect-ratio: 450 / 300;
    object-fit: cover;
}

.item--row .item--img {
    width: 50%;
}

.item--row .item--img img {
    height: 100%;
}

.indexItem {
    margin-block-end: 2.5rem;
}

.indexItem.item .item--img {
    width: 55%;
}

/* item--text */

.indexItem.item .item--text {
    width: 45%;
}

.item--text {
    padding: 1.5rem 1.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    justify-content: space-between;
}

.item--row .item--text {
    width: 50%;
    padding-block: 1.5rem;
}

.item--text h4 {
    font-size: var(--text-2xl);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
}

.item--text .tag {
    padding: 0.25rem 0.6rem;
    background-color: rgba(0, 0, 0, 0.14);
    border-radius: var(--border-radius-100);
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.16px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-block-end: 1rem;
}

.item--text .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
}

.item--text .footer .time {
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.item--text .footer .time span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.1px;
}

.item--column .item--text .footer {
    position: absolute;
    bottom: 1.5rem;
    width: 89%;
    left: 1.5rem;
}

.item--text .footer>div {
    color: rgba(0, 0, 0, 0.5);
}

.item--text .footer>div.date {
    font-size: var(--text-base);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.1px;
}

.item--text .footer>div:first-child {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
}

.item--text .footer>div:first-child img {
    width: 16.67px;
    height: 16.67px;
    opacity: 0.5;
}


.listTwoColumn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
    column-gap: 2.5rem;
}

.listOneColumn {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2.5rem;
}

/* new section */
.new {
    padding-block: 8rem;
    width: 100%;
}

.new--title {
    margin-block-end: 2rem;
    padding-inline-start: 4px;
}

/* swiper */
.new .swiper {
    width: 100%;
    height: 100%;
}


/* .new--footer */
.new--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block-start: 2em;
}

/* swiper--navigation */
.new--footer .swiper--navigation {
    column-gap: 1rem;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.new--footer .swiper--navigation>div {
    width: 68px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: unset;
    border-radius: var(--border-radius-100);
    background-color: var(--baseDark-color);
}

.new--footer .swiper-button-next,
.new--footer .swiper-button-prev {
    margin-top: unset !important;
}

.new--footer .swiper-button-next:after,
.new--footer .swiper-button-prev:after {
    content: unset !important;
}

.new--footer .swiper-button-next.swiper-button-disabled,
.new--footer .swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.1);
}

.new--footer .swiper-button-next.swiper-button-disabled img,
.new--footer .swiper-button-prev.swiper-button-disabled img {
    filter: brightness(1) invert(1);
}

.item--text .footer a.btn {
    text-align: center;
}

/*********************
START: MAGAZINE
*********************/
.magazine {
    padding-block: 8rem;
    background-color: #171717;
}


.magazine--title {
    max-width: 1280px;
    width: 100%;
    margin-inline: auto;
}

.magazine--title p {
    font-size: 32px;
    line-height: 40px;
    margin-block: 1rem 4rem;
}

.magazine--iframe {
    max-width: 974px;
    width: 100%;
    margin-inline: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.magazine--iframe iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 974 / 631;
    border: none;
    vertical-align: middle;
}

/*********************
END: MAGAZINE
*********************/


/*********************
START: SCHEDULE DEMO FIXED
*********************/

.agents {
    padding-block: 8rem;
    background-color: var(--baseDark-color);
}

.agents--content {
    width: 1280px;
    margin-inline: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 1.5rem;
}

/*********************
END: SCHEDULE DEMO FIXED
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1920px) {

    .item--text .footer a.btn,
    .item--text .footer .time>span,
    .item--text .footer>div.date {
        font-size: var(--text-xs);
    }
}

@media screen and (min-width: 1728px) and (max-width: 1919px) {

    .item--text .footer a.btn,
    .item--text .footer .time>span,
    .item--text .footer>div.date {
        font-size: var(--text-sm);
    }
}

@media screen and (min-width: 1512px) and (max-width: 1727px) {}

@media screen and (min-width: 1440px) and (max-width: 1511px) {}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    .new {
        padding-block: 7rem;
    }

    .magazine {
        padding-block: 7rem;
    }
}

@media screen and (max-width: 1319px) {

    .item--text .footer a.btn,
    .item--text .footer .time>span,
    .item--text .footer>div.date {
        font-size: var(--text-sm);
    }
}

@media screen and (max-width: 1200px) {
    .item--text h4 {
        font-size: var(--text-xl);
    }

    .item--text .footer a.btn,
    .item--text .footer .time>span,
    .item--text .footer>div.date {
        font-size: var(--text-xs);
    }

    .item--text .footer a.btn {
        padding: 0.5rem 0.75rem;
    }

    .item--text .footer>div:first-child {
        column-gap: 0.5rem;
    }

    .listTwoColumn {
        row-gap: 2rem;
        column-gap: 2rem;
    }

    .magazine--title p {
        font-size: 28px;
    }
}

@media screen and (max-width: 992px) {
    .new {
        padding-block: 6rem;
    }

    .item--text {
        padding-inline: 1.5rem;
    }

    .listTwoColumn {
        row-gap: 1.5rem;
        column-gap: 1.5rem;
    }

    .magazine {
        padding-block: 6rem;
    }

    .magazine--title p {
        font-size: var(--text-2xl);
    }
}

@media screen and (max-width: 768px) {
    .archive--title {
        padding-block: 6rem 2.5rem;
    }

    .archive--title__content,
    .archive--title__content>div {
        flex-direction: column;
        align-items: flex-start;
    }

    .archive--title__content>div,
    .archive--title__content>div form,
    .archive--title__content>div form .form--group {
        width: 100%;
    }

    .archive--title__content>div form .form--group {
        max-width: unset !important;
    }

    .item--text h4 {
        font-size: var(--text-lg);
    }

    .item--text .footer>div:first-child,
    .item--text .footer .time {
        column-gap: 0.25rem;
    }

    .item--text {
        padding-inline: 1rem;
    }

    .item--column .item--text .footer {
        left: 1rem;
    }

    .listTwoColumn {
        row-gap: 1rem;
        column-gap: 1rem;
    }

    .indexItem.item .item--img,
    .indexItem.item .item--text {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .newsroom--menu>ul>li.menu-item-has-children>ul.sub-menu {
        right: 0;
    }

    .listTwoColumn {
        grid-template-columns: repeat(1, 1fr);
    }

    .item--row {
        flex-direction: column;
    }

    .item--row>div,
    .indexItem.item .item--img,
    .indexItem.item .item--text {
        width: 100% !important;
    }

    .new {
        padding-block: 5rem;
    }

    .item--text .footer>div:first-child img {
        width: 15px;
        height: 14px;
    }

    .item--column .item--text .footer {
        width: calc(100% - 32px);
    }

    .magazine {
        padding-block: 5rem;
    }
}

@media screen and (max-width: 425px) {
    .new {
        padding-block: 4rem;
    }

    .magazine {
        padding-block: 4rem;
    }

    .magazine--title p {
        font-size: var(--text-xl);
    }

    .item--text .footer>div:first-child img {
        width: 13.5px;
        height: 13px;
    }

    .item--text .footer a.btn,
    .item--text .footer .time>span,
    .item--text .footer>div.date {
        font-size: 10px;
    }

}

@media screen and (max-width: 405px) {
    .newsroom--menu>ul>li.menu-item-has-children>ul.sub-menu {
        right: unset;
    }
}

@media screen and (max-width: 375px) {}

/*********************
END: MEDIA
*********************/


/*********************
START: container and its media
*********************/
/* container  */
@media screen and (min-width: 1200px) {
    section.archive .container {
        grid-template-columns: 1fr 1024px 1fr !important;
    }
}

/*********************
END: container and its media
*********************/