@font-face {
    font-family: 'Darvish';
    src: url('../fonts/Darvish/woff2/Darvish-Light.woff2') format('woff2'),
    url('../fonts/Darvish/woff/Darvish-Light.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Darvish';
    src: url('../fonts/Darvish/woff2/Darvish-Regular.woff2') format('woff2'),
    url('../fonts/Darvish/woff/Darvish-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Darvish';
    src: url('../fonts/Darvish/woff2/Darvish-Medium.woff2') format('woff2'),
    url('../fonts/Darvish/woff/Darvish-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Darvish';
    src: url('../fonts/Darvish/woff2/Darvish-Bold.woff2') format('woff2'),
    url('../fonts/Darvish/woff/Darvish-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Darvish';
    src: url('../fonts/Darvish/woff2/Darvish-Black.woff2') format('woff2'),
    url('../fonts/Darvish/woff/Darvish-Black.woff') format('woff');
    font-weight: 900;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Darvish', serif;
    background: #dedede;
    color: #fff;
    direction: rtl;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    width: 100%;
}

input, button, select, textarea {
    font-family: 'Darvish', serif;
}

.primary-filled-btn.white{
    background: white;
    color: #e85d20;
    border: 2px solid #e85d20;
}
.primary-filled-btn.blue{
    background: #204095;
}
.primary-filled-btn.orange{
    background: #e85d20;
}
.primary-filled-btn{
    font-size: 25px;
    font-weight: 700;
    line-height: 1.31;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 10px;
    gap: 10px;
    border: 0;
    color: white;
}

.primary-filled-btn img , .primary-filled-btn svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}


.homepage-site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    height: 100px;
}

.homepage-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-top: 50px;
}

.homepage-logo {
    display: inline-flex;
}

.homepage-logo-img {
    width: auto;
    height: 40px;
}

.homepage-main-nav ul {
    display: flex;
    gap: 36px;
    align-items: center;
}

.homepage-main-nav a {

    font-size: 16px;
    font-weight: 900;
    line-height: 1.31;
    letter-spacing: 0;
    text-align: right;
    color: #fff;
    transition: opacity 0.2s;
}

.homepage-main-nav a:hover {
    opacity: 0.7;
}

.homepage-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.homepage-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s;
}

.homepage-hamburger.homepage-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.homepage-hamburger.homepage-active span:nth-child(2) {
    opacity: 0;
}

.homepage-hamburger.homepage-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.homepage-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 90;
}

.homepage-drawer-overlay.homepage-open {
    opacity: 1;
    visibility: visible;
}

.homepage-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #204095;
    z-index: 100;
    padding: 50px 28px 28px 43px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
}

.homepage-drawer.homepage-open {
    transform: translateX(0);
}

.homepage-drawer-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    direction: ltr;
    margin-bottom: 48px;
}

.homepage-drawer-logo {
    display: inline-flex;
}

.homepage-drawer-logo img {
    width: auto;
    height: 36px;
}

.homepage-drawer-close {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.homepage-drawer-close img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.homepage-drawer-nav a,
.homepage-drawer-nav-secondary a {
    display: block;
    color: #fff;
    text-align: right;
    transition: opacity 0.2s;
}

.homepage-drawer-nav a:hover,
.homepage-drawer-nav-secondary a:hover {
    opacity: 0.7;
}

.homepage-drawer-nav a {

    font-size: 26px;
    font-weight: 700;
    line-height: 2.4;
    letter-spacing: 0;
}

.homepage-drawer-nav-secondary {
    margin-top: 34px;
}

.homepage-drawer-nav-secondary a {

    font-size: 14px;
    font-weight: 700;
    line-height: 3;
    letter-spacing: 0;
}

.homepage-drawer-copy {
    margin-top: auto;
    padding-top: 28px;
    text-align: center;
    color: #94A0F1;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.8;
}


.homepage-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.homepage-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 56px;
    height: 56px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-hero-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.homepage-hero-arrow-right {
    right: 40px;
}

.homepage-hero-arrow-left {
    left: 40px;
}

.homepage-hero-arrow-left img {
    transform: scaleX(-1);
}


.homepage-intro {
    position: relative;
    background: #204095;

    overflow-x: clip;
}

.homepage-intro-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    z-index: 1;
    flex-direction: row;
    padding: 95px 0 106px;
}

.homepage-intro-headline {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.homepage-intro-headline h2 {

    font-size: 50px;
    font-weight: 700;
    line-height: 1.31;
    letter-spacing: 0;
    color: #fff;
    text-align: right;
    white-space: nowrap;
    margin-top: 20px;
}

.homepage-intro-body {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: flex-start;
    padding-top: 8px;
}

.homepage-intro-body p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.92);
    text-align: justify;
}

.homepage-intro-cta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    margin-bottom: 10px;
}

.homepage-btn-about {
    margin-top: 90px;
    width: 216px;
}

.homepage-intro-cutout {
    background-color: #e6e6e6;
    width: 420px;
    height: 110px;
    clip-path: path("M 52,0 L 247,0 Q 253,0 266,12 L 410,141 Q 420,150 406,150 L 16,150 Q 0,150 0,134 L 0,128 Q 0,120 8,120 L 30,120 Q 40,120 40,110 L 40,12 Q 40,0 48,0 Z");
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 55px;
    margin-bottom: -10px;
    bottom: 0;
    position: absolute;
    left: -40px;
}

.homepage-logo-mask {
    background-image: url('../img/was-logo-color.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    width: 280px;
    height: 90px;
}


.homepage-categories {
    background: #e6e6e6;
    padding: 60px 0 95px;
}

.homepage-categories-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.homepage-categories-header {
    display: flex;
    justify-content: flex-start;
}

.homepage-categories h2 {
    font-size: 30px;
    font-weight: 900;
    color: #777;
    line-height: 1.3em;
}

.homepage-categories-grid-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
}

.homepage-categories-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.15s;
}

.homepage-categories-nav-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.homepage-nav-prev img {
    transform: scaleX(-1);
}

.homepage-categories-nav-btn:hover {
    transform: scale(1.06);
}

.homepage-categories-nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.homepage-categories-slider {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 180px);
    mask-image: linear-gradient(to right, transparent 0, #000 180px);
}

.homepage-categories-slider::-webkit-scrollbar {
    display: none;
}

.homepage-categories-slider.homepage-at-end {
    -webkit-mask-image: none;
    mask-image: none;
}

.homepage-categories-track:not(.swiper-wrapper) {
    display: flex;
    gap: 20px;
    padding: 8px 4px;
}

.homepage-categories-track.swiper-wrapper {
    padding: 0;
    gap: 0;
}

.homepage-cat-card {
    position: relative;
    overflow: hidden;
}
.homepage-cat-card > a{
    border-radius: 10px;
    overflow: hidden;
    display: inline-flex;
    position: relative;
}


.homepage-cat-card-label {
    position: absolute;
    bottom: -1px;
    right: 0;
    background: #e6e6e6;
    width: 140px;
    height: 140px;
    clip-path: polygon(0 999999%, 0% 70%, 100% 0, 128% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    justify-content: flex-end;
}

.homepage-cat-name {
    color: #204095;
    font-weight: 900;
    font-size: 26px;
}

.homepage-cat-arrow {
    right: 0;
    width: 46px;
    object-fit: contain;
}

.homepage-collections {
    background: black;
    display: flex;
    padding: 85px 0;
    align-items: center;
    justify-content: center;
}

.homepage-collections-inner {
    width: 100%;
    position: relative;
}

.collection-overlay {
    height: 100%;
    width: 150px;
    position: absolute;
    left: 50px;
    background: linear-gradient(90deg, #000000 0%, rgba(11, 11, 11, 0) 100%);
    z-index: 10;
}

.homepage-swiper {
    position: relative;
    display: block;
    overflow: hidden;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    z-index: 1;
}

.homepage-swiper-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
    box-sizing: content-box;
    transform: translate3d(0, 0, 0);
    transition-property: transform;
}

.homepage-swiper-slide {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    transition-property: transform;
}

.homepage-collections-stage {
    position: relative;
    padding: 0 56px;
}

.homepage-collections-swiper {
    padding: 0;
}

.homepage-collections-swiper .homepage-swiper-slide {
    width: 220px;
}

.homepage-collection-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

.homepage-collection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}


.homepage-collections-next,
.homepage-collections-prev {
    position: absolute;
    top: calc(50%);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    margin-top: 0;
    background: transparent;
    cursor: pointer;
    z-index: 5;
}

.homepage-collections-next {
    left: 0;
    right: auto;
}

.homepage-collections-prev {
    right: 0;
    left: auto;
}

.homepage-collections-next::after,
.homepage-collections-prev::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    margin: 7px;
    background-image: url('../img/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.homepage-collections-next::after {
    transform: scaleX(-1);
}

.homepage-collections-next.homepage-swiper-button-disabled,
.homepage-collections-prev.homepage-swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

.homepage-collections-swiper .homepage-swiper-pagination-bullet {
    background: #fff;
}

.homepage-collections-swiper .homepage-swiper-pagination-bullet-active {
    background: #e85d20;
}


.homepage-bottom-banner {
    width: 100%;
    height: 950px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.homepage-bottom-banner-inner {
    height: 100%;
    position: relative;
}

.homepage-btn-banner {
    position: absolute;
    bottom: 40px;
    left: 0px;
    width: 319px;
    height: 70px;
    transition: background 0.2s, transform 0.15s;
}

.homepage-banner-black-box {
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 600px;
    height: 220px;
    background: black;
    color: #fff;
    clip-path: path("M 350,0 L 583,0 Q 600,0 600,10 L 600,220 L 0,220 L 0,95 Q 0,85 13,85 L 233,85 Q 250,72 260,62 L 325,8 Q 334,0 337,0 Z");
    text-align: right;
}

.homepage-banner-black-box-title {
    position: absolute;
    top: 15px;
    right: 22px;
    font-size: 50px;
    font-weight: 900;
}


.homepage-site-footer {
    background: #204095;
}

.homepage-footer-top {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.homepage-footer-top-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
    transform: scale(1.15);
}

.homepage-footer-top-inner {
    position: relative;
    width: 100%;
}

.homepage-footer-route {
    position: absolute;
    left: 0;
    bottom: 140px;
    height: 70px;
    padding: 0 28px;
}


.homepage-footer-hours {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 500px;
    height: 124px;
    background: #204095;
    color: #fff;
    padding: 24px 0 0 25px;
    clip-path: polygon(0 0, 10px 0, 73% 0, 65% 0px, 60.5% 0px, 64% 10px, 66% 16px, 100% 100%, 0 100%);
    line-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: end;
    border-top-left-radius: 10px;
}

.homepage-footer-hours p {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.9;
}

.homepage-footer-body {
    background: #204095;
    color: #fff;
    padding: 100px 0 30px 0;
}

.homepage-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.homepage-footer-contact {
    text-align: right;
    width: 250px;
}

.homepage-footer-contact p , .homepage-footer-contact a{
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 22px;
    color : white;
    display: block;
}
.homepage-footer-contact p{
    line-height: 1.4;
}
.homepage-footer-contact p:last-child {
    margin-bottom: 0;
}

.homepage-footer-socials {
    display: flex;
    gap: 16px;
    margin: 26px 0;
}

.homepage-footer-socials a {
    color: #fff;
    display: inline-flex;
    transition: opacity 0.2s;
}

.homepage-footer-socials a:hover {
    opacity: 0.7;
}

.homepage-footer-follow {
    font-size: 15px;
    font-weight: 300;
}

.homepage-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.homepage-footer-nav a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.2s;
}

