:root {
    /* COLORS */
    --main-color: #33b6bb;
    --yellow-color: #d7ce34;
    --white-color: #FFFFFF;
    --black-color: #000;
    --red-color: red;
    --light-green-color: #25d366;
    --orange-color: #f79420;
    --golden-color: #CBAA6B;
    --blue-color: rgb(13 110 253);
    --heading-light-black: #828282;
    --heading-color: #000000;
    --para-graph-light-color: #3c4043;
    --para-color: #6e6e6e;
    --light-sky-blue-bg-color: #27bdbe;
    --bg-red-light-color: #f2dede;
    --bg-gray-color: #dddddd;
    --bg-gray-light-color: #f5f5f5;
    --bg-blue-light-color: #f4fbff;
    --bg-white: #FFFFFF;
    --bg-black: #000000;
    --border-color-light: #ddd;

    /* transition */
    --transition-3: all .3s ease-in-out;
    --transition-4: all .5s ease-in-out;
    --transition-5: all .5s ease-in-out;
    /* cursor */
    --cursor: pointer;
    /* box-shadow */
    --box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --box-shadow-2: rgba(149, 157, 165, .2) 0 8px 24px;

    /* font-family */
    --font-family: "Manrope", serif;
    --font-style: normal;

    /* TYPOGRAPHY font-size */

    /* --x-large-font-size: 40px; */
    --font-size-h1: 40px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --font-size-p: 16px;
    --paragraph-small: 15px;

    --x-small-font-size: 14px;

    --large-heading: 50px;
    --common-heading: 24px;
    --small-heading: 15px;

    /* font-weight */

    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;

    /* line-height */

    --line-height-1: 1.1;
    --line-height-1-2: 1.2;
    --line-height-1-3: 1.3;
    --line-height-1-4: 1.4;
    --line-height-1-5: 1.5;
    --line-height-1-6: 1.6;
    --line-height-1-7: 1.7;

    /* border-radius */

    --border-radius-10: 10px;
    --border-radius-20: 20px;
    --border-radius-30: 30px;
    --border-radius-40: 40px;
    --border-radius-50: 50px;

    /* border */

    --border-1: 1px solid var(--border-color-light);
    /* --border-2: 1px solid var(--border-color-light); */
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-Regular.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-Medium.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-Light.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-SemiBold.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-Bold.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-ExtraBold.ttf);
    font-style: normal;
    display: swap;
}

@font-face {
    font-family: var(--font-family);
    src: url(../font/Manrope-ExtraLight.ttf);
    font-style: normal;
    display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-1-4);
}

html,
body {
    font-family: var(--font-family);
    font-style: var(--font-style);
}

a {
    text-decoration: none;
    color: var(--black-color);
}

li {
    list-style: none;
}

ul,
figure {
    margin: 0;
    padding: 0;
}

/*  inhe apne hisab kar lo */
.container-sm,
.container-lg,
.container-x-lg,
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 860px;
}

.container {
    max-width: 1240px;
}

.container-lg {
    max-width: 1280px;
}

.container-x-lg {
    max-width: 1340px;
    padding: 0 20px;
}

.container-xx-lg {
    max-width: 1440px;
    padding: 0 70px;
}

.container-full {
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

p a,
li p a {
    color: var(--main-color) !important;
    font-weight: var(--font-weight-600);

}


.black-btn {
    width: max-content;
    height: 40px;
    font-weight: 100;
    margin-top: 10px;
    padding: 6px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}




/* common css */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--font-family);
    font-style: normal;

}

h1,
h2 {
    font-weight: var(--font-weight-800);
}

h5,
h6,
.common-heading {
    font-weight: var(--font-weight-500);
}

h1 {
    font-size: var(--font-size-h1);
    text-transform: capitalize;
}

h2 {
    font-size: var(--font-size-h2);
    text-transform: capitalize;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-700);
    text-transform: capitalize;
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-500);
    text-transform: capitalize;
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-600);
    text-transform: capitalize;
}

h6 {
    font-size: var(--font-size-h6);
    text-transform: capitalize;

}

p {
    font-size: 15px;
    color: #3e3b3b;
    line-height: 1.6;
    text-transform: capitalize;
}

.para {
    font-size: var(--paragraph-small);
    color: var(--para-color);
    line-height: var(--line-height-1-6);
}

.large-heading {
    font-size: var(--large-heading);
    font-weight: var(--font-weight-800);
}

.small-heading {
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-400);
    font-weight: var(--font-weight-900);
}

.small-text {
    font-size: var(--x-small-font-size);
    font-weight: normal;
}

