@font-face {
    font-family: "D-DIN exp";
    src: url(../fonts/D-DINExp.otf);
}

@font-face {
    font-family: "D-DIN";
    src: url(../fonts/D-DIN-Bold.otf);
}

@font-face {
    font-family: "D-DIN Condensed";
    src: url(../fonts/D-DINCondensed-Bold.otf);
}

:root {
    --dark-color: #0f0a0a;
    --primary-color: #e11b22;
    --primary-font: "D-DIN", sans-serif;
    --secondary-font: "D-DIN Condensed", sans-serif;
    --global-font: "D-DIN exp", sans-serif;
}

/* *************************** */
/*          Main Style         */
/* *************************** */
.choose-country-wrap {
    background-color: bisque;
    padding: 60px 0;
}

.choose-country {
    padding: 50px;
    background-color: #ffffff;
    border-radius: 25px;
}

.choose-country__title {
    color: var(--dark-color);
    font-family: var(--global-font);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.32px;
    margin: 0;
}

.choose-country__block-wrap {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.choose-country__block-left {
    padding-right: 40px;
    flex: 1;
}

.choose-country__block:not(:last-child) {
    border-bottom: 1px solid #3c3a461c;
}

.choose-country__block-right {
    min-width: 280px;
    padding-left: 40px;
    border-left: 1px solid #3c3a461c;
}

.choose-country__block-right .choose-country__block:not(:last-child) {
    padding-bottom: 40px;
}

.choose-country__block-right .choose-country__block:not(:first-child) {
    padding-top: 40px;
}

.choose-country__block-title {
    color: var(--dark-color);
    leading-trim: both;
    text-edge: cap;
    font-family: var(--global-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.choose-country__block-items {
    padding-top: 15px;
    gap: 40px 30px;
}

.choose-country__block-items.grid-col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.choose-country__block-item {
    transition: 0.3s;
    border-radius: 5px;
    display: flex;
    gap: 15px;
}

.countey-block__figure {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.countey-block__content {
    flex: 1;
}

.countey-block__figure img {
    height: 100%;
    width: 100%;
}

.countey-block__content h2.countey-block__title {
    color: var(--dark-color);
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.288px;
    margin: 0;
    transition: 0.3s;
}

.choose-country__block-item:hover .countey-block__title {
    color: #e11b22;
}

.countey-block__lang {
    color: #3c3a464d;
    font-family: var(--global-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.18px;
    margin: 0 0 8px;
}

.countey-block__game {
    color: var(--dark-color);
    font-family: var(--global-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.18px;
    margin: 0;
}

.country-block__icon {
    align-self: center;
    transition: 0.3s;
    margin: 0 5px 0 -5px;
    padding-left: 5px;
}

.country-block__icon path {
    transition: 0.3s;
}

.choose-country__block-item:hover .country-block__icon {
    margin: 0;
}

.choose-country__block-item:hover .country-block__icon path {
    stroke: #e11b22;
}

.space-top {
    padding-top: 40px;
}

.space-bottom {
    padding: 0 0 40px;
}

@media (max-width: 1200px) {
    .choose-country__block-left {
        padding-right: 20px;
    }

    .choose-country__block-right {
        padding-left: 20px;
    }

    .space-bottom {
        padding-bottom: 30px;
    }

    .space-top {
        padding-top: 20px;
    }

    .choose-country {
        padding: 40px;
    }

    .choose-country__block-items.grid-col3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-country__block-items {
        gap: 25px;
    }

    .choose-country__block-right .choose-country__block:not(:first-child) {
        padding-top: 20px;
    }

    .choose-country__block-right .choose-country__block:not(:last-child) {
        padding-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .choose-country__title {
        font-size: 30px;
    }

    .countey-block__title {
        font-size: 22px;
    }

    .choose-country__block-wrap {
        flex-direction: column;
    }

    .choose-country__block-left {
        padding: 0;
    }

    .choose-country__block-left,
    .choose-country__block-right {
        width: 100%;
    }

    .choose-country__block-right {
        padding: 30px 0 0 0;
        border: solid #3c3a461c;
        border-width: 1px 0 0 0;
    }

    .md-space-bottom {
        padding-bottom: 20px;
    }

    /* .choose-country__block-right .choose-country__block {
    max-width: 50%;
  } */
}

@media (max-width: 767px) {
    .choose-country__title {
        font-size: 28px;
    }

    .choose-country__block-title {
        font-size: 18px;
    }

    .countey-block__title {
        font-size: 20px;
    }

    .choose-country {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .choose-country__block-items.grid-col3 {
        grid-template-columns: 1fr;
    }
}

/* *************************** */
/*      Products Carousel      */
/* *************************** */
.products__category {
    padding-top: 50px;
    width: 89vw;
    position: relative;
}

.products__category::after {
    content: "";
    height: 100%;
    width: 100px;
    background-image: linear-gradient(to right, transparent, #fff 60%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    position: none;
}

.products__category li {
    margin-right: 30px;
    position: relative;
}

.products__category li a {
    cursor: pointer;
}

.products__category li::after {
    content: "";
    height: 22px;
    width: 1px;
    background-color: #0f0a0a1f;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.products__category .slick-slide:last-child li:after {
    display: none;
}

.products__category-link {
    color: #3c3a46;
    font-family: var(--global-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    transition: 0.3s;
    display: inline-block;
    padding: 10px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.products__category-link:hover,
.products__category-link.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.products__carousel {
    padding: 50px 0 100px;
    width: 105vw;
}

.products__carousel-item {
    padding-right: 24px;
    border-radius: 30px;
    position: relative;
}

.products__carousel-item__media {
    width: 100%;
    overflow: hidden;
}

.products__carousel-item__media img {
    width: 100%;
}

.products__carousel-item__link {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    background: #ffffffcc;
    backdrop-filter: blur(5px);
    color: var(--dark-color);
    font-family: var(--global-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.048px;
    text-transform: uppercase;
    transition: 0.3s;
}

.products__carousel-item__link:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.products__carousel .slick-next,
.products__carousel .slick-prev,
.social-res__carousel .slick-next,
.social-res__carousel .slick-prev {
    color: transparent;
    position: absolute;
    left: 0;
    height: 52px;
    width: 52px;
    cursor: pointer;
    top: 95%;
    overflow: hidden;
    padding: 14px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: 0.3s;
}

.products__carousel .slick-next:focus::before,
.products__carousel .slick-prev:focus::before,
.social-res__carousel .slick-next:focus::before,
.social-res__carousel .slick-prev:focus::before {
    opacity: 0;
}

.products__carousel .slick-next:hover,
.products__carousel .slick-prev:hover,
.social-res__carousel .slick-next:hover,
.social-res__carousel .slick-prev:hover {
    border-color: #e11b22;
}

.products__carousel .slick-next,
.social-res__carousel .slick-next {
    left: 80px;
}

.products__carousel .slick-prev,
.social-res__carousel .slick-prev {
    border-radius: 50%;
}

.products__carousel .slick-next::before,
.social-res__carousel .slick-next::before {
    content: url(../imgs/arrow-next-hover.svg);
}

.products__carousel .slick-prev::before,
.social-res__carousel .slick-prev::before {
    content: url(../imgs/arrow-prev-hover.svg);
}

.products__carousel .slick-prev::before,
.social-res__carousel .slick-next::before {
    position: absolute;
    height: 24px;
    width: 24px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    transition: 0.3s;
    opacity: 0;
}

.products__carousel .slick-prev::before,
.social-res__carousel .slick-prev::before {
    left: 100%;
    transform: translate(-100%, -50%);
}

.products__carousel .slick-prev:hover:before,
.products__carousel .slick-next:hover:before,
.social-res__carousel .slick-prev:hover:before,
.social-res__carousel .slick-next:hover:before {
    opacity: 1;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-res__carousel .slick-next::after,
.products__carousel .slick-next::after {
    position: absolute;
    content: url(../imgs/arrow-next.svg);
}

.products__carousel .slick-prev::after,
.social-res__carousel .slick-prev::after {
    position: absolute;
    content: url(../imgs/arrow-prev.svg);
}

.products__carousel .slick-next::after,
.products__carousel .slick-prev::after,
.social-res__carousel .slick-next::after,
.social-res__carousel .slick-prev::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

.products__carousel .slick-prev:hover:after,
.social-res__carousel .slick-prev:hover:after {
    opacity: 0;
    left: 0;
    transform: translate(0, -50%);
}

.products__carousel .slick-next:hover:after,
.social-res__carousel .slick-next:hover:after {
    opacity: 0;
    left: 100%;
    transform: translate(-100%, -50%);
}

@media (max-width: 1023px) {
    .products__title {
        font-size: 46px;
    }

    .products__carousel {
        padding: 50px 0 80px;
    }
}

@media (max-width: 991px) {
    .products {
        padding: 80px 0;
    }

    .products__title {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .products__dsc {
        font-size: 18px;
    }

    .products__carousel-item__link {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .products {
        padding: 50px 0;
    }

    .products__title {
        font-size: 32px;
    }

    .products__dsc {
        font-size: 15px;
    }

    .products__category {
        padding-top: 30px;
    }

    .products__carousel {
        padding: 30px 0 60px;
    }

    .products__carousel-item {
        padding-right: 10px;
    }

    .products__carousel .slick-next,
    .products__carousel .slick-prev,
    .social-res__carousel .slick-next,
    .social-res__carousel .slick-prev {
        display: none !important;
    }

    .products__carousel-item__link {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .products__carousel {
        width: 150vw;
        padding: 20px 0;
    }
}

/* Grid Wrapper */
.grid-wrapper {
    position: relative;
}

.project-section {
    position: relative;
}

.gc-bg {
    width: 105vw;
    height: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    z-index: 999;
    display: none;
}

.loder-item {
    border-radius: 30px;
    overflow: hidden;
}

.loder-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    vertical-align: middle;
}

.gc-bg.active {
    display: grid;
}

@media (max-width: 1200px) {
    .gc-bg {
        grid-template-columns: repeat(2, 1fr);
    }

    .loder-item:last-child {
        display: none;
    }
}

@media (max-width: 767px) {
    .gc-bg {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 30px;
    }

    .loder-item:nth-child(2) {
        display: none;
    }
}

/* *************************** */
/*    Social Responsibility    */
/* *************************** */
.social-res {
    padding: 76px 0;
    background-color: #fd0;
}

.social-res .container {
    width: clamp(320px, 95%, 1500px);
    padding: 0 15px;
    margin: 0 auto;
}

.social-res__header {
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
}

.social-res__title {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.104px;
    text-transform: capitalize;
    margin: 0 0 20px;
}

.social-res__dsc {
    color: #3c3a46;
    font-family: var(--global-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.24px;
    margin: 0;
}

.social-res__carousel {
    padding-top: 60px;
    width: 100vw;
    margin-left: -30px;
    position: relative;
}

.social-res__carousel.slick-slider .slick-track {
    display: flex;
}

.social-res__carousel .social-res__carousel-item {
    padding: 0 30px 36px;
    border-right: 1px solid #0f0a0a20;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-res__carousel-item.slick-slide {
    height: auto;
}

.social-res__carousel-item__no {
    color: var(--dark-color);
    font-family: var(--global-font);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.26px;
    text-transform: capitalize;
    margin: 0 0 16px;
}

.social-res__carousel-item__no::before {
    content: "";
    height: 1px;
    width: 26px;
    display: inline-block;
    vertical-align: middle;
    background-color: #0f0a0a20;
    margin-right: 30px;
}

.social-res__carousel-item__figure img {
    width: 100%;
}

.social-res__carousel-item__dsc {
    color: #3c3a46;
    font-family: var(--global-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.24px;
    margin: 20px 0 0;
}

.social-res__carousel-item__title {
    color: var(--dark-color);
    font-family: var(--global-font);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.26px;
    text-transform: capitalize;
    margin: 90px 0 0;
}

@media (max-width: 1200px) {
    .social-res__header {
        max-width: 800px;
    }
}

@media (max-width: 1023px) {
    .social-res__title {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .social-res__header {
        max-width: 800px;
    }

    .social-res__title {
        font-size: 40px;
    }

    .social-res__dsc {
        font-size: 18px;
    }

    .social-res__carousel .social-res__carousel-item {
        padding: 0 15px 20px;
    }

    .social-res__carousel {
        margin-left: -15px;
    }

    .social-res__carousel-item__title {
        margin-top: 50px;
    }

    .social-res__carousel-item__no {
        font-size: 20px;
    }

    .social-res__carousel-item__no::before {
        width: 10px;
        margin-right: 8px;
    }

    .social-res__carousel-item__dsc {
        font-size: 17px;
    }

    .social-res__carousel-item__title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .social-res__title {
        font-size: 36px;
    }

    .social-res__carousel-item__no {
        font-size: 17px;
    }

    .social-res__dsc {
        font-size: 16px;
    }

    .social-res__carousel-item__dsc {
        font-size: 15px;
    }

    .social-res__carousel-item__title {
        font-size: 30px;
    }

    .social-res__carousel-item__title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .social-res__header {
        max-width: 100%;
        padding: 0 15px;
    }

    .social-res__carousel {
        width: 150vw;
        margin-left: -10px;
    }

    .social-res__carousel .social-res__carousel-item {
        padding: 0 10px 20px;
        border: none;
    }

    .social-res__carousel-item__title {
        margin-top: 30px;
    }
}

/***********************
*      Offcanvas
*************************/
.offcanvas .flex-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.offcanvas {
    position: fixed;
    height: 100vh;
    width: 350px;
    top: 0;
    right: -350px;
    transition: 0.3s;
    padding: 0 25px 20px;
    z-index: 99999;
    background-color: #000000f8;
    max-width: 100%;
}

a.header-logo svg {
    width: 90px;
}

.offcanvas__nav a {
    font-size: 21px;
    line-height: 1;
    font-weight: 500;
    color: #feffff;
    transition: 0.3s;
    display: block;
    padding: 5px 0;
}

.offcanvas__nav ul li {
    margin-bottom: 20px;
}

.offcanvas__nav ul {
    list-style: none;
    padding-left: 0;
}

@media (max-width: 1023px) {
    .offcanvas.active {
        right: 0;
    }
}

.header__logo {
    max-width: 185px;
}

.offcanvas-open {
    display: none;
}

@media (max-width: 1023px) {
    .offcanvas-open {
        display: block;
    }
}

.offcanvas-open,
.offcanvas__close {
    cursor: pointer;
}

.offcanvas__nav {
    padding: 30px 10px 0;
}

.offcanvas__nav a:hover,
.offcanvas__nav .current-menu-item {
    color: #e11b22;
}

.offcanvas__nav li:last-child a {
    margin: 0;
}

a.choose-country__block-item.countey-block {
    text-decoration: none;
}

/* *************************** */
/*             PopUp           */
/* *************************** */
body.no-scroll {
    overflow: hidden;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(15, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
    overflow-y: auto;
    display: none;
    padding: 55px 30px;
}

.popup__inner-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup.popup-active {
    display: block;
}

.popup__inner {
    position: relative;
    padding: 60px 40px;
    border-radius: 40px;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.popup__close path {
    transition: 0.3s;
}

.popup__close:hover path {
    stroke: #e11b22;
}

.popup__header {
    max-width: 575px;
    border-bottom: 1px solid #0f0a0a1a;
    padding-bottom: 7px;
}

.popup__subtitle {
    color: #0f0a0a;
    /* font-family: "D-DIN Exp"; */
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.popup__fancy-arrow {
    width: 36px;
    text-align: center;
    margin: 0 0 25px;
    width: 100px;
}

.popup__title {
    color: #e11b22;
    font-family: "D-DIN Condensed";
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.104px;
    margin: 0 0 16px;
}

.popup__text {
    padding-top: 40px;
}

.popup__text p {
    color: #3c3a46;
    /* font-family: "D-DIN Exp"; */
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.24px;
    margin: 0 0 16px;
    max-width: 835px;
}

.popup__text h2,
.popup__text h3,
.popup__text h4 {
    color: #0f0a0a;
    /* font-family: "D-DIN Exp"; */
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04px;
    text-transform: uppercase;
    margin: 0 0 26px;
}

.popup__text h2 {
    font-size: 32px;
}

.popup__text h3 {
    font-size: 28px;
}

.popup__text p + h2,
.popup__text p + h3,
.popup__text p + h4 {
    margin: 70px 0 26px;
}

.popup__text ul {
    padding-left: 15px;
}

.popup__text ul li {
    list-style-type: disc;
    list-style-image: url(../imgs/bullet-point.svg);
    padding-left: 5px;
    color: #0f0a0a;
    font-family: "D-DIN Exp";
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.24px;
    margin: 0 0 40px;
}

.popup__text ul li:last-child {
    margin: 0;
}

@media (max-width: 991px) {
    .popup {
        padding: 40px 15px;
    }

    .popup__inner {
        padding: 40px 30px;
    }

    .popup__subtitle {
        font-size: 18px;
    }

    .popup__title {
        font-size: 42px;
    }

    .popup__text {
        padding-top: 30px;
    }

    .popup__text p {
        font-size: 17px;
    }

    .popup__text h2,
    .popup__text h3,
    .popup__text h4 {
        margin: 0 0 20px;
    }

    .popup__text h2 {
        font-size: 30px;
    }

    .popup__text h3 {
        font-size: 26px;
    }

    .popup__text p + h2,
    .popup__text p + h3,
    .popup__text p + h4 {
        margin: 50px 0 20px;
    }

    .popup__text ul li {
        font-size: 17px;
        margin: 0 0 20px;
    }
}

@media (max-width: 767px) {
    .popup__inner {
        padding: 30px 20px;
    }

    .popup__close {
        top: 10px;
        right: 10px;
    }

    .popup__subtitle {
        font-size: 17px;
        margin: 0 0 10px;
    }

    .popup__title {
        font-size: 34px;
    }

    .popup__text {
        padding-top: 20px;
    }

    .popup__text p {
        font-size: 15px;
    }

    .popup__text h2,
    .popup__text h3,
    .popup__text h4 {
        margin: 0 0 15px;
    }

    .popup__text h2 {
        font-size: 28px;
    }

    .popup__text h3 {
        font-size: 24px;
    }

    .popup__text h4 {
        font-size: 18px;
    }

    .popup__text p + h2,
    .popup__text p + h3,
    .popup__text p + h4 {
        margin: 40px 0 20px;
    }

    .popup__text ul li {
        font-size: 15px;
        margin: 0 0 15px;
    }
}

/* *************************** */
/*        PopUp Trigger        */
/* *************************** */

.more-link {
    font-family: "D-DIN Exp", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.27em;
    letter-spacing: -0.288px;
    color: #0f0a0a;
    transition: 0.3s;
}

.more-link:hover {
    color: #e11b22;
}

.read-more__icon {
    margin-left: 3px;
    position: relative;
    overflow: hidden;
}

.icon-animate .read-more__icon::after {
    content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTUuODMzMyA0LjE2NjYzTDQuMTY2NTggMTUuODMzMyIgc3Ryb2tlPSJyZWQiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0xNS44MzMzIDEyLjcyNVY0LjE2NjYzSDcuMjc0OTIiIHN0cm9rZT0icmVkIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjwvcGF0aD48L3N2Zz4=);
    position: absolute;
    top: 70%;
    right: 65%;
    height: 18px;
    width: 18px;
    transition: 0.3s;
    opacity: 0;
}

.icon-animate .more-link:hover .read-more__icon:after {
    transform: translate(15px, -15px);
    opacity: 1;
}

.icon-animate .more-link .read-more__icon svg {
    transition: 0.3s;
    transition: 0.3s;
    vertical-align: middle;
}

.icon-animate .more-link:hover .read-more__icon svg {
    transform: translate(15px, -15px);
    opacity: 0;
}

@media (max-width: 767px) {
    .icon-animate .more-link {
        font-size: 16px;
    }
}

.popup-trigger-area {
    text-align: center;
}

.popup-trigger-area a {
    text-decoration: none !important;
}

.hover-text:hover {
    color: var(--e-global-color-accent) !important;
}

@media (min-width: 1480px) {
    .top-location {
        position: relative;
    }

    .top-location:after {
        content: "";
        width: 300px;
        height: 300px;
        background-image: url(https://www-recruitment-goliathgroup-com.ggs.ovh/wp-content/uploads/2024/01/pattern.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translate(-69%, -98px);
    }
}

#header-logo a {
    transform: translateX(120px);
}

.offcanvas__nav a:after,
.offcanvas__nav a:before {
    display: none !important;
}

/* New Addition */
.more-location-popup .popup__inner {
    width: clamp(300px, 85%, 1200px);
    max-width: 1200px;
}

.more-location-popup .popup__header {
    border: none;
}

.more-location-popup .popup__body {
    padding-top: 15px;
}

.more-location-popup .popup__row {
    position: relative;
    z-index: 1;
}

.more-location-popup .popup__row-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 180px;
    z-index: -1;
}

.more-location-popup .popup__row.grid-col3 {
    display: grid;
    grid-template-columns: repeat(3, 255px);
    justify-content: space-between;
    row-gap: 90px;
}

.more-location-popup .popup__body-item h2,
.more-location-popup .popup__body-item h3 {
    color: #0f0a0a;
    font-family: "D-DIN Exp", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.more-location-popup .popup__body-item h2 {
    font-size: 32px;
}

.more-location-popup .popup__body-item p {
    color: #0f0a0a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.15px;
    margin: 0;
}

@media (max-width: 1200px) {
    .more-location-popup .popup__row-icons {
        display: none;
    }
}

@media (max-width: 991px) {
    .more-location-popup .popup__row.grid-col3 {
        grid-template-columns: repeat(2, 255px);
        gap: 50px;
    }

    .more-location-popup .popup__body-item h2,
    .more-location-popup .popup__body-item h3 {
        font-size: 22px;
    }

    .more-location-popup .popup__body-item h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .more-location-popup .popup__row.grid-col3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .more-location-popup .popup__body-item h2,
    .more-location-popup .popup__body-item h3 {
        font-size: 20px;
    }

    .more-location-popup .popup__body-item h2 {
        font-size: 28px;
    }
}

a.product-url {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    z-index: 9;
}

.brand_img_holder {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: inline-block;
    height: 40px;
}

body div figure.brand_img_holder img {
    height: 46px;
}

.social-res__carousel .slick-prev {
    z-index: 9999;
}

.social-res__carousel .slick-next,
.social-res__carousel .slick-prev {
    top: 100%;
    margin-top: 30px;
}