.homepage-footer-nav a:hover {
    opacity: 0.7;
}

.homepage-footer-logo {
    display: flex;
    align-items: flex-end;
}

.homepage-footer-logo img {
    width: auto;
    height: 150px;
}

.homepage-footer-copy {
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: #94A0F1;
    margin-top: 150px;
}



.blog1-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.intro-inner {
    position: absolute;
    height: 100%;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
}

.blog1-hero.blog1-hero-blog {
    height: auto;
    aspect-ratio: 1800 / 550;
    min-height: 320px;
}

.blog1-hero.blog1-hero-blog .blog1-hero-img {
    object-position: center bottom;
}

.blog1-hero-img {
    width: 100%;
    height: 945px;
    object-fit: cover;
    object-position: center;
}

.intro-cutout img {
    width: 260px;
    max-width: 80%;
    margin: auto;
}

.intro-cutout {
    position: absolute;
    left: -40px;
    bottom: -30px;
    width: 420px;
    height: 150px;
    clip-path: path("M 52,0 L 269,0 Q 287,0 300,12 L 410,141 Q 420,150 406,150 L 16,150 Q 0,150 0,134 L 0,128 Q 0,120 8,120 L 30,120 Q 40,120 40,110 L 40,12 Q 40,0 52,0 Z");
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
    z-index: 2;
    padding-right: 90px;
}

.intro-cutout.gray {
    background-color: #dedede;
}

.intro-cutout.orange {
    background-color: #f05a22;
}

.intro-cutout.blue {
    background-color: #204095;
}

.intro-cutout.blue .blog1-hero-badge {
    color: white;
}

.blog1-blog-card {
    position: relative;
}

.blog1-blog-card-surface {
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 10px 10px 10px 0;
    padding: 22px;
    clip-path: url(#blog-card-clip);
}

.blog1-blog-card-row {
    display: flex;
    gap: 44px;
    align-items: stretch;
}

.blog1-blog-card-media {
    position: relative;
    flex: 0 0 40%;
    border-radius: 12px;
    overflow: hidden;
    min-height: 280px;
}

.blog1-blog-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog1-blog-card-logo {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 84px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
}

.blog1-blog-card-logo svg {
    width: 100%;
    height: 100%;
}

.blog1-blog-card-content {
    flex: 1;
    min-width: 0;
    text-align: right;
    position: relative;
}

.blog1-blog-card-title {
    font-size: 23px;
    font-weight: 900;
    color: #204095;
    margin-bottom: 22px;
    line-height: 1.5;
}

.blog1-blog-card-text {
    font-size: 15px;
    line-height: 1.9;
    color: #4d4d4d;
    margin-bottom: 14px;
    text-align: justify;
    font-weight: 500;
}

.blog1-blog-card-date {
    display: block;
    font-size: 22px;
    color: #8a8a8a;
    position: absolute;
    bottom: 0;
}

.blog1-blog-card-more {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 218px;
    height: 163px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    direction: ltr;

}

.blog1-more-button-text {
    font-weight: 700;
    font-size: 26.71px;
    color: #204095;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.blog1-blog-card-more svg {
    align-self: flex-start;
}

.blog1-hero-badge {
    font-weight: 900;
    font-size: 40px;
    color: #204095;
}


.blog1-categories {
    background: #dedede;
    padding: 113px 0 80px;
    gap: 67px;
    display: flex;
    flex-direction: column;
}

.blog1-page-white .blog1-categories {
    background: #fff;
    padding-left: 150px;
    padding-right: 100px;
}

.blog1-categories h2 {
    font-size: 20px;
    font-weight: 700;
    color: #777;
}


.page-numbers {

    font-weight: 700;
    font-size: 22px;
    line-height: 237%;
    display: flex;
    width: 100%;
    height: 52px;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    row-gap: 20px;
}

.page-numbers a {
    color: white;
}
.page-numbers span {
    color: #204095;
}


.collection-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.collection-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.collection-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 56px;
    height: 56px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-hero-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.collection-hero-arrow-right {
    right: 40px;
}

.collection-hero-arrow-left {
    left: 40px;
}

.collection-hero-arrow-left img {
    transform: scaleX(-1);
}


.collection-collection-banner {
    width: 100%;
    line-height: 0;
    padding: 60px 0;
    background: #EEEFF4;
}

.collection-collection-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-box.collection-hero-box .hero-box-logo {
    width: 184px;
}

.collection-hero-box.hero-box .hero-box-link {
    color: #204095;
}

.collection-hero-box.hero-box h1 {
    color: #0B0B0B;
}

.collection-hero-box.hero-box {
    background: #DEDEDE;
}

.collection-banner-wrapper {
    background: url('../img/coll-back.png');
    background-size: 100% 580px;
    height: 800px;
    position: relative;
    padding: 100px 0;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 60px;
}
.collection-banner-img-wrapper{
    max-width: 927px;
    position: absolute;
    left: 0;
    top: 0;
}
.collection-banner-content{
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0%;
    text-align: right;
    color: #204095;
    line-height: 1.6em;
    height: 100%;
    display: flex;
    align-items: self-start;
    padding-right: 60px;
    padding-top: 60px;
    flex-direction: column;
    justify-content: center;
}
.hero-box.service-hero-box .hero-box-logo {
    width: 184px;
}

.service-hero-box.hero-box .hero-box-link {
    color: #204095;
    justify-content: end;
}


.service-hero-box.hero-box {
    background: #DEDEDE;
}

.contact-us-hero {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 560px;
    overflow: hidden;
}

.contact-us-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-us-intro {
    position: relative;
    background: #204095;
    padding: 105px 0;
    overflow-x: clip;
}

.contact-us-intro-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    position: relative;
    z-index: 1;
    flex-direction: row;
}

.contact-us-intro-headline {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-basis: auto;
}

.contact-us-intro-headline h2 {

    font-size: 50px;
    font-weight: 700;
    line-height: 1.31;
    letter-spacing: 0;
    color: #fff;
    text-align: right;
    white-space: nowrap;
    margin-top: 20px;
}

.contact-us-intro-body {
    flex: 1;
    max-width: 874px;
    display: flex;
    align-items: flex-start;
    padding-top: 38px;

}

.contact-us-intro-body p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.92);
    text-align: justify;
    margin-top: -35px;
}


.contact-us-btn-about .contact-us-btn-arrow-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.contact-us-intro-cutout {
    background-color: #204095;
    width: 420px;
    height: 150px;

    clip-path: path("M 52,0 L 269,0 Q 287,0 300,12 L 410,141 Q 420,150 406,150 L 16,150 Q 0,150 0,134 L 0,128 Q 0,120 8,120 L 30,120 Q 40,120 40,110 L 40,12 Q 40,0 52,0 Z");
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 80px;
    position: absolute;
    top: -225px;
    left: -45px;
}

.contact-us-intro-cutout-text {

    font-weight: 900;
    font-size: 38.26px;
    line-height: 1.31;
    letter-spacing: 0;
    text-align: right;
    color: white;
    margin: 0;
}


.contact-us-btn-banner .contact-us-btn-arrow-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.contact-us-site-footer {
    background: #204095;
}

.contact-us-footer-top {
    position: relative;
    width: 100%;
    line-height: 0;
}

.contact-us-footer-top-inner {
    position: relative;
    width: 100%;
}

.contact-us-footer-route {
    position: absolute;
    left: 0;
    bottom: 170px;
    height: 70px;
}

.contact-us-balad {
    bottom: 250px !important;
}

.contact-us-footer-hours {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 650px;
    max-width: 100%;
    height: 160px;
    background: #DEDEDE;
    color: black;
    padding: 20px 80px 0px 18px;
    clip-path: polygon(0 0, 10px 0, 73% 0, 65% 0px, 60.5% 0px, 63% 10px, 65% 16px, 100% 100%, 0 100%);
    line-height: 0;
    border-top-left-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 47px;
    justify-content: center;
}

.contact-us-footer-hours p {
    font-size: 32px;
    font-weight: 700;
}

.contact-us-contact-section {
    background: #dedede;
    color: #000;
    padding: 100px 0px 64px;
}

.contact-us-contact-inner {
    display: flex;
    flex-direction: column;
    gap: 107px;
}

.contact-us-contact-info-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.contact-us-contact-info-block {
    flex: 1;
    text-align: right;
}

.contact-us-contact-hours-block {
    font-size: 23px;
    font-weight: 700;
    line-height: 2em;
    margin-bottom: 12px;
    white-space: nowrap;
}

.contact-us-contact-info-title{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 23px;
    text-align: center;
}
.contact-us-contact-bale-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-us-contact-bale-block {
    text-align: center;
}

.contact-us-bale-channel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 260px;
    height: 52px;
    padding: 0 20px;
    border: 1.5px solid #000;
    border-radius: 10px;
    background: transparent;
    color: #000;

    font-size: 16px;
    font-weight: 700;
    transition: background 0.2s;
}

.contact-us-bale-channel-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.contact-us-contact-social-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-us-contact-socials {
    display: flex;
    gap: 22px;
    align-items: center;
}

.contact-us-contact-socials a {
    color: #000;
    display: inline-flex;
    transition: opacity 0.2s;
}

.contact-us-contact-socials a:hover {
    opacity: 0.6;
}

.contact-us-contact-divider {
    border: none;
    border-top: 1.5px solid #000;
    margin: 107px 0;
}

.contact-us-contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 80px;
}

.contact-us-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.contact-us-contact-field {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-us-contact-field label {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}


.contact-us-contact-field input,
.contact-us-select-wrap select {
    flex: 1;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #204095;

    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.contact-us-select-wrap {
    flex: 1;
    position: relative;
    min-width: 0;
}

.contact-us-select-wrap select {
    appearance: none;
    padding-left: 36px;
    cursor: pointer;
}

.contact-us-select-wrap::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #204095;
    pointer-events: none;
}

.contact-us-contact-message-wrap {
    position: relative;
}

.contact-us-contact-message-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    margin-bottom: 8px;
    padding-right: 4px;
    z-index: 5;
    position: absolute;
}

.contact-us-contact-message-box {
    position: relative;
    background: #fff;
    border-radius: 8px;
    min-height: 220px;
}

.contact-us-contact-message-box textarea {
    width: 100%;
    min-height: 220px;
    padding: 50px 24px 80px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #000;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    resize: vertical;
    outline: none;
}

.contact-us-btn-submit-form {
    width: 230px;
    position: absolute;
    bottom: 20px;
    left: 24px;
    height: 70px;
    justify-content: space-between;
}


.contact-us-footer-body {
    background: #204095;
    color: #fff;
    padding: 60px 64px 18px 60px;
}

.contact-us-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-us-footer-contact {
    text-align: right;
}

.contact-us-footer-contact p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 22px;
}

.contact-us-footer-socials {
    display: flex;
    gap: 16px;
    margin: 26px 0;
}

.contact-us-footer-socials a {
    color: #fff;
    display: inline-flex;
    transition: opacity 0.2s;
}

.contact-us-footer-socials a:hover {
    opacity: 0.7;
}

.contact-us-footer-follow {
    font-size: 15px;
    font-weight: 300;
}

.contact-us-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-us-footer-nav a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.2s;
}

.contact-us-footer-nav a:hover {
    opacity: 0.7;
}

