/* ===== >> Theme Variables CSS Start Here << ===== */
:root {
    /* Theme Color CSS */
    --primary: #EA7A00;
    --light-primary: #DB9753;
    --secondary: #235C82;
    --dark-blue: #1F567B;
    --light-blue: #A0D9FF;
    --black: #000000;
    --dark-gray: #2C2C2C;
    --white: #ffffff;
    --light-white: #FDF8F3;
    --light-gray: #DBDBDB;
    --very-dark-gray: #333333;
    --error: #E31837;
    --success: #28A745;
    --border-color: #dbdbdb36;
    /* Theme Font Family */
    --font-montserrat: 'Montserrat';
    --font-gluten: 'Gluten';
    /* Theme Font Size */
    --fs-50: 50px;
    --fs-40: 40px;
    --fs-34: 34px;
    --fs-32: 32px;
    --fs-30: 30px;
    --fs-28: 28px;
    --fs-24: 24px;
    --fs-20: 20px;
    --fs-18: 18px;
    --fs-17: 17px;
    --fs-16: 16px;
    --fs-13: 13px;
    /* Theme Spacing */
    --space-300: clamp(80px, 16vw, 300px);
    --header-bottom-space: 130px;
    --space-245: 245px;
    --space-210: clamp(80px, 12vw, 210px);
    --space-110: clamp(60px, 6vw, 110px);
    --space-100: 100px;
    --space-80: 80px;
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-30: 30px;
    --space-20: 20px;
    --space-15: 15px;
    --space-12: 12px;
    --space-10: 10px;

    @media(max-width: 1649px) {
        --header-bottom-space: 110px;
    }

    @media(max-width: 1399px) {
        --header-bottom-space: 100px;
    }

    @media(max-width: 1199px) {
        --header-bottom-space: 80px;
    }
}

img,
video {
    max-width: 100%;
    height: auto;
}

input:not(input[type="submit"], input[type="reset"]),
textarea,
select,
button {
    outline: none;
}

/* ===== >> Theme Variables CSS Close Here << ===== */
/* ===== >> Global CSS Start Here << ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-montserrat);
    color: var(--dark-gray);
    font-size: var(--fs-18);
    line-height: 1.4;
    font-weight: 400;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* ===== >> Global CSS Close Here << ===== */
/* ===== >> Container CSS Start Here << ===== */
.container,
.hero-slider .slick-dots {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

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

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}


/* ===== >> Container CSS Close Here << ===== */
/* ===== >> Theme Common Classes CSS Start Here  << ===== */
/* Background Color Classes */
.bg-primary {
    background-color: var(--primary);
}

.bg-light-primary {
    background-color: var(--light-primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.bg-black {
    background-color: var(--black);
}

.bg-dark-gray {
    background-color: var(--dark-gray);
}

.bg-white {
    background-color: var(--white);
}

.bg-light-white {
    background-color: var(--light-white);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-very-dark-gray {
    background-color: var(--very-dark-gray);
}

.bg-error {
    background-color: var(--error);
}

.bg-success {
    background-color: var(--success);
}

/* Text Color Classes */
.text-primary {
    color: var(--primary);
}

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

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

.text-dark-blue {
    color: var(--dark-blue);
}

.text-light-blue {
    color: var(--light-blue);
}

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

.text-dark-gray {
    color: var(--dark-gray);
}

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

.text-light-white {
    color: var(--light-white);
}

.text-light-gray {
    color: var(--light-gray);
}

.text-very-dark-gray {
    color: var(--very-dark-gray);
}

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

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

/* Font Family Utility */
.font-montserrat {
    font-family: var(--font-montserrat);
}

/* Font Size Utility Classes */
.fs-50 {
    font-size: clamp(30px, 2.55vw, 50px);
}

.fs-40 {
    font-size: clamp(26px, 2.5vw, 40px);
}

.fs-34 {
    font-size: clamp(24px, 4vw, 34px);
}

.fs-32 {
    font-size: clamp(22px, 4vw, 32px);
    ;
}

.fs-30 {
    font-size: clamp(22px, 1.9vw, 30px);
}

.fs-28 {
    font-size: clamp(22px, 2.25vw, var(--fs-28));
}

.fs-24 {
    font-size: clamp(20px, 2.5vw, var(--fs-24));
}

.fs-20 {
    font-size: clamp(18px, 2.3vw, var(--fs-20));
}

.fs-18 {
    font-size: clamp(16px, 1.5vw, var(--fs-18));
}

.fs-17 {
    font-size: clamp(16px, 4vw, var(--fs-17));
}

.fs-16 {
    font-size: 16px;
}

.fs-13 {
    font-size: var(--fs-13);
}

/* Text Alignment Classes Utility */
.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

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

/* Font Weight Classes Utility */

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-w-black {
    font-weight: 900;
}

/* Display Classes Utility */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.inline-block {
    display: inline-block;
}

/* Flex Classes Utility */
.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Justify Classes */
.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

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

/* Align Items Classes */
.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

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

/* Width Height Classes */
.w-fit {
    width: fit-content;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

/* Border Radius Classes  */
.rounded-full {
    border-radius: 100%;
}

/* Position Classes  */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-middle {
    top: 50%;
    transform: translateY(-50%);
}

/* header-below-space  */

/* Global Popup */
.popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background-color: rgb(0 0 0 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-100%);
    z-index: 999;
    height: 100%;
    overflow: auto;
    transition: all .5s ease-in-out;
}

.popup-wrap.open-popup {
    opacity: 1;
    transform: translateY(0);
}