@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/Inter-Regular-optimized.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/Inter-Medium-optimized.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/Inter-Bold-optimized.woff2') format('woff2');
    font-display: swap;
}

:root {
    --container-width: 1150px;
    --color-primary: cadetblue;
    --font-family: 'Inter', sans-serif;
}

body {
    background-color: #def3f8;
    font-family: var(--font-family);
    font-size: 13px;
}

.container {
    width: 100%;
    margin: 0 auto;
}

@media (min-width:1024px) {
    .container {
        width: 1000px !important;
    }
    .fun-list{
        right:calc(50% - 500px);
    }
}

@media (min-width:1280px) {
    .container {
        width: 1150px !important;
    }
    .fun-list{
        right:calc(50% - 600px);
    }
}

@media(min-width:769px) {
    .container {
        width: 768px;
    }
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-sm {
    font-size: 0.8rem;
}

.text {
    font-size: 1.2rem;
}

.text-md {
    font-size: 1.6rem;
}

.text-lg {
    font-size: 2rem;
}

@keyframes fadeEffect {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes pulse-animation-visit {
    0% {
        box-shadow: 0 0 0 0px rgba(84, 187, 213, 0.8)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

@keyframes pulse-animation-review {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 82, 129, 0.8)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

@keyframes pulse-animation-carousel-btn {
    0% {
        box-shadow: 0 0 0 0px rgba(227, 227, 227, 0.8)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}