.contact-us-footer-logo img {
    width: auto;
    height: 150px;
}

.contact-us-footer-copy {
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 56px;
}


.contact-us-bale-channel-btn-img {
    width: 35px;
}

.contact-us-footer-text-box {
    position: absolute;
    right: 0px;
    top: 0;
    width: 260px;
    height: 40px;
    background: #DEDEDE;
    z-index: 2;
    color: black;
    padding: 20px 80px 0px 18px;

    clip-path: polygon(0px 0px,
    0px 0%,
    73% 1px,
    85% 100%,
    0px 100%);
    line-height: 0;
    transform: scaleX(-1) scaleY(-1);
}

.contact-us-form-response.error {
    margin-top: 15px;
    color: #f05a22;
    font-weight: 500;
}

.contact-us-form-response.success {
    margin-top: 15px;
    color: green;
    font-weight: 500;
}

.contact-location-switcher {
    display: flex;
    gap: 12px;
    position: absolute;
    z-index: 100;
    padding: 8px;
    right: 0;
    left: 0;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(0deg, rgb(0 0 0 / 0%) 0%, #0000007a 100%);
}


.contact-location-btn {
    cursor: pointer;
    width: 100px;
    height: 35px;
    border-radius: 10px;
    border: 0;
    font-size: 18px;
}

.contact-location-btn.active {
    background: #204095;
    color: #fff;
}

.contact-location-item {
    display: none;
}

.contact-location-item.active {
    display: block;
}


.service-image {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    background: #dedede;
    padding: 64px 0 0 0;
}

.service-image-inner {
    position: relative;
    height: 100%;
}

.service-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image-mobile {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cooperation,
.service-cooperation {
    background: #dedede;
}
.service-cooperation > a{
    display: block;
}
.service-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 170px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.service-box {
    position: relative;
    height: 235px;
    background: #204095;
    border-radius: 14px;
    display: block;
    overflow: visible;
}

.service-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 0 48px 0 420px;
    text-align: right;
}

.service-title {
    margin: 0;
    font-size: 33px;
    font-weight: 700;
    color: #fff;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #F05A22;
}

.service-arrow {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-img {
    position: absolute;
    left: 40px;
    top: 65px;
    transform: translateY(-50%);
    width: 360px;
    height: 300px;
    z-index: 2;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}


.service-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.service-box:last-child {
    background: #F05A22;
}

.service-img {
    position: absolute;
    left: 40px;
    top: 65px;
    transform: translateY(-50%);
    width: 554px;
    height: 260px;
    z-index: 2;
}
.service-item-wrapper {
    display: flex;
    height: 333px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top;
    gap: 18px;
    margin-bottom: 35px;
}

.service-text-wrapper{
    flex: 1;
    display: flex;
    color: #204095;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6em;
    position: relative;
}
.service-1{
    background-image: url('../img/service-back-1.svg')
}
.service-2{
    background-image: url('../img/service-back-2.svg')
}
.service-3{
    background-image: url('../img/service-back-3.svg')
}
.service-4{
    background-image: url('../img/service-back-4.svg')
}
.service-1 .service-text-wrapper{
    padding-bottom: 52px;
    padding-right: 164px;
    display: flex;
    height: 100%;
    align-items: end;
    position: relative;
}
.service-1 .service-box-icon{
    position: absolute;
    top: 20px;
    left: 0;
}

.service-image-wrapper{
    flex: 1 0 674px;
    height: 300px;
    display: flex;
    justify-content: end;
    margin-top: 20px;
    margin-left: 20px;
    max-width: 674px;
    align-items: baseline;
}
.service-image-wrapper img{
    object-fit: contain;
}
.service-2 .service-text-wrapper{
    padding-top: 29px;
    padding-right: 38px;
}
.service-2 .service-box-icon{
    position: absolute;
    bottom: 20px;
    transform: rotate(270deg);
}

.service-item-wrapper.service-3{
    height: 335px;
}
.service-item-wrapper.service-4{
    height: 383px;
}
.service-3 .service-text-wrapper{
    padding-bottom: 80px;
    padding-right: 38px;
    align-items: end;
}
.service-3 .service-box-icon{
    position: absolute;
    top: 20px;
    left: 0;
    transform: rotate(270deg);
}
.service-4 .service-text-wrapper {
    padding-bottom: 119px;
    padding-right: 164px;
    display: flex;
    height: 100%;
    align-items: end;
    position: relative;
}
.service-4 .service-box-icon{
    position: absolute;
    top: 20px;
    left: 0;
}
.experience-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.experience-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.experience-intro {
    position: relative;
    background: #F05A22;
    padding: 100px 0;
    overflow-x: clip;
}

.experience-intro .container {
    position: relative;
}

.experience-btn-about .experience-btn-arrow-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}


.experience-purchase-experience {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    min-height: 260px;
}

.experience-purchase-images {
    display: flex;
    gap: 58px;
    flex-wrap: nowrap;
    flex: 0 1 auto;
    justify-content: start;
    align-items: stretch;
}
.experience-purchase-image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.experience-purchase-image p{
    text-align: center;
    font-size: 19px;
    font-weight: 800;
    color : #0B0B0B;
}
.experience-purchase-images img {
    width: auto;
}

.experience-purchase-copy {
    direction: rtl;
    max-width: 580px;
    text-align: right;
    color: #000;
}

.experience-purchase-copy h2 {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0 0 18px;
    color: #fff;
}


.experience-purchase-copy p {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    max-width: 450px;
}

.experience-gallery-section {
    background: #000;
    padding: 100px 0;
}


.experience-triangle {
    display: none;
    position: absolute;
    bottom: -1px;
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    width: 160px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 80'%3E%3Cpath d='M70 12 A12 12 0 0 1 90 12 L160 80 H0 Z' fill='%23000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}


.experience-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
}

.experience-gallery-item {
    position: relative;
    overflow: hidden;
    background: black;
}

.experience-gallery-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}

.experience-gallery-icon {
    position: absolute;
    right: 10px;
    bottom: 125px;
    width: 104px;
    height: 104px;
    background: #F05A22;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.experience-gallery-icon img{
    width: auto;
}
.experience-gallery-icon-right {
    right: 10px;
    left: auto;
}

.experience-gallery-icon-left {
    left: 10px;
    right: auto;
}

.experience-gallery-caption {
    position: absolute;
    bottom: 10px;
    z-index: 2;
    max-width: 40%;
    direction: rtl;
    text-align: right;
    color: #fff;
}

.experience-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 80px;
    background: black;
    z-index: 1;
}

.experience-shape::before {
    content: '';
    position: absolute;
    top: -99px;
    left: 0;
    height: 0;
    width: 100%;
    border-right: 400px solid transparent;
    border-bottom: 100px solid black;
}
.experience-shape.experience-shape-left::before{
    border-radius: 0 0 10px 0;
}
.experience-shape.experience-shape-left{
    border-top-right-radius: 8px;
}

.experience-shape.experience-shape-right::before{
    border-radius: 0 0 0 10px;
}
.experience-shape.experience-shape-right{
    border-top-left-radius: 8px;
}

.experience-shape-right {
    left: auto;
    right: 0;
}

.experience-shape-right::before {
    left: auto;
    right: 0;
    border-right: 0;
    border-left: 400px solid transparent;
}

.experience-gallery-caption-right {
    right: 10px;
    left: auto;
}

.experience-gallery-caption-left {
    left: 10px;
    right: auto;
    text-align: left;
}

.experience-gallery-caption p {
    font-size: clamp(16px, 1.5vw, 23px);
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: 0;
    margin: 0;
}

.experience-gallery-caption span {
    color: #F05A22;
}


.experience-btn-banner .experience-btn-arrow-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.experience-footer-route {
    position: absolute;
    left: 55px;
    bottom: 140px;
    height: 70px;
}


.experience-btn-submit-form .experience-btn-arrow-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transform: scaleX(-1);
}


.experience-background {
    background: black
}

.experience-background-card {
    background: #F05A22
}

.experience-link-black {
    color: black;
}

.experience-header-btn {
    bottom: auto;
    top: -310px;
    left: 0;
}


.blog2-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.blog2-hero.blog2-hero-blog {
    height: auto;
    aspect-ratio: 1800 / 550;
    min-height: 320px;
    background: white;
}

.blog2-hero.blog2-hero-blog .blog2-hero-img {
    object-position: center bottom;
}

.blog2-hero-img {
    width: 100%;
    height: 946.45px;
    object-fit: cover;
    object-position: center;
}


.blog2-intro-cutout-wide {
    left: auto;
    right: 0;
    bottom: 0;
    width: 1307px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1307 / 286;
    background-color: transparent;
    clip-path: none;
    align-items: normal;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    position: absolute;
    padding-left: 100px;
    z-index: 2;
}

.blog2-intro-cutout-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
    top: 10px;
}

.blog2-intro-cutout-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    gap: 28px;
    padding: 35px 30px 0 0;
}

.blog2-intro-cutout-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;

    font-weight: 500;
    font-size: 22px;
    color: #777;
    gap: 45px;
}

.blog2-socials {
    flex-shrink: 0;
    display: flex;
    gap: 20px;
}

.blog2-socials svg {
    display: block;
    width: 100%;
    height: 100%;
}

.blog2-intro-cutout-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 170%;
    color: #204095;
    width: 900px;
}


.blog2-categories {
    background: white;
    padding: 90px 0;
    gap: 65px;
    display: flex;
    flex-direction: column;
}

.blog2-categories-feature {
    position: relative;
}

.blog2-categories-feature-img {
    display: block;
    width: 1500px;
    height: auto;
    aspect-ratio: 1500.8 / 704.54;
    object-fit: cover;
    border-radius: 10px;
    max-width: 100%;
}

.blog2-categories-feature-logo {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 84px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
}

.blog2-categories-feature-logo svg {
    width: 100%;
    height: 100%;
}

.blog2-categories-article {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog2-categories-article-text {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 237%;
    letter-spacing: 0;
    text-align: justify;
    color: #111;
}
.blog2-categories-article-text p{
    margin-bottom: 20px;
}
.blog2-categories-article-text a{
    color : #F05A22;
}
.blog2-categories-article-highlight {
    color: #f05a22;
}

.blog2-categories-article-author {
    display: block;

    font-weight: 700;
    font-size: 18px;
    line-height: 237%;
    letter-spacing: 0;
    text-align: right;
    color: #111;
}

.blog2-categories-badges {
    display: flex;
    gap: 16px;
}

.blog2-categories-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 10px;
    background: #dedede;

    font-weight: 700;
    font-size: 14px;
    color: #204095;
    padding: 0 20px;
}

.blog2-comment-section {
    background: #dedede;
    padding: 50px 0 50px;
    display: flex;
    flex-direction: column;
}

.blog2-comment-section-inner {
    width: 100%;
    max-width: 1500.8px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog2-comment-section-title {

    font-weight: 900;
    font-size: 24px;
    line-height: 131%;
    letter-spacing: 0;
    text-align: right;
    color: #0b0b0b;
    opacity: 0.5;
}
.no-comment{
    color: #333;
}
.blog2-comment-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog2-comment-fields-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 24px;
}

.blog2-comment-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.blog2-comment-field--full {
    width: 100%;
}

.blog2-comment-field-label {
    flex-shrink: 0;
}

.blog2-comment-field-input {
    flex: 1;
    min-width: 0;
}

.blog2-comment-field--full .blog2-comment-textarea-wrap {
    flex: 1;
    min-width: 0;
}

