/* font-famaly-hear */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
/* font-famaly-hear-end */




@font-face {
    font-family: 'Libre Caslon Condensed';
    src: url('../fonts/LibreCaslonCondensed-Italic.woff2') format('woff2'),
        url('../fonts/LibreCaslonCondensed-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: 'Libre Caslon Condensed';
    src: url('../fonts/LibreCaslonCondensed-Regular.woff2') format('woff2'),
        url('../fonts/LibreCaslonCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* root */
:root {
    --libre: 'Libre Caslon Condensed', sans-serif;
    --archivo: 'Archivo', sans-serif;

    --white-color: #fff;
    --black-color: #000;
    --natural-300: #e1e2e3;
    --natural-400: #c2c4c6;
    --natural-600: #333435;
    --natural-700: #000204;

    --primary: #4f0d0e;
    --secondary: #000;

    --bg-primary: #eeebe5;

    --body-color: #000;
    --heading-color: #000;
}

/* root */

/* defaults-css-start */
html {
    font-size: 100%;
    box-sizing: border-box;
}

html,
body {}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-family: var(--archivo);
    font-size: 16px;
    font-weight: 400;
    background-color: var(--white-color);
    overflow-x: hidden;
}



a,
button {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus {
    outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--archivo);
    color: var(--heading-color);
    margin-top: 0px;
    font-style: normal;
    font-weight: 400;
    text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

li {
    list-style: none;
}

p {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: var(--body-color);
    margin-bottom: 15px;
}

label {
    color: var(--body-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}

.container-fluid {
    padding: 0px 32px;
}

.fs-1 {
    font-size: 72px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.04em;
}

/* defaults-css--end */

/* theme-css */
.ff-libre {
    font-family: var(--libre);
}

.btn {
    padding: 16px 16px;
    line-height: 1;
    border-radius: 4px;
    border-bottom-right-radius: 16px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    justify-content: center;
}

.btn .text {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn .text span {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.55, 0, 1, 1);
}

.btn .text span.btnHidetext {
    position: absolute;
    right: 100%;
    width: max-content;
}

.btn:hover .text span.btnHidetext {
    right: 0;
}

.btn:hover .text span.btnShowtext {
    transform: translateX(100%);
}

.btn .icons {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.btn .icons span {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.55, 0, 1, 1);
}

.btn .icons span.btnHideIcon {
    position: absolute;
    right: 100%;
}

.btn:hover .icons span.btnHideIcon {
    right: 0;
}

.btn:hover .icons span.btnShowIcon {
    transform: translateX(100%);
}

.btn--light {
    background-color: var(--white-color);
    color: var(--natural-700);
}

.btn--light:hover {
    background-color: var(--white-color);
    color: var(--natural-700);
}

.btn--dark {
    background-color: var(--natural-700);
    color: var(--white-color) !important;
}

.btn--dark:hover {
    background-color: var(--natural-700);
    color: var(--white-color) !important;
}

/* theme-css-end */

/* preloader */
.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #fff; */
    padding-top: 25vh;
    padding-bottom: 25vh;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(0);
    width: 100%;
    z-index: 9999;
    transition: all 0.2s ease;
}

.image-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 96px;
}

.image-stack img {
    width: 19vw;
    height: 50vh;
    object-fit: cover;
    object-position: center;
}

/* preloader--end */

/* ======== header style start ============ */
.header .container-fluid {
    padding: 0px 64px;
}

.header__top ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.header__top ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--natural-700);
    text-decoration: none;
    line-height: 1;
}

.header__top ul li a span.icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__top {
    padding: 5.5px 0px;
}

.header__main {
    padding: 10px 0px 14px;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__menu ul li a {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--natural-700);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.55, 0, 1, 1);
}

.header__menu ul li a span.hideText {
    position: absolute;
    right: 100%;
    transition: all 0.3s cubic-bezier(0.55, 0, 1, 1);
    width: max-content;
}

.header__menu ul li a:hover span.showText {
    transform: translateX(100%);
}

.header__menu ul li a span {
    transition: all 0.3s cubic-bezier(0.55, 0, 1, 1);
}

