:root {
    --bs-primary: #e2e2e2; /* Primary color */
    --bs-primary-rgb: 226, 226, 226; /* RGB value for primary color */
    --bs-primary-bg-subtle: #f5f5f5; /* Subtle background color for primary */
    --bs-primary-border-subtle: #dcdcdc; /* Subtle border color for primary */
    --bs-primary-text-emphasis: #767872; /* Text emphasis color for primary */

    /* Secondary */
    --bs-secondary-color: #767872; /* Secondary text color */
    --bs-secondary-color-rgb: 118, 120, 114; /* RGB value for secondary text color */
    --bs-secondary-bg: #e2e3e5; /* Secondary background color */
    --bs-secondary-bg-rgb: 226, 227, 229; /* RGB value for secondary background color */

    /* Tertiary */
    --bs-tertiary-color: #c8c8c8; /* Tertiary text color */
    --bs-tertiary-color-rgb: 200, 200, 200; /* RGB value for tertiary text color */
    --bs-tertiary-bg: #f5f5f5; /* Tertiary background color */
    --bs-tertiary-bg-rgb: 245, 245, 245; /* RGB value for tertiary background color */

    /* Emphasis */
    --bs-emphasis-color: #495057; /* Emphasis text color */
    --bs-emphasis-color-rgb: 73, 80, 87; /* RGB value for emphasis text color */

    /* Border */
    --bs-border-color: #dcdcdc; /* Default border color */
    --bs-border-color-rgb: 220, 220, 220; /* RGB value for default border color */

    /* Success */
    --bs-success: #4caf50; /* Success color */
    --bs-success-rgb: 76, 175, 80; /* RGB value for success color */
    --bs-success-bg-subtle: #d1e7dd; /* Subtle background color for success */
    --bs-success-border-subtle: #81c784; /* Subtle border color for success */
    --bs-success-text-emphasis: #2c6b2f; /* Text emphasis color for success */

    /* Danger */
    --bs-danger: #f44336; /* Danger color */
    --bs-danger-rgb: 244, 67, 54; /* RGB value for danger color */
    --bs-danger-bg-subtle: #f8d7da; /* Subtle background color for danger */
    --bs-danger-border-subtle: #f48fb1; /* Subtle border color for danger */
    --bs-danger-text-emphasis: #58151c; /* Text emphasis color for danger */

    /* Warning */
    --bs-warning: #ffc107; /* Warning color */
    --bs-warning-rgb: 255, 193, 7; /* RGB value for warning color */
    --bs-warning-bg-subtle: #fff3cd; /* Subtle background color for warning */
    --bs-warning-border-subtle: #ffe69c; /* Subtle border color for warning */
    --bs-warning-text-emphasis: #664d03; /* Text emphasis color for warning */

    /* Info */
    --bs-info: #00bcd4; /* Info color */
    --bs-info-rgb: 0, 188, 212; /* RGB value for info color */
    --bs-info-bg-subtle: #cff4fc; /* Subtle background color for info */
    --bs-info-border-subtle: #9eeaf9; /* Subtle border color for info */
    --bs-info-text-emphasis: #055160; /* Text emphasis color for info */

    /* Light */
    --bs-light: #f1f1f1; /* Light color */
    --bs-light-rgb: 241, 241, 241; /* RGB value for light color */
    --bs-light-bg-subtle: #fcfcfd; /* Subtle background color for light */
    --bs-light-border-subtle: #e9ecef; /* Subtle border color for light */
    --bs-light-text-emphasis: #434343; /* Text emphasis color for light */

    /* Dark */
    --bs-dark: #212121; /* Dark color */
    --bs-dark-rgb: 33, 33, 33; /* RGB value for dark color */
    --bs-dark-bg-subtle: #ced4da; /* Subtle background color for dark */
    --bs-dark-border-subtle: #adb5bd; /* Subtle border color for dark */
    --bs-dark-text-emphasis: #434343; /* Text emphasis color for dark */

    /* Additional */
    --bs-gradient: linear-gradient(
        180deg,
        rgba(226, 226, 226, 0.15),
        rgba(226, 226, 226, 0)
    );
    --bg-custom: linear-gradient(
        90deg,
        rgba(200, 200, 200, 1) 0%,
        rgba(168, 143, 108, 0.25) 100%
    );

    /* shadows */
    --shadow-custom-primary: 0px 4px 40px rgba(0, 0, 0, 0.05);
    --shadow-custom-secondary: 0px 4px 1rem rgba(0, 0, 0, 0.05);
}

