@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


:root {
    --color-white: #fff;
    --color-light: #f3f3f3;
    --color-bg: #1B3F79;
    --color-scondary: #1C6031;
    --color-bg-light: #F7F7F7;
    --color-bg-dark: #172136;
    --color-gray: #efefef;
    --color-dark-gray: #d2d2d2;
    --color-light-gray: #f5f5f5;
    --color-text-primary: #3F3F3F;
    --color-dark: #172136;
    --color-accent: #1C6031;
    --color-hover: #2C579C;
    --bs-dark-text-emphasis: #495057;
    --bs-primary-bg-subtle: #cfe2ff;
    --bs-secondary-bg-subtle: #e2e3e5;
    --bs-success-bg-subtle: #d1e7dd;
    --bs-info-bg-subtle: #cff4fc;
    --bs-warning-bg-subtle: #fff3cd;
    --bs-danger-bg-subtle: #f8d7da;
    --bs-light-bg-subtle: #fcfcfd;
    --bs-dark-bg-subtle: #ced4da;
    --bs-primary-border-subtle: #9ec5fe;
    --bs-secondary-border-subtle: #c4c8cb;
    --bs-success-border-subtle: #a3cfbb;
    --bs-info-border-subtle: #9eeaf9;
    --bs-warning-border-subtle: #ffe69c;
    --bs-danger-border-subtle: #f1aeb5;
    --bs-light-border-subtle: #e9ecef;
    --bs-dark-border-subtle: #adb5bd;
    --font-size-12: 0.75rem;
    --font-size: 1rem;
    --font-size-14: 0.857rem;
    --font-size-18: 1.125rem;
    --font-size-20: 1.25rem;
    --font-size-24: 1.5rem;
    --font-size-30: 1.875rem;
    --font-size-36: 2.25rem;
    --font-size-40: 2.5rem;
    --font-size-50: 3.125rem;
    --font-size-64: 3.75rem;
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;
    --weight-800: 800;
    --font-sans-serif: "Rubik", sans-serif;
    --font-tittle: "DM Serif Text", serif;
    --color-gradient: linear-gradient(180deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0));
}

body {
    margin: 0;
    padding: 0;
    transition: background-color 0.5s;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    overflow-x: hidden !important;
}

*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

*:focus {
    outline: 0;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #bdbdbd;
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg);
    border-radius: 5px;
}

body {
    background-color: #F6F6F6;
    color: var(--color-text-primary);
    font-family: var(--font-sans-serif);
    font-optical-sizing: auto;
    font-size: 16px;
    font-style: normal;
    font-weight: var(--weight-400);
    line-height: 1.75rem;
    visibility: visible;
    -webkit-transition: opacity 0.24s ease-in-out;
    -moz-transition: opacity 0.24s ease-in-out;
    transition: opacity 0.24s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    font-family: var(--font-sans-serif);
    font-weight: var(--weight-700);
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0;
    text-transform: inherit;
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.625rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.375rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 0.5rem;
}

small {
    font-size: var(--font-size-14);
}

table,
pre,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fs-10 {
    font-size: 0.625rem !important;
}

.fs-11 {
    font-size: 0.6875rem !important;
}

.fs-12 {
    font-size: 0.75rem !important;
}

.fs-13 {
    font-size: 0.8125rem !important;
}

.fs-14 {
    font-size: 0.875rem !important;
}

.fs-15 {
    font-size: 0.9375rem !important;
}

.fs-16 {
    font-size: 1rem !important;
}

.fs-18 {
    font-size: 1.125rem !important;
}

.fs-20 {
    font-size: 1.25rem !important;
}

.fs-22 {
    font-size: 1.375rem !important;
}

.fs-24 {
    font-size: 1.5rem !important;
}

.fs-26 {
    font-size: 1.625rem !important;
}

.fs-28 {
    font-size: 1.75rem !important;
}

.fs-30 {
    font-size: 1.875rem !important;
}

.fs-36 {
    font-size: 2.25rem !important;
}

/* .fs-md-30 {
    font-size: 1.75rem !important;
} */

.lh-1 {
    line-height: 1 !important;
}

.lh-1-1 {
    line-height: 1.1 !important;
}

.lh-1-2 {
    line-height: 1.2 !important;
}

.lh-1-3 {
    line-height: 1.3 !important;
}

.lh-1-4 {
    line-height: 1.4 !important;
}

.lh-1-5 {
    line-height: 1.5 !important;
}

.lh-1-6 {
    line-height: 1.6 !important;
}

.lh-1-7 {
    line-height: 1.7 !important;
}

.lh-1-8 {
    line-height: 1.8 !important;
}

.lh-1-9 {
    line-height: 1.9 !important;
}

.lh-2 {
    line-height: 2 !important;
}

.img-fit {
    max-height: 100%;
    width: 100%;
    object-fit: cover !important;
}

.line-1 {
    border-top: 1px dashed var(--color-secondary-light);
}

@media (min-width: 1080px) {
    .fs-lg-50 {
        font-size: 50px !important;
    }

    .fs-lg-42 {
        font-size: 42px !important;
    }
}

@media (min-width: 991px) {
    .fs-md-36 {
        font-size: 36px !important;
    }

    .fs-md-32 {
        font-size: 32px !important;
    }
}

@media (min-width: 768px) {
    .fs-md-24 {
        font-size: 24px !important;
    }
}

.w-auto {
    width: auto;
}

.w-5px,
.size-5px {
    width: 5px;
}

.w-10px,
.size-10px {
    width: 10px;
}

.w-15px,
.size-15px {
    width: 15px;
}

.w-20px,
.size-20px {
    width: 20px;
}

.w-25px,
.size-25px {
    width: 25px;
}

.w-30px,
.size-30px {
    width: 30px;
}

.w-35px,
.size-35px {
    width: 35px;
}

.w-40px,
.size-40px {
    width: 40px;
}

.w-45px,
.size-45px {
    width: 45px;
}

.w-48px,
.size-48px {
    width: 48px;
}

.w-50px,
.size-50px {
    width: 50px;
}

.w-60px,
.size-60px {
    width: 60px;
}

.w-64px,
.size-64px {
    width: 64px;
}

.w-70px,
.size-70px {
    width: 70px;
}

.w-80px,
.size-80px {
    width: 80px;
}

.w-90px,
.size-90px {
    width: 90px;
}

.w-100px,
.size-100px {
    width: 100px;
}

.w-110px,
.size-110px {
    width: 110px;
}

.w-120px,
.size-120px {
    width: 120px;
}

.w-130px,
.size-130px {
    width: 130px;
}

.w-140px,
.size-140px {
    width: 140px;
}

.w-150px,
.size-150px {
    width: 150px;
}

.w-160px,
.size-160px {
    width: 160px;
}

.w-170px,
.size-170px {
    width: 170px;
}

.w-180px,
.size-180px {
    width: 180px;
}

.w-190px,
.size-190px {
    width: 190px;
}

.w-200px,
.size-200px {
    width: 200px;
}

.w-210px,
.size-210px {
    width: 210px;
}

.w-220px,
.size-220px {
    width: 220px;
}

.w-230px,
.size-230px {
    width: 230px;
}

.w-240px,
.size-240px {
    width: 240px;
}

.w-250px,
.size-250px {
    width: 250px;
}

.w-260px,
.size-260px {
    width: 260px;
}

.w-270px,
.size-270px {
    width: 270px;
}

.w-280px,
.size-280px {
    width: 280px;
}

.w-290px,
.size-290px {
    width: 290px;
}

.w-300px,
.size-300px {
    width: 300px;
}

.w-310px,
.size-310px {
    width: 310px;
}

.w-320px,
.size-320px {
    width: 320px;
}

.w-330px,
.size-330px {
    width: 330px;
}

.w-340px,
.size-340px {
    width: 340px;
}

.w-350px,
.size-350px {
    width: 350px;
}

.w-360px,
.size-360px {
    width: 360px;
}

.w-370px,
.size-370px {
    width: 370px;
}

.w-380px,
.size-380px {
    width: 380px;
}

.w-390px,
.size-390px {
    width: 390px;
}

.w-400px,
.size-400px {
    width: 400px;
}

.w-410px,
.size-410px {
    width: 410px;
}

.w-420px,
.size-420px {
    width: 420px;
}

.w-450px,
.size-450px {
    width: 450px;
}

.w-470px,
.size-470px {
    width: 470px;
}

.w-500px,
.size-500px {
    width: 500px;
}

.w-530px,
.size-530px {
    width: 530px;
}

.w-553px,
.size-553px {
    width: 553px;
}

.w-640px,
.size-640px {
    width: 640px;
}

.w-800px,
.size-800px {
    width: 820px;
}

.h-auto {
    height: auto;
}

.h-5px,
.size-5px {
    height: 5px;
}

.h-10px,
.size-10px {
    height: 10px;
}

.h-15px,
.size-15px {
    height: 15px;
}

.h-20px,
.size-20px {
    height: 20px;
}

.h-25px,
.size-25px {
    height: 25px;
}

.h-30px,
.size-30px {
    height: 30px;
}

.h-35px,
.size-35px {
    height: 35px;
}

.h-40px,
.size-40px {
    height: 40px;
}

.h-45px,
.size-45px {
    height: 45px;
}

.h-48px,
.size-48px {
    height: 48px;
}

.h-50px,
.size-50px {
    height: 50px;
}

.h-60px,
.size-60px {
    height: 60px;
}

.h-64px,
.size-64px {
    height: 64px;
}

.h-70px,
.size-70px {
    height: 70px;
}

.h-80px,
.size-80px {
    height: 80px;
}

.h-90px,
.size-90px {
    height: 90px;
}

.h-100px,
.size-100px {
    height: 100px;
}

.h-110px,
.size-110px {
    height: 110px;
}

.h-120px,
.size-120px {
    height: 120px;
}

.h-130px,
.size-130px {
    height: 130px;
}

.h-140px,
.size-140px {
    height: 140px;
}

.h-150px,
.size-150px {
    height: 150px;
}

.h-160px,
.size-160px {
    height: 160px;
}

.h-170px,
.size-170px {
    height: 170px;
}

.h-180px,
.size-180px {
    height: 180px;
}

.h-185px,
.size-185px {
    height: 185px;
}

.h-190px,
.size-190px {
    height: 190px;
}

.h-200px,
.size-200px {
    height: 200px;
}

.h-210px,
.size-210px {
    height: 210px;
}

.h-220px,
.size-220px {
    height: 220px;
}

.h-230px,
.size-230px {
    height: 230px;
}

.h-240px,
.size-240px {
    height: 240px;
}

.h-250px,
.size-250px {
    height: 250px;
}

.h-260px,
.size-260px {
    height: 260px;
}

.h-270px,
.size-270px {
    height: 270px;
}

.h-280px,
.size-280px {
    height: 280px;
}

.h-290px,
.size-290px {
    height: 290px;
}

.h-300px,
.size-300px {
    height: 300px;
}

.h-310px,
.size-310px {
    height: 310px;
}

.h-320px,
.size-320px {
    height: 320px;
}

.h-330px,
.size-330px {
    height: 330px;
}

.h-340px,
.size-340px {
    height: 340px;
}

.h-350px,
.size-350px {
    height: 350px;
}

.h-360px,
.size-360px {
    height: 360px;
}

.h-370px,
.size-370px {
    height: 370px;
}

.h-380px,
.size-380px {
    height: 380px;
}

.h-390px,
.size-390px {
    height: 390px;
}

.h-400px,
.size-400px {
    height: 400px;
}

.h-410px,
.size-410px {
    height: 410px;
}

.h-420px,
.size-420px {
    height: 420px;
}

.h-460px,
.size-460px {
    height: 460px;
}

.h-470px,
.size-470px {
    height: 470px;
}

.h-490px,
.size-490px {
    height: 490px;
}

.h-500px,
.size-500px {
    height: 500px;
}

.h-530px,
.size-530px {
    height: 530px;
}

.h-640px,
.size-640px {
    height: 640px;
}