.header__menu ul li a:hover span.hideText {
    right: 0;
}



.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    background-color: var(--bg-primary);
    opacity: 0;
}

/* ======== header style end ============ */

/* ======== hero style start ============ */

.hero.hero--section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    transform: translateY(100%);
}

.hero.hero--section .container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__wrapper {
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding-top: 186px;
    padding-bottom: 64px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.hero__wrapper {
    width: 19vw;
    height: 50vh;
    margin: 0 auto;
    clip-path: polygon(100% 0,
            100% 30%,
            84% 49%,
            100% 70%,
            100% 100%,
            0 100%,
            0 0);
}

.hero__wrapper::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.24;
    z-index: -2;
    background-image: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.8) 100%),
        url('../imgs/hero-pattern.webp');
}

.hero__wrapper::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background-image: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.8) 100%);
}

.hero__content {
    width: 100vw;
}

.hero__content h1 {
    font-size: 104px;
    line-height: 0.94;
    letter-spacing: -0.04em;
    max-width: 693px;
    color: var(--white-color);
    margin-bottom: 24px;
    margin-left: 42px;
    width: 100%;
}

.hero__content h1 .line {
    overflow: hidden;
}

.hero__content-title .word {
    opacity: 0;
    transform: translateY(100%);
    display: inline-block;
}

.hero__content-inner {
    border-top: 1px solid transparent;
    padding: 24px 48px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.hero__content-lists {
    flex-grow: 1;
}

.hero__content-texts {
    flex: 0 0 auto;
    width: 480px;
}

.hero__content-lists ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
}

.hero__content-lists ul li {
    flex: 0 0 auto;
    width: 33.33%;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--white-color);
    line-height: 1.32;
    opacity: 0;
    transform: translateY(100%);
}

.hero__content-lists ul li span.text {
    max-width: 170px;
    display: inline-block;
}

.hero__content-lists ul li span.dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    background: var(--white-color);
    border-radius: 50%;
    position: relative;
    top: 5px;
}

.hero__content-texts p {
    font-size: 20px;
    line-height: 1.2;
    color: var(--white-color);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(100%);
    font-weight: 400;
}

.hero__content-texts a.btn {
    opacity: 0;
}

/* ======== hero style end ============ */

/* ======== nous--section style start ============ */

.nous--section {
    padding-top: 8rem;
}

.nous__heading {
    display: flex;
    align-items: flex-start;
}

.nous__heading-text {
    flex: 0 0 auto;
    width: 442px;
}

.nous__heading-title h2 {
    font-size: 71px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.nous__heading-title h2 span {
    display: block;
    color: var(--natural-700);
}

.nous__heading-title {
    flex-grow: 1;
}

/* ======== nous--section style end ============ */

/* ======== VideoWheel style start ============ */
.videoWheel--section {
    width: 100%;
    height: 400vh;
}

.videoWheel__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 2;
    will-change: transform;
}

.videoWheel__visual {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url('../imgs/icons/mask.webp');
    mask-image: url('../imgs/icons/mask.webp');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 2;
}

.videoWheel__visual {
    --scaling-value: 0.49;
    -webkit-mask-size: auto calc(100% * var(--scaling-value));
    mask-size: auto calc(100% * var(--scaling-value));
}

.videoWheel__visual-inner {
    width: 100%;
    height: 100%;
}

.videoWheel__visual-inner video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.videoWheel__visual img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/* ======== VideoWheel style end ============ */

/* ======== blockText--service style start ============ */
.blockText--service {
    padding: 128px 0px 128px;
}

.blockText.blockText--padding {
    padding: 9vw 0 9vw;
}

.blockText__pretitle .pretitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.32;
    text-transform: uppercase;
    color: var(--natural-700);
}

.blockText__pretitle .pretitle span.line {
    width: 64px;
    display: block;
    height: 1px;
    background-color: var(--natural-700);
}

.blockText--service .blockText__content {
    max-width: 559px;
    width: 100%;
}

.blockText--service .blockText__content p {
    font-size: 18px;
    line-height: 1.32;
}