.blog2-comment-field-label {

    font-weight: 700;
    font-size: 16px;
    line-height: 237%;
    letter-spacing: 0;
    text-align: justify;
    color: #0b0b0b;
}

.blog2-comment-field-input {
    width: 300px;
    max-width: 100%;
    height: 45px;
    border: none;
    border-radius: 10px;
    background: #fff;
    padding: 0 20px;

    font-size: 16px;
    color: #0b0b0b;
}

.blog2-comment-textarea-wrap {
    position: relative;
    width: 100%;
    max-width: 1499.24px;
    aspect-ratio: 1500 / 264;
}

.blog2-comment-textarea-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.blog2-comment-textarea-label {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 2;
    pointer-events: none;
}

.blog2-comment-textarea {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    resize: none;
    padding: 70px 32px 24px;

    font-size: 16px;
    color: #0b0b0b;
    text-align: justify;
}

.blog2-comment-textarea:focus {
    outline: none;
}

.blog2-comment-submit {
    position: absolute;
    z-index: 2;
    left: 13px;
    bottom: 13px;
    width: auto;
}

.blog2-comment-submit-label {
    font-weight: 700;
    font-size: 18px;
    line-height: 131%;
    letter-spacing: 0;
    text-align: right;
    color: #f05a22;
}

.blog2-comment-submit-icon path {
    fill: #f05a22;;
}

.blog2-comments-list-section {
    border-top: 1px solid #0b0b0b;
}

.blog2-comment-item {
    position: relative;
    width: 100%;
}

.blog2-comment-item-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.blog2-comment-item-bg-mobile {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: none;
    width: 100%;
    height: 100%;
}

.blog2-comment-item-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.blog2-comment-item-meta {
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 60px;
    width: 400px;
    justify-content: space-between;
    padding: 0 30px;
}

.blog2-comment-item-date {

    font-size: 22px;
    color: #8a8a8a;
}

.blog2-comment-item-name {

    font-weight: 700;
    font-size: 16px;
    color: #0b0b0b;
}

.blog2-comment-item-text {
    background: white;
    font-size: 18px;
    color: #0B0B0B;
    text-align: justify;
    padding: 30px;
    font-weight: 700;
    line-height: 2.7em;
}

.comment-title-shape {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    top: 0;
    width: 400px;
    height: 60px;
    z-index: 1;
    background: white;
}

.comment-title-shape::before {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    border-right: 0;
    border-left: 60px solid transparent;
    top: 0;
    border-bottom: 60px solid #FFFFFF;
    height: 0;
    width: 60px;
}

.blog2-suggested-section {
    border-top: 1px solid #0b0b0b;
}

.blog2-suggested-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.blog2-suggested-swiper {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 180px);
    mask-image: linear-gradient(to right, transparent 0, #000 180px);
}

.blog2-suggested-swiper .swiper-slide {
    width: 320px;
    height: auto;
}

.blog2-suggested-swiper-fade {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;

    opacity: 1;
    transition: opacity 0.2s;
}

.blog2-suggested-swiper.blog2-at-end .blog2-suggested-swiper-fade {
    opacity: 0;
}

.blog2-suggested-card {
    position: relative;
    width: 100%;
    aspect-ratio: 531.45 / 698.78;
}

.blog2-suggested-card-surface {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    clip-path: url(#suggested-card-clip);
    background: #fff;
    overflow: hidden;
    padding: 24px 24px 10px;
    gap: 16px;
}

.blog2-suggested-card-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1500.8 / 704.54;
    object-fit: cover;
    border-radius: 10px;
}

.blog2-suggested-card-title {

    font-weight: 900;
    font-size: 23px;
    color: #204095;
}

.blog2-suggested-card-text {
    flex: 1;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0;
    text-align: justify;
    color: #0b0b0b;
    line-height: 1.6em;
}

.blog2-suggested-card-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
}

.blog2-suggested-card-date {
    font-size: 22px;
    color: #8a8a8a;
}

.blog2-suggested-card-more {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 43%;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
    gap: 4px;
}

.blog2-suggested-card-more svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.blog2-suggested-card-more-text {

    font-weight: 700;
    font-size: 26px;
    color: #204095;
    white-space: nowrap;
}

.blog2-suggested-swiper-next, .blog2-suggested-swiper-prev {
    flex-shrink: 0;
    width: 47px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
}

.blog2-suggested-swiper-prev {
    transform: scaleX(-1);
}

.blog2-suggested-swiper-next:hover .blog2-suggested-swiper-prev:hover {
    transform: scale(1.06);
}

.blog2-suggested-swiper-next-icon, .blog2-suggested-swiper-prev-ico {
    width: 100%;
    height: 100%;
}


.blog2-suggested-swiper-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}


body.blog2-page-white {
    background: #fff;
}

.blog2-page-white .blog2-categories {
    background: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.blog2-categories h2 {
    font-size: 20px;
    font-weight: 700;
    color: #777;
}

.blog2-categories-slider.blog2-at-end {
    -webkit-mask-image: none;
    mask-image: none;
}


.blog2-collections-swiper .swiper-slide {
    margin-left: 40px !important;
}

.blog2-collections-swiper .swiper-slide {
    width: 220px;
}


.campaign-logo-mask {
    background-image: url('../img/was-white.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    width: 280px;
    height: 90px;
}

.campaign-hero {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 560px;
    overflow: hidden;
}

.campaign-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.campaign-intro {
    position: relative;
    background: #204095;
    padding: 80px 0;
    overflow-x: clip;
}

.campaign-btn-about .campaign-btn-arrow-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}


.campaign-purchase-experience {
    display: flex;
    direction: ltr;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    min-height: 260px;
    position: relative;
}

.campaign-purchase-copy {
    direction: rtl;
    text-align: right;
    color: #000;
    width: 100%;
}

.campaign-purchase-copy h2 {

    font-size: 64px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0 0 18px;
}

.campaign-purchase-copy h2 span {
    color: #fff;
}

.campaign-purchase-copy p {

    font-size: 34px;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: 0;
    color: #000;
    margin: 0;
}

.campaign-campaign-form {
    width: 100%;
    gap: 18px;
}

.campaign-campaign-form-title {

    font-size: 33px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
    color: white !important;
    margin: 0 0 8px !important;
}

.campaign-campaign-form .campaign-contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.campaign-campaign-form .campaign-contact-field {
    gap: 12px;
}

.campaign-campaign-form .campaign-btn-submit-form   {
    position: static;
    align-self: flex-end;
}


.campaign-btn-banner .campaign-btn-arrow-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.campaign-footer-route .campaign-btn-arrow-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.campaign-contact-form {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.campaign-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.campaign-contact-field {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white
}

.campaign-contact-field label {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.campaign-contact-field input,
.campaign-select-wrap select {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #204095;

    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.campaign-select-wrap {
    flex: 1;
    position: relative;
    min-width: 0;
}

.campaign-select-wrap select {
    appearance: none;
    padding-left: 36px;
    cursor: pointer;
    background: #94A0F1;
    color: white;
}

.campaign-select-wrap::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #204095;
    pointer-events: none;
}

.campaign-btn-submit-form {
    position: absolute;
    bottom: 20px;
    left: 24px;
    height: 70px;

}


.campaign-margintop {
    margin-top: 150px
}

.campaign-marginbottom {
    margin-bottom: 150px
}

.campaign-background-card-black {
    background: black !important
}

.campaign-promo {
    background: #DEDEDE;
    padding: 150px 0;
}

.campaign-promo-intro {
}

.campaign-promo-purchase {
    display: flex;
    direction: ltr;
    align-items: end;
    justify-content: space-between;
    gap: 64px;
}

.campaign-promo-images {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 58px;
    flex-shrink: 0;
}
.campaign-promo-image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.campaign-promo-image p{
    font-size: 20px;
    color: #204095;
    font-weight: 800;
}
.campaign-promo-image img{
    height: 70px;
    object-fit: contain;
}
.campaign-promo-copy {
    direction: rtl;
    text-align: right;
    color: #000;
    width: 450px;
    max-width: 100%;
}

.campaign-promo-copy h2 {

    font-size: 33px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 18px;
}

.campaign-promo-copy h2 span {
    color: #F05A22;
}

.campaign-promo-copy p {

    font-size: 33px;
    font-weight: 700;
    line-height: 1.45;
    color: #204095;
    margin: 0;
}

.campaign-video {
    background: #dedede;
}
.campaign-form-response.error{
    color : #e85d20;
}
.campaign-form-response{
    position: absolute;
    bottom: 0;
}
.campaign-form-response.success{
    color: white;
}

.service-cooperation {
    margin-top: 127px;
    margin-bottom: 95px;
}

.service-cooperation .service-box {
    background: #204095 !important;
    margin: 0px;
}
.service-box.first-blue{
    background: #204095 !important;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: visible;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-box {
    position: absolute;
    top: 50%;
    right: 186px;
    transform: translateY(-50%);

    width: 495px;
    background: #204095;
    padding: 55px;

    clip-path: polygon(140px 0, 100% 0, 100% 100%, 0 100%, 0 140px);
}

.hero-box-logo {
    width: 154px;
    height: auto;
    margin: 0 0 22px 0;
}


.hero-box h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.8em;
    color: #fff;
    margin-bottom: 24px;
}

.hero-box-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f05a22;
    font-size: 18px;
    font-weight: 900;
}

.hero-box-link span {
    font-size: 44px;
    line-height: 1;
}


.stats {
    background: #204095;
    padding: 95px 0;
}

.stats-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.stat-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.stat-number {
    font-size: 26px;
    font-weight: 900;
    color: #e85d20;
    line-height: 1.31;
}

.stat-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 260px;
    margin: 0 auto;
}

.stat-item + .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}


.collaboration-image-box > img,
.collaboration-image-box > svg {
    width: 100%;
    height: 100%;
    display: block;
}

.collaboration-section {
    background: #e6e6e6;
    padding: 40px 64px 90px;
    height: auto;
    width: 100%;
}

.collaboration-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 58px;
}

.collaboration-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #777;
    text-align: right;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 62px;
}

.collaboration-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.collaboration-image-box {
    background: #e6e6e6;
    position: relative;
    width: 100%;
    height: 456px;
    margin-bottom: 58px;
    border-radius: 10px;
    overflow: hidden;
}

.collaboration-image-box > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collaboration-cutout::before {
    content: '';
    position: absolute;
    top: -98px;
    height: 0;
    width: 100%;
    left: auto;
    right: 0;
    border-right: 0;
    border-left: 350px solid transparent;
    border-bottom: 100px solid #e6e6e6;
    border-bottom-left-radius: 10px;
}

.collaboration-cutout {
    position: absolute;
    bottom: 0;
    width: 350px;
    height: 80px;
    background: #e6e6e6;
    z-index: 1;
    left: auto;
    right: 0;
    border-top-left-radius: 10px;
}

.collaboration-cutout h3 {
    margin: 0;
    width: 100%;
    text-align: right;
    position: absolute;
    bottom: 0px;
    margin: 0;
    text-align: right;
}
.collaboration-cutout p {
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.2;
    color: #204095;
    font-size: clamp(28px, 3vw, 45px);
}
.collaboration-card .collaboration-card-content {
    color: #111;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
    flex-grow: 1;
}

.collaboration-btn {
    margin-top: auto;
    width: 100%;
    height: 50px;
    background: #f05a22;
    color: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 26px;
    font-size: 20px;
    font-weight: 700;
}

