/* Futura Light */
@font-face {
    font-family: "Futura";
    src: url("/fonts/futura/futura-light-bt.ttf") format("truetype")
        url("/fonts/futura/futura-light.woff") format("woff");
    font-weight: 300;
}

/* Futura Regular */
@font-face {
    font-family: "Futura";
    src: url("/fonts/futura/futura-medium-bt.ttf") format("truetype")
        url("/fonts/futura/futura-medium.woff") format("woff");
    font-weight: 400;
}

/* Futura Bold */
@font-face {
    font-family: "Futura";
    src: url("/fonts/futura/futura-bold.ttf") format("truetype")
        url("/fonts/futura/futura-bold.woff") format("woff");
    font-weight: 700;
}

body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    min-width: 360px;
    /* background-image: url("/images/background_dots.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%; */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/background_dots.jpg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 360p;
    z-index: -1; /* Ensure it stays behind other content */
}

.body--admin {
    -webkit-user-select: auto; /* Safari */
    -ms-user-select: auto; /* IE 10 and IE 11 */
    user-select: auto; /* Standard syntax */
}

body {
    overflow: auto;
}

body,
button,
input,
textarea {
    font-family: "Futura", sans-serif;
    font-feature-settings: "locl" 0;
    margin: 0;
}
.common_landing__visually_hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.common_landing__hidden {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}

.common_landing__loader_container,
.common_landing__loader_container_fast {
    align-items: center;
    background-color: #fff;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    left: 0;
    position: fixed;
    text-align: center;
    /* transition: height 1s ease-out; */
    top: 0;
    width: 100%;
    z-index: 99;
}

.common_landing__loader_container {
    animation: remove 0.3s forwards linear 3.5s;
}

.common_landing__loader_container_fast {
    /* animation: remove_height 1s forwards linear 1.5s; */
}

.common_landing__loader {
    position: relative;
    /* animation: move_and_scale 1s forwards linear 3.5s; */
}

.common_landing__loader--1 {
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
    animation:
        draw 2s linear forwards,
        remove 1s linear forwards 1.5s;
}

.common_landing__loader--2 {
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
    animation: draw 2s linear forwards;
    animation-delay: 1s;
}

.common_landing__loader--4 {
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
    animation:
        draw 2s linear forwards,
        remove 1s linear forwards 1.5s;
}

.common_landing__loader--5 {
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
    animation: draw 2s linear forwards;
    animation-delay: 1s;
}

.common_landing__loader--3 {
    opacity: 0;
    animation: opacity_loader 4s linear forwards;
}

/* faster animation */
.common_landing__loader_fast--2 {
    /* stroke-dasharray: 1000;
    stroke-dashoffset: 1000; */
    /* animation: draw 0.5s linear forwards; */
}

.common_landing__loader_fast--3 {
    /* opacity: 0; */
    /* animation: opacity_loader 0.7s linear forwards; */
}

.common_landing__loader_fast--5 {
    /* stroke-dasharray: 1000;
    stroke-dashoffset: 1000; */
    /* animation: draw 0.5s linear forwards; */
}

.common_landing__loader_fast {
    animation: pulse 1s infinite;
}

.phone_number {
    text-decoration: none;
    color: inherit;
}
.swiper-pagination-bullet-active {
    background-color: #000 !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.common_landings__remove_appearence {
    -webkit-appearance: none;
    appearance: none;
}

@keyframes remove_height {
    0% {
        height: 100%;
    }
    90% {
        height: 0;
    }
    100% {
        height: 0;
        display: none;
    }
}

@keyframes move_and_scale {
    0% {
        transform: translate(0, 0) scale(1);
        position: relative;
    }
    60% {
        position: relative;
        transform: translate(-40%, 0) scale(0.4);
    }

    100% {
        transform: translate(-40%, -10%) scale(0.4);
    }
}

@keyframes opacity_loader {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes remove {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes draw_backwards {
    to {
        stroke-dashoffset: 2500;
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 700px) {
    p {
        font-size: 0.8125rem;
    }
}
@media (max-width: 500px) {
    .common_landing__loader {
        height: 100%;
    }
    body {
        background-size: 100% 360;
    }
}