.blockText--action .blockText__wrapper {
    padding: 48px 48px 128px;
}

.blockText--action .blockText__pretitle {
    flex: 0 0 auto;
    width: 442px;
}

.blockText--action .blockText__heading {
    flex: 0 0 auto;
    width: calc(100% - 442px);
    margin-bottom: 128px;
}

.blockText--action .blockText__content {
    flex: 0 0 auto;
    width: 540px;
}

.blockText--action .blockText__content-text p {
    font-size: 24px;
    line-height: 1.2;
}

/* ======== blockText--service style end ============ */

/* ======== Action style start ============ */
.about-section {
    position: relative;
    background: #fff;
}

.about-left-sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
    backface-visibility: hidden;
    transition: width 0.1s ease-out;
}

.about-left-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
    width: 100vw;
}

.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(0.55, 0, 0.175, 1);
}



.about-img.active {
    transform: translateY(0);
    z-index: 2;
}

.about-img.prev-img {
    transform: translateY(-100%);
    z-index: 1;

}

.about-img.next-img {
    transform: translateY(100%);
    z-index: 1;
}


.about-chapters {
    position: absolute;
    left: 0%;
    top: 50%;
    width: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.23);
    pointer-events: none;
    transform: translateY(-50%);
}

.about-left-sticky.half .about-chapters {
    opacity: 1;
}

.adbou-chapters-title {
    padding-left: 33%;
}

.about-chapter-title {
    font-size: 48px;
    opacity: 0.56;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--libre);
    transition: opacity 0.35s, font-weight 0.4s, font-size 0.4s;
    letter-spacing: -0.04em;
    padding-left: 33%;
    position: relative;
}

.about-chapter-title.active {
    opacity: 1;
}

.about-content {
    position: relative;
    margin-left: 50vw;
    width: 50vw;
    background: #fff;
    z-index: 1;
    padding-top: 100vh;
}

.about-chapter-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4vw 4vw;
    border-bottom: 1px solid #eee;
}

.about-chapter-content:last-child {
    border-bottom: none;
}

.about-chapter-content h2 {
    margin-top: 0;
    font-size: 2.1rem;
}

.about-chapter-content p {
    max-width: 540px;
    font-size: 1.13rem;
    line-height: 1.7;
}

.about-chapter-title::after {
    position: absolute;
    top: 50%;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 107.5px 0 107.5px 70px;
    border-color: transparent transparent transparent #EEEBE5;
    transform: rotate(0deg) translateY(-50%);
    opacity: 0;
    left: 0;
    transition: all .3s ease;
}

.about-chapter-title.active::after {
    opacity: 1;
    transition: all .3s ease;
}



.action__block-textBox__gif {
    width: 220px;
    height: 320px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.action__block-textBox__gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.action__block-textBox {
    position: relative;
    background: #4F0D0E;
    width: 40vw;
    height: 33vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.action__block-textBox span {
    display: block;
    color: #721516;
    font-family: var(--libre);
    font-style: italic;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    font-size: 9.2vw;
}

.action__block-content__inner h2 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 36px;
}

.action__block-content__inner p {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 48px;
    font-size: 1.67vw;
}



.action__block-content__thumb {
    height: 320px;
}

.action__block-content__thumb img {
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.action__block-content__slider.swiper .swiper-slide img {
    width: 100%;
    height: 324px;
    object-fit: cover;
    object-position: center;
}

.action__block-content__slider {
    max-width: 576px;
    width: 100%;
    margin: 0px;
}

.action__block-content__slider.swiper {
    cursor: none;
}

.slider__cursor {
    position: fixed;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    font-family: var(--archivo);
    font-size: 14px;
    transition: transform 3s ease;
    text-transform: uppercase;
}

.action__block-textBox--recevez {
    height: 246px;
    max-width: 576px;
}

.action__block-textBox--recevez .action__block-textBox__gif {
    height: 178px;
    width: 266px;
}

/* About-mobile-thumbnail */
.action__block-chapterThumb img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.action__block-chapterThumb {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    margin-left: -32px;
    margin-right: -32px;
    height: 320px;
}

.action__block-chapterThumb__content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 64px;
    z-index: 2;
}

.action__block-chapterThumb__content span {
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    margin-bottom: 3px;
}

.action__block-chapterThumb__content .chapter__title {
    color: #fff;
    font-size: 48px;
    font-family: var(--libre);
    line-height: 1.2;
}

.action__block-chapterThumb::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.4);
}

