@font-face {
    font-family: 'Amore Dreaming Sans Serif';
    src: url('../fonts/AmoreDreamingSansSerif.woff2') format('woff2'),
        url('../fonts/AmoreDreamingSansSerif.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'The Dodger Inky';
    src: url('../fonts/TheDodgerInky.woff2') format('woff2'),
        url('../fonts/TheDodgerInky.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* =============== Media Queries =============== */

:root {
    --color-bg: #B9CAD6;
    --color-light: #fff;
    --color-primary: #4B7574;
    --color-secondary: #81787C;
    --color-tertiary:#A16E34;
    --color-text: #6F506B;

    --font-Primary: 'Poppins', sans-serif;
    --font-secondary: 'The Dodger Inky', sans-serif;
    --font-tertiary: 'Amore Dreaming Sans Serif';
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    -moz-transition: 0.4s all ease-in-out;
    -ms-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--color-light);
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
img,
blockquote,
figure,
label {
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    font-weight: normal;
    vertical-align: middle;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.img-fluid {
    display: block;
    max-width: 100%;
    height: auto;
}

blockquote {
    border: 0;
}

.custom-btn:focus {
    outline: none;
}

.lazyload,
.lazyloading {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 300ms;
}

.container {
    max-width: 1382px;
    width: 100%;
    padding: 0px 15px;
    margin: 0 auto;
}   

@media screen and (max-width:1512px) and (min-width:991px) {
    .container {
        max-width: 91.402vw;
        padding: 0px 0.992vw;
    }
}
@media screen and (max-width:991px) {
    .container {
        max-width: 767px;
    }
}