.collaboration-btn img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.collab-form-response{
    color: black;
    margin-top: 5px;
    font-size: 13px;
}
.experience-section {
    background: #0b0b0b;
    padding: 70px 64px 90px;
}

.experience-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 38px;
}

.experience-header h2 {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    text-align: right;
}

.experience-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.experience-swiper {
    flex: 1;
    min-width: 0;
}

.experience-nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.65;
}

.experience-nav-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.experience-next img {
    transform: scaleX(-1);
}

.experience-card {
    width: 100%;
    position: relative;
    display: flex;
    gap: 40px;
    padding: 22px;
    background: white;
    border-radius: 10px;
}

.experience-card-img {
    flex: 1;
}

.experience-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.experience-card-desc {
    font-size: 18px;
    color: #0B0B0B;
    line-height: 1.6em;
    margin-top: 22px;
    padding-bottom: 25px;
}

.experience-card-info h3 {
    font-size: 23px;
    font-weight: 900;
    color: #204095;
}

.experience-card-author {
    color: #777;
}

.experience-card-shape::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    height: 0;
    width: 100%;
    border-right: 150px solid transparent;
    border-bottom: 50px solid #0b0b0b;
}

.experience-card-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 40px;
    background: #0b0b0b;
    z-index: 1;
}

.experience-svg-card {
    width: 100%;
    min-height: 435px;
    height: auto;
    display: block;
    overflow: visible;
}

.svg-image-box {
    width: 100%;
    height: 100%;
}

.svg-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.svg-text-box {
    width: 100%;
    height: 100%;
    color: #111;
    text-align: right;
}

.svg-text-box h3 {
    font-size: 31px;
    font-weight: 900;
    color: #204095;
    line-height: 1.3;
    margin: 0 0 18px;
}

.svg-text-box p {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    line-height: 1.75;
    text-align: justify;
    margin: 0;
}

.svg-text-box span {
    display: block;
    margin-top: auto;
    font-size: 17px;
    font-weight: 700;
    color: #999;
    text-align: right;
}

.experience-svg-desktop {
    display: block;
}

.experience-svg-mobile {
    display: none;
}