.action__block-chapterThumb__content::after {
    position: absolute;
    left: 0;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 43px 0 43px 27px;
    border-color: transparent transparent transparent #EEEBE5;
    transform: rotate(0deg);
    top: 50%;
    transform: translateY(-43%);
}

/* ======== Action style end ============ */

/* ======== blog-section style start ============ */
.blog--section {
    padding-bottom: 6.6vw;
}

.blog__item {
    display: flex;
    align-items: flex-start;
    padding: 48px 0px 48px;
    border-bottom: 1px solid #e1e2e3;
    gap: 24px;
}

.blog__item:first-child {
    border-top: 1px solid #e1e2e3;
}

.blog__item-thumb {
    width: 210px;
    flex: 0 0 auto;
    height: 140px;
}

.blog__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(0);
}

.blog__item-count {
    flex: 0 0 auto;
    width: 93px;
}

.blog__item-count span {
    font-size: 48px;
    line-height: 1;
    display: block;
    color: var(--natural-700);
}

.blog__item-content h4 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 45px;
}

.blog__item-content__text {
    max-width: 676px;
}

.blog__item-content__text p {
    font-size: 18px;
    line-height: 1.32;
    color: var(--natural-600);
}

/* ======== blog-section style end ============ */

/* ======== intro (who are we?) sections style start ============ */
.common-container {
    max-width: 1920px;
}

.intro__wrapper {
    padding: 48px;
    border-radius: 2px;
    background-color: var(--primary);
}

.intro .blockText__pretitle {
    max-width: 396px;
    width: 100%;
}

.blockText__heading {
    width: 100%;
}

.intro .blockText__pretitle .pretitle,
.intro .blockText__heading h2 {
    color: #eeebe5;
}

.intro .blockText__pretitle .pretitle span.line {
    background-color: #eeebe5;
}

.intro__thumb {
    max-width: 80%;
    width: 100%;
    height: 77vh;
    clip-path: polygon(100% 0, 100% 60%, 88% 72%, 100% 85%, 100% 100%, 0 100%, 0 0);
}

.intro__para {
    color: #eeebe5;
    font-size: 20px;
    line-height: 1.2;
}

.intro__para__snippet {
    color: #721516;
    font-size: 12px;
    line-height: 1.5;
    gap: 9px;
}

.intro__dot {
    width: 8px;
    height: 8px;
    background-color: #721516;
}

/* ======== intro (who are we?) sections style end ============ */

/* ======== contact sections style start ============ */
.contact--section {
    padding: 128px 0;
}

.contact .section__head {
    margin-bottom: 128px;
}

.contact .section__title,
.contact .text-line-one {
    padding-right: 80px;
}

.contact__form__wrap {
    padding: 0 116px;
}

.form {
    font-size: 1rem;
    line-height: 1.6;
    font-family: inherit;
    word-wrap: break-word;
}

.form__label,
.form__input {
    display: inline;
    font: inherit;
}

.form__input {
    border: 1px solid #ccc;
    padding: 2px 4px;
    vertical-align: baseline;
}

.auto-input-mirror {
    position: absolute;
    visibility: hidden;
    white-space: pre;
    font: inherit;
}

.relative {
    display: inline;
    position: relative;
}

.form--contact {
    max-width: 1064px;
}

.form,
.form__label,
.auto-input-mirror,
.form__input,
.form__input::placeholder {
    color: var(--natural-700);
    font-size: 48px;
    font-weight: 400;
}

.form__input {
    padding: 0;
    border: none;
    color: var(--primary);
    background-color: transparent;
    position: relative;
    line-height: 1;
    border-bottom: 1px solid var(--natural-400);
    transition: all 0.3s ease-in-out;
}