/* items */
.shadow-item-hover {
    background: white;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0px 4px 1rem rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.3s;
}
.shadow-item-hover:hover {
    transform: translateY(-1rem);
    box-shadow: 0px 60px 80px rgba(168, 143, 108, 0.07),
        0px 22px 46.8519px rgba(0, 0, 0, 0.0531481),
        0px 19px 25.4815px rgba(0, 0, 0, 0.0425185),
        0px 20px 13px rgba(0, 0, 0, 0.035);
}
.shadow-item {
    background: white;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
}
/* items */

/* containers wrappers */
.container {
    max-width: 1440px !important;
    margin: auto;
    padding: 50px 20px;
}
.background {
    background: var(--bg-custom);
}
.bg-rounded {
    background: var(--bs-light);
    border-radius: 1000px;
    padding: 10px 15px;
}

.bg-f5f5f5 {
    background: var(--bs-tertiary-bg);
    border-radius: 8px;
    padding: 16px 24px;
    width: fit-content;
}
/* containers wrappers */

/* swiper */

.swiper1 {
    /* width: 100vw; */
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.swiper1 .swiper-slide img {
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper1 .swiper-slide {
    width: 100%;
    height: 100%;
    user-select: none;
    overflow: hidden;
}

.overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0) 25%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 0) 75%,
        rgba(0, 0, 0, 0) 100%
    );
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0.7;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-secondary-color) !important;
}

.swiper-pagination-bullet-active {
    background: var(--bs-secondary) !important;
}

.swiper2 {
    overflow: hidden;
    width: 100%;
}

.swiper2 .swiper-slide {
    width: 100%;
    height: 100%;
    user-select: none;
    max-height: 320px;
    max-width: 680px;
}
.swiper2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 320px;
    max-width: 680px;
}

.swiper3 .swiper-wrapper {
    transition-timing-function: linear !important;
    transition-delay: 0ms !important;
}
.swiper3 .swiper-slide {
    width: 256px !important;
    height: 102px !important;
}
.swiper3 {
    overflow: hidden;
    padding: 100px;
    margin: -20px 0px;
}

.swiper3 .swiper-slide img {
    width: 256px;
    height: 102px;
    object-fit: contain;
}

.mySwiper4 .swiper-wrapper {
    margin: -50px 0px;
    padding: 50px 0px;
}

.mySwiper4 .swiper-slide {
    width: 400px;
    height: 150px;
    user-select: none;
    box-shadow: var(--shadow-custom-primary);
}
.mySwiper4 .swiper-slide img {
    width: 400px;
    height: 150px;
    object-fit: contain;
}

.mySwiper5 {
    box-shadow: var(--shadow-custom-primary);
}
.mySwiper5 .swiper-slide {
    width: 100vw;
    height: 70vh;
    user-select: none;
}
.mySwiper5 .swiper-slide img {
    width: 100%;
    height: 70vh;
    object-fit: contain;
}

/* swiper */

/* button */
.btn {
    border-radius: 30px;
    font-size: 12px;
    padding: 10px 30px;
}
/* button */

.collapse {
    visibility: visible !important;
}

/* inputs */
.input-base {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.input-base:focus-visible {
    border: none;
}
/* inputs */

/* video */

.video-overlay {
    overflow: hidden;
    border-radius: 100px;
    width: 150px;
    height: 150px;
    position: relative;
    border: 10px solid var(--bs-primary);
    transition: 1s;
}

.video-overlay-play {
    overflow: auto;
    height: 650px;
    border: none;
    left: -20px;
    top: -100px;
    position: absolute;
    border-radius: 0px;
    width: 100vw;
    max-width: 1440px;
}

#close {
    position: absolute;
    top: -70px;
    right: -45px;
}

/* video */
.border-dashed-overlay {
    border: dashed !important;
}

.menu-button {
    display: none;
}

.contact-form {
    width: 260px;
}

#video-wrapper {
    position: absolute;
    left: 200px;
}