.h-800px,
.size-800px {
    height: 820px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

iframe {
    max-width: 100%;
}

.img-fluid {
    width: 100%;
}

a,
a:hover,
button,
button:hover,
input[type="submit"],
input[type="submit"]:hover {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:focus {
    text-decoration: none;
}

button,
input,
select,
select option,
textarea,
input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.active-text,
.active-link,
.active-link:focus {
    color: var(--color-green);
    font-weight: var(--weight-400);
    display: inline-block;
}

.active-link:hover {
    text-decoration: none;
    color: var(--color-green);
}

a,
dt {
    color: var(--color-text-primary);
    outline: none;
    text-decoration: none;
}

a:focus,
a:hover,
dt:hover,
dt:focus {
    color: var(--color-green);
    text-decoration: none;
}

.btn {
    outline: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:active,
.btn.active {
    outline: none;
    box-shadow: none;
}

/******** custom-btn ********/
.custom-btn {
    position: relative;
    background: #1C6031;
    border-radius: 4px;
    outline: none;
    border: 1px solid #1C6031;
    color: var(--color-white);
    cursor: pointer;
    font-weight: var(--weight-500);
    font-size: var(--font-size-14);
    padding: 8px 24px;
    transition: all 0.3s ease;
    appearance: none;
    text-decoration: none;
    text-transform: capitalize;
}

.custom-btn:hover,
.custom-btn:focus {
    background: #288445;
    border: 1px solid #1C6031;
    color: var(--color-white);
}

.custom-btn span {
    line-height: 1.5rem;
    font-size: var(--font-size);
    margin-left: 8px;
}

.outline-btn {
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid var(--color-bg-dark);
    color: var(--color-bg-dark);
    outline: none;
    cursor: pointer;
    font-weight: var(--weight-500);
    font-size: var(--font-size-14);
    padding: 8px 24px;
    transition: all 0.3s ease;
    appearance: none;
    text-decoration: none;
    text-transform: capitalize;
}

.outline-btn:hover {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-bg-dark);
    color: var(--color-white);
}

.btn-white {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn-white:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    color: var(--color-accent);
}

.view-btn {
    background-color: transparent;
    border: 1px solid var(--color-dark-gray);
    color: var(--color-bg);
    padding: 8px 20px;
}

.btn-read {
    display: inline-block;
    position: relative;
    color: #1D6C39;
    font-size: var(--font-size-14);
    font-style: normal;
    font-weight: var(--weight-500);
    text-decoration: none;
    text-transform: capitalize;
}

.btn-read span {
    font-size: var(--font-size-18);
    margin-left: 10px;
}

.btn-read:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1D6C39;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.btn-read:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.btn-read:hover,
.btn-read:focus {
    background-color: none;
    border: none;
    box-shadow: none;
    outline: none;
    color: #1D6C39;
}


.form-group {
    position: relative;
}

input,
textarea,
select,
button {
    outline: none;
    font-size: 0.875rem;
}

input.form-control,
.form-select,
textarea.form-control,
select.form-control,
.form-select {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid var(--color-text-primary);
    height: 50px;
    font-size: var(--font-size-14) !important;
    padding: 10px;
    line-height: 35px;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    background-color: transparent;
    border: 1px solid var(--color-dark);
    outline: none;
    box-shadow: none;
    border-color: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -moz-webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-webkit-appearance: textfield;
}

textarea.form-control {
    height: 100px;
}

.form-control.ndate-picker {
    background-color: var(--color-white);
}

.form-label {
    margin-bottom: 0.2rem;
}

label {
    display: inline-block;
    font-weight: var(--weight-500);
    font-size: var(--font-size-14);
    margin-bottom: 0;
    line-height: 1.25rem;
}

.form-floating>label {
    opacity: 1;
    padding: 0.6rem 0.55rem;
}

.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    opacity: 1;
}

.title-widget {
    position: relative;
    z-index: 1;
}

.title-widget h1,
.title-widget h2,
.title-widget h3,
.title-widget h4,
.title-widget h5,
.title-widget h6 {
    position: relative;
    color: #172136;
    font-weight: var(--weight-600);
    font-style: normal;
    font-size: 2.5rem;
    line-height: 2.8rem;
    text-transform: capitalize;
    letter-spacing: 0;
    -webkit-animation: animatedIntro 1.5s;
    -ms-animation: animatedIntro 1.5s;
    -o-animation: animatedIntro 1.5s;
    animation: animatedIntro 1.5s;
}

.sub__tittle {
    position: relative;
    color: #F68C1D;
    line-height: 120%;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.sub__tittle span.title-line {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    top: -6px;
    width: 60px;
    height: 1px;
    background: #F68C1D;
}

.tit__sm {
    color: var(--color-text-primary);
    display: block;
    font-size: var(--font-size-14);
    font-weight: 500;
}


.bg-primary-subtle {
    background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-success-subtle {
    background-color: #e9f6f0 !important;
}

.position-relative {
    position: relative !important;
    z-index: 2;
}

.py-100 {
    padding: 100px 0;
}

.pt-130 {
    padding-top: 130px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-80 {
    padding: 80px 0;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.py-60 {
    padding: 60px 0;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.py-50 {
    padding: 50px 0;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.py-30 {
    padding: 30px 0;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.py-20 {
    padding: 20px 0;
}

.pt-20 {
    padding-top: 20px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.p-0 {
    padding: 0 !important;
}

.p-s-0 {
    padding-left: 0 !important;
}

.p-e-0 {
    padding-right: 0 !important;
}

.ps-40 {
    padding-left: 40px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-10 {
    margin-bottom: 10px;
}

hr {
    background-color: #dcdcdc;
    opacity: 1;
    margin: 0.5rem 0;
}


.radius-4 {
    border-radius: 0.25rem;
}

.radius-8 {
    border-radius: 0.5rem;
}

.radius-16 {
    border-radius: 1rem;
}

.radius-24 {
    border-radius: 1.5rem;
}

.line {
    width: 100%;
    height: 1px;
    margin-top: 10px;
    border-bottom: 1px solid var(--color-gray);
}

.opacity-bg {
    background-color: rgba(64, 45, 41, 0.06);
}

.section-content {
    position: relative;
    padding: 50px 0 50px 0;
}

main.section-all {
    min-height: 700px;
}

.container-fluid {
    padding: 0 90px;
}

.radius-2 {
    border-radius: 2px;
}

.radius-4 {
    border-radius: 4px;
}

.radius-8 {
    border-radius: 8px;
}

.bg-color-1 {
    background-color: var(--color-light);
}

.bg-color-2 {
    background-color: var(--color-bg-dark);
}

.bg-color-3 {
    background-color: var(--color-gray);
}

.bg-color-opacity {
    background-color: rgba(139, 157, 194, 0.05);
}

.wdt-heading-holder {
    position: relative;
}

/******** header ********/
header {
    position: relative;
    background-color: #ffffff;
}

.header-top {
    position: relative;

}

header .logo-widget:before,
.header .logo-widget:before {
    position: absolute;
    left: -9999px;
    right: 0;
    top: 0;
    bottom: -30px;
    content: "";
    /* z-index: 1; */
    background-color: #F7F7F7;
}

.nav-brand {
    display: inline-block;
    line-height: inherit;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.logo-widget {
    position: relative;
    background: #F7F7F7;
    padding: 10px 30px 10px 0;
    float: left;
}

/* .nav-brand img {
    width: 130px;
    height: 130px;
    overflow: hidden;
} */


.header-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.h-rit {
    margin-top: 38px;
    margin-bottom: 38px;
    margin-left: 30px;
}

.top__info {
    position: relative;
    display: flex;
    align-items: center;
}

.cont__box {
    display: flex;
    text-align: center;
    width: 40px;
    margin-right: 10px;
    margin-top: 10px;
}

.cont__box span {
    color: #149C32;
    font-size: 30px;
}

.text_sm {
    color: #6A6A6A;
    font-weight: var(--weight-500);
    font-size: 12px;
    line-height: 12px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
}

.t__sm {
    color: #4E5921;
    line-height: 14px;
    margin: 0;
    padding: 0;
}


/* Sticky Menu Styles */
.main_header_area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 99999;
    /* Ensures it stays on top of all other content */

    /* Matches your dark blue menu bar background color */
    background-color: #0d3578;
    /* Replace with your exact hex or var(--color-bg) */

    /* Optional: Adds a subtle shadow when scrolling for a cleaner look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
    /* Smooth entrance animation */
}

/* Optional animation to smoothly slide the sticky menu into view */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Ensures inner elements expand fully if a Bootstrap container is restricting them */
.main_header_area.sticky .container {
    max-width: 100%;
    padding-left: 30px;
    /* Adjust padding so your logo/menu items don't hit the absolute edge */
    padding-right: 30px;
}

/* Sticky Menu Styles */
.main_header_area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 99999;

    /* Background color of the full-width strip */
    background-color: #173f7a;
    /* Use your exact background color variable or hex */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease-out;
}

/* Keyframe for smooth transition */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Keep the container behaving normally so items stay 
   aligned with your website grid, instead of hitting the viewport edge.
*/
.main_header_area.sticky .container {
    /* This removes the edge-to-edge stretch and restores standard container bounds */
    max-width: var(--bs-max-width, 1320px);
    /* Adjust based on your theme's max container width */
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--bs-gutter-x, .75rem);
    padding-right: var(--bs-gutter-x, .75rem);
}

.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: stickyTransition;
    animation-name: stickyTransition;
}

.sticky .nav-menus-wrapper {
    width: 100%;
}

.nav_rit {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 16px;
    float: right;
}

.main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.navbar-icons-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-nav .navbar-icons-2 .user-dropdown-icon {
    position: relative;
}

.navbar-icons-2 .searchbar-open a,
.navbar-icons-2 .user-dropdown-icon a {
    position: relative;

}

.navbar-icons-2 .searchbar-open {
    margin-right: 0;
}

.navbar-icons-2 .user-dropdown-icon {
    position: relative;
}

.navbar-icons-2 .user-dropdown-icon i a {
    font-size: 20px;
    cursor: pointer;
}

.search-box {
    position: relative;
    vertical-align: middle;
    margin-left: 30px;
}

.openBtn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.25rem;
    vertical-align: middle;
    text-align: center;
}

.openBtn span {
    color: #ffffff;
    font-size: 1.25rem;
}

.openBtn:hover {
    background: transparent;
}

.overlay {
    height: 200px;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(207, 226, 255, 0.97) 0%, rgba(247, 251, 255, 0.97) 100%);
}

.overlay-content {
    position: relative;
    top: 20%;
    width: 40%;
    text-align: left;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #ffffff;
    z-index: 99999;
    font-size: 24px;
    background-color: #044687;
    height: 36px;
    width: 36px;
    text-align: center;
    line-height: 34px;
    border-radius: 100px;
}

.overlay .closebtn:hover {
    color: var(--color-bg-light);
}

.search-form {
    position: relative;
    border-bottom: 1px solid #c4d9f8;
    width: 100%;
}

.overlay input[type="text"] {
    padding: 16px 0;
    font-size: 18px;
    border: none;
    float: left;
    width: 1000%;
    background: transparent;
}

.overlay input[type="text"]:hover {
    background: transparent;
}

.overlay button {
    float: left;
    width: auto;
    padding: 15px;
    background: transparent;
    color: var(--color-bg-dark);
    font-size: 24px;
    border: none;
    cursor: pointer;
}

.overlay button:hover {
    background: transparent;
}


.main-nav .navbar-icons-2 .searchbar-open i a,
header .header-area .main-nav .navbar-icons-2 .user-dropdown-icon i a {
    color: #1F3307 !important;
    font-size: 20px;
    cursor: pointer;
}

.slider-banner {
    position: relative;
}

.slider-banner::after {
    content: '';
    position: absolute;
    background: url(../assets/images/banner__pattern.png) no-repeat;
    height: 23px;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.slider-banner .carousel-inner .carousel-item {
    display: block;
    height: 100%;
    min-height: 1px;
}

.slider-banner .carousel-inner .carousel-item img {
    display: block;
    object-fit: cover;
    object-position: center center;
    height: 745px;
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.carousel-control-next {
    right: 2%;
}

.carousel-control-prev {
    left: 2%;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 45%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    width: 42px;
    height: 42px;
    line-height: 35px;
    border-radius: 100%;
    border: 0;
    transition: opacity .15s ease;
    z-index: 2;
}

.slider-banner .carousel-control-next-icon {
    background-image: inherit;
}

.slider-banner .carousel-control-prev-icon {
    background-image: inherit;
}

.slider-caption {
    position: absolute;
    top: 35%;
    width: 100%;
    z-index: 1;
}

.inner-text {
    position: relative;
    background-color: rgb(0, 0, 0, 0.6);
    border-radius: 10px;
    display: inline-block;
    overflow: hidden;
    width: 40%;
    padding: 30px;
}

.inner-text h1 {
    color: #ffffff;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    font-size: 42px;
    line-height: 46px;
}

.btn__sm-text {
    display: block;
}

.seller-section {
    background: linear-gradient(90deg, rgba(250, 247, 255, 1) 0%, rgba(232, 250, 255, 1) 50%, rgba(234, 230, 255, 1) 100%);
}

.box__activities {
    background-color: rgba(103, 103, 103, 0.8);
    border-radius: 65px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    padding: 5px 24px;
    margin: 0 6px;
}

.box__activities:hover {
    background-color: var(--color-bg);
    border-radius: 65px;
    color: #ffffff;
}

.box__activities span {
    font-size: 18px;
    margin-right: 8px;
}

.tl-card__body_2 {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    border-radius: 0 0 8px 8px;
    background-color: transparent;
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 40px 20px 20px 20px;
    text-align: left;
    z-index: 1;
}

.tl-card__category_2 {
    color: var(--color-white);
}

.tl-card__count_2 {
    color: var(--color-white);
    font-weight: 500;
}


.container-card {
    position: relative;
    transition: all 0.4s ease;
    transform: translateY(0);
}

/* 
.container-card:hover {
    transform: translateY(-8px);
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    border-radius: 8px;
    overflow: hidden;
} */


.imgBox {
    position: relative;
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.imgBox img {
    resize: both;
    transition: 0.4s ease;
}

.image-frame {
    position: relative;
    display: inline-block;
}

.image-frame img {
    display: block;
    width: 100%;
}

.container-card:hover .imgBox img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    transition: 0.4s ease;
}

.seller-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.seller-tag_1 {
    position: absolute;
    left: 10px;
    top: 10px;
}

.ribbon {
    width: 108px;
    height: 108px;
    overflow: hidden;
    position: absolute;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #F68C1D;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 175px;
    padding: 5px 48px;
    background-color: #F68C1D;
    font-size: 12px;
    color: #fff;
}

/* top right*/
.ribbon-top-right {
    top: -3px;
    right: -3px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon-top-right::before {
    top: 0;
    left: 0;
}

.ribbon-top-right::after {
    bottom: 0;
    right: 0;
}

.ribbon-top-right span {
    left: -22px;
    top: 22px;
    transform: rotate(45deg);
}

.ribbon-1 {
    width: 108px;
    height: 108px;
    overflow: hidden;
    position: absolute;
}

.ribbon-1::before,
.ribbon-1::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #E82323;
}

.ribbon-1 span {
    position: absolute;
    display: block;
    width: 175px;
    padding: 5px 70px;
    background-color: #E82323;
    font-size: 12px;
    color: #fff;
}

/* top right*/
.ribbon-top-right-1 {
    top: -3px;
    right: -3px;
}

.ribbon-top-right-1::before,
.ribbon-top-right-1::after {
    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon-top-right-1::before {
    top: 0;
    left: 0;
}

.ribbon-top-right-1::after {
    bottom: 0;
    right: 0;
}

.ribbon-top-right-1 span {
    left: -22px;
    top: 22px;
    transform: rotate(45deg);
}


.ribbon-2 {
    width: 108px;
    height: 108px;
    overflow: hidden;
    position: absolute;
}

.ribbon-2::before,
.ribbon-2::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #089F3E;
}

.ribbon-2 span {
    position: absolute;
    display: block;
    width: 175px;
    padding: 5px 70px;
    background-color: #089F3E;
    font-size: 12px;
    color: #fff;
}

/* top right*/
.ribbon-top-right-1 {
    top: -3px;
    right: -3px;
}

.ribbon-top-right-1::before,
.ribbon-top-right-1::after {
    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon-top-right-1::before {
    top: 0;
    left: 0;
}

.ribbon-top-right-1::after {
    bottom: 0;
    right: 0;
}

.ribbon-top-right-1 span {
    left: -22px;
    top: 22px;
    transform: rotate(45deg);
}

.ribbon-2 {
    width: 108px;
    height: 108px;
    overflow: hidden;
    position: absolute;
}

.ribbon-2::before,
.ribbon-2::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #089F3E;
}

.ribbon-2 span {
    position: absolute;
    display: block;
    width: 175px;
    padding: 5px 70px;
    background-color: #089F3E;
    font-size: 12px;
    color: #fff;
}

/* top right*/
.ribbon-top-right-2 {
    top: -3px;
    right: -3px;
}

.ribbon-top-right-2::before,
.ribbon-top-right-2::after {
    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon-top-right-2::before {
    top: 0;
    left: 0;
}

.ribbon-top-right-2::after {
    bottom: 0;
    right: 0;
}

.ribbon-top-right-2 span {
    left: -22px;
    top: 22px;
    transform: rotate(45deg);
}

.shadow-wrap {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.pkg__bg {
    position: relative;
    background: url(../assets/images/Background\ square.png);
}

.pkg__bg-pattern {
    position: relative;
}

.pkg__bg-pattern::after {
    content: '';
    position: absolute;
    top: -22px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url(../assets/images/banner__pattern.png) no-repeat center;
    z-index: 1;
}

.favourite {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    color: #6693cb;
}

.pkg-wrap-content {
    position: relative;
    padding: 10px 15px 30px 15px;
}

.pkg-wrap-content h4 {
    color: #1E4182;
}

.pptag_info {
    position: relative;
}

.p__tag sub {
    color: var(--color-text-primary);
    font-size: var(--font-size-14);
    font-weight: var(--weight-600);
}

.p__tag {
    color: #1D6C39;
    font-size: 18px;
    font-weight: 700;
}

.p__tag strike {
    font-size: 13px;
    font-weight: 500;
    color: #434343;
    margin-left: 3px;
}

.c-rating {
    position: relative;
}

.c-rating span i {
    color: #F68C1D;
}

.c-rating ul {
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.c-rating ul li {
    color: #F68C1D;
    display: inline-block;
    line-height: 12px;
    font-size: 14px;
    margin-right: 0;
    overflow: hidden;
}

.c-rating ul li span {
    color: var(--color-text-primary);
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

.why-section {
    position: relative;
    background: url(../assets/images/trekkers_with_backpacks.png) bottom right;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.why-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* background-color: rgb(30, 65, 130, 0.6); */
    background-color: rgb(40, 74, 135, 0.8);
    /* background: linear-gradient(90deg, rgba(30, 65, 130, 0.9) 0%, rgba(30, 65, 130, 0.6) 100%); */
    z-index: 1;
}


.w_icon {
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #284A87;
    color: #ffffff;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    margin-right: 15px;
}

.title_1 {
    margin-left: 65px;
}

.w_icon span {
    color: #ffffff;
    font-size: 24px;
}

.tl-card__body {
    position: absolute;
    text-align: center;
    z-index: 1;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    border-radius: 0 0 8px 8px;
    background-color: transparent;
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 40px 20px 50px 20px;
    text-align: center;
    z-index: 1;
}

.tl-card__category {
    color: var(--color-white);
    font-size: 32px;
}

.tl-card__count {
    color: var(--color-white);
    font-weight: 500;
}


.destination-section {
    position: relative;
    z-index: 2;
}

.destination-section::before,
.destination-section::after {
    position: absolute;
    content: '';
    background: url(../assets/images/banner__pattern.png) center bottom;
    height: 23px;
    width: 100%;
    bottom: 100%;
}

.destination-section::before {
    bottom: 100%;
}

.destination-section::after {
    top: 100%;
    transform: rotateX(180deg);
}

.popular-activities {
    position: relative;
    background: url(../assets/images/bg__destination.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 70px 0 160px 0;
}

.popular-activities::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(30, 65, 130, 0.95);
    z-index: 1;
}

.flex-item {
    position: relative;
    padding: 30px 20px;
    height: auto;
    margin-top: 10px;
    text-align: center;
    height: 100%;
}

.item-1 {
    background-color: #ffffff;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}


.testimonials-section {
    position: relative;
    background-attachment: scroll;
    width: 100%;
    height: 100%;
}

.testimonials-wrap {
    position: relative;
    padding: 40px 30px 40px 30px;
    margin-top: -80px;
    z-index: 2;
}

.client__wrap {
    position: relative;
    background-color: #eeeeee;
    height: 100%;
    padding: 30px;
}

.client__text {
    font-size: 18px;
    font-style: italic;
}

.t-img-box {
    position: relative;
    float: left;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
}

.t-img-box img {
    position: relative;
    float: left;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
}


.tl-card__body-1 {
    position: absolute;
    text-align: center;
    z-index: 1;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    border-radius: 8px 8px 0 0;
    background-color: transparent;
    background-image: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 20px 20px 60px 20px;
    text-align: left;
    z-index: 1;
}

.tl-card__category-1 {
    color: var(--color-white);
    text-decoration: underline;
}

.tl-card__count-1 {
    color: var(--color-white);
    font-weight: 500;
}

.b-date {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
}

.blog-text {
    text-align: left !important;
}


.subscribe-from {
    position: relative;
}

.subscribe__text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0;
}

.subscribe-from {
    position: relative;
}

.subscribe {
    width: 100%;
    position: relative;
}

.subscribe .form-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 0 20px !important;
    height: 50px;
}

.subscribe .form-control input {
    background: #ffffff;
    border: 1px solid #5CABEF;
}


.subscribe input.form-control:focus {
    background: #ffffff !important;
    border: 1px solid #5CABEF !important;
}

.subscribe .btn {
    background-color: #5CABEF;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 500;
    padding: 10px;
    width: 100%;
    height: 50px;
}

.subscribe .btn span {
    margin-left: 10px;
}

.subscribe .btn:hover {
    background-color: #1b4e7a;
}

.associted-list ul {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.associted-list ul li {
    list-style: none;
    display: inline-block;
    justify-content: center;
    margin: 0 10px 0 10px;
}

.associted-list ul li img {
    width: auto;
    height: 55px;
}

.associted-container {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    top: 46px;
}

.payment-card ul {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.payment-card ul li {
    list-style: none;
    display: inline-block;
}

.payment-card ul li img {
    width: auto;
    height: 36px;
}

/******footer******/

footer {
    position: relative;
    background-color: #044687;
    margin-top: -3px;
}

.footer__img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.footer__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


.footer-logo {
    background-color: #F7F7F7;
    display: inline-block;
    padding: 10px 20px;
}

.footer-links {
    position: relative;
    padding-bottom: 40px;
}

.footer__tittle {
    position: relative;
    color: var(--color-white);
    line-height: 120%;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
}

.footer__tittle span.title-line {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    top: -6px;
    width: 60px;
    height: 1px;
    background: #fff;
}

.cnt__icons {
    background-color: #5CACF0;
    border-radius: 100%;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    float: left;
    margin-right: 10px;
    overflow: hidden;
}

.cnt__icons span {
    color: #ffffff;
    font-size: var(--font-size-18);
}

.cnt-title {
    color: var(--color-white);
    display: block;
    font-size: 12px;
    line-height: 1.5em;
    text-transform: capitalize;
}

.cnt-text {
    color: var(--color-white) !important;
    font-size: 14px;
    line-height: 20px;
    display: block;
}

.cnt-text a {
    color: var(--color-white) !important;
}

.cnt-text a:hover {
    color: var(--color-white) !important;
}

.cnt-text span {
    display: block;
}

.listing {
    padding-left: 0;
}

.listing li {
    position: relative;
    color: var(--color-white);
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 32px;
}

.listing li a {
    color: var(--color-white);
}

.listing li a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer_extra {
    border-radius: 8px;
    padding: 0 20px 10px 20px;
}

.svg-inline--fa {
    vertical-align: -0.2em;
}

.rounded-social-buttons {
    position: relative;
}

.rounded-social-buttons .social-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border: 0.125rem solid transparent;
    padding: 0;
    text-decoration: none;
    text-align: center;
    color: #fefefe;
    font-size: 16px;
    font-weight: normal;
    line-height: 32px;
    border-radius: 1.6875rem;
    transition: all 0.5s ease;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover,
.rounded-social-buttons .social-button:focus {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter,
.fa-facebook-f,
.fa-linkedin,
.fa-tiktok,
.fa-youtube,
.fa-instagram {
    font-size: 16px;
}

.rounded-social-buttons .social-button.facebook {
    background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover,
.rounded-social-buttons .social-button.facebook:focus {
    color: #3b5998;
    background: #fefefe;
    border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
    background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover,
.rounded-social-buttons .social-button.twitter:focus {
    color: #55acee;
    background: #fefefe;
    border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
    background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover,
.rounded-social-buttons .social-button.linkedin:focus {
    color: #007bb5;
    background: #fefefe;
    border-color: #007bb5;
}

.rounded-social-buttons .social-button.tiktok {
    background: #000000;
}

.rounded-social-buttons .social-button.tiktok:hover,
.rounded-social-buttons .social-button.tiktok:focus {
    color: #000000;
    background: #fefefe;
    border-color: #000000;
}

.rounded-social-buttons .social-button.youtube {
    background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover,
.rounded-social-buttons .social-button.youtube:focus {
    color: #bb0000;
    background: #fefefe;
    border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
    background: #1E4182;
}

.rounded-social-buttons .social-button.instagram:hover,
.rounded-social-buttons .social-button.instagram:focus {
    color: #1E4182;
    background: #fefefe;
    border-color: #1E4182;
}

.footer-bottom {
    background-color: #4A7905;
    padding-bottom: 10px;
}

.cpy-info p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
}

.cpy-info p a {
    color: #1A1C1E;
}

.cpy-info p a:hover {
    color: var(--color-bg);
    text-decoration: underline;
}

.foter__links {
    padding-left: 0;
}

.foter__links li {
    display: inline-block;
    font-size: 14px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #979797;
    line-height: 14px;
}

.foter__links li a {
    color: #1A1C1E;
}

.foter__links li:last-child {
    padding-left: 0 !important;
    border-right: none;
}

.foter__links li a {
    padding-left: 0 !important;
    border-right: none;
}

.powerby {
    float: right;
}

/******** all page css *******/

.page-title {
    position: relative;
    padding-top: 20px;
    display: flex;
    justify-content: end;
}

.page-title li {
    font-size: 14px;
    font-weight: var(--weight-500);
    color: var(--color-text-primary);
    text-transform: capitalize;
    line-height: 20px;
    text-align: right;
    display: inline-flex;
    justify-content: end;
}

.page-title li a {
    color: var(--color-bg-dark);
}

.page-title li+li::before {
    content: "\f054";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    font-size: 10px;
    display: inline-block;
    margin: 0 5px 0 8px;
}


ul.list-item {
    padding-left: 0 !important;
}

.list-item li {
    position: relative;
    color: var(--color-text-primary);
    font-size: 16px;
    font-weight: 500;
    list-style: disc;
    list-style-position: inside;
    line-height: 32px;
    margin: 0;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* .rating-rate span {
    color: var(--color-orange);
} */

.btn_1 {
    border: 1px solid var(--color-bg);
    height: 30px;
    width: 30px;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 24px;
}

.btn-icon {
    width: 15px;
    height: 15px;
    stroke: var(--color-bg);
}

.btn_1:hover {
    background-color: var(--color-bg);
}

.btn_1:hover .btn-icon {
    stroke: #fff;
}

.page-link:link,
.page-link:visited {
    text-decoration: none;
    color: var(--color-bg);
    font-size: 15px;
    height: 30px;
    width: 30px;
    border-radius: 2px;
    border: 1px solid var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link:hover,
.page-link:active,
.page-link.page-link--current {
    background-color: var(--color-bg);
    color: #fff;
}

.small-devices {
    display: none;
}

.sm-screen {
    display: none;
}

.blogcontent {
    padding: 20px;
}

.toc-list-item {
    font-size: 15px;
    margin-bottom: 10px;
}

/**** deatils*****/

.site__pageinner {
    position: relative;
    /* background-color: #F8FAFF; */
    padding-bottom: 80px;
    padding-top: 0;
}

.banner__with--gallery {
    position: relative;
}

.banner__grid {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-gap: 10px;
    max-height: 420px;
}

.banner__img {
    display: block;
    width: 100%;
    height: 200px;
}

.banner__img {
    cursor: pointer;
    grid-column: span 4;
    margin: 0;
    background: #000;
}

.banner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__img:first-child {
    height: 420px;
}

.banner__img:first-child {
    grid-row: span 2;
    grid-column: span 8;
}

@media (min-width: 768px) {

    .banner__img:first-child,
    .banner__grid.owl-carousel .owl-item:first-child {
        grid-row: span 2;
        height: 410px;
    }
}

.view-gallery {
    position: absolute;
    right: 0;
    top: 78%;
    z-index: 111;
    background: #05405e;
    color: var(--color-white);
    padding: 6px 24px;
    border-radius: 3px 0 0 3px;
}

.view-gallery span {
    vertical-align: center;
    margin-right: 5px;
}

#openGallery {
    color: var(--color-white);
    transition: all 0.3s ease-out;
    cursor: pointer;
}

#openGallery a:hover {
    color: var(--color-hover);
    text-decoration: none;
    outline: none;
}


.trip-plan-box {
    position: relative;
    /* height: 100%; */
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
}

.price_tag {
    color: #1E4182;
    font-size: 28px;
    font-weight: 800;
}

.price_tag sub {
    color: var(--color-text-primary);
    font-size: var(--font-size-12);
    font-weight: var(--weight-400);
    text-transform: capitalize;
}

.price_tag span {
    color: var(--color-text-primary);
    display: block;
    font-weight: var(--weight-500);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.favourite-icon {
    color: var(--color-bg);
    font-size: 24px;
}

.side-list ul {
    padding-left: 0;
}

.side-list ul li {
    color: var(--color-text-primary);
    list-style: none;
    list-style-position: inside;
    display: block;
    margin: 1px 4px 1px 0;
    padding-left: 0;
    font-size: 14px;
}

.side-list ul li span {
    color: var(--color-bg-dark);
    margin-right: 6px;
}

.dropdown-menu {
    background-color: #ebebeb;
    border: none;
    color: var(--color-text-primary);
    padding: 0;
}

.dropdown-menu .dropdown-item {
    color: var(--color-text-primary);
    border-bottom: 1px solid #dcdcdc;
    font-weight: 500;
    font-size: 14px;
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
    background-color: #ebebeb;
}

/***tabs-details***/
.package-navbar {
    position: relative;
    margin-top: -5px;
    display: none;
}

.stickys {
    position: fixed;
    background-color: var(--color-bg);
    color: var(--color-white);
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    /* box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px; */
    z-index: 999;
}

.stickys .tripdetails__header .package-navbar {
    display: block;
}

.stickys .page-title-area {
    padding-top: 10px;
}

.stickys .pagetitle h3 {
    font-size: 24px;
}

.stickys .nav-tabs {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
}

.content-part {
    position: relative;
}

.nav-tabs .nav-link {
    border-color: unset !important;
    color: var(--color-white);
    display: block;
    font-size: var(--font-size-14);
    font-weight: var(--weight-700);
    padding: 16px 20px;
    margin-right: 0;
    text-transform: uppercase;
}

.nav-tabs .nav-link span {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin-bottom: 0px;
    margin-right: 5px;
}

.nav-tabs .nav-link span i {
    font-size: 16px;
    line-height: 16px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--color-white);
    border-color: unset !important;
    border-radius: 0;
    border-radius: 0;
    cursor: pointer;
    display: block;
    display: block;
    font-size: var(--font-size-14);
    font-weight: var(--weight-700);
    padding: 16px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    align-items: center;
    white-space: nowrap;
    background-color: transparent;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: unset !important;
    color: #F68C1D;
    background-color: transparent;
    border-radius: 0;
}

.nav-item .nav-link,
.nav-tabs .nav-link {
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
}

.nav-tabs {
    border: 0;
}

.nav-tabs:not(.nav-tabs-neutral)>.nav-item>.nav-link.active {
    box-shadow: none;
}

.nav-tabs .nav-link {
    border: none;
}

.details-section {
    position: relative;
}

.section-tripdetails {
    position: relative;
}

.tripdetails__section {
    position: relative;
    padding: 0;
}

.tripdetails__header {
    position: relative;
    background-color: var(--color-bg);
    /* box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px; */
}

/****itinerary****/

.tripfacts {
    background: #f2f2f2;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 18px;
}

.tripfacts ul {
    padding-left: 0;
}

.tripfacts ul li {
    font-size: 16px;
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

.duration {
    width: 15% !important;
    height: auto;
    float: left;
    border-right: 1px solid #d0d0d0;
    padding: 20px;
}

.facthead {
    display: block;
    margin-bottom: 20px;
    font-size: 18px !important;
    font-weight: 600;
    color: #333;
}

.facthead img {
    margin-right: 7px;
}

.duration span {
    font-size: 20px;
}

.meals {
    width: 20% !important;
    height: auto;
    float: left;
    border-right: 1px solid #d9d9d9;
    padding: 20px;
}

.accommodation {
    width: 20%;
    height: auto;
    float: left;
    border-right: 1px solid #d9d9d9;
    padding: 20px;
}

.activities {
    width: 20%;
    height: auto;
    float: left;
    border-right: 1px solid #d9d9d9;
    padding: 20px;
}

.price {
    width: 25%;
    height: auto;
    float: left;
    padding: 25px;
    text-align: center;
}

.pricehead {
    margin-bottom: 20px;
    font-size: 18px !important;
    font-weight: 600;
    color: #333;
}

.reduced {
    background: var(--color-bg-secondary);
    color: var(--color-white);
    margin-left: 20px;
    border-radius: 3px;
    padding: 6px 15px;
    font-size: 14px;
}

.oldprice {
    color: var(--color-text-primary);
    text-decoration: line-through;
    margin-left: 20px;
}

.pricestarts {
    font-size: 16px;
    color: var(--color-bg);
    margin-top: 10px;
    display: block;
}

.tripprice {
    display: block;
    font-size: 26px;
    /* margin-top: 10px; */
    font-weight: 700;
    color: var(--color-bg);
}

.title__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.iti-btn {
    background-color: var(--color-bg);
    color: var(--color-white);
    outline: none;
    padding: 6px 12px !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.iti-btn span {
    font-size: 14px;
    margin-left: 8px;
}

.iti-btn:hover {
    background-color: var(--color-hover);
    color: var(--color-white);
}

.iti-btn a {
    background-color: var(--color-hover);
    color: var(--color-white);
}

.itinerary {
    position: relative;
}

.itinerary>.accordion-item>button span {
    display: block;
    position: relative;
    font-size: var(--font-size);
    color: var(--color-dark);
    font-weight: var(--weight-600);
    padding-right: 10px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.itinerary>.accordion-item>button .t_days {
    display: inline-block;
    font-weight: 700;
}

.itinerary::before {
    content: "";
    border-left: 1px solid #4A7905;
    position: absolute;
    top: 41px;
    bottom: 30px;
    left: 7px;
    z-index: 1;
}

.itinerary>.accordion-item:first-child {
    padding-top: 20px;
}

.itinerary>.accordion-item {
    position: relative;
    padding: 6px 0 6px 35px;
}

.itinerary>.accordion-item:first-child::before {
    top: 24px;
}

.itinerary>.accordion-item:first-child::before,
.itinerary>.accordion-item:last-child::before {
    width: 27px;
    height: 27px;
    background: var(--color-dark);
    left: -6px;
    z-index: 1;
}

.itinerary>.accordion-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    background: #4A7905;
    border: 2px solid #4A7905;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    z-index: 9;
}

.itinerary>.accordion-item:first-child>i,
.itinerary>.accordion-item:last-child>i {
    position: absolute;
    color: #4A7905;
    left: 3px;
    top: 24px;
    z-index: 5;
    font-size: 12px;
    font-style: normal;
}

.icon-pin::before {
    content: "\f3c5";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.itinerary>.accordion-item:last-child::before {
    top: 10px;
}

.itinerary>.accordion-item:first-child::before,
.itinerary>.accordion-item:last-child::before {
    width: 27px;
    height: 27px;
    background: #4A7905;
    left: -6px;
    z-index: 1;
}

.icon-flag-pole12::before {
    content: "\f024";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.itinerary>.accordion-item:last-child>i {
    top: 12px;
}

.accordion-item {
    background-color: transparent;
    border: none;
}

.accordion-button h3 {
    font-size: 16px !important;
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #e3e3e3;
}

.itinerary-wrapper .accordion-collapse {
    border: 0;
}

.itinerary-wrapper .accordion-button {
    border: 0;
    color: var(--color-text-primary);
    text-align: left;
    border-bottom: 1px solid var(--color-gray);
    border-top: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.itinerary-wrapper .accordion-button:focus {
    box-shadow: none;
}

.itinerary-wrapper .accordion-button:not(.collapsed) {
    background: none;
    color: var(--color-bg);
}

.itinerary-wrapper .accordion-body {
    padding: 10px 0px;
}

.itinerary-wrapper .accordion-body p {
    font-size: 16px;
}

.tripdetails__content {
    background-color: rgba(235, 237, 236, 0.8);
    padding: 20px;
    border-radius: 8px;
}

.btn-sm {
    font-size: 14px;
    padding: 5px 12px;
}

.trip__list ul {
    padding-left: 0;
}

.trip__list h3 {
    position: relative;
    list-style: none;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
    padding-left: 24px;
}

.trip__list h3::after {
    position: absolute;
    content: "\f058";
    left: 0;
    top: 0;
    font-family: "Font Awesome\ 5 Free";
    font-style: normal;
    font-weight: 900;
    color: #96a100;
    font-size: 14px;
    background-color: transparent;
}

.exclude h3 {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
}

.exclude h3::after {
    color: #df160b;
    font-size: 16px !important;
    margin-right: 10px;
    margin-top: 2px;
    content: "\f057";
    font-weight: 900;
    width: auto;
    height: auto;
    border-radius: inherit;
    border: none;
}

.note-content {
    background-color: #def2e9;
    padding: 30px;
}

.cost-details {
    background-color: #f7f7f7;
    padding: 30px;
}

.cost__lists p {
    position: relative;
    color: var(--color-text-primary);
    list-style: none;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 12px;
    padding-left: 38px;
}

.cost__lists p::after {
    position: absolute;
    content: "\f00c";
    left: 0;
    top: 0;
    font-family: "Font Awesome\ 5 Free";
    font-style: normal;
    font-weight: 900;
    color: var(--color-bg-secondary);
    font-size: 14px;
    background-color: #c4e5ff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 100%;
}

.exclude_list p::after {
    position: absolute;
    content: "\f00d";
    left: 0;
    top: 0;
    font-family: "Font Awesome\ 5 Free";
    font-style: normal;
    font-weight: 900;
    color: var(--color-gray);
    font-size: 14px;
    background-color: var(--color-dark-red);
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 100%;
}

.map__wrap {
    border: 1px solid var(--color-gray);
    border-radius: 4px;
    padding: 30px;
}

.faq-holder .accordion-button {
    border-radius: 4px;
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 700;
    background: var(--color-white);
    /* border: 1px solid #cfcfcf; */
    margin-bottom: 8px;
}

.faq-holder .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    /* border: 1px solid var(--color-dark); */
    color: var(--color-dark);
    border: none;
    outline: 0;
    box-shadow: none;
}

.faq-holder .accordion-button:not(.collapsed) {
    background-color: none;
    /* border: 1px solid var(--color-dark); */
    color: var(--color-dark);
    box-shadow: none;
}

.review__info {
    float: left;
    width: 150px;
    margin-right: 20px;
}

.r__profile img {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
}

.client__info {
    margin-left: 170px;
}

.search-ajax-title {
    display: block;
    font-size: var(--font-size);
}

.search-ajax-year {
    display: inline-block;
    margin-right: 15px;
    min-width: 230px;
}

.applybtn {
    padding: 12px 32px;
    margin: 0;
}

.datecost-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-600);
    text-transform: uppercase;
}

.datecost-info {
    color: var(--color-dark);
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
}

.datecost-info small {
    font-size: var(--font-size-12);
    text-decoration: line-through;
}

.pptag {
    color: var(--color-bg);
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: capitalize;
}

.pptag strike {
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.table> :not(caption)>*>* {
    padding: 0.75rem 0.5rem 0.75rem 0;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: var(--color-light);
}

.table>thead {
    vertical-align: middle;
}

.blogcontent-card {
    position: relative;
    background-color: #effdff;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 1px 2px rgba(11, 60, 93, 0.4), 0 -1px 2px rgba(11, 60, 93, 0.04);
    padding: 25px;
}

.outline_btn {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--color-bg);
    border-radius: 4px;
    outline: none;
    color: var(--color-bg);
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-bg);
    padding: 6px 24px;
    transition: all 0.3s ease;
    appearance: none;
    text-decoration: none;
}

.outline_btn:hover {
    background-color: var(--color-bg);
    border: 1px solid var(--color-bg);
    color: var(--color-white);
}

.highlights {
    padding-top: 10px;
}

.highlights ul {
    /* display: inline-flex; */
    flex-wrap: wrap;
    padding-left: 0;
    margin: -2.25px -5px;
    font-size: 0.8375rem;
    font-weight: 600;
}

.highlights ul>li {
    list-style: none;
    list-style-position: inside;
    display: block;
    margin: 2.25px 5px;
    padding-left: 0;
}

.highlights ul>li span {
    margin-right: 6px;
}

.page-action ul {
    padding-left: 0;
}

.page-action ul li {
    background-color: var(--color-white)fff;
    border-radius: 3px;
    border: 1px solid #626262;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 0 8px;
}

.page-action ul li span {
    font-size: 18px;
    margin-right: 6px;
}

.dropdown {
    color: var(--color-text-primary) !important;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    z-index: 999;
}

.dropdown-menu1 {
    background-color: #f0f0f0;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    opacity: 0;
    text-align: center;
    top: 100%;
    visibility: hidden;
    z-index: -99999;
}

.dropdown-menu1 li {
    border: none !important;
    display: block !important;
}

.dropdown-menu1 li:first-child {
    cursor: default;
}

.dropdown-menu1 a {
    color: #515151 !important;
    display: block !important;
    font-size: 24px;
    width: 100%;
    text-decoration: none;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.dropdown:hover .dropdown-menu1 {
    opacity: 1;
    visibility: visible;
    top: 100%;
    width: 100%;
    -webkit-transition: all 0.5s, background, 2s 0.5s linear;
    transition: all 0.5s, background 2s 0.5s linear;
}

.review__wrap {
    position: relative;
    height: 100%;
}

.total__days {
    color: #686868;
    font-size: 12px;
    font-weight: 500;
}

.total__days span {
    margin-right: 4px;
}

.package__details-wrapper h1 {
    font-size: var(--font-size-48);
}

.package__details-wrapper h2 {
    font-size: var(--font-size-24);
}

.package__details-wrapper h3 {
    font-size: var(--font-size-24);
}

.package__details-wrapper h4 {
    font-size: var(--font-size-20);
}

.package__details-wrapper h5 {
    font-size: var(--font-size-20);
}

.pkg-dtl {
    font-size: var(--font-size) !important;
}

.moretext {
    display: none;
}

.breadcrumb-item {
    font-size: var(--font-size-14);
}

.about-container {
    background-color: var(--color-bg);
    padding: 30px;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1.25rem !important;
}

.itinerary-content {
    position: relative;
    background-color: #f4fff1;
    border: 1px solid #dfefdb;
    border-radius: 0.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
}


.applybtn {
    padding: 10px 20px !important;
}

.exclude li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
}

.exclude li::after {
    color: #CF181F;
    font-size: 16px !important;
    margin-right: 10px;
    margin-top: 2px;
    content: "\f057";
    font-weight: 900;
    width: auto;
    height: auto;
    border-radius: inherit;
    border: none;
}

.itinerary-wrapper .accordion-button::after {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.inti-box-content {
    background-color: #ffffff;
    border: 1px solid #dadada;
    /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
    padding: 20px;
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.border-blue-300 {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.img__team img {
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 100%;
    overflow: hidden;
}

.highlights-wrap {
    background-color: #fff;
    padding: 20px;
}

.title-icon i {
    color: var(--color-bg-secondary);
    align-items: center;
    font-size: 24px;
}

.sidebar__inner {
    padding: 0;
}

.widget {
    position: sticky;
    top: 60px;
}

.side-list ul {
    padding-left: 0;
}

.side-list ul li {
    color: var(--color-text-primary);
    list-style: none;
    list-style-position: inside;
    display: block;
    margin: 2.25px 4px 2.25px 0;
    padding-left: 0;
    font-size: 14px;
}

.side-list ul li span {
    color: var(--color-accent);
    margin-right: 6px;
}

.dropdown-menu {
    background-color: #ffffff;
    color: var(--color-text-primary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dropdown-menu .dropdown-item {
    color: var(--color-text-primary);
    /* border-bottom: 1px solid #dcdcdc; */
    font-weight: 500;
    font-size: 14px;
}

.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
    background-color: var(--color-bg);
    color: var(--color-white);
}

.price_tag {
    font-size: 24px;
    font-weight: 800;
}

.price_tag del {
    font-size: var(--font-size-20);
}

.price_tag sub {
    color: var(--color-text-primary);
    font-size: var(--font-size-14);
    font-weight: var(--weight-500);
    text-transform: capitalize;
}

.price_tag span {
    display: block;
    font-size: var(--font-size);
    font-weight: var(--weight-500);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.outline_btn {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--color-bg);
    color: var(--color-bg);
}

.outline_btn:hover {
    background-color: var(--color-bg);
    border: 1px solid var(--color-bg);
    color: var(--color-white);
}

aside {
    position: relative;
}

.sidebar__navbar ul li {
    display: block;
}

.sidebar__navbar ul li a {
    background-color: var(--color-white);
    border: 1px solid rgb(211, 211, 211);
    border-radius: 4px;
    color: var(--color-dark);
    display: block;
    font-size: 0.875em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28px;
    padding: 12px 20px;
    margin-bottom: 5px;
}

.sidebar__navbar ul li a.active {
    background-color: var(--color-dark);
    border-radius: 4px;
    color: var(--color-white) !important;
    border: 1px solid var(--color-dark);
}

.sidebar__navbar ul li a.active i {
    color: var(--color-white) !important;
}

.sidebar__navbar ul li i {
    color: var(--color-white)fff;
    margin-right: 10px;
}

.sidebar__navbar ul li a:hover {
    background-color: var(--color-dark);
    border: 1px solid var(--color-dark);
    border-radius: 2px;
    color: var(--color-white) !important;
}

.sidebar__navbar ul li a:hover i {
    color: var(--color-white) !important;
}

.title-icon i {
    color: #F08921;
    font-size: 20px;
    align-items: center;
    margin-right: 10px;
}

.trip__facts {
    position: relative;
    background: #ebf1eaba;
    padding: 30px 30px 10px 30px;
    border-radius: 5px;
}

.pkg-title h2 {
    color: var(--color-white);
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.tripdetails-hero__spec-col {
    margin-bottom: 30px;
}

.list-trip {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
    align-items: start;
    align-items: center;
}

.itinerary-icon {
    width: 24px;
    margin-right: 15px;
}

.itinerary-icon span {
    border-radius: 100%;
    color: #1E4182;
    font-size: 24px;
    overflow: hidden;
}

.itinerary-icon span i {
    color: #1E4182;
    font-size: 24px !important;
}

.c-card {
    position: relative;
}

.c-card__title {
    color: #1E4182;
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px !important;
    margin-top: 0;
    margin-bottom: 2px;
    text-transform: capitalize;
    padding: 0;
}

.c-card__content {
    color: #656565;
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
}

.c-card__content a {
    color: #656565;
}

.infos__dtl {
    display: flex;
    align-items: center;
}

.recoo span {
    color: #ff4639;
    font-size: 18px;
    margin-right: 5px;

}


.listitems ul {
    padding-left: 16px;
}

.faq-wrapper .card {
    border: none !important;
}

.rating {
    border: none;
    float: left;
}

.rating>label {
    color: #b6b6b6;
    float: right;
}

.rating>label:before {
    margin: 5px 5px 0 0;
    font-size: 18px;
    font-family: FontAwesome;
    content: "\f005";
    display: inline-block;
}

.rating>input {
    display: none;
}

.rating>input:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #F79426;
}

.rating>input:checked+label:hover,
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
.rating>input:checked~label:hover~label {
    color: #FECE31;
}


.pe-20 {
    padding-right: 20px;
}

.scale-75 {
    --tw-scale-x: 0.75;
    --tw-scale-y: 0.75;
}

.hr-1 {
    padding: 0;
    margin: 10px 0;
}

.sort-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sort_items {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}

.select-sort {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 14em;
    height: 3em;
    line-height: 3;
    background: var(--color-gray);
    overflow: hidden;
    border: 1px solid var(--color-text-primary) !important;
    border-radius: .25em;
}

.select-sort select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 1px solid var(--color-text-primary) !important;
    background: var(--color-gray);
    background-image: none;
    flex: 1;
    padding: 0 .6em;
    color: var(--color-dark);
    cursor: pointer;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
}

.select-sort::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    color: var(--color-dark);
    background: transparent;
    cursor: pointer;
    pointer-events: none;
    transition: .25s all ease;
}

.toc-list-item {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4px;
}

#msform {
    text-align: center;
    position: relative;
}

#msform fieldset .form-card {
    position: relative;
    background: #ffffff;
    border: 0 none;
    border-radius: 0px;
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;
    /* margin: 0 3% 20px 3%; */
}

#msform fieldset {
    position: relative;
    background: #ffffff;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform fieldset .form-card {
    text-align: left;
}

#msform input,
#msform textarea {
    box-sizing: border-box;
    font-size: 14px;
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: normal;
    /* border-bottom: 2px solid #bbb; */
    outline-width: 0;
}

/*Blue Buttons*/
#msform .action-button {
    background: #217206;
    border: 1px solid #329212;
    display: inline-block;
    font-weight: bold;
    color: #ffffff;
    border-radius: 0px;
    cursor: pointer;
    padding: 14px 36px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #329212;
    border: 1px solid #329212;
    color: #fff;
    outline: none;
    box-shadow: none;
}

/*Previous Buttons*/
#msform .action-button-previous {
    background-color: unset;
    border: 1px solid #a80833;
    color: #a80833;
    display: inline-block;
    font-weight: bold;
    border-radius: 0px;
    cursor: pointer;
    padding: 14px 36px;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #a80833;
    border: 1px solid #a80833;
    box-shadow: none;
    color: #fff;
}

/*Dropdown List Exp Date*/
select.list-dt {
    border: none;
    outline: 0;
}

select.list-dt:focus {
    border-bottom: none;
}

/*The background card*/

.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    padding: 50px 0;
    position: relative;
}

/*FieldSet headings*/
.fs-title {
    font-family: "Merienda One", cursive;
    font-weight: normal;
    font-size: 1.75em;
    margin-bottom: 10px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: #bbb !important;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

#progressbar .active {
    color: #2b2b2b;
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 16.66%;
    float: left;
    position: relative;
}

/*Icons in the ProgressBar*/
#progressbar #account:before {
    content: "1";
    /* font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff; */
}

#progressbar #contact:before {
    content: "2";
}

#progressbar #flight:before {
    content: "3";
}

#progressbar #payment:before {
    content: "4";
}

#progressbar #summary:before {
    content: "5";
}

#progressbar #last:before {
    content: "6";
}

#progressbar li:before {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: #bbb;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #bbb;
    position: absolute;
    left: -50%;
    top: 25px;
    z-index: -1;
}

#progressbar li:first-child:after {
    content: none;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #217206;
}

/*Fit image in bootstrap div*/
.fit-image {
    width: 100%;
    object-fit: cover;
}

.user_existing {
    background-color: #a80833;
    color: #ffffff;
    line-height: 2rem;
    font-size: 13px;
    padding: 10px 20px;
}

.user_existing a {
    color: #fff;
    font-weight: 500;
}

.user_existing a:hover {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
}

.trpcnt {
    line-height: 2rem;
    font-size: 13px;
}

.group_wrap h6 {
    font-size: 15px;
    font-weight: 400;
}

.step_btn {
    padding-right: 30px;
}

.additional_wrap {
    display: inline-flex;
    background: #fff;
    /* height: 100px; */
    width: 100%;
    align-items: center;
}

.additional_content {
    display: inline-flex;
    text-align: left;
    align-items: center;
}

.addcnt_info_lable {
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    margin-right: 40px;
}

.inputcategry {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 40px;
}

.wrapper {
    display: inline-flex;
    background: #fff;
    align-items: center;
    /* justify-content: space-evenly; */
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
}

.form-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #727272;
    box-shadow: none;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.form-group input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 6px;
    width: 6px;
    height: 14px;
    border: solid #727272;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tripbook_overview {
    margin-top: 20px;
    text-align: left;
    margin-right: 30px;
}

.summary-image {
    position: relative;
}

.summary-image img {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.dateinfo {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid #e1e1e1;
    margin: 10px 0;
}

.tripdays {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 18px;
}

.dateday {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.tripdays {
    display: block;
}


.book-tittle {
    position: relative;
    display: flex;
    align-items: center;
}

.book-icon {
    display: flex;

    color: var(--color-bg-dark);
    display: inline-block;
    line-height: 20px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    text-align: center;
    margin-right: 10px;
}

.title-payment {
    display: flex;
    margin-left: 0;
    align-items: center;
}

.comment-wrap {
    border-radius: 5px;
    border: 1px solid var(--color-light);
    padding: 30px;
}

.profile-img {
    width: 70px;
    height: 70px;
    float: left;
    margin-right: 20px;
    padding: 3px;
    border-radius: 100%;
    overflow: hidden;
    text-align: center;
}

.profile-img img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.profile-info {
    margin-left: 90px;
}

.payment-wrapper {
    position: relative;
}

.payment-wrapper input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
}

.payment-wrapper label {
    display: inline-block;
    border: 1px solid currentcolor;
    color: var(--color-white);
    margin-right: 1rem;
    padding: 0.5em;
    border-radius: 0.25rem;
    background-color: var(--color-bg-dark);
    cursor: pointer;
}

.payment-wrapper label:has(input[type=checkbox]:not(:checked)):hover {
    opacity: 0.5;
}

.payment-wrapper label:has(input[type=checkbox]:focus-visible) {
    opacity: 0.5;
}

.payment-wrapper label:has(input[type=checkbox]:checked) {
    background: var(--color-hover);
    color: #fff;
}

.policy-text {
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.form-check label {
    margin-left: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
}

.form-check-input {
    border-color: solid rgb(117, 117, 117);
    border: 2px solid rgb(117, 117, 117);
    height: 24px;
    width: 24px;
    margin-right: 10px;
}

.form-check .form-check-input[type="radio"] {
    border-radius: 100%;
    height: 24px;
    width: 24px;
}

.form-check-input:checked {
    background-color: #727272;
    border-color: #727272;
}

.payment-source {
    width: 210px;
}


.tripImg {
    position: relative;
    float: left;
    margin-right: 10px;
}

.tripImg img {
    border-radius: 3px;
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.recent-blg {
    position: relative;
    margin-left: 90px;
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-bold {
    font-weight: 700;
}

.justify-between {
    justify-content: space-between;
}

.flex {
    display: flex;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.gap-3 {
    gap: 0.75rem;
}

.pb-5 {
    padding-bottom: 1.25rem;
}

.border-b {
    border-top: 1px dashed #b1b1b1;
}

.payment__method {
    padding-left: 0;
    margin-bottom: 0;
    position: 0;
}

.payment__method li {
    background-color: #ffffff;
    list-style: none;
    display: inline-block;
    width: auto;
    justify-content: center;
    overflow: hidden;
}

.payment__method li img {
    height: 26px;
}


.mbl-screen {
    display: none;
}

.showing__pkg span {
    color: var(--color-bg);
}

.contact-wrap {
    background-color: #ffffff;
    padding: 30px 20px;
}

.contact__information {
    background-color: var(--color-bg);
    padding: 30px 20px;
}


.swiper-button-next::after,
.swiper-button-prev::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
    border-radius: 50%;
    color: var(--white-100);
    background: var(--black-300);
}


.shareArticle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.shareSocial {
    display: flex;
    flex-flow: row;
    align-items: center;
}

.shareSocial .socialTitle {
    margin: 0 4px 0 0;
    font-size: 12px;
}

.shareSocial .socialList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    justify-content: center;
    flex-flow: row wrap;
}

.shareSocial .socialList li {
    margin: 3px;
}

.shareSocial .socialList li:first-child {
    padding-left: 0;
}

.shareSocial .socialList li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    font-size: 14px;
    border-radius: 100%;
    text-decoration: none;
    background-color: #999;
    color: #fff;
    transition: 0.35s;
}

.shareSocial .socialList li:nth-child(1) a {
    background-color: #135cb6;
}

.shareSocial .socialList li:nth-child(2) a {
    background-color: #00aced;
}

.shareSocial .socialList li:nth-child(3) a {
    background-color: #BD081C;
}

.shareSocial .socialList li:nth-child(4) a {
    background-color: #111111;
}

.shareSocial .socialList li:nth-child(5) a {
    background-color: #1FB381;
}

.breadcrumb-wrap .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 0;
    list-style: none;
}

/********responsive css*********/

@media (max-width: 1320px) {
    .container {
        max-width: calc(100% - 20px);
    }

    .container-fluid {
        padding: 0 20px;
    }
}

@media (max-width: 1280px) {

    .section-content {
        padding: 40px 0;
    }

    .nav-menu>li>a {
        padding: 20px 12px;
        position: relative;
    }

    .slider-banner .carousel-inner .carousel-item img {
        height: 600px;
    }

    .inner-text h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button::after {
        top: 14px;
        left: 21px;
        position: absolute;
        border-left: 14px solid #1F3307;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 14px solid transparent;
    }


}

@media (max-width: 1080px) {

    body {
        overflow-x: hidden !important;
    }

    .slider-caption {
        left: 60px;
    }

    .links-contact ul {
        padding-left: 0;
    }

    .links-contact ul li {
        color: #ffffff;
        font-size: 16px;
        list-style: none;
        padding: 14px 0px 14px 0px;
        border-top: solid 1px rgb(158, 199, 148);
        display: block;
        font-weight: 700;
    }

    .links-contact ul li a {
        color: #ffffff;
    }

    .overlay-content {
        width: 100%;
    }

    /* .header-top {
        display: none;
    } */

    .openBtn {
        color: #ffffff;
        font-size: 1.25rem;
    }

    .page-title {
        position: relative;
        padding-top: 70px;
    }
}

@media (max-width: 992px) {

    .custom-btn {
        font-size: var(--font-size-12);
        padding: 6px 14px;
    }

    .title-widget h1,
    .title-widget h2,
    .title-widget h3,
    .title-widget h4,
    .title-widget h5,
    .title-widget h6 {
        font-size: 32px;
        line-height: 2.2rem;
    }

    .pt-100 {
        padding-top: 40px;
    }

    .pb-100 {
        padding-bottom: 40px;
    }

    .py-80 {
        padding: 40px 0;
    }

    .pb-80 {
        padding-bottom: 30px;
    }

    .py-60 {
        padding: 30px 0;
    }

    .pb-60 {
        padding-bottom: 30px;
    }

    .mt-30 {
        margin-top: 20px;
    }

    .mb-30 {
        margin-bottom: 20px;
    }

    .mt-50 {
        margin-top: 30px;
    }

    .sm-blue a,
    .sm-blue a:hover,
    .sm-blue a:focus,
    .sm-blue a:active {
        padding: 10px 0px;
    }

    .logo-widget {
        padding: 5px 10px 5px 0;
    }

    .nav-brand img {
        height: 70px;
    }

    header .logo-widget::before,
    .header .logo-widget::before {

        bottom: 0px;

    }

    .h-rit {
        margin-top: 14px;
        margin-bottom: 12px;
        margin-left: 20px;
    }

    .header-contact {
        margin-right: 36px;
    }

    .slider-banner {
        position: relative;
        margin-top: 0;
    }

    .navigation {
        height: inherit;
    }

    .sm-screen {
        display: block;
    }

    .small-devices {
        display: block;
        position: absolute;
        z-index: 1;
        top: 12px;
        right: 56px;
    }

    .tabsmenu-container {
        display: none;
    }

    .mbl-screen {
        display: block;
    }

    .menu_toogle {
        display: none;
    }

    .main_header_area {
        padding-bottom: 0;
    }

    .nav-header {
        margin-right: 0;
    }

    .top-right .top-right-info-2 .head-rit {
        margin-left: 30px;
    }

    .navigation-portrait .nav-menu {
        width: 100%;
        padding-top: 40px;
        position: absolute;
        z-index: 999;
    }

    .navigation-portrait .nav-menus-wrapper {
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        position: fixed;
        background-color: var(--color-bg);
        z-index: 20000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition-duration: 0.2s;
        transition-timing-function: ease;
    }

    .nav-menu>li>a {
        color: #fff;
    }

    .nav-dropdown>li>a {
        background-color: var(--color-bg);
    }

    .navigation-portrait .nav-menu>li {
        border-top: solid 1px rgb(39, 74, 130);
    }

    .navigation-portrait .submenu-indicator {
        top: 0;
        right: 0;
    }

    .navigation-portrait .nav-dropdown .submenu-indicator {
        right: 0;
        top: 0;
    }

    .nav-dropdown>li>a {
        border-bottom: solid 1px rgb(39, 74, 130);
    }

    .nav-dropdown>li>a {
        color: #fff;
    }

    .nav-menu>li.focus>a {
        color: #fff;
    }

    .nav-dropdown>li.focus>a {
        color: var(--color-white);
    }

    .submenu-indicator-chevron {
        border-color: transparent #fff #fff transparent;
    }

    .nav-menu>.focus>a .submenu-indicator-chevron {
        border-color: transparent #fff #fff transparent;
    }

    .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
        border-color: transparent #fff #fff transparent;
    }

    .banner-title-md {
        font-size: 40px;
    }

    .nav-menu>li>a {
        padding: 18px 14px;
        font-size: 13px;
    }

    .navigation-portrait .nav-menu>li>a {
        padding: 14px 0px 14px 0px;
    }

    .navigation-portrait .nav-dropdown>li>a {
        padding: 12px 0px 12px 0px;
    }

    .navigation-portrait .nav-dropdown>li>ul>li>a {
        padding-left: 0px;
    }

    .navigation-portrait .nav-dropdown>li>ul>li>ul>li>a {
        padding-left: 0px;
    }

    .tabsmenu-container {
        padding: 0;
    }

    .navigation-portrait .megamenu-panel {
        padding: 16px 10px;
    }

    .navbar-icons-2 .searchbar-open {
        margin-left: 14px;
    }


    .megamenu-panel {
        position: inherit;
    }

    .megamenu-panel.nav-submenu {
        position: inherit;
    }

    .megamenu-panel {
        background-color: transparent;
        box-shadow: none;
    }

    .p__tag {
        font-size: 16px;
    }

    .swiper-slide {
        height: 270px;
    }

    .t__sm {
        line-height: 14px;
        font-size: 1.25rem;
    }

    .pop-container {

        width: 80%;

    }

    .associted-list ul li img {
        width: auto;
        height: 36px;
    }

}

@media (max-width: 768px) {
    .section-content {
        padding: 30px 0;
    }

    .pb-50 {
        padding-bottom: 20px;
    }

    .pt-50 {
        padding-top: 20px;
    }

    .ps-40 {
        padding-left: 0;
    }

    .pt-40 {
        padding-top: 30px;
    }

    .pb-40 {
        padding-bottom: 30px;
    }

    .pb-70 {
        padding-bottom: 30px;
    }

    .pb-130 {
        padding-bottom: 50px;
    }

    .pe-0 {
        padding-right: inherit !important;
    }

    .ps-0 {
        padding-left: inherit !important;
    }

    .sticky {
        position: inherit;
    }

    .menu-bar {
        display: flex;
        justify-content: inherit;
    }

    .menu-link {
        padding: 8px 16px;
    }

    .main_header_area .nav-tabs .nav-link {
        padding: 8px 12px;
        margin-right: 0;
    }

    .main_header_area .nav-tabs .nav-item.show .nav-link,
    .main_header_area .nav-tabs .nav-link.active {
        padding: 8px 12px;
    }

    .title-widget h1,
    .title-widget h2,
    .title-widget h3,
    .title-widget h4,
    .title-widget h5,
    .title-widget h6 {
        font-size: 24px;
        line-height: 1.5rem;
    }

    .slider-banner .carousel-inner .carousel-item img {
        height: 470px;
    }


    .search-container {
        position: relative;
    }

    .h-rit {
        margin-top: 22px;
        margin-bottom: 18px;
        margin-left: 10px;
    }

    .header-contact {
        margin-right: 30px;
    }

    .inner-text {
        padding-right: 20px;
    }

    .inner-text h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .booking-wrap .form-floating {
        margin-bottom: 10px;
    }

    .page-title ul li {
        font-size: 12px;
        line-height: 16px;
    }

    .mt-60 {
        margin-top: 30px;
    }

    .viewbtn.float-end.mt-20 {
        position: absolute;
        bottom: 0;
    }

    .tit__sm {
        line-height: 20px;
        margin-top: 10px;
    }

    .associted-container {
        padding-top: 20px;
        position: static;
        background-color: #ffffff;
    }

    .associted-list ul li img {
        height: 32px;
    }

    .slider-caption {
        position: absolute;
        top: 28%;
        left: 50px;
        right: 0;
    }

    .outline-btn {
        padding: 6px 14px;
        font-size: 12px !important;
    }

    .pop-container {
        width: 90%;
    }

    .scrollable-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .scrollable-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .scrollable-tabs .nav-link {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .scrollable-navbar-container {
        position: relative;
        overflow: hidden;
    }

    .scrollable-navbar-container::before,
    .scrollable-navbar-container::after {
        content: '';
        position: absolute;
        top: 0;
        width: 25px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .scrollable-navbar-container::before {
        left: 0;
        background: linear-gradient(to right, transform, transparent);
    }

    .scrollable-navbar-container::after {
        right: 0;
        background: linear-gradient(to left, transform, transparent);
    }

    .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 0;
    }

    .destination-section {
        margin-top: 30px;
    }

    .infos_top {
        display: none;
    }

    .cont__box {
        width: 24px;
        margin-right: 0px;
        margin-top: 0px;
    }
    .accordion-button h3 {
        font-size: 14px !important;
    }

    .faq-holder .accordion-button {
        font-size: 15px;
        font-weight: 600;
    }
    .trip__list h3 {
        font-size: 14px !important;
        font-weight: 500;
        line-height: 21px;
    }

}

@media (max-width: 576px) {

    .title-widget h1,
    .title-widget h2,
    .title-widget h3,
    .title-widget h4,
    .title-widget h5,
    .title-widget h6 {
        font-size: 20px;
        line-height: 1.5rem;
    }

    .tl-card__category_2 {
        font-size: 16px !important;
        padding: 0 10px;
        text-align: center;
    }

    .mt-sm-40 {
        margin-top: 40px;
    }

    .view-wrap {
        position: absolute;
        left: 15px;
        bottom: -16px;
    }

    .p-s {
        padding-left: 12px !important;
    }

    .p-e-0 {
        padding-right: 12px !important;
    }

    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .m-icon {
        display: none;
    }

    .footer__tittle {
        font-size: 16px !important;
    }

    .search-container {
        margin-top: 30px;
    }

    .inner-text {
        width: 80%;
        padding: 20px;
        padding-right: 20px;
    }

    .slider-caption {
        top: 45%;
    }

    .p__tag {
        font-size: 14px !important;
    }

    .mt-60 {
        margin-top: 20px;
    }

    .footer__tittle span.title-line {
        display: none;
    }

    .cnt-title {
        font-size: 11px;
    }

    .cnt-text {
        color: var(--color-white);
        font-size: 12px;
    }

    .listing li {
        font-size: 13px;
        line-height: 28px;
    }

    .rounded-social-buttons .social-button {
        width: 30px;
        height: 30px;
        font-size: 12px;
        line-height: 30px;
    }

    .payment-card ul li img {
        width: auto;
        height: 30px;
    }

    .btn__sm {
        font-size: 12px;
        display: none;
    }

    .slider-banner .carousel-inner .carousel-item img {
        height: 430px;
    }

    .inner-text h1 {
        font-size: 18px;
        line-height: 24px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 32px;
        height: 32px;

    }

    .infos__dtl {
        display: inherit;
        align-items: center;
    }

    .trip__facts {
        padding: 20px 15px 10px 15px;
    }

    .c-card__title {
        font-size: 14px;
    }

    .c-card__content {
        font-size: 12px;
        font-weight: 500;
    }

    .itinerary-icon {
        width: 18px;
        margin-right: 10px;
    }

    .itinerary-icon span {
        font-size: 18px;
    }

    .itinerary-icon span i {
        font-size: 18px !important;
    }

    .tripdetails-hero__spec-col {
        margin-bottom: 10px;
    }

    .package__details-wrapper h2 {
        font-size: var(--font-size-18);
    }

    .cnt__icons {

        width: 30px;
        height: 30px;
        line-height: 30px;

    }

    .cnt__icons span {
        font-size: 16px;
    }

    .client__wrap {
        padding: 20px;
    }

    .client__text {
        font-size: 15px;
    }

    .pkg-wrap-content h4 {
        font-size: 17px;
    }

    .tl-card__category {
        font-size: 24px;
    }

}

@media (max-width: 480px) {
    .trips-info li span {
        width: inherit;
        display: inline-flex;
    }

    .slider__bottom {
        display: none;
    }

    .slider-banner .carousel-inner .carousel-item img {
        height: 330px;
    }

    .slider-caption {
        left: 30px;
        right: 0;
    }

}

@media (min-width: 576px) {
    .w-sm-25 {
        width: 25% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-auto {
        width: auto !important;
    }

    .w-sm-auto {
        width: auto;
    }

    .w-sm-5px,
    .size-sm-5px {
        width: 5px;
    }

    .w-sm-10px,
    .size-sm-10px {
        width: 10px;
    }

    .w-sm-15px,
    .size-sm-15px {
        width: 15px;
    }

    .w-sm-20px,
    .size-sm-20px {
        width: 20px;
    }

    .w-sm-25px,
    .size-sm-25px {
        width: 25px;
    }

    .w-sm-30px,
    .size-sm-30px {
        width: 30px;
    }

    .w-sm-35px,
    .size-sm-35px {
        width: 35px;
    }

    .w-sm-40px,
    .size-sm-40px {
        width: 40px;
    }

    .w-sm-45px,
    .size-sm-45px {
        width: 45px;
    }

    .w-sm-48px,
    .size-sm-48px {
        width: 48px;
    }

    .w-sm-50px,
    .size-sm-50px {
        width: 50px;
    }

    .w-sm-60px,
    .size-sm-60px {
        width: 60px;
    }

    .w-sm-64px,
    .size-sm-64px {
        width: 64px;
    }

    .w-sm-70px,
    .size-sm-70px {
        width: 70px;
    }

    .w-sm-80px,
    .size-sm-80px {
        width: 80px;
    }

    .w-sm-90px,
    .size-sm-90px {
        width: 90px;
    }

    .w-sm-100px,
    .size-sm-100px {
        width: 100px;
    }

    .w-sm-110px,
    .size-sm-110px {
        width: 110px;
    }

    .w-sm-120px,
    .size-sm-120px {
        width: 120px;
    }

    .w-sm-130px,
    .size-sm-130px {
        width: 130px;
    }

    .w-sm-140px,
    .size-sm-140px {
        width: 140px;
    }

    .w-sm-150px,
    .size-sm-150px {
        width: 150px;
    }

    .w-sm-160px,
    .size-sm-160px {
        width: 160px;
    }

    .w-sm-170px,
    .size-sm-170px {
        width: 170px;
    }

    .w-sm-180px,
    .size-sm-180px {
        width: 180px;
    }

    .w-sm-190px,
    .size-sm-190px {
        width: 190px;
    }

    .w-sm-200px,
    .size-sm-200px {
        width: 200px;
    }

    .w-sm-210px,
    .size-sm-210px {
        width: 210px;
    }

    .w-sm-220px,
    .size-sm-220px {
        width: 220px;
    }

    .w-sm-230px,
    .size-sm-230px {
        width: 230px;
    }

    .w-sm-240px,
    .size-sm-240px {
        width: 240px;
    }

    .w-sm-250px,
    .size-sm-250px {
        width: 250px;
    }

    .w-sm-260px,
    .size-sm-260px {
        width: 260px;
    }

    .w-sm-270px,
    .size-sm-270px {
        width: 270px;
    }

    .w-sm-280px,
    .size-sm-280px {
        width: 280px;
    }

    .w-sm-290px,
    .size-sm-290px {
        width: 290px;
    }

    .w-sm-300px,
    .size-sm-300px {
        width: 300px;
    }

    .w-sm-310px,
    .size-sm-310px {
        width: 310px;
    }

    .w-sm-320px,
    .size-sm-320px {
        width: 320px;
    }

    .w-sm-330px,
    .size-sm-330px {
        width: 330px;
    }

    .w-sm-340px,
    .size-sm-340px {
        width: 340px;
    }

    .w-sm-350px,
    .size-sm-350px {
        width: 350px;
    }

    .w-sm-360px,
    .size-sm-360px {
        width: 360px;
    }

    .w-sm-370px,
    .size-sm-370px {
        width: 370px;
    }

    .w-sm-380px,
    .size-sm-380px {
        width: 380px;
    }

    .w-sm-390px,
    .size-sm-390px {
        width: 390px;
    }

    .w-sm-400px,
    .size-sm-400px {
        width: 400px;
    }

    .w-sm-410px,
    .size-sm-410px {
        width: 410px;
    }

    .w-sm-420px,
    .size-sm-420px {
        width: 420px;
    }

    .w-sm-450px,
    .size-sm-450px {
        width: 450px;
    }

    .w-sm-470px,
    .size-sm-470px {
        width: 470px;
    }

    .w-sm-500px,
    .size-sm-500px {
        width: 500px;
    }

    .w-sm-530px,
    .size-sm-530px {
        width: 530px;
    }

    .w-sm-553px,
    .size-sm-553px {
        width: 553px;
    }

    .w-sm-640px,
    .size-sm-640px {
        width: 640px;
    }

    .w-sm-800px,
    .size-sm-800px {
        width: 820px;
    }

    .h-sm-auto {
        height: auto;
    }

    .h-sm-5px,
    .size-sm-5px {
        height: 5px;
    }

    .h-sm-10px,
    .size-sm-10px {
        height: 10px;
    }

    .h-sm-15px,
    .size-sm-15px {
        height: 15px;
    }

    .h-sm-20px,
    .size-sm-20px {
        height: 20px;
    }

    .h-sm-25px,
    .size-sm-25px {
        height: 25px;
    }

    .h-sm-30px,
    .size-sm-30px {
        height: 30px;
    }

    .h-sm-35px,
    .size-sm-35px {
        height: 35px;
    }

    .h-sm-40px,
    .size-sm-40px {
        height: 40px;
    }

    .h-sm-45px,
    .size-sm-45px {
        height: 45px;
    }

    .h-sm-48px,
    .size-sm-48px {
        height: 48px;
    }

    .h-sm-50px,
    .size-sm-50px {
        height: 50px;
    }

    .h-sm-60px,
    .size-sm-60px {
        height: 60px;
    }

    .h-sm-64px,
    .size-sm-64px {
        height: 64px;
    }

    .h-sm-70px,
    .size-sm-70px {
        height: 70px;
    }

    .h-sm-80px,
    .size-sm-80px {
        height: 80px;
    }

    .h-sm-90px,
    .size-sm-90px {
        height: 90px;
    }

    .h-sm-100px,
    .size-sm-100px {
        height: 100px;
    }

    .h-sm-110px,
    .size-sm-110px {
        height: 110px;
    }

    .h-sm-120px,
    .size-sm-120px {
        height: 120px;
    }

    .h-sm-130px,
    .size-sm-130px {
        height: 130px;
    }

    .h-sm-140px,
    .size-sm-140px {
        height: 140px;
    }

    .h-sm-150px,
    .size-sm-150px {
        height: 150px;
    }

    .h-sm-160px,
    .size-sm-160px {
        height: 160px;
    }

    .h-sm-170px,
    .size-sm-170px {
        height: 170px;
    }

    .h-sm-180px,
    .size-sm-180px {
        height: 180px;
    }

    .h-sm-190px,
    .size-sm-190px {
        height: 190px;
    }

    .h-sm-200px,
    .size-sm-200px {
        height: 200px;
    }

    .h-sm-210px,
    .size-sm-210px {
        height: 210px;
    }

    .h-sm-220px,
    .size-sm-220px {
        height: 220px;
    }

    .h-sm-230px,
    .size-sm-230px {
        height: 230px;
    }

    .h-sm-240px,
    .size-sm-240px {
        height: 240px;
    }

    .h-sm-250px,
    .size-sm-250px {
        height: 250px;
    }

    .h-sm-260px,
    .size-sm-260px {
        height: 260px;
    }

    .h-sm-270px,
    .size-sm-270px {
        height: 270px;
    }

    .h-sm-280px,
    .size-sm-280px {
        height: 280px;
    }

    .h-sm-290px,
    .size-sm-290px {
        height: 290px;
    }

    .h-sm-300px,
    .size-sm-300px {
        height: 300px;
    }

    .h-sm-310px,
    .size-sm-310px {
        height: 310px;
    }

    .h-sm-320px,
    .size-sm-320px {
        height: 320px;
    }

    .h-sm-330px,
    .size-sm-330px {
        height: 330px;
    }

    .h-sm-340px,
    .size-sm-340px {
        height: 340px;
    }

    .h-sm-350px,
    .size-sm-350px {
        height: 350px;
    }

    .h-sm-360px,
    .size-sm-360px {
        height: 360px;
    }

    .h-sm-370px,
    .size-sm-370px {
        height: 370px;
    }

    .h-sm-380px,
    .size-sm-380px {
        height: 380px;
    }

    .h-sm-390px,
    .size-sm-390px {
        height: 390px;
    }

    .h-sm-400px,
    .size-sm-400px {
        height: 400px;
    }

    .h-sm-410px,
    .size-sm-410px {
        height: 410px;
    }

    .h-sm-420px,
    .size-sm-420px {
        height: 420px;
    }

    .h-sm-450px,
    .size-sm-450px {
        height: 450px;
    }

    .h-sm-460px,
    .size-sm-460px {
        height: 460px;
    }

    .h-sm-470px,
    .size-sm-470px {
        height: 470px;
    }

    .h-sm-475px,
    .size-sm-475px {
        height: 475px;
    }

    .h-sm-485px,
    .size-sm-485px {
        height: 485px;
    }

    .h-sm-490px,
    .size-sm-490px {
        height: 490px;
    }

    .h-sm-500px,
    .size-sm-500px {
        height: 500px;
    }

    .h-sm-530px,
    .size-sm-530px {
        height: 530px;
    }

    .h-sm-553px,
    .size-sm-553px {
        height: 553px;
    }

    .h-sm-640px,
    .size-sm-640px {
        height: 640px;
    }

    .h-sm-800px,
    .size-sm-800px {
        height: 820px;
    }
}

/* md */
@media (min-width: 768px) {
    .w-md-25 {
        width: 25% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

    .w-md-100 {
        width: 100% !important;
    }

    .w-md-auto {
        width: auto !important;
    }

    .w-md-auto {
        width: auto;
    }

    .w-md-5px,
    .size-md-5px {
        width: 5px;
    }

    .w-md-10px,
    .size-md-10px {
        width: 10px;
    }

    .w-md-15px,
    .size-md-15px {
        width: 15px;
    }

    .w-md-20px,
    .size-md-20px {
        width: 20px;
    }

    .w-md-25px,
    .size-md-25px {
        width: 25px;
    }

    .w-md-30px,
    .size-md-30px {
        width: 30px;
    }

    .w-md-35px,
    .size-md-35px {
        width: 35px;
    }

    .w-md-40px,
    .size-md-40px {
        width: 40px;
    }

    .w-md-45px,
    .size-md-45px {
        width: 45px;
    }

    .w-md-48px,
    .size-md-48px {
        width: 48px;
    }

    .w-md-50px,
    .size-md-50px {
        width: 50px;
    }

    .w-md-60px,
    .size-md-60px {
        width: 60px;
    }

    .w-md-64px,
    .size-md-64px {
        width: 64px;
    }

    .w-md-70px,
    .size-md-70px {
        width: 70px;
    }

    .w-md-80px,
    .size-md-80px {
        width: 80px;
    }

    .w-md-90px,
    .size-md-90px {
        width: 90px;
    }

    .w-md-100px,
    .size-md-100px {
        width: 100px;
    }

    .w-md-110px,
    .size-md-110px {
        width: 110px;
    }

    .w-md-120px,
    .size-md-120px {
        width: 120px;
    }

    .w-md-130px,
    .size-md-130px {
        width: 130px;
    }

    .w-md-140px,
    .size-md-140px {
        width: 140px;
    }

    .w-md-150px,
    .size-md-150px {
        width: 150px;
    }

    .w-md-160px,
    .size-md-160px {
        width: 160px;
    }

    .w-md-170px,
    .size-md-170px {
        width: 170px;
    }

    .w-md-180px,
    .size-md-180px {
        width: 180px;
    }

    .w-md-190px,
    .size-md-190px {
        width: 190px;
    }

    .w-md-200px,
    .size-md-200px {
        width: 200px;
    }

    .w-md-210px,
    .size-md-210px {
        width: 210px;
    }

    .w-md-220px,
    .size-md-220px {
        width: 220px;
    }

    .w-md-230px,
    .size-md-230px {
        width: 230px;
    }

    .w-md-240px,
    .size-md-240px {
        width: 240px;
    }

    .w-md-250px,
    .size-md-250px {
        width: 250px;
    }

    .w-md-260px,
    .size-md-260px {
        width: 260px;
    }

    .w-md-270px,
    .size-md-270px {
        width: 270px;
    }

    .w-md-280px,
    .size-md-280px {
        width: 280px;
    }

    .w-md-290px,
    .size-md-290px {
        width: 290px;
    }

    .w-md-300px,
    .size-md-300px {
        width: 300px;
    }

    .w-md-310px,
    .size-md-310px {
        width: 310px;
    }

    .w-md-320px,
    .size-md-320px {
        width: 320px;
    }

    .w-md-330px,
    .size-md-330px {
        width: 330px;
    }

    .w-md-340px,
    .size-md-340px {
        width: 340px;
    }

    .w-md-350px,
    .size-md-350px {
        width: 350px;
    }

    .w-md-360px,
    .size-md-360px {
        width: 360px;
    }

    .w-md-370px,
    .size-md-370px {
        width: 370px;
    }

    .w-md-380px,
    .size-md-380px {
        width: 380px;
    }

    .w-md-390px,
    .size-md-390px {
        width: 390px;
    }

    .w-md-400px,
    .size-md-400px {
        width: 400px;
    }

    .w-md-410px,
    .size-md-410px {
        width: 410px;
    }

    .w-md-420px,
    .size-md-420px {
        width: 420px;
    }

    .w-md-450px,
    .size-md-450px {
        width: 450px;
    }

    .w-md-470px,
    .size-md-470px {
        width: 470px;
    }

    .w-md-500px,
    .size-md-500px {
        width: 500px;
    }

    .w-md-530px,
    .size-md-530px {
        width: 530px;
    }

    .w-md-553px,
    .size-md-553px {
        width: 553px;
    }

    .w-md-640px,
    .size-md-640px {
        width: 640px;
    }

    .w-md-800px,
    .size-md-800px {
        width: 820px;
    }

    .h-md-auto {
        height: auto;
    }

    .h-md-5px,
    .size-md-5px {
        height: 5px;
    }

    .h-md-10px,
    .size-md-10px {
        height: 10px;
    }

    .h-md-15px,
    .size-md-15px {
        height: 15px;
    }

    .h-md-20px,
    .size-md-20px {
        height: 20px;
    }

    .h-md-25px,
    .size-md-25px {
        height: 25px;
    }

    .h-md-30px,
    .size-md-30px {
        height: 30px;
    }

    .h-md-35px,
    .size-md-35px {
        height: 35px;
    }

    .h-md-40px,
    .size-md-40px {
        height: 40px;
    }

    .h-md-45px,
    .size-md-45px {
        height: 45px;
    }

    .h-md-48px,
    .size-md-48px {
        height: 48px;
    }

    .h-md-50px,
    .size-md-50px {
        height: 50px;
    }

    .h-md-60px,
    .size-md-60px {
        height: 60px;
    }

    .h-md-64px,
    .size-md-64px {
        height: 64px;
    }

    .h-md-70px,
    .size-md-70px {
        height: 70px;
    }

    .h-md-80px,
    .size-md-80px {
        height: 80px;
    }

    .h-md-90px,
    .size-md-90px {
        height: 90px;
    }

    .h-md-100px,
    .size-md-100px {
        height: 100px;
    }

    .h-md-110px,
    .size-md-110px {
        height: 110px;
    }

    .h-md-120px,
    .size-md-120px {
        height: 120px;
    }

    .h-md-130px,
    .size-md-130px {
        height: 130px;
    }

    .h-md-140px,
    .size-md-140px {
        height: 140px;
    }

    .h-md-150px,
    .size-md-150px {
        height: 150px;
    }

    .h-md-160px,
    .size-md-160px {
        height: 160px;
    }

    .h-md-170px,
    .size-md-170px {
        height: 170px;
    }

    .h-md-180px,
    .size-md-180px {
        height: 180px;
    }

    .h-md-190px,
    .size-md-190px {
        height: 190px;
    }

    .h-md-200px,
    .size-md-200px {
        height: 200px;
    }

    .h-md-210px,
    .size-md-210px {
        height: 210px;
    }

    .h-md-220px,
    .size-md-220px {
        height: 220px;
    }

    .h-md-230px,
    .size-md-230px {
        height: 230px;
    }

    .h-md-240px,
    .size-md-240px {
        height: 240px;
    }

    .h-md-250px,
    .size-md-250px {
        height: 250px;
    }

    .h-md-260px,
    .size-md-260px {
        height: 260px;
    }

    .h-md-270px,
    .size-md-270px {
        height: 270px;
    }

    .h-md-280px,
    .size-md-280px {
        height: 280px;
    }

    .h-md-290px,
    .size-md-290px {
        height: 290px;
    }

    .h-md-300px,
    .size-md-300px {
        height: 300px;
    }

    .h-md-310px,
    .size-md-310px {
        height: 310px;
    }

    .h-md-320px,
    .size-md-320px {
        height: 320px;
    }

    .h-md-330px,
    .size-md-330px {
        height: 330px;
    }

    .h-md-340px,
    .size-md-340px {
        height: 340px;
    }

    .h-md-350px,
    .size-md-350px {
        height: 350px;
    }

    .h-md-360px,
    .size-md-360px {
        height: 360px;
    }

    .h-md-370px,
    .size-md-370px {
        height: 370px;
    }

    .h-md-380px,
    .size-md-380px {
        height: 380px;
    }

    .h-md-390px,
    .size-md-390px {
        height: 390px;
    }

    .h-md-400px,
    .size-md-400px {
        height: 400px;
    }

    .h-md-410px,
    .size-md-410px {
        height: 410px;
    }

    .h-md-420px,
    .size-md-420px {
        height: 420px;
    }

    .h-md-450px,
    .size-md-450px {
        height: 450px;
    }

    .h-md-460px,
    .size-md-460px {
        height: 460px;
    }

    .h-md-470px,
    .size-md-470px {
        height: 470px;
    }

    .h-md-475px,
    .size-md-475px {
        height: 475px;
    }

    .h-md-485px,
    .size-md-485px {
        height: 485px;
    }

    .h-md-490px,
    .size-md-490px {
        height: 490px;
    }

    .h-md-500px,
    .size-md-500px {
        height: 500px;
    }

    .h-md-530px,
    .size-md-530px {
        height: 530px;
    }

    .h-md-553px,
    .size-md-553px {
        height: 553px;
    }

    .h-md-570px {
        height: 570px;
    }

    .h-md-640px,
    .size-md-640px {
        height: 640px;
    }

    .h-md-800px,
    .size-md-800px {
        height: 820px;
    }
}

/* lg */
@media (min-width: 992px) {
    .w-lg-25 {
        width: 25% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }

    .w-lg-100 {
        width: 100% !important;
    }

    .w-lg-auto {
        width: auto !important;
    }

    .w-lg-auto {
        width: auto;
    }

    .w-lg-5px,
    .size-lg-5px {
        width: 5px;
    }

    .w-lg-10px,
    .size-lg-10px {
        width: 10px;
    }

    .w-lg-15px,
    .size-lg-15px {
        width: 15px;
    }

    .w-lg-20px,
    .size-lg-20px {
        width: 20px;
    }

    .w-lg-25px,
    .size-lg-25px {
        width: 25px;
    }

    .w-lg-30px,
    .size-lg-30px {
        width: 30px;
    }

    .w-lg-35px,
    .size-lg-35px {
        width: 35px;
    }

    .w-lg-40px,
    .size-lg-40px {
        width: 40px;
    }

    .w-lg-45px,
    .size-lg-45px {
        width: 45px;
    }

    .w-lg-48px,
    .size-lg-48px {
        width: 48px;
    }

    .w-lg-50px,
    .size-lg-50px {
        width: 50px;
    }

    .w-lg-60px,
    .size-lg-60px {
        width: 60px;
    }

    .w-lg-64px,
    .size-lg-64px {
        width: 64px;
    }

    .w-lg-70px,
    .size-lg-70px {
        width: 70px;
    }

    .w-lg-80px,
    .size-lg-80px {
        width: 80px;
    }

    .w-lg-90px,
    .size-lg-90px {
        width: 90px;
    }

    .w-lg-100px,
    .size-lg-100px {
        width: 100px;
    }

    .w-lg-110px,
    .size-lg-110px {
        width: 110px;
    }

    .w-lg-120px,
    .size-lg-120px {
        width: 120px;
    }

    .w-lg-130px,
    .size-lg-130px {
        width: 130px;
    }

    .w-lg-140px,
    .size-lg-140px {
        width: 140px;
    }

    .w-lg-150px,
    .size-lg-150px {
        width: 150px;
    }

    .w-lg-160px,
    .size-lg-160px {
        width: 160px;
    }

    .w-lg-170px,
    .size-lg-170px {
        width: 170px;
    }

    .w-lg-180px,
    .size-lg-180px {
        width: 180px;
    }

    .w-lg-190px,
    .size-lg-190px {
        width: 190px;
    }

    .w-lg-200px,
    .size-lg-200px {
        width: 200px;
    }

    .w-lg-210px,
    .size-lg-210px {
        width: 210px;
    }

    .w-lg-220px,
    .size-lg-220px {
        width: 220px;
    }

    .w-lg-230px,
    .size-lg-230px {
        width: 230px;
    }

    .w-lg-240px,
    .size-lg-240px {
        width: 240px;
    }

    .w-lg-250px,
    .size-lg-250px {
        width: 250px;
    }

    .w-lg-260px,
    .size-lg-260px {
        width: 260px;
    }

    .w-lg-270px,
    .size-lg-270px {
        width: 270px;
    }

    .w-lg-280px,
    .size-lg-280px {
        width: 280px;
    }

    .w-lg-290px,
    .size-lg-290px {
        width: 290px;
    }

    .w-lg-300px,
    .size-lg-300px {
        width: 300px;
    }

    .w-lg-310px,
    .size-lg-310px {
        width: 310px;
    }

    .w-lg-320px,
    .size-lg-320px {
        width: 320px;
    }

    .w-lg-330px,
    .size-lg-330px {
        width: 330px;
    }

    .w-lg-340px,
    .size-lg-340px {
        width: 340px;
    }

    .w-lg-350px,
    .size-lg-350px {
        width: 350px;
    }

    .w-lg-360px,
    .size-lg-360px {
        width: 360px;
    }

    .w-lg-370px,
    .size-lg-370px {
        width: 370px;
    }

    .w-lg-380px,
    .size-lg-380px {
        width: 380px;
    }

    .w-lg-390px,
    .size-lg-390px {
        width: 390px;
    }

    .w-lg-400px,
    .size-lg-400px {
        width: 400px;
    }

    .w-lg-410px,
    .size-lg-410px {
        width: 410px;
    }

    .w-lg-420px,
    .size-lg-420px {
        width: 420px;
    }

    .w-lg-450px,
    .size-lg-450px {
        width: 450px;
    }

    .w-lg-470px,
    .size-lg-470px {
        width: 470px;
    }

    .w-lg-500px,
    .size-lg-500px {
        width: 500px;
    }

    .w-lg-530px,
    .size-lg-530px {
        width: 530px;
    }

    .w-lg-553px,
    .size-lg-553px {
        width: 553px;
    }

    .w-lg-640px,
    .size-lg-640px {
        width: 640px;
    }

    .w-lg-800px,
    .size-lg-800px {
        width: 820px;
    }

    .h-lg-auto {
        height: auto;
    }

    .h-lg-5px,
    .size-lg-5px {
        height: 5px;
    }

    .h-lg-10px,
    .size-lg-10px {
        height: 10px;
    }

    .h-lg-15px,
    .size-lg-15px {
        height: 15px;
    }

    .h-lg-20px,
    .size-lg-20px {
        height: 20px;
    }

    .h-lg-25px,
    .size-lg-25px {
        height: 25px;
    }

    .h-lg-30px,
    .size-lg-30px {
        height: 30px;
    }

    .h-lg-35px,
    .size-lg-35px {
        height: 35px;
    }

    .h-lg-40px,
    .size-lg-40px {
        height: 40px;
    }

    .h-lg-45px,
    .size-lg-45px {
        height: 45px;
    }

    .h-lg-48px,
    .size-lg-48px {
        height: 48px;
    }

    .h-lg-50px,
    .size-lg-50px {
        height: 50px;
    }

    .h-lg-60px,
    .size-lg-60px {
        height: 60px;
    }

    .h-lg-64px,
    .size-lg-64px {
        height: 64px;
    }

    .h-lg-70px,
    .size-lg-70px {
        height: 70px;
    }

    .h-lg-80px,
    .size-lg-80px {
        height: 80px;
    }

    .h-lg-90px,
    .size-lg-90px {
        height: 90px;
    }

    .h-lg-100px,
    .size-lg-100px {
        height: 100px;
    }

    .h-lg-110px,
    .size-lg-110px {
        height: 110px;
    }

    .h-lg-120px,
    .size-lg-120px {
        height: 120px;
    }

    .h-lg-130px,
    .size-lg-130px {
        height: 130px;
    }

    .h-lg-140px,
    .size-lg-140px {
        height: 140px;
    }

    .h-lg-150px,
    .size-lg-150px {
        height: 150px;
    }

    .h-lg-160px,
    .size-lg-160px {
        height: 160px;
    }

    .h-lg-170px,
    .size-lg-170px {
        height: 170px;
    }

    .h-lg-180px,
    .size-lg-180px {
        height: 180px;
    }

    .h-lg-190px,
    .size-lg-190px {
        height: 190px;
    }

    .h-lg-200px,
    .size-lg-200px {
        height: 200px;
    }

    .h-lg-210px,
    .size-lg-210px {
        height: 210px;
    }

    .h-lg-220px,
    .size-lg-220px {
        height: 220px;
    }

    .h-lg-230px,
    .size-lg-230px {
        height: 230px;
    }

    .h-lg-240px,
    .size-lg-240px {
        height: 240px;
    }

    .h-lg-250px,
    .size-lg-250px {
        height: 250px;
    }

    .h-lg-260px,
    .size-lg-260px {
        height: 260px;
    }

    .h-lg-270px,
    .size-lg-270px {
        height: 270px;
    }

    .h-lg-280px,
    .size-lg-280px {
        height: 280px;
    }

    .h-lg-290px,
    .size-lg-290px {
        height: 290px;
    }

    .h-lg-300px,
    .size-lg-300px {
        height: 300px;
    }

    .h-lg-310px,
    .size-lg-310px {
        height: 310px;
    }

    .h-lg-320px,
    .size-lg-320px {
        height: 320px;
    }

    .h-lg-330px,
    .size-lg-330px {
        height: 330px;
    }

    .h-lg-340px,
    .size-lg-340px {
        height: 340px;
    }

    .h-lg-350px,
    .size-lg-350px {
        height: 350px;
    }

    .h-lg-360px,
    .size-lg-360px {
        height: 360px;
    }

    .h-lg-370px,
    .size-lg-370px {
        height: 370px;
    }

    .h-lg-380px,
    .size-lg-380px {
        height: 380px;
    }

    .h-lg-390px,
    .size-lg-390px {
        height: 390px;
    }

    .h-lg-400px,
    .size-lg-400px {
        height: 400px;
    }

    .h-lg-410px,
    .size-lg-410px {
        height: 410px;
    }

    .h-lg-420px,
    .size-lg-420px {
        height: 420px;
    }

    .h-lg-450px,
    .size-lg-450px {
        height: 450px;
    }

    .h-lg-460px,
    .size-lg-460px {
        height: 460px;
    }

    .h-lg-470px,
    .size-lg-470px {
        height: 470px;
    }

    .h-lg-475px,
    .size-lg-475px {
        height: 475px;
    }

    .h-lg-485px,
    .size-lg-485px {
        height: 485px;
    }

    .h-lg-490px,
    .size-lg-490px {
        height: 490px;
    }

    .h-lg-500px,
    .size-lg-500px {
        height: 500px;
    }

    .h-lg-530px,
    .size-lg-530px {
        height: 530px;
    }

    .h-lg-553px,
    .size-lg-553px {
        height: 553px;
    }

    .h-lg-640px,
    .size-lg-640px {
        height: 640px;
    }

    .h-lg-800px,
    .size-lg-800px {
        height: 820px;
    }
}

/* xl */
@media (min-width: 1200px) {
    .w-xl-25 {
        width: 25% !important;
    }

    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-75 {
        width: 75% !important;
    }

    .w-xl-100 {
        width: 100% !important;
    }

    .w-xl-auto {
        width: auto !important;
    }

    .w-xl-auto {
        width: auto;
    }

    .w-xl-5px,
    .size-xl-5px {
        width: 5px;
    }

    .w-xl-10px,
    .size-xl-10px {
        width: 10px;
    }

    .w-xl-15px,
    .size-xl-15px {
        width: 15px;
    }

    .w-xl-20px,
    .size-xl-20px {
        width: 20px;
    }

    .w-xl-25px,
    .size-xl-25px {
        width: 25px;
    }

    .w-xl-30px,
    .size-xl-30px {
        width: 30px;
    }

    .w-xl-35px,
    .size-xl-35px {
        width: 35px;
    }

    .w-xl-40px,
    .size-xl-40px {
        width: 40px;
    }

    .w-xl-45px,
    .size-xl-45px {
        width: 45px;
    }

    .w-xl-48px,
    .size-xl-48px {
        width: 48px;
    }

    .w-xl-50px,
    .size-xl-50px {
        width: 50px;
    }

    .w-xl-60px,
    .size-xl-60px {
        width: 60px;
    }

    .w-xl-64px,
    .size-xl-64px {
        width: 64px;
    }

    .w-xl-70px,
    .size-xl-70px {
        width: 70px;
    }

    .w-xl-80px,
    .size-xl-80px {
        width: 80px;
    }

    .w-xl-90px,
    .size-xl-90px {
        width: 90px;
    }

    .w-xl-100px,
    .size-xl-100px {
        width: 100px;
    }

    .w-xl-110px,
    .size-xl-110px {
        width: 110px;
    }

    .w-xl-120px,
    .size-xl-120px {
        width: 120px;
    }

    .w-xl-130px,
    .size-xl-130px {
        width: 130px;
    }

    .w-xl-140px,
    .size-xl-140px {
        width: 140px;
    }

    .w-xl-150px,
    .size-xl-150px {
        width: 150px;
    }

    .w-xl-160px,
    .size-xl-160px {
        width: 160px;
    }

    .w-xl-170px,
    .size-xl-170px {
        width: 170px;
    }

    .w-xl-180px,
    .size-xl-180px {
        width: 180px;
    }

    .w-xl-190px,
    .size-xl-190px {
        width: 190px;
    }

    .w-xl-200px,
    .size-xl-200px {
        width: 200px;
    }

    .w-xl-210px,
    .size-xl-210px {
        width: 210px;
    }

    .w-xl-220px,
    .size-xl-220px {
        width: 220px;
    }

    .w-xl-230px,
    .size-xl-230px {
        width: 230px;
    }

    .w-xl-240px,
    .size-xl-240px {
        width: 240px;
    }

    .w-xl-250px,
    .size-xl-250px {
        width: 250px;
    }

    .w-xl-260px,
    .size-xl-260px {
        width: 260px;
    }

    .w-xl-270px,
    .size-xl-270px {
        width: 270px;
    }

    .w-xl-280px,
    .size-xl-280px {
        width: 280px;
    }

    .w-xl-290px,
    .size-xl-290px {
        width: 290px;
    }

    .w-xl-300px,
    .size-xl-300px {
        width: 300px;
    }

    .w-xl-310px,
    .size-xl-310px {
        width: 310px;
    }

    .w-xl-320px,
    .size-xl-320px {
        width: 320px;
    }

    .w-xl-330px,
    .size-xl-330px {
        width: 330px;
    }

    .w-xl-340px,
    .size-xl-340px {
        width: 340px;
    }

    .w-xl-350px,
    .size-xl-350px {
        width: 350px;
    }

    .w-xl-360px,
    .size-xl-360px {
        width: 360px;
    }

    .w-xl-370px,
    .size-xl-370px {
        width: 370px;
    }

    .w-xl-380px,
    .size-xl-380px {
        width: 380px;
    }

    .w-xl-390px,
    .size-xl-390px {
        width: 390px;
    }

    .w-xl-400px,
    .size-xl-400px {
        width: 400px;
    }

    .w-xl-410px,
    .size-xl-410px {
        width: 410px;
    }

    .w-xl-420px,
    .size-xl-420px {
        width: 420px;
    }

    .w-xl-450px,
    .size-xl-450px {
        width: 450px;
    }

    .w-xl-470px,
    .size-xl-470px {
        width: 470px;
    }

    .w-xl-500px,
    .size-xl-500px {
        width: 500px;
    }

    .w-xl-530px,
    .size-xl-530px {
        width: 530px;
    }

    .w-xl-553px,
    .size-xl-553px {
        width: 553px;
    }

    .w-xl-640px,
    .size-xl-640px {
        width: 640px;
    }

    .w-xl-800px,
    .size-xl-800px {
        width: 820px;
    }

    .h-xl-auto {
        height: auto;
    }

    .h-xl-5px,
    .size-xl-5px {
        height: 5px;
    }

    .h-xl-10px,
    .size-xl-10px {
        height: 10px;
    }

    .h-xl-15px,
    .size-xl-15px {
        height: 15px;
    }

    .h-xl-20px,
    .size-xl-20px {
        height: 20px;
    }

    .h-xl-25px,
    .size-xl-25px {
        height: 25px;
    }

    .h-xl-30px,
    .size-xl-30px {
        height: 30px;
    }

    .h-xl-35px,
    .size-xl-35px {
        height: 35px;
    }

    .h-xl-40px,
    .size-xl-40px {
        height: 40px;
    }

    .h-xl-45px,
    .size-xl-45px {
        height: 45px;
    }

    .h-xl-48px,
    .size-xl-48px {
        height: 48px;
    }

    .h-xl-50px,
    .size-xl-50px {
        height: 50px;
    }

    .h-xl-60px,
    .size-xl-60px {
        height: 60px;
    }

    .h-xl-64px,
    .size-xl-64px {
        height: 64px;
    }

    .h-xl-70px,
    .size-xl-70px {
        height: 70px;
    }

    .h-xl-80px,
    .size-xl-80px {
        height: 80px;
    }

    .h-xl-90px,
    .size-xl-90px {
        height: 90px;
    }

    .h-xl-100px,
    .size-xl-100px {
        height: 100px;
    }

    .h-xl-110px,
    .size-xl-110px {
        height: 110px;
    }

    .h-xl-120px,
    .size-xl-120px {
        height: 120px;
    }

    .h-xl-130px,
    .size-xl-130px {
        height: 130px;
    }

    .h-xl-140px,
    .size-xl-140px {
        height: 140px;
    }

    .h-xl-150px,
    .size-xl-150px {
        height: 150px;
    }

    .h-xl-160px,
    .size-xl-160px {
        height: 160px;
    }

    .h-xl-170px,
    .size-xl-170px {
        height: 170px;
    }

    .h-xl-180px,
    .size-xl-180px {
        height: 180px;
    }

    .h-xl-190px,
    .size-xl-190px {
        height: 190px;
    }

    .h-xl-200px,
    .size-xl-200px {
        height: 200px;
    }

    .h-xl-210px,
    .size-xl-210px {
        height: 210px;
    }

    .h-xl-220px,
    .size-xl-220px {
        height: 220px;
    }

    .h-xl-230px,
    .size-xl-230px {
        height: 230px;
    }

    .h-xl-240px,
    .size-xl-240px {
        height: 240px;
    }

    .h-xl-250px,
    .size-xl-250px {
        height: 250px;
    }

    .h-xl-260px,
    .size-xl-260px {
        height: 260px;
    }

    .h-xl-270px,
    .size-xl-270px {
        height: 270px;
    }

    .h-xl-280px,
    .size-xl-280px {
        height: 280px;
    }

    .h-xl-290px,
    .size-xl-290px {
        height: 290px;
    }

    .h-xl-300px,
    .size-xl-300px {
        height: 300px;
    }

    .h-xl-310px,
    .size-xl-310px {
        height: 310px;
    }

    .h-xl-320px,
    .size-xl-320px {
        height: 320px;
    }

    .h-xl-330px,
    .size-xl-330px {
        height: 330px;
    }

    .h-xl-340px,
    .size-xl-340px {
        height: 340px;
    }

    .h-xl-350px,
    .size-xl-350px {
        height: 350px;
    }

    .h-xl-360px,
    .size-xl-360px {
        height: 360px;
    }

    .h-xl-370px,
    .size-xl-370px {
        height: 370px;
    }

    .h-xl-380px,
    .size-xl-380px {
        height: 380px;
    }

    .h-xl-390px,
    .size-xl-390px {
        height: 390px;
    }

    .h-xl-400px,
    .size-xl-400px {
        height: 400px;
    }

    .h-xl-410px,
    .size-xl-410px {
        height: 410px;
    }

    .h-xl-420px,
    .size-xl-420px {
        height: 420px;
    }

    .h-xl-450px,
    .size-xl-450px {
        height: 450px;
    }

    .h-xl-460px,
    .size-xl-460px {
        height: 460px;
    }

    .h-xl-470px,
    .size-xl-470px {
        height: 470px;
    }

    .h-xl-475px,
    .size-xl-475px {
        height: 475px;
    }

    .h-xl-485px,
    .size-xl-485px {
        height: 485px;
    }

    .h-xl-490px,
    .size-xl-490px {
        height: 490px;
    }

    .h-xl-500px,
    .size-xl-500px {
        height: 500px;
    }

    .h-xl-530px,
    .size-xl-530px {
        height: 530px;
    }

    .h-xl-553px,
    .size-xl-553px {
        height: 553px;
    }

    .h-xl-640px,
    .size-xl-640px {
        height: 640px;
    }

    .h-xl-800px,
    .size-xl-800px {
        height: 820px;
    }
}

/* xxl */
@media (min-width: 1500px) {
    .w-xxl-25 {
        width: 25% !important;
    }

    .w-xxl-50 {
        width: 50% !important;
    }

    .w-xxl-75 {
        width: 75% !important;
    }

    .w-xxl-100 {
        width: 100% !important;
    }

    .w-xxl-auto {
        width: auto !important;
    }

    .w-xxl-auto {
        width: auto;
    }

    .w-xxl-5px,
    .size-xxl-5px {
        width: 5px;
    }

    .w-xxl-10px,
    .size-xxl-10px {
        width: 10px;
    }

    .w-xxl-15px,
    .size-xxl-15px {
        width: 15px;
    }

    .w-xxl-20px,
    .size-xxl-20px {
        width: 20px;
    }

    .w-xxl-25px,
    .size-xxl-25px {
        width: 25px;
    }

    .w-xxl-30px,
    .size-xxl-30px {
        width: 30px;
    }

    .w-xxl-35px,
    .size-xxl-35px {
        width: 35px;
    }

    .w-xxl-40px,
    .size-xxl-40px {
        width: 40px;
    }

    .w-xxl-45px,
    .size-xxl-45px {
        width: 45px;
    }

    .w-xxl-48px,
    .size-xxl-48px {
        width: 48px;
    }

    .w-xxl-50px,
    .size-xxl-50px {
        width: 50px;
    }

    .w-xxl-60px,
    .size-xxl-60px {
        width: 60px;
    }

    .w-xxl-64px,
    .size-xxl-64px {
        width: 64px;
    }

    .w-xxl-70px,
    .size-xxl-70px {
        width: 70px;
    }

    .w-xxl-80px,
    .size-xxl-80px {
        width: 80px;
    }

    .w-xxl-90px,
    .size-xxl-90px {
        width: 90px;
    }

    .w-xxl-100px,
    .size-xxl-100px {
        width: 100px;
    }

    .w-xxl-110px,
    .size-xxl-110px {
        width: 110px;
    }

    .w-xxl-120px,
    .size-xxl-120px {
        width: 120px;
    }

    .w-xxl-130px,
    .size-xxl-130px {
        width: 130px;
    }

    .w-xxl-140px,
    .size-xxl-140px {
        width: 140px;
    }

    .w-xxl-150px,
    .size-xxl-150px {
        width: 150px;
    }

    .w-xxl-160px,
    .size-xxl-160px {
        width: 160px;
    }

    .w-xxl-170px,
    .size-xxl-170px {
        width: 170px;
    }

    .w-xxl-180px,
    .size-xxl-180px {
        width: 180px;
    }

    .w-xxl-190px,
    .size-xxl-190px {
        width: 190px;
    }

    .w-xxl-200px,
    .size-xxl-200px {
        width: 200px;
    }

    .w-xxl-210px,
    .size-xxl-210px {
        width: 210px;
    }

    .w-xxl-220px,
    .size-xxl-220px {
        width: 220px;
    }

    .w-xxl-230px,
    .size-xxl-230px {
        width: 230px;
    }

    .w-xxl-240px,
    .size-xxl-240px {
        width: 240px;
    }

    .w-xxl-250px,
    .size-xxl-250px {
        width: 250px;
    }

    .w-xxl-260px,
    .size-xxl-260px {
        width: 260px;
    }

    .w-xxl-270px,
    .size-xxl-270px {
        width: 270px;
    }

    .w-xxl-280px,
    .size-xxl-280px {
        width: 280px;
    }

    .w-xxl-290px,
    .size-xxl-290px {
        width: 290px;
    }

    .w-xxl-300px,
    .size-xxl-300px {
        width: 300px;
    }

    .w-xxl-310px,
    .size-xxl-310px {
        width: 310px;
    }

    .w-xxl-320px,
    .size-xxl-320px {
        width: 320px;
    }

    .w-xxl-330px,
    .size-xxl-330px {
        width: 330px;
    }

    .w-xxl-340px,
    .size-xxl-340px {
        width: 340px;
    }

    .w-xxl-350px,
    .size-xxl-350px {
        width: 350px;
    }

    .w-xxl-360px,
    .size-xxl-360px {
        width: 360px;
    }

    .w-xxl-370px,
    .size-xxl-370px {
        width: 370px;
    }

    .w-xxl-380px,
    .size-xxl-380px {
        width: 380px;
    }

    .w-xxl-390px,
    .size-xxl-390px {
        width: 390px;
    }

    .w-xxl-400px,
    .size-xxl-400px {
        width: 400px;
    }

    .w-xxl-410px,
    .size-xxl-410px {
        width: 410px;
    }

    .w-xxl-420px,
    .size-xxl-420px {
        width: 420px;
    }

    .w-xxl-450px,
    .size-xxl-450px {
        width: 450px;
    }

    .w-xxl-470px,
    .size-xxl-470px {
        width: 470px;
    }

    .w-xxl-500px,
    .size-xxl-500px {
        width: 500px;
    }

    .w-xxl-530px,
    .size-xxl-530px {
        width: 530px;
    }

    .w-xxl-553px,
    .size-xxl-553px {
        width: 553px;
    }

    .w-xxl-640px,
    .size-xxl-640px {
        width: 640px;
    }

    .w-xxl-800px,
    .size-xxl-800px {
        width: 820px;
    }

    .h-xxl-auto {
        height: auto;
    }

    .h-xxl-5px,
    .size-xxl-5px {
        height: 5px;
    }

    .h-xxl-10px,
    .size-xxl-10px {
        height: 10px;
    }

    .h-xxl-15px,
    .size-xxl-15px {
        height: 15px;
    }

    .h-xxl-20px,
    .size-xxl-20px {
        height: 20px;
    }

    .h-xxl-25px,
    .size-xxl-25px {
        height: 25px;
    }

    .h-xxl-30px,
    .size-xxl-30px {
        height: 30px;
    }

    .h-xxl-35px,
    .size-xxl-35px {
        height: 35px;
    }

    .h-xxl-40px,
    .size-xxl-40px {
        height: 40px;
    }

    .h-xxl-45px,
    .size-xxl-45px {
        height: 45px;
    }

    .h-xxl-48px,
    .size-xxl-48px {
        height: 48px;
    }

    .h-xxl-50px,
    .size-xxl-50px {
        height: 50px;
    }

    .h-xxl-60px,
    .size-xxl-60px {
        height: 60px;
    }

    .h-xxl-64px,
    .size-xxl-64px {
        height: 64px;
    }

    .h-xxl-70px,
    .size-xxl-70px {
        height: 70px;
    }

    .h-xxl-80px,
    .size-xxl-80px {
        height: 80px;
    }

    .h-xxl-90px,
    .size-xxl-90px {
        height: 90px;
    }

    .h-xxl-100px,
    .size-xxl-100px {
        height: 100px;
    }

    .h-xxl-110px,
    .size-xxl-110px {
        height: 110px;
    }

    .h-xxl-120px,
    .size-xxl-120px {
        height: 120px;
    }

    .h-xxl-130px,
    .size-xxl-130px {
        height: 130px;
    }

    .h-xxl-140px,
    .size-xxl-140px {
        height: 140px;
    }

    .h-xxl-150px,
    .size-xxl-150px {
        height: 150px;
    }

    .h-xxl-160px,
    .size-xxl-160px {
        height: 160px;
    }

    .h-xxl-170px,
    .size-xxl-170px {
        height: 170px;
    }

    .h-xxl-180px,
    .size-xxl-180px {
        height: 180px;
    }

    .h-xxl-190px,
    .size-xxl-190px {
        height: 190px;
    }

    .h-xxl-200px,
    .size-xxl-200px {
        height: 200px;
    }

    .h-xxl-210px,
    .size-xxl-210px {
        height: 210px;
    }

    .h-xxl-220px,
    .size-xxl-220px {
        height: 220px;
    }

    .h-xxl-230px,
    .size-xxl-230px {
        height: 230px;
    }

    .h-xxl-240px,
    .size-xxl-240px {
        height: 240px;
    }

    .h-xxl-250px,
    .size-xxl-250px {
        height: 250px;
    }

    .h-xxl-260px,
    .size-xxl-260px {
        height: 260px;
    }

    .h-xxl-270px,
    .size-xxl-270px {
        height: 270px;
    }

    .h-xxl-280px,
    .size-xxl-280px {
        height: 280px;
    }

    .h-xxl-290px,
    .size-xxl-290px {
        height: 290px;
    }

    .h-xxl-300px,
    .size-xxl-300px {
        height: 300px;
    }

    .h-xxl-310px,
    .size-xxl-310px {
        height: 310px;
    }

    .h-xxl-320px,
    .size-xxl-320px {
        height: 320px;
    }

    .h-xxl-330px,
    .size-xxl-330px {
        height: 330px;
    }

    .h-xxl-340px,
    .size-xxl-340px {
        height: 340px;
    }

    .h-xxl-350px,
    .size-xxl-350px {
        height: 350px;
    }

    .h-xxl-360px,
    .size-xxl-360px {
        height: 360px;
    }

    .h-xxl-370px,
    .size-xxl-370px {
        height: 370px;
    }

    .h-xxl-380px,
    .size-xxl-380px {
        height: 380px;
    }

    .h-xxl-390px,
    .size-xxl-390px {
        height: 390px;
    }

    .h-xxl-400px,
    .size-xxl-400px {
        height: 400px;
    }

    .h-xxl-410px,
    .size-xxl-410px {
        height: 410px;
    }

    .h-xxl-420px,
    .size-xxl-420px {
        height: 420px;
    }

    .h-xxl-450px,
    .size-xxl-450px {
        height: 450px;
    }

    .h-xxl-460px,
    .size-xxl-460px {
        height: 460px;
    }

    .h-xxl-470px,
    .size-xxl-470px {
        height: 470px;
    }

    .h-xxl-475px,
    .size-xxl-475px {
        height: 475px;
    }

    .h-xxl-485px,
    .size-xxl-485px {
        height: 485px;
    }

    .h-xxl-490px,
    .size-xxl-490px {
        height: 490px;
    }

    .h-xxl-500px,
    .size-xxl-500px {
        height: 500px;
    }

    .h-xxl-530px,
    .size-xxl-530px {
        height: 530px;
    }

    .h-xxl-553px,
    .size-xxl-553px {
        height: 553px;
    }

    .h-xxl-640px,
    .size-xxl-640px {
        height: 640px;
    }

    .h-xxl-800px,
    .size-xxl-800px {
        height: 820px;
    }
}