.form__input:focus,
.form__input:not(:placeholder-shown) {
    border-color: var(--primary);
}

.form__input::placeholder {
    opacity: 0.24;
}

/* ======== contact sections style end ============ */

/* ======== faq section style start ============ */
.faq__wrapper {
    padding: 48px;
    border-radius: 2px;
    margin-bottom: 32px;
}

.faq .blockText__pretitle {
    padding-bottom: 128px;
}

.faq .accordion-item {
    padding: 48px 0;
    border-radius: 2px;
    border-top: 1px solid var(--natural-300) !important;
    border-bottom: 1px solid var(--natural-300) !important;
}

.faq .accordion-button {
    padding: 0;
    box-shadow: unset;
    color: var(--natural-700);
    gap: 16px;
}

.faq .accordion-button:not(.collapsed) {
    background-color: unset;
}

.faq .accordion-button::after {
    display: none;
}

.faq__number {
    font-size: 48px;
}

.faq__text {
    max-width: 44%;
    font-size: 28px;
    margin-top: 4px;
    margin-left: 10%;
}

.faq__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    border-radius: 2px;
    border-bottom-right-radius: 16px;
    border: 1px solid var(--natural-300);
    margin-top: 8px;
}

.faq__icon__line {
    width: 18px;
    height: 2px;
    display: inline-block;
    border-radius: 4px;
    background-color: var(--natural-700);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

.faq .accordion-button .faq__icon__line--two {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq .accordion-button[aria-expanded='true'] .faq__icon__line--one {
    transform: translate(-50%, -50%) rotate(-180deg);
}

.faq .accordion-button[aria-expanded='true'] .faq__icon__line--two {
    transform: translate(-50%, -50%) rotate(0);
}


.faq .accordion-body {
    font-size: 18px;
    padding: 32px 0 0;
    color: var(--natural-600);
}

.accordion-body__content {
    max-width: 44%;
    line-height: 1.32;
    margin-left: 10%;
}

/* ======== faq section style end ============ */

/* ======== footer style start ============ */
.footer--area {
    background-color: #721516;
}

.footer__top {
    padding: 88px 0 80px;
}

.footer__top__title {
    font-size: 48px;
}

.footer__contact__wrap {
    gap: 32px;
}

.footer__contact__item__inner {
    gap: 6px;
    font-size: 14px;
    color: var(--white-color);
    text-decoration: none;
    line-height: 1;
    margin-bottom: 0;
}

.footer__contact__item__inner .icon {
    width: 20px;
    height: 20px;
}

.footer__middle {
    padding-bottom: 80px;
}

.copyright-text,
.copyright-text a,
.footer__nav__link {
    color: rgba(238, 235, 229, 0.4);
    font-size: 12px;
}

.copyright-text a:hover,
.footer__nav__link:hover {
    color: #eeebe5;
}

.footer__nav__wrapper {
    gap: 56px;
}

.footer__logo {
    width: 100%;
}

/* ======== footer style end ============ */



/* ===========Offcanvas-Menu============ */

.offcanvas {
    /* From https://css.glass */
    /* From https://css.glass */
    background: rgba(238, 235, 229, 0.75);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.3px);
    -webkit-backdrop-filter: blur(9.3px);
    border: 1px solid rgba(238, 235, 229, 0.61);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(238, 235, 229, 0.45);
    margin-bottom: 30px;
}

.offcanvas-title img {
    max-width: 140px;
}

.offcanvas-menu ul li a {
    display: block;
    text-decoration: none;
    font-size: 32px;
    line-height: 1;
    padding: 18px 0px;
    color: var(--natural-600);
    font-family: var(--libre);
}

.offcanvas-menu ul li a:hover {
    text-decoration: underline;
    color: var(--primary);
}

.offcanvas-contact a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.3;
    padding: 8px 0px;
    color: var(--natural-600);
}

.offcanvas-contact a:hover {
    color: var(--primary);
}

.offcanvas {}

.offcanvas {}

.offcanvas {}

.offcanvas {}

.offcanvas {}

/* ===========Offcanvas-Menu============--end */