.blog-shape{
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 48px;
    background: #e6e6e6;
    z-index: 1;
    left: auto;
    right: 0;
    border-top-left-radius: 10px;
}
.blog-shape::before {
    content: '';
    position: absolute;
    top: -99px;
    left: auto;
    right: 0;
    border-right: 0;
    border-left: 200px solid transparent;
    border-radius: 0 0 0 10px;
    height: 0;
    width: 100%;
    border-bottom: 102px solid #e6e6e6;
}
.blog-shape-content{
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.about-hero{
        position: relative;
        width: 100%;
        height: 30vh;
        min-height: 560px;
        overflow: hidden;
    background: #204095;
}
.about-hero .intro-inner{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero-img{
    width: 735px;
    margin: auto;
    max-width: 90%;
}

.about-img-text .container{
    display: flex;
    gap: 102px;
    padding-top: 80px;
    padding-bottom: 80px;
}
.about-img-text p{
    font-size: 22px;
    line-height: 1.7em;
    text-align: justify;
}
.about-img-text.style-two {
    background: black;
    color: white;
}
.about-img-text.style-three {
    background: white;
}
.about-img-text.style-one , .about-img-text.style-three{
    color: black;
}
.about-img-text.style-two .container{
    flex-direction: row-reverse;
    padding-top: 150px;
    padding-bottom: 150px;
}

.about-img-text :is(h2, h3, h4, h5, h5) {
    font-size: 45px;
    margin-bottom: 10px;
}
.about-img-text{
    flex: auto;
}
.about-img{
    flex: 1 0 520px;
}
.about-video{
    padding-top: 240px;
}
.service-box.about-banner-sec{
    background: black !important;
}
.about-banner{
    margin-bottom: 140px;
    margin-top: 200px;
}
.service-box.about-banner-sec:hover{
    background: black !important;
}
@media (max-width: 1500px) {
    .container {
        max-width: 1150px;
    }

    .blog1-more-button-text {
        font-size: 20px;
    }

    .blog1-blog-card-text {
        max-height: 115px;
        overflow: hidden;
    }

    .blog2-hero-img {
        height: 550px;
    }

    .blog2-intro-cutout-title {
        font-size: 36px;
    }

    .blog2-comment-item-meta {
        gap: 25px;
    }

    .blog2-comment-item-text {
        font-size: 16px;
    }

    .blog2-comment-item-date {
        font-size: 16px;
    }

    .video-container video {
        height: auto;
    }

    .campaign-promo {
        padding: 90px 0;
    }

    .campaign-promo-copy p {
        font-size: 27px;
    }

    .campaign-promo-images, .experience-purchase-images {
        gap: 50px;
    }

    .collaboration-cutout {
        width: 240px;
    }

    .collaboration-cutout::before {
        top: -77px;
        border-left: 240px solid transparent;
        border-bottom: 80px solid #e6e6e6;
    }

    .collaboration-cutout p {
        font-size: 32px;
    }

    .collaboration-image-box {
        margin-bottom: 30px;
    }


    .experience-purchase-copy p {
        font-size: 27px;
    }
    .service-text-wrapper{
        font-size: 20px;
        padding-left: 65px;
    }

    .service-item-wrapper {
        height: 255px;
    }
    .service-item-wrapper.service-3{
        height: 255px;
    }
    .service-image-wrapper {
        max-width: 470px;
    }
    .service-3 .service-text-wrapper {
        padding-bottom: 60px;
    }
    .service-item-wrapper.service-4 {
        height: 300px;
    }
    .collection-banner-img-wrapper {
        max-width: 650px;
        bottom: 0;
        display: flex;
        align-items: center;
    }
    .collection-banner-wrapper {
        margin-top: 0px;
        background-size: 100% 450px;
        height: 600px;
    }
    .about-img {
        flex: 1 0 420px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 940px;
    }

    .homepage-intro-inner {
        flex-wrap: wrap;
        gap: 30px;
        padding: 60px 0 60px;
    }

    .homepage-intro-body {
        flex: 1 0 auto;
    }

    .homepage-btn-about {
        margin-top: 0;
    }

    .homepage-intro-cta {
        justify-content: center;
    }

    .homepage-banner-black-box-title {
        font-size: 36px;
        font-weight: 700;
    }

    .homepage-banner-black-box {
        width: 500px;
        height: 190px;
    }

    .homepage-footer-inner {
        gap: 25px;
    }

    .homepage-footer-logo img {
        height: 100px;
    }

    .blog1-hero-img {
        width: 100%;
        height: 400px;
    }

    .blog1-blog-card-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .blog1-blog-card-text {
        font-size: 14px;
    }

    .blog1-blog-card-text {
        max-height: 105px;
    }

    .blog2-intro-cutout-title {
        font-size: 30px;
        max-width: 90%;
    }

    .blog2-intro-cutout-meta {
        font-size: 16px;
    }

    .blog2-comment-item-meta {
        top: 35px;
    }

    .campaign-promo-images {
        grid-template-columns: repeat(3, auto);
        gap: 70px;
    }

    .service-img {
        width: 450px;
        height: 200px;
        left: 20px;
        top: 55px;
    }

    .service-title {
        font-size: 26px;
    }

    .collaboration-section {
        padding-inline: 32px;
    }

    .collaboration-grid {
        gap: 28px;
    }

    .collaboration-cutout p {
        font-size: 36px;
    }

    .contact-us-intro-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .experience-purchase-experience {
        gap: 36px;
    }

    .experience-purchase-images {
        gap: 12px;
        flex-wrap: wrap;
    }

    .experience-purchase-image {
        flex: 1 0 25%;
        margin-bottom: 15px;
    }
    .experience-purchase-copy p {
        font-size: 28px;
    }


    .experience-gallery-caption p {
        font-size: clamp(15px, 2.4vw, 23px);
    }

    .campaign-purchase-experience {
        gap: 36px;
    }

    .campaign-purchase-copy p {
        font-size: 28px;
    }

    .blog1-more-button-text {
        padding-right: 55px;
        font-size: 20px;
    }

    .collaboration-cutout p {
        font-size: 32px;
    }

    .service-item-wrapper {
        height: 210px;
    }
    .service-text-wrapper {
        font-size: 15px;
        padding-left: 100px;
    }

    .service-item-wrapper.service-3 {
        height: 220px;
    }
    .service-item-wrapper.service-4 {
        height: 240px;
    }
    .service-4 .service-text-wrapper {
        padding-bottom: 80px;
    }
    .service-image-wrapper {
        max-width: 370px;
    }

    .collection-banner-content {
        font-size: 36px;
    }
    .collection-banner-img-wrapper {
        max-width: 550px;
    }
    .collection-banner-wrapper {
        background-size: 100% 350px;
        height: 600px;
    }
    .about-img-text .container{
        flex-direction: column-reverse;
    }
    .about-img-text.style-two .container{
        flex-direction: column-reverse;
    }
    .about-img-text :is(h2, h3, h4, h5, h5) {
        font-size: 35px;
        margin-top: 50px;
        margin-bottom: 40px;
        text-align: center;
    }
    .about-img {
        flex: 1 0 100%;
    }
    .about-img-text .container {
        gap: 30px;
    }
    .about-img-text.style-two .container{
        padding-top: 100px;
        padding-bottom: 100px;
    }

}

@media (max-width: 992px) {
    .primary-filled-btn{
        font-size: 18px;
        padding: 12px;
        border-radius: 7px;
    }
    .container {
        max-width: 740px;
    }

    .homepage-site-header {
        padding: 0;
    }

    .homepage-footer-logo img {
        height: 70px;
    }

    .homepage-footer-copy {
        margin-top: 60px;
    }

    .homepage-main-nav {
        display: none;
    }

    .homepage-hamburger {
        display: flex;
    }

    .homepage-hero {
        height: 70vh;
        min-height: 420px;
    }

    .homepage-intro {
        padding: 45px 0 55px;
        font-size: 18px;
    }

    .homepage-intro-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .homepage-intro-headline {
        justify-content: flex-start;
    }

    .homepage-intro-headline h2 {
        white-space: normal;
        text-align: right;
        font-size: 26px;
        margin-top: 0;
    }

    .homepage-intro-body {
        max-width: 100%;
    }

    .homepage-intro-body p {
        text-align: justify;
        font-size: 14px;
        line-height: 2em;
    }

    .homepage-intro-cta {
        width: 100%;
        align-items: stretch;
        gap: 32px;
    }

    .homepage-btn-about {
        align-self: center;
        justify-content: center;
        margin-top: 20px;
        width: 153px;
        height: 50px;
    }

    .homepage-intro-cutout {
        display: none;
    }

    .homepage-categories {
        padding: 32px 24px;
    }

    .homepage-categories h2 {
        font-size: 20px;
    }

    .homepage-categories-grid-wrapper {
        gap: 10px;
    }

    .homepage-categories-nav-btn {
        width: 40px;
        height: 40px;
    }


    .homepage-collections {
        padding: 60px 30px;
    }

    .homepage-footer-top-img {
        height: 480px;
    }


    .blog1-blog-card-surface {
        clip-path: url(#blog-card-clip-mobile);
    }

    .blog1-blog-card-row {
        flex-direction: column;
        gap: 12px;
    }

    .blog1-blog-card-media {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }

    .blog1-blog-card-title {

        font-weight: 900;
        font-size: 14.72px;
        line-height: 170%;
        text-align: justify;
    }

    .blog1-blog-card-text {
        font-weight: 500;
        font-size: 11px;
        max-height: 81px;
        overflow: hidden;
        margin-bottom: 100px;
    }

    .blog1-blog-card-date {
        font-size: 16px;
    }

    .blog1-blog-card-more {
        gap: 8px;
    }

    .blog1-more-button-text {

        font-weight: 700;
        font-size: 20.3px;
        line-height: 131%;
        text-align: right;
    }

    .blog1-blog-card-more svg {
        width: 30px;
        height: 30px;
        border-radius: 1px;
    }

    .blog1-hero-badge {
        font-size: 26px;
    }

    .intro-inner {
        margin-left: 32px;
    }

    .blog2-hero-blog .intro-inner {
        margin-left: auto;
        height: auto;
        bottom: 0;
    }

    .blog2-intro-cutout-content {
        gap: 18px;
        padding: 15px 15px 0 0;
    }

    .blog1-hero-img {
        width: 100%;
        height: 100%;
    }

    .intro-cutout {
        width: 300px;
        height: 100px;
        left: -20px;
        clip-path: path("M 24.8,0 L 155.3,0 Q 167.9,0 172.1,6.8 L 230,80.3 Q 200.3,85 193.7,85 L 7.6,85 Q 0,85 0,76.3 L 0,72.9 Q 0,68.3 3.8,68.3 L 14.3,68.3 Q 19.1,68.3 19.1,62.7 L 19.1,6.8 Q 19.1,0 24.8,0 Z");
        padding-left: 0;
        bottom: -32px;
    }

    .intro-cutout img {
        width: 145px;
        max-width: none;
        margin-top: 8px;
    }

    .blog1-hero {
        height: 70vh;
        min-height: 420px;
    }

    .blog1-categories {
        padding: 32px 0;
    }

    .blog1-categories h2 {
        font-size: 20px;
    }

    .campaign-contact-field input, .campaign-select-wrap select {
        min-height: 52px;
    }

    .campaign-contact-form {
        gap: 28px;
    }

    .campaign-campaign-form-title {
        text-align: center;
        font-size: 22px !important;
    }

    .collection-hero {
        height: 70vh;
        min-height: 420px;
    }
    .collection-hero .swiper-slide{
        padding-bottom: 100px;
        background: #eeeff4;
    }

    .homepage-hero {
        height: 70vh;
        min-height: 420px;
    }
    .homepage-hero .swiper-slide{
        padding-bottom: 100px;
        background: #204095;
    }
    .contact-us-hero {
        height: 400px;
        min-height: 400px;
    }

    .contact-us-intro {
        padding: 48px 24px 48px;
    }

    .contact-us-intro-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .contact-us-intro-headline {
        justify-content: flex-start;
    }

    .contact-us-intro-headline h2 {
        white-space: normal;
        text-align: right;
        font-size: clamp(28px, 8vw, 40px);
    }

    .contact-us-intro-body {
        max-width: 100%;
    }

    .contact-us-intro-body p {
        text-align: justify;
        margin-top: 0;
    }

    .service-hero {
        height: 70vh;
        min-height: 420px;
    }

    .experience-hero {
        height: 70vh;
        min-height: 420px;
    }

    .experience-intro {
        padding: 50px 0;
    }

    .experience-header-btn {
        bottom: auto;
        top: -205px;
        left: 13px;
    }


    .experience-purchase-copy {
        max-width: none;
    }

    .experience-purchase-copy h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .experience-purchase-copy p {
        font-size: 26px;
    }

    .experience-purchase-images {
        display: grid;
        grid-template-columns: repeat(3, minmax(48px, 1fr));
        grid-auto-rows: auto;
        gap: 10px;
        width: 100%;
        max-width: 360px;
        justify-items: center;
    }

    .campaign-promo-images {
        display: grid;
        grid-template-columns: repeat(3, minmax(48px, 1fr));
        grid-auto-rows: auto;
        gap: 10px;
        width: 100%;
        max-width: 360px;
        justify-items: center;
    }


    .experience-gallery-grid {
        gap: 70px;
    }

    .experience-gallery-img {
        height: clamp(220px, 56vw, 420px);
    }

    .experience-gallery-icon {
        width: 52px;
        height: 52px;
    }
    .experience-gallery-icon img{
        width: auto;
        height: 48px;
    }
    .experience-gallery-caption {
        max-width: 76%;
    }

    .experience-gallery-caption p {
        font-size: clamp(14px, 4.5vw, 23px);
    }


    .experience-footer-route .experience-btn-arrow-svg {
        width: 25px;
        height: 25px;
    }

    .blog2-hero-img {
        height: auto;
    }

    .blog2-socials {
        display: none;
    }

    .blog2-intro-cutout-meta {
        font-size: 12px;
        gap: 10px;
        padding-top: 10px;
    }

    .blog2-comment-section {
        padding: 35px 0;
    }


    .blog2-comment-section-title {
        text-align: center;
        font-size: 20px;
    }

    .blog2-comment-fields-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .blog2-comment-field {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
    }

    .blog2-comment-field-label {
        font-size: 14px;
    }

    .blog2-comment-field-input {
        flex: none;
        width: 100%;
        height: 50px;
        font-size: 14px;
    }

    .blog2-comment-field--full {
        align-items: flex-start;
    }

    .blog2-comment-textarea-wrap {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        max-width: 100%;
        height: auto;
        aspect-ratio: auto;
        margin: 0 auto;
    }

    .blog2-comment-field--full .blog2-comment-textarea-wrap {
        margin: 0;
    }

    .blog2-comment-textarea-bg {
        display: none;
    }

    .blog2-comment-textarea-label {
        position: static;
        text-align: center;
    }

    .blog2-comment-textarea {
        position: static;
        max-width: 100%;
        height: 241.3px;
        background: #fff;
        border-radius: 10px;
        padding: 16px;
    }

    .blog2-comment-submit {
        position: static;
        width: 153px;
        height: 52px;
        margin: auto;
        background: white;
    }

    .blog2-comment-submit-label {
        font-size: 16px;
    }

    .blog2-comment-submit-icon {
        width: 24px;
        height: 24px;
    }

    .blog2-comment-item {
        margin: 0 auto;
        overflow: hidden;
    }

    .blog2-comment-item-bg {
        display: none;
    }

    .blog2-comment-item-bg-mobile {
        display: block;
    }



    .blog2-comment-item-text {
        padding-top: 20px;
        font-size: 12px;
        line-height: 1.7;
    }

    .blog2-comment-item-meta {
        top: 12px;
        right: 16px;
        gap: 4px;
    }

    .blog2-comment-item-name {
        font-size: 13px;
    }

    .blog2-comment-item-date {
        font-size: 11px;
    }

    .blog2-suggested-row {
        gap: 12px;
    }

    .blog2-suggested-swiper .swiper-slide {
        width: 100%;
    }

    .blog2-suggested-card-surface {
        padding: 16px 16px 20px;
        gap: 10px;
    }

    .blog2-suggested-card-title {
        font-size: 12px;
    }

    .blog2-suggested-card-text {
        font-size: 9px;
        -webkit-line-clamp: 4;
        display: none;
    }

    .blog2-suggested-card {
        width: 100%;
        height: 270px;
    }

    .blog2-suggested-card-date {
        font-size: 11px;
    }

    .blog2-suggested-card-more {
        padding-bottom: 0px;
    }

    .blog2-suggested-card-more svg {
        width: 18px;
        height: 18px;
    }

    .blog2-suggested-card-more-text {
        font-size: 11px;
    }

    .blog2-suggested-swiper-next, .blog2-suggested-swiper-prev {
        width: 27px;
        height: 21px;
    }


    .blog2-hero {
        height: 70vh;
        min-height: 420px;
    }

    .blog2-categories {
        padding: 32px 24px;
        gap: 32px;
    }

    .blog2-categories h2 {
        font-size: 20px;
    }

    .blog2-categories-feature-logo {
        top: 10px;
        right: 10px;
        width: 56px;
        height: 28px;
        border-radius: 6px;
        padding: 4px 6px;
    }

    .blog2-categories-article {
        gap: 14px;
    }

    .blog2-categories-article-text {
        font-size: 14px;
        line-height: 170%;
    }

    .blog2-categories-article-author {
        font-size: 14px;
        line-height: 170%;
    }

    .blog2-categories-badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .blog2-categories-badge {
        height: 32px;
        font-size: 10px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .blog2-intro-cutout-title {
        font-size: 26px;
        width: auto;
    }

    .campaign-hero {
        height: 473px;
        min-height: auto;
    }

    .campaign-intro {
        padding: 48px 0 150px;
    }

    .campaign-purchase-experience {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 28px;
        min-height: 0;

        align-items: center;
        justify-content: center;
    }

    .campaign-purchase-copy {
        max-width: none;
    }

    .campaign-purchase-copy h2 {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .campaign-purchase-copy p {
        font-size: 24px;
    }

    .campaign-campaign-form .campaign-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .campaign-button-submit {
        bottom: -80px !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 154px !important;
    }

    .campaign-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .campaign-contact-field {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .campaign-contact-field label {
        white-space: normal;
    }

    .hero {
        height: 560px;
        min-height: 560px;
        overflow: visible;
        z-index: 2;
    }

    .hero-img {
        height: 560px;
        object-fit: cover;
        object-position: center top;
    }

    .hero-box {
        width: 250px;
        height: 218px;
        right: 50%;
        left: auto;
        top: auto;
        bottom: -100px;
        transform: translateX(50%);
        padding: 22px 27px;
        border-radius: 5px;
        z-index: 5;
        clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%, 0 75px);
        box-shadow: 2px 4px 12.2px 0px #00000040;
    }

    .hero-box-logo {
        width: 71px;
        margin: 0 0 15px 0;
    }

    .hero-box h1 {
        font-size: 16px;
        line-height: 1.7em;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .hero-box-link {
        font-size: 11px;
    }

    .hero-box-link span {
        font-size: 30px;
    }

    .hero-box.collection-hero-box{
        bottom: 0;
    }
    .stats {
        position: relative;
        z-index: 1;
        padding-top: 120px;
    }

    .stats {
        padding: 152px 0;
        padding-bottom: 76px;
        height: auto;
    }

    .stats-inner {
        gap: 0;
    }

    .stat-item {
        padding: 0 12px;
    }

    .stat-number {
        font-size: 22px;
    }

    .collaboration-grid {
        display: flex;
        gap: 20px;
    }

    .collaboration-cutout {
        width: 180px;
        height: 50px;
    }

    .collaboration-cutout::before {
        top: -48px;
        border-left: 180px solid transparent;
        border-bottom: 50px solid #e6e6e6;
    }

    .collaboration-cutout p {
        font-size: 22px;
    }

    .collaboration-card {
        flex: 1;
        gap: 15px;
    }

    .collaboration-header h2 {
        font-size: 22px;

    }

    .collaboration-section {
        padding: 60px 0 90px;
    }

    .collaboration-btn {
        font-size: 16px;
    }

    .collaboration-header {
        margin-bottom: 55px;
        justify-content: center;
    }



    .collaboration-image-box {
        width: 100%;
        height: auto;
        margin: 0 auto;

    }

    .collaboration-image-box > img,
    .collaboration-image-box > svg {
        width: 100%;
        height: 100%;
        display: block;
    }


    .collaboration-card .collaboration-card-content {
        min-height: auto;
        margin-bottom: auto;
        font-size: 14px;
        height: 140px;
        overflow: hidden;
    }

    .experience-svg-desktop {
        display: none;
    }

    .experience-svg-mobile {
        display: block;
    }

    .experience-svg-card {
        min-height: auto;
    }

    .experience-svg-desktop {
        display: none;
    }

    .experience-svg-mobile {
        display: block;
        width: 100%;
        height: auto;
    }

    .experience-section {
        padding: 50px 0 70px;
    }

    .experience-header h2 {
        font-size: 26px;
    }

    .experience-slider-wrapper {
        display: block;
    }

    .experience-header {
        justify-content: center;
    }

    .experience-nav-btn {
        display: none;
    }

    .experience-swiper {
        overflow: visible;
    }

    .experience-swiper .swiper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
        transform: none !important;
        height: auto !important;
    }

    .experience-swiper .swiper-slide {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .experience-card {
        min-height: auto;
        flex-direction: column;
        gap: 12px;
    }

    .experience-svg-card {
        min-height: 520px;
    }

    .svg-text-box h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .svg-text-box p {
        font-size: 14px;
        line-height: 1.8;
    }

    .svg-text-box span {
        font-size: 14px;
        margin-top: 16px;
    }

    .homepage-btn-banner {
        top: 55px;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        width: 227px;
        height: 50px;
    }

    .homepage-banner-black-box {
        right: 50%;
        left: auto;
        transform: translateX(50%);
        margin-right: 0;
        width: 300px;
        clip-path: path("M 175,0 L 292,0 Q 300,0 300,5 L 300,110 L 0,110 L 0,48 Q 0,42 7,42 L 117,42 Q 125,36 130,31 L 163,4 Q 167,0 169,0 Z");
        height: 110px;
    }

    .homepage-bottom-banner {
        height: 670px;
    }

    .homepage-banner-black-box-title {
        font-size: 23px;
    }

    .service-cooperation {
        padding: 40px 20px;
        overflow-x: clip;
    }

    .service-box {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .cooperation {
        margin-bottom: 80px;
    }

    .service-content {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding: 28px 24px 28px 90px;
        text-align: right;
    }

    .service-title {
        font-size: 24px;
    }

    .service-img {
        width: 300px;
    }

    .service-img img {
        width: 100%;
        height: auto;
    }

    .cooperation,
    .service-cooperation {
        padding: 0 20px;
        overflow-x: clip;
    }

    .campaign-margintop {
        margin-top: 80px;
    }

    .contact-us-contact-info-title {
        font-size: 16px;
    }

    .contact-us-contact-section {
        padding: 100px 0 64px;
    }

    .hero-box.collection-hero-box .hero-box-logo {
        width: 88px;
    }
    .hero-box.service-hero-box .hero-box-logo {
        width: 88px;
    }

    .experience-purchase-images img {
        width: 60px;
        height: 40px;
        object-fit: contain;
    }
    .experience-purchase-image p {
        font-size: 14px;
    }

    .service-box-icon svg{
        width: 24px;
        height: 24px;
    }
    .service-item-wrapper {
        height: 165px;
    }
    .service-item-wrapper.service-3 {
        height: 175px;
    }
    .service-item-wrapper.service-4{
        height: 190px;
    }
    .service-text-wrapper {
        font-size: 12px;
    }
    .service-1 .service-text-wrapper {
        padding-bottom: 10px;
        padding-right: 100px;
    }
    .service-3 .service-text-wrapper {
        padding-bottom: 50px;
    }
    .service-4 .service-text-wrapper {
        padding-bottom: 60px;
        padding-right: 80px;
    }
    .service-image-wrapper {
        max-width: 300px;
    }

    .collection-banner-img-wrapper {
        max-width: 400px;
    }
    .collection-banner-content {
        font-size: 28px;
    }
    .collection-banner-wrapper {
        background-size: 100% 280px;
        height: 400px;
    }
    .about-video {
        padding-top: 126px;
    }
    .campaign-form-response{
        position: relative;
    }
}

@media (max-width: 768px) {

    .primary-filled-btn img, .primary-filled-btn svg {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

    .container {
        max-width: 540px;
        margin: auto;
    }

    .homepage-footer-route {
        top: -450px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .homepage-footer-hours {
        left: 50%;
        right: auto;
        transform: translateX(-50%) scaleX(-1);
        text-align: right;
        width: 300px;
        clip-path: polygon(0 0, 10px 0, 73% 0, 89% 0px, 49.5% 0px, 59% 18px, 58% 16px, 100% 100%, 0 100%);
        height: 100px;
    }

    .homepage-footer-hours p {
        transform: scaleX(-1);
        font-size: 14px;
    }

    .homepage-footer-body {
        padding: 48px 24px 32px;
    }

    .homepage-footer-nav {
        display: none;
    }


    .homepage-footer-socials {
        justify-content: flex-start;
    }


    .homepage-footer-logo img {
        height: 90px;
        max-width: 100%;
        object-fit: contain;
    }

    .blog2-intro-cutout-title {
        font-size: 18px;
        font-weight: 700;
    }

    .blog2-hero-blog .intro-inner {
        margin-left: auto;
        height: auto;
        bottom: auto;
    }

    .experience-gallery-img {
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
        z-index: 1;
        position: relative;
    }

    .experience-gallery-item {
        margin-bottom: 90px;
        overflow: visible;
    }

    .experience-gallery-icon {
        position: absolute;
        bottom: -22px;
        right: 0;
        left: 0;
        margin: auto;
        z-index: 10;
        padding: 7px;
    }

    .experience-gallery-caption {
        max-width: 100%;
        position: absolute;
        bottom: -95px;
        right: 0;
        left: 0;
        text-align: center;
        margin: auto;
        width: 100%;
    }

    .campaign-promo {
        padding: 75px 0;
    }

    .campaign-promo-purchase {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .campaign-promo-images img {
        width: 100%;
        height: 72px;
    }
    .campaign-promo-images p {
        font-size: 12px;
        text-align: center;
    }
    .campaign-promo-images{
        gap: 44px;
    }
    .campaign-promo-copy h2 {
        font-size: 44px;
    }

    .campaign-promo-copy p {
        font-size: 22px;
    }

    .campaign-video video {
        height: auto;
    }

    .campaign-contact-field input, .campaign-select-wrap select {
        padding: 15px 18px;
    }

    .campaign-purchase-copy h2 {
        font-size: 22px !important;
        text-align: center;
    }

    .campaign-marginbottom {
        margin-bottom: 84px;
    }

    .service-cooperation {
        margin-top: 100px;
        margin-bottom: 70px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .collaboration-grid {
        flex-direction: column;
    }

    .collaboration-grid {
        gap: 40px;
    }
    .collaboration-cutout {
        width: 350px;
        height: 80px;
    }

    .collaboration-cutout::before {
        top: -80px;
        border-left: 350px solid transparent;
        border-bottom: 80px solid #e6e6e6;
    }

    .collaboration-cutout p {
        font-size: 40px;
    }

    .collection-hero-arrow {
        width: 40px;
        height: 40px;
    }

    .collection-hero-arrow-right {
        right: 16px;
    }

    .homepage-hero-arrow-left {
        left: 16px;
    }
    .collection-hero-arrow-left {
        left: 16px;
    }



    .service-content {
        aspect-ratio: 1;
        justify-content: space-between;
    }

    .campaign-margintop {
        margin-top: 31px;
    }

    .service-img {
        top: 50%;
        transform: translateY(-50%);
        width: 80%;
        left: -20px;
        display: flex;
        align-items: center;
    }


    .service-hero {
        overflow: visible;
    }


    .experience-triangle {
        display: block;
    }

    .experience-shape {
        display: none;
    }


    .contact-us-hero {
        height: 420px;
        min-height: 420px;
    }

    .contact-us-contact-divider {
        margin: 80px 0;
    }

    .contact-us-contact-info-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 80px;
    }

    .contact-us-bale-channel-btn {
        gap: 12px;
        min-width: 142px;
    }

    .contact-us-contact-info-title {
        margin-bottom: 20px;
    }

    .contact-us-contact-section {
        padding: 230px 0 48px;
    }

    .contact-us-contact-info-title {
        justify-content: center;
        display: flex;
    }

    .contact-us-btn-submit-form {
        bottom: -80px !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: white !important;
        width: 154px !important;
    }

    .contact-us-contact-hours-block{
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .contact-us-contact-bale-block,
    .contact-us-contact-social-block {
        align-items: center;
        margin-top: 0;
    }

    .contact-us-contact-bale-block .contact-us-contact-info-title {
        text-align: right;
    }

    .contact-us-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-us-contact-field {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .contact-us-contact-field label {
        white-space: normal;
    }

    .contact-us-footer-hours p {
        font-size: 16px;
    }

    .contact-us-footer-top iframe{
        height: 360px;
    }
    .contact-us-footer-route {
        bottom: -80px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 12px;
        font-size: 16px;
        height: 49px;
        width: 196px;
    }

    .contact-us-balad {
        bottom: -150px !important;
    }

    .contact-us-footer-hours {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        text-align: right;
        gap: 30px;
    }

    .contact-us-footer-body {
        padding: 48px 24px 32px;
    }

    .contact-us-footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

    .contact-us-footer-nav {
        display: none;
    }

    .contact-us-footer-contact {
        margin-right: -110px;
        text-align: right;
    }

    .contact-us-footer-socials {
        justify-content: flex-start;
    }

    .contact-us-footer-logo {
        order: 1;
        align-self: center;
    }

    .contact-us-footer-logo img {
        height: 110px;
    }

    .contact-us-intro-body p {
        font-size: 14px;
    }

    .contact-us-intro-body {
        padding-top: 0;
    }

    .contact-us-intro-headline h2 {
        font-size: 26px;
    }

    .contact-us-contact-hours-block {
        font-size: 16px;
    }

    .contact-us-contact-field label {
        font-size: 14px;
    }

    .contact-us-footer-hours {
        height: 120px;
        padding: 0 80px 0 18px;
    }
    .contact-location-switcher{
        justify-content: flex-start;
        padding: 8px !important;
    }
    .contact-us-contact-inner {
        gap: 60px;
    }
    .experience-purchase-experience{
        flex-direction: column;
    }
    .experience-purchase-images img {
        width: 100%;
        height: 72px;
    }
    .experience-purchase-images{
        gap: 60px;
    }

    .homepage-categories-nav-btn img{
        width: 26px;
        height: auto;
    }
    .homepage-cat-arrow {
        width: 27px;
    }

    .service-image-inner{
        margin-top: 90px;
    }
    .service-item-wrapper{
        flex-direction: column-reverse;
        padding: 0 33px;
        position: relative;
        background-size: calc(100% - 66px) auto;
    }
    .service-item-wrapper.service-1{
        background-image: url('https://was.n-pedram.ir/wp-content/themes/was/assets/img/service-mobile-back-1.svg') !important;
        height: 540px;
    }
    .service-item-wrapper.service-2{
        background-image: url('https://was.n-pedram.ir/wp-content/themes/was/assets/img/service-mobile-back-2.svg') !important;
        height: 575px;
    }
    .service-item-wrapper.service-3{
        background-image: url('https://was.n-pedram.ir/wp-content/themes/was/assets/img/service-mobile-back-3.svg') !important;
        height: 500px;
    }
    .service-item-wrapper.service-4{
        background-image: url('https://was.n-pedram.ir/wp-content/themes/was/assets/img/service-mobile-back-4.svg') !important;
        height: 640px;
    }
    .service-text-wrapper{
        padding: 0 15px 28px 15px !important;
        align-items: flex-end;
        font-size: 15px;
        justify-content: end;
    }
    .service-image-wrapper {
        max-width: 100%;
        position: absolute;
        margin: 0;
        right: 15px;
        left: 15px;
    }
    .service-1 .service-image-wrapper{
        top: 65px;
    }

    .service-2 .service-image-wrapper{
        top: 32px;
    }

    .service-3 .service-image-wrapper{
        top: 71px;
    }

    .service-4 .service-image-wrapper{
        top: 21px;
    }
    .service-1 .service-box-icon {
        top: 15px;
        left: 15px;
    }
    .service-2 .service-box-icon {
        bottom: 80px;
        right: 15px;
    }

    .service-3 .service-box-icon {
        top: 20px;
        left: 20px;
    }
    .service-4 .service-box-icon {
        position: absolute;
        bottom: 20px;
        right: 20px;
        top: auto;
        left: auto;
    }
    .service-box-icon{
        width: 24px;
        height: 24px;
    }
    .service-4 .service-text-wrapper , .service-2 .service-text-wrapper{
        padding-bottom: 140px !important;
    }
    .service-text-wrapper .service-box-content{
        width: 100%;
        font-size: 20px;
        line-height: 2em;
    }

    .collection-banner-wrapper {
        background: url('../img/coll-back-m.png');
        background-size: 100%;
        min-height: 486px;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        padding: 100px 0;
        gap: 40px;
        align-items: center;
        background-repeat: no-repeat;
    }
    .collection-banner-content{
        padding: 18px;
        font-size: 40px;
    }
    .collection-banner-img-wrapper {
        position: relative;
        max-width: 83%;
    }

    .collaboration-card .collaboration-card-content{
        height: auto;
    }
    .about-img-text p {
        font-size: 14px;
    }
    .about-banner.container{
        margin-top: 74px;
        margin-bottom: 74px;
    }

    .primary-filled-btn{
        height: 50px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 32px;
    }
    .homepage-site-header{
        height: 140px;
    }
    .intro-cutout {
        left: 10px;
    }

    .homepage-header-inner.container{
        padding-top: 50px;
    }
    .homepage-collections {
        padding: 60px 0;
    }

    .homepage-footer-top-img {
        object-position: 20%;
    }

    .homepage-footer-body {
        padding: 80px 50px 32px;
    }

    .homepage-logo-img {
        height: 32px;
    }

    .homepage-footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }

    .homepage-collections-swiper .homepage-swiper-slide {
        width: 260px;
    }

    .homepage-categories-header {
        justify-content: center;
    }

    .homepage-categories h2 {
        font-size: 14px;
    }

    .homepage-categories-inner {
        gap: 34px;
    }

    .homepage-categories {
        padding: 32px 0px 70px 0px;
    }

    .homepage-categories-grid-wrapper {
        gap: 0;
    }

    .homepage-categories-slider {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px);
        mask-image: linear-gradient(to right, transparent 0, #000 60px);
    }

    .blog1-categories {
        padding: 32px 0;
    }

    .blog1-more-button-text {
        font-size: 18px;
        padding-right: 10px;
    }

    .blog1-blog-card-more {
        gap: 10px;
    }

    .blog1-blog-card-surface {
        padding: 32px 28px 30px;
    }

    .blog1-pagination {
        column-gap: 30px;
        font-size: 18px;
    }

    .blog1-blog-card-more {
        position: absolute;
        z-index: 0;
        left: 30px;
    }

    .blog2-hero-blog .intro-inner {
        margin-left: auto;
        height: auto;
        bottom: auto;
    }

    .blog2-intro-cutout-content {
        gap: 8px;
        padding: 8px 15px 0 0;
    }

    .blog2-intro-cutout-wide {
        padding-left: 20px;
        bottom: 8px;
    }

    .contact-us-intro-cutout {
        left: 50%;
        transform: translateX(-50%) scale(0.6);
        top: -150px;
    }

    .experience-header-btn {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        top: auto !important;
        bottom: -100px !important;
        width: 142px;
    }


    .blog2-categories {
        padding: 32px 0;
    }

    .blog2-collections-swiper .swiper-slide {
        width: 260px;
    }

    .blog2-suggested-swiper {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px);
        mask-image: linear-gradient(to right, transparent 0, #000 60px);
    }

    .service-content {
        padding: 20px;
    }

    .service-link {
        font-size: 15px;
        display: flex;
        justify-content: space-between;
    }

    .service-title {
        font-size: 25px;
        max-width: 240px;
    }

    .service-img {
        align-items: end;
    }

    .service-img img {
        max-height: 130px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 80px;
    }

    .collaboration-cutout {
        width: 250px;
    }

    .collaboration-cutout::before {
        top: -78px;
        border-left: 250px solid transparent;
        border-bottom: 80px solid #e6e6e6;
    }

    .collaboration-cutout p {
        font-size: 33px;
    }

    .collaboration-section {
        padding: 60px 0 90px;
    }

    .contact-us-hero {
        height: 350px;
        min-height: auto;
    }

    .experience-footer-route {
        bottom: -80px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 12px;
        font-size: 16px;
        height: 53px;
        top: auto;
    }

    .service-box-wrapper {
        gap: 60px;
    }

    .experience-gallery-section {
        padding: 60px 0;
    }

    .experience-intro {
        padding: 50px 0 140px;
    }

    .campaign-promo-copy h2 {
        font-size: 26px;
    }

    .campaign-promo-copy {
        margin-bottom: 52px;
    }


    .intro-cutout img {
        width: 145px;
        max-width: none;
        margin-top: 20px;
        height: 40px;
        object-fit: contain;
    }

    .hero-box-link svg {
        width: 24px;
        height: 24px;
    }

    .stat-item + .stat-item {
        border-right: 0;
        padding: 0;
    }

    .service-text-wrapper {
        padding: 0 !important;
    }

    .service-image-inner.container{
        max-width: 350px;
        padding: 0 !important;
    }
    .service-item-wrapper.service-1{
        height: 325px;
    }
    .service-item-wrapper.service-2{
        height: 345px;
    }
    .service-item-wrapper.service-3 {
        height: 315px;
    }
    .service-item-wrapper.service-4{
        height: 385px;
    }
    .service-2 .service-box-content{
        max-width: 206px;
    }

    .service-text-wrapper .service-box-content{
        width: 100%;
        font-size: 12px;
        padding-left: 25px;
    }
     .service-2 .service-text-wrapper {
        padding: 0 0 16px 39px !important;
    }
    .service-item-wrapper {
        background-size: 100% 100%;
        padding: 0;
    }
    .service-1 .service-box-content{
        padding: 16px 50px !important;
    }
    .service-2 .service-box-icon{
        bottom: 80px;
        right: 50px;
    }
    .service-3 .service-box-icon {
        top: 20px;
        left: 40px;
    }
    .service-4 .service-box-icon {
        position: absolute;
        bottom: 20px;
        right: 50px;
    }
    .service-1 .service-box-icon {
        top: 15px;
        left: 45px;
    }
    .service-3 .service-text-wrapper {
        padding-bottom: 20px !important;
        padding-right: 38px !important;
    }
    .service-4 .service-text-wrapper {
        padding: 0 45px 100px 45px !important;
    }
    .comment-title-shape{
        width: 180px;
    }
    .blog2-comment-item-meta {
        gap: 4px;
        flex-direction: column;
        width: 241px;
        align-items: unset;
        padding-right: 10px;
        justify-content: center;
    }

    .collection-banner-content {
        padding: 0 18px;
        font-size: 25px;
        margin-bottom: 18px;
    }
    .collection-banner-wrapper {
        padding: 0px 0 0;
        justify-content: center;
        align-items: flex-start;
    }
    .collection-banner-wrapper {
        min-height: 450px;
        gap: 30px;
    }
    .collection-collection-banner .container{
        max-width: 340px;
    }
    .collection-banner-img-wrapper{
        width: 93%;
        max-width: none;
        height: auto;
        display: flex;
        margin: 0 auto;
    }

    .experience-gallery-icon img{
        width: 100%;
        height: stretch;
        object-fit: contain;
    }
    .experience-purchase-copy p{
        font-size: 22px;
    }
    .experience-purchase-images {
        gap: 45px;
    }
    .experience-purchase-image p {
        font-size: 12px;
    }

    .blog-shape {
        width: 150px;
        height: 40px;
    }
    .blog-shape::before{
        top: -66px;
        border-left: 150px solid transparent;
        border-bottom: 70px solid #e6e6e6;
    }
    .homepage-categories-nav-btn{
        position: absolute;
    }
    .homepage-nav-prev{
        left: 0;
    }
    .homepage-nav-next{
        right: 0;
    }
    .homepage-cat-name{
        font-size: 20px;
    }
    .homepage-categories-grid-wrapper{
        padding-right: 10px;
    }
    .about-hero{
        height: 350px;
        min-height: auto;
    }

}


/*Hovers*/
.primary-filled-btn img , .primary-filled-btn svg, .blog1-blog-card-more svg, .blog2-suggested-card-more svg,
.service-arrow , .homepage-cat-card > a .homepage-cat-arrow , .hero-box svg{
    transition: transform 0.35s ease;
    transform-origin: center;
}
.primary-filled-btn.orange:hover{
    background: black;
}
.primary-filled-btn:hover{
    cursor: pointer;
}
.primary-filled-btn.white:hover{
    background: #e85d20;
    color: white;
}
.primary-filled-btn.blue:hover{
    background: #e85d20;
}
.primary-filled-btn.white:hover svg path{
    fill: white;
}
.blog1-blog-card-more:hover .blog1-more-button-text,  .blog2-suggested-card-more:hover .blog1-more-button-text{
    color: black;
}
.blog1-blog-card-more:hover svg path,  .blog2-suggested-card-more:hover svg path{
    fill: black;
}
.blog1-blog-card-more:hover svg,  .blog2-suggested-card-more:hover svg , .collaboration-btn.primary-filled-btn:hover svg{
    transform: rotate(-45deg);
}



.service-box {
    transition: background-color 0.35s ease;
}

.service-link {
    transition: color 0.35s ease;
}

.service-box:hover .service-link .service-arrow {
    filter: brightness(10);
}

.service-box:hover .service-link {
    color: white;
}

.service-box:first-child:hover {
    background: #F05A22 !important;
}

.service-box.campaign-background-card-black:hover {
    background: #F05A22 !important;
}

.service-box:last-child:hover {
    background: #204095;
}

.service-box:hover .service-link .service-arrow {
    filter: brightness(10);
    transform: rotate(-135deg);
}

.homepage-cat-card > a:hover .homepage-cat-name{
    color: #333;
}
.homepage-cat-card > a:hover .homepage-cat-arrow{
    transform: rotate(-135deg);
    filter: brightness(0);
}

.primary-filled-btn:hover img , .primary-filled-btn:hover svg {
    transform: rotate(-135deg);
}

.hero-box:hover svg{
    transform: rotate(45deg);
}
.primary-filled-btn.contact-us-btn-submit-form:hover img , .primary-filled-btn.contact-us-btn-submit-form:hover svg{
    transform: rotate(-45deg);
}
.primary-filled-btn.blog2-comment-submit:hover img , .primary-filled-btn.blog2-comment-submit:hover svg{
    transform: rotate(-45deg);
}