

/* root */
:root {
    /* font */

    --nocturnal: 'nocturnal', sans-serif;
    --articulatCF: 'articulatCF', sans-serif;
    --raleway: "Raleway", sans-serif;

    /* color */
    --wildSand: rgba(245, 245, 245, 1); /* #F5F5F5 */
    --white: rgba(255, 255, 255, 1); /* #FFFFFF */
    --white-05: hsla(0, 0%, 100%, 0.5); /* #FFFFFF80 */
    --bismark: rgba(71, 111, 132, 1); /* #476F84 */
    --mongoose: rgba(178, 150, 118, 1); /* #b29676 */
    --shark: rgba(36, 39, 45, 1); /* #24272D */
    --shark-05: rgba(36, 39, 45, 0.5); /* #24272D80 */
    --mako: rgba(61, 64, 71, 1); /* #3D4047 */
    --mercury: rgba(225, 225, 225, 1); /* #E1E1E1 */
    --woodsmoke: rgba(24, 25, 29, 1); /* #18191D */
    --silver: rgba(196, 196, 196, 1); /* #C4C4C4 */
    --woodsmoke-1: rgba(24, 27, 32, 1); /* #181B20 */
    --teak: rgba(180, 160, 111, 1); /* #B4A06F */
    --woodsmoke-2: rgba(13, 13, 16, 1); /* #0D0D10 */
    --wildBlueYonder-03: rgba(107, 123, 178, 0.3); /* #6b7bb24d */
    --wildBlueYonder: rgba(107, 123, 178, 1); /* #6B7BB2 */
    --alabaster: rgba(252, 252, 252, 1); /* #FCFCFC */
    --stormGray: rgba(109, 110, 125, 1); /* #6d6e7dff */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: inherit;
    line-height: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1;
    font-family: var(--nocturnal);
    display: flex;
    flex-direction: column;
    max-width: 1920px;
    margin: auto;
}

/* scrollbar none */
.scrollbar-none,
.scrollbar-none * {
    scrollbar-width: none;
}

.scrollbar-none::-webkit-scrollbar,
.scrollbar-none *::-webkit-scrollbar {
    display: none;
}

/* img, svg, video */
img,
svg,
video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-position: center;
    object-fit: contain;
}


.video {
    position: relative;
    width: 100%;
    height: auto;
}

.video::after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%;
}

.video video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ul ol */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.show-list ul {
    list-style: disc;
    padding-left: 20px;
}

.show-list ol {
    list-style-type: decimal;
    padding-left: 20px;
}

/* container */
@media (min-width:1500px) {
    .container {
        max-width: 1450px;
    }
}

/* anchor tag */
a {
    text-decoration: unset;
    color: inherit;
}

a:hover {
    color: inherit;
}

textarea {
    resize: none;
}

/* button */
.button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    height: 70px;
    width: 255px;
    padding: 0;
    color: var(--wildSand);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 97%;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    color: var(--wildSand);
    transform: translateY(-10px);
}
.button:active {
    scale: 0.9;
}
.button-bismark {
    background-color: var(--bismark);
}

.button-mongoose {
    background-color: var(--mongoose);
}

/* swiper slide */
.swiper-slide {
    height: auto !important;
}

/* typography */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.text-mb h1,
.text-mb h2,
.text-mb h3,
.text-mb h4,
.text-mb h5,
.text-mb h6,
.text-mb p:not(:last-of-type) {
    margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-weight: 700;
}

i {
    font-style: italic;
}

h2 {
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: 90%;
    text-transform: capitalize;
}


@media (max-width: 991.98px) {
    h2 {
        font-size: 50px;
        line-height: 100%;
    }
}

p {
    font-family: var(--articulatCF);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

/* error page start */

.error-page {
    text-align: center;
    padding: 100px 0;
}

.error-page h1 {
    font-size: 145px;
    color: var(--mongoose);
}

.error-page p {
    font-size: 45px;
    font-weight: 700;
}

.error-page a {
    border: none;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 208.35px;
    height: 48px;
    background-color: var(--bismark);
    color: var(--white);
    border-radius: 8px;
    margin-top: 70px;
    font-size: 18px;
    font-weight: 700;
    line-height: 19.2px;
text-transform: uppercase;
}

/* error page end */
/* thank you start */

.thank_you {
    text-align: center;
    padding: 100px 0;
}

.thank_you h1 {
    font-size: 75px;
    color: var(--mongoose);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.thank_you p {
    font-size: 35px;
}

/* thank you end */
