@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*VARIABLES*/

:root {
    --yellow: #ffc857;
    --black: #1c1c1c;
    --gray: #f3f3f3;
    --green: #0acf97;
    --blue: #0047bb;
    --red: #fa5c7c;
    --dark-gray: #566377;
    --border-color: rgba(72, 94, 144, 0.16);
    --b-light: #f3f6f9;
    --b-dark: #212529;
    --b-body-color: #212529;
    --b-border-color: #e9ebec;
    --font-min: 0.8em;
    --font-small: 0.875em;
    --font-normal: 1em;
    --font-medium: 1.2em;
    --font-large: 1.4em;
    --font-max: 2em;
    --weight-light: 300;
    --weight-normal: 400;
    --weight-strong: 600;
    --weight-bold: 700;
    --weight-black: 900;
    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;
}

body {
    overflow-x: hidden;
    background: var(--gray);
    font-size: 12px;
}

html {
    scroll-behavior: smooth;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover {
    color: #4a6cf7;
}

button {
    border: none;
    background: none;
    font: inherit;
}

button,
a {
    transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

i,
a {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 0;
}

.img-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.para-width-500 {
    max-width: 500px;
    width: 100%;
}

@media (max-width: 767px) {
    .container {
        padding: 0 30px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--black);
    margin: 0;
}

/* Margin-left */
.ml-15 {
    margin-left: 15px;
}

/* Margin-right */
.mr-20 {
    margin-right: 20px;
}

.mx-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

/* Padding-top */
.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

/*
==========================================================================
Loading Animation System by Neale Van Fleet from Rogue Amoeba
==========================================================================
*/
.animate {
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-name: animate-fade;
    animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
    animation-fill-mode: backwards;
}

/* Fade In */
.animate.fade {
    animation-name: animate-fade;
    animation-timing-function: ease;
}

@keyframes animate-fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Pop In */
.animate.pop {
    animation-name: animate-pop;
}

@keyframes animate-pop {
    0% {
        opacity: 0;
        transform: scale(0.5, 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

/* Blur In */
.animate.blur {
    animation-name: animate-blur;
    animation-timing-function: ease;
}

@keyframes animate-blur {
    0% {
        opacity: 0;
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

/* Glow In */
.animate.glow {
    animation-name: animate-glow;
    animation-timing-function: ease;
}

@keyframes animate-glow {
    0% {
        opacity: 0;
        filter: brightness(3) saturate(3);
        transform: scale(0.8, 0.8);
    }
    100% {
        opacity: 1;
        filter: brightness(1) saturate(1);
        transform: scale(1, 1);
    }
}

/* Grow In */
.animate.grow {
    animation-name: animate-grow;
}

@keyframes animate-grow {
    0% {
        opacity: 0;
        transform: scale(1, 0);
        visibility: hidden;
    }
    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

/* Splat In */
.animate.splat {
    animation-name: animate-splat;
}

@keyframes animate-splat {
    0% {
        opacity: 0;
        transform: scale(0, 0) rotate(20deg) translate(0, -30px);
    }
    70% {
        opacity: 1;
        transform: scale(1.1, 1.1) rotate(15deg);
    }

    85% {
        opacity: 1;
        transform: scale(1.1, 1.1) rotate(15deg) translate(0, -10px);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1) rotate(0) translate(0, 0);
    }
}

/* Roll In */
.animate.roll {
    animation-name: animate-roll;
}

@keyframes animate-roll {
    0% {
        opacity: 0;
        transform: scale(0, 0) rotate(360deg);
    }
    100% {
        opacity: 1;
        transform: scale(1, 1) rotate(0deg);
    }
}

/* Flip In */
.animate.flip {
    animation-name: animate-flip;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes animate-flip {
    0% {
        opacity: 0;
        transform: rotateX(-120deg) scale(0.9, 0.9);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg) scale(1, 1);
    }
}

/* Spin In */
.animate.spin {
    animation-name: animate-spin;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes animate-spin {
    0% {
        opacity: 0;
        transform: rotateY(-120deg) scale(0.9, 0.9);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1, 1);
    }
}

/* Slide In */
.animate.slide {
    animation-name: animate-slide;
}

@keyframes animate-slide {
    0% {
        opacity: 0;
        transform: translate(0, 20px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Drop In */
.animate.drop {
    animation-name: animate-drop;
    animation-timing-function: cubic-bezier(.77, .14, .91, 1.25);
}

@keyframes animate-drop {
    0% {
        opacity: 0;
        transform: translate(0, -300px) scale(0.9, 1.1);
    }
    95% {
        opacity: 1;
        transform: translate(0, 0) scale(0.9, 1.1);
    }
    96% {
        opacity: 1;
        transform: translate(10px, 0) scale(1.2, 0.9);
    }
    97% {
        opacity: 1;
        transform: translate(-10px, 0) scale(1.2, 0.9);
    }
    98% {
        opacity: 1;
        transform: translate(5px, 0) scale(1.1, 0.9);
    }
    99% {
        opacity: 1;
        transform: translate(-5px, 0) scale(1.1, 0.9);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1, 1);
    }
}

/* Animation Delays */

.delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 1.5s;
}

.delay-3 {
    animation-delay: 2s;
}

@media screen and (prefers-reduced-motion: reduce) {
    .animate {
        animation: none !important;
    }
}

/* Ajax load */

.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    border: 16px solid #fbb20f;
    border-top: 16px solid #fff;
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;
    animation: spin 1.2s linear infinite;
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: var(--weight-strong);
}

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