.common-heading {
    font-size: var(--common-heading);
    line-height: var(--line-height-1-4);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.relative,
.common-banner {
    position: relative;
}

.common-banner {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-layer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    background-color: rgba(2, 2, 2, 0.616);
}



.text-center {
    text-align: center;
}

/* flex and grid css */


.flex {
    display: flex;
    flex-wrap: wrap;
}

.no-wrap {
    flex-wrap: nowrap;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.space-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-end {
    justify-content: end;
}

.grid,
.grid-1,
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
    display: grid;
}

.grid-2 {
    grid-template-columns: auto auto;
}

.grid-3 {
    grid-template-columns: auto auto auto;
}

.grid-4 {
    grid-template-columns: auto auto auto auto;
}

.grid-5 {
    grid-template-columns: auto auto auto auto auto;
}

.grid-6 {
    grid-template-columns: auto auto auto auto auto auto;
}

.grid-8 {
    grid-template-columns: auto auto auto auto auto auto auto auto;
}

/* row-gap and column-gap css */

.gap-10 {
    gap: 10px 10px;
}

.gap-20 {
    gap: 20px 20px;
}

.gap-30 {
    gap: 30px 30px;
}

.gap-40 {
    gap: 40px 40px;
}

.gap-50 {
    gap: 50px 50px;
}

/* row-gap css */
.row-gap-10 {
    row-gap: 10px;
}

.row-gap-20 {
    row-gap: 20px;
}

.row-gap-30 {
    row-gap: 20px;
}

.row-gap-40 {
    row-gap: 40px;
}

.row-gap-50 {
    row-gap: 50px;
}

/* column-gap css */
.column-gap-10 {
    column-gap: 10px;
}

.column-gap-20 {
    column-gap: 20px;
}

.column-gap-30 {
    column-gap: 20px;
}

.column-gap-40 {
    column-gap: 40px;
}

.column-gap-50 {
    column-gap: 50px;
}

/* column css */


.col-half,
.col-6 {
    width: 48%;
}

.col-2 {
    width: 20%;
}

.col-3 {
    width: 32%;
}

.col-4 {
    width: 24%;
}

.col-5 {
    width: 30%;
}

.col-7 {
    width: 68%;
}

.col-55 {
    width: 55%;
}

.col-45 {
    width: 43%;
}


/* form css */
/* form css */

label {
    font-size: var(--x-small-font-size);
    margin-bottom: 6px;
    display: block;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}


.form-control {
    width: 100%;
    font-size: var(--x-small-font-size);
    padding: 12px 16px;
    color: #757575;
    background-color: var(--bg-white);
    border: var(--border-1);
    border-radius: var(--border-radius-10);
    outline: none;
    cursor: var(--cursor);
    transition: var(--transition-4);
}

input[type="date"] {
    width: 100%;
    display: block;
}

select option {
    width: 100%;
    display: block;
    color: var(--black-color);
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 88%;
}

.w-70 {
    width: 68%;
}

.w-50 {
    width: 48%;
}

.w-32 {
    width: 32%;
}

.w-30 {
    width: 30%;
}

.w-25 {
    width: 24%;
}

.w-20 {
    width: 19%;
}

.w-15 {
    width: 15%;
}

button {
    outline: none;
    border: none;
}

.bulit-list {
    padding-left: 30px;
    margin: 20px 0;
}

.number-list li {
    list-style: unset;
}

.bulit-list li {
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.6;
}

.bulit-list li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.bulit-list li ol li {
    list-style: unset;
}

.number-list li ul li {
    list-style: disc;
}

/* common margin */
.mtb {
    margin: 100px 0;
}

.my {
    margin: 50px 0;
}

.my-20 {
    margin: 20px 0;
}

.mt-top-10 {
    margin-top: 10px;
}

.mt-top-20 {
    margin-top: 20px;
}

.mt-top-30 {
    margin-top: 30px;
}

.mt-top-40 {
    margin-top: 40px;
}

.mt-top-50 {
    margin-top: 40px;
}

.mb-bottom-10 {
    margin-bottom: 50px;
}

.mb-bottom-20 {
    margin-bottom: 20px;
}

.mb-bottom-30 {
    margin-bottom: 30px;
}

.mb-bottom-40 {
    margin-bottom: 40px;
}

.mb-bottom-50 {
    margin-bottom: 50px;
}

/* common padding css */
.ptb {
    padding: 100px 0;
}

.py {
    padding: 50px 0;
}

.py-20 {
    padding: 20px 0;
}

.px {
    padding: 0 20px;
}

.px-left {
    padding-left: 20px;
}

.px-right {
    padding-right: 20px;
}

.pt-top-10 {
    padding-top: 10px;
}

.pt-top-20 {
    padding-top: 20px;
}

.pt-top-30 {
    padding-top: 30px;
}

.pt-top-40 {
    padding-top: 40px;
}

.pt-top-50 {
    padding-top: 50px;
}

.pb-bottom-10 {
    padding-top: 10px;
}

.pb-bottom-20 {
    padding-top: 20px;
}

.pb-bottom-30 {
    padding-top: 30px;
}

.pb-bottom-40 {
    padding-top: 40px;
}

.pb-bottom-50 {
    padding-top: 50px;
}

/* common weight  css*/
.weight-100 {
    font-weight: var(--font-weight-100);
}

.weight-200 {
    font-weight: var(--font-weight-200);
}

.weight-300 {
    font-weight: var(--font-weight-300);
}

.weight-400 {
    font-weight: var(--font-weight-400);
}

.weight-500 {
    font-weight: var(--font-weight-500);
}

.weight-600 {
    font-weight: var(--font-weight-600);
}

.weight-700 {
    font-weight: var(--font-weight-700);
}

.weight-800 {
    font-weight: var(--font-weight-800);
}

/*  common border-radius  css*/
.round-10 {
    border-radius: var(--border-radius-10);
}

.round-20 {
    border-radius: var(--border-radius-20);
}

.round-30 {
    border-radius: var(--border-radius-30);
}

.round-40 {
    border-radius: var(--border-radius-40);
}

.round-50 {
    border-radius: var(--border-radius-50);
}

/*common table  css*/

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-responsive .common-table {
    width: 100%;
    border-collapse: collapse;
}

.table-responsive .common-table tr th,
.table-responsive .common-table tr td {
    border: 1px solid #dddd;
    padding: 10px;
}

.text-hide {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.amenities-list {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}