#video {
    height: 650px;
}

.large-text {
    font-size: 216px;
}

.inner-text {
    position: absolute;
    top: 100px;
    left: 25%;
    font-size: 27px;
    width: 100px;
}

.video-container {
    display: flex;
    column-gap: 300px;
    row-gap: 250px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.number-items {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 8px;
}

.cursor-tracking {
    position: relative;
    box-shadow: rgba(118, 120, 114, 0.7) 15px 15px 30px 0px;
}

.Phone {
    position: relative;
    display: block;
    margin: 0;
    width: 55px;
    height: 55px;
    font-size: 25vmin;
    background: var(--bs-secondary);
    border-radius: 0.5em;
    box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0),
        0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
    transform: translate3d(0, 0, 0) scale(1);
}

.Phone::before,
.Phone::after {
    position: absolute;
    content: '';
}

.Phone::before {
    top: 0;
    left: 0;
    width: 55px;
    height: 55px;
    background-color: rgba(226, 226, 226, 0.5);
    border-radius: 100%;
    transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
}

.Phone::after {
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYuNiAxMC44YzEuNCAyLjggMy44IDUuMSA2LjYgNi42bDIuMi0yLjJjLjMtLjMuNy0uNCAxLS4yIDEuMS40IDIuMy42IDMuNi42LjUgMCAxIC40IDEgMVYyMGMwIC41LS41IDEtMSAxLTkuNCAwLTE3LTcuNi0xNy0xNyAwLS42LjQtMSAxLTFoMy41Yy41IDAgMSAuNCAxIDEgMCAxLjIuMiAyLjUuNiAzLjYuMS40IDAgLjctLjIgMWwtMi4zIDIuMnoiIGZpbGw9IiNmZmZmZmYiLz48L3N2Zz4=);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate3d(0, 0, 0);
}

.Phone.is-animating {
    animation: phone-outer 3000ms infinite;

    &::before {
        animation: phone-inner 3000ms infinite;
    }

    &::after {
        animation: phone-icon 3000ms infinite;
    }
}

@keyframes phone-outer {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0),
            0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
    }
    33.3333% {
        transform: translate3d(0, 0, 0) scale(1.1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1),
            0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
    }
    66.6666% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0),
            0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0),
            0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
    }
}

@keyframes phone-inner {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(0);
    }
    33.3333% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(0.9);
    }
    66.6666% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0);
    }
}

@keyframes phone-icon {
    0% {
        transform: translate3d(0em, 0, 0);
    }
    2% {
        transform: translate3d(0.01em, 0, 0);
    }
    4% {
        transform: translate3d(-0.01em, 0, 0);
    }
    6% {
        transform: translate3d(0.01em, 0, 0);
    }
    8% {
        transform: translate3d(-0.01em, 0, 0);
    }
    10% {
        transform: translate3d(0.01em, 0, 0);
    }
    12% {
        transform: translate3d(-0.01em, 0, 0);
    }
    14% {
        transform: translate3d(0.01em, 0, 0);
    }
    16% {
        transform: translate3d(-0.01em, 0, 0);
    }
    18% {
        transform: translate3d(0.01em, 0, 0);
    }
    20% {
        transform: translate3d(-0.01em, 0, 0);
    }
    22% {
        transform: translate3d(0.01em, 0, 0);
    }
    24% {
        transform: translate3d(-0.01em, 0, 0);
    }
    26% {
        transform: translate3d(0.01em, 0, 0);
    }
    28% {
        transform: translate3d(-0.01em, 0, 0);
    }
    30% {
        transform: translate3d(0.01em, 0, 0);
    }
    32% {
        transform: translate3d(-0.01em, 0, 0);
    }
    34% {
        transform: translate3d(0.01em, 0, 0);
    }
    36% {
        transform: translate3d(-0.01em, 0, 0);
    }
    38% {
        transform: translate3d(0.01em, 0, 0);
    }
    40% {
        transform: translate3d(-0.01em, 0, 0);
    }
    42% {
        transform: translate3d(0.01em, 0, 0);
    }
    44% {
        transform: translate3d(-0.01em, 0, 0);
    }
    46% {
        transform: translate3d(0em, 0, 0);
    }
}
