@import url("https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap");

:root {
    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
    --font-sans: "Rubik", sans-serif;
    --font-serif: "Cardo", serif;
    --white-25: rgba(var(--bs-white-rgb), .25);
    --primary-pastel: #f1fbff;
}

body {
    font-family: var(--font-sans);
}

preloader {
    background-color: white;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
}

preloader>.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: var(--bs-success);
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: var(--bs-primary);
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 3;
    background-color: black;
    opacity: .5;
    display: none;
}

.fit-bg-img {
    object-fit: cover;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.floating-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    transition: all .3s ease-out;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.my-float {
    margin-top: 15.5px;
}

.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform .4s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.3);
}

.swiper-slide {
    height: auto !important;
}

.toastify {
    max-width: 33%;
}

.toastify.toast-info {
    background: rgba(var(--bs-info-rgb), .9);
}

.toastify.toast-success {
    background: rgba(var(--bs-success-rgb), .9);
}

.toastify.toast-warning {
    background: rgba(var(--bs-warning-rgb), .9);
    color: var(--bs-gray-800);
}

.toastify.toast-error {
    background: rgba(var(--bs-danger-rgb), .9);
}

@media (max-width: 991px) {
    .toastify {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .toastify {
        max-width: 75%;
    }
}

.small-div {
    width: 8%;
    height: 2.5px;
    background-color: var(--bs-primary);
    margin: 1rem 0;
}