@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap" rel="stylesheet');
@import url('./owl.carousel.min.css');
@import url('./animate.min.css');
@import url('./animate-new.min.css');
@import url('./aos.css');
@import url('./app.css');

:root {
    --font-family: "Hind", sans-serif;
    --blackColor: 0, 0, 0;
    --whiteColor: 255, 255, 255;
    --primaryColor: 255, 204, 0;
    --secondaryColor: 224, 180, 4;
    --darkGrayColor: 58, 56, 79;
    --logoLayer: 255, 224, 100;
    --smallFontSize: 16px;
    --baseFontSize: 18px;
    --regularFontSize: 22px;
    --mediumFontSize: 30px;
    --largeFontSize: 42px;
    --xlFontSize: 60px;
    --Animation300: 300ms all;
    --container-width: 1128px;
}

body[data-greeting="afternoon"] {
    --primaryColor: 0, 171, 31;
    --secondaryColor: 5, 117, 25;
    --logoLayer: 55, 199, 81;
}

body[data-greeting="evening"] {
    --primaryColor: 233, 49, 49;
    --secondaryColor: 191, 23, 23;
    --logoLayer: 255, 79, 79;
}

body[data-greeting="night"] {
    --primaryColor: 106, 44, 146;
    --secondaryColor: 72, 21, 113;
    --logoLayer: 174, 111, 214;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: var(--regularFontSize);
    color: rgb(var(--blackColor));
    line-height: 31px;
    font-weight: 300;
    overflow-x: hidden;
}

html {
    margin: 0 24px 24px;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

p {
    font-size: var(--regularFontSize);
    line-height: 31px;
}

main {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

button,
input[type=button] {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
button,
svg,
path {
    transition: var(--Animation300);
}

p+p {
    margin-top: 15px;
}

a,
a:hover {
    text-decoration: none;
}

svg {
    display: block;
}

textarea,
input,
input[type="button"] {
    font-family: var(--font-family);
    transition: var(--Animation300);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}


h1 {
    font-size: var(--xlFontSize);
    line-height: 70px;
}





/* Welcome Section Styles */
@keyframes welcome-fade-in {
    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes welcome-fade-out {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes welcome-close {
    from {
        transform: scale(1);
        opacity: 1
    }

    to {
        transform: scale(40);
        opacity: 0
    }
}

.welcome {
    z-index: 900000000;
    will-change: opacity;
    contain: strict;
    pointer-events: none
}

.welcome,
.welcome div[class^=welcome__slide] {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    font-size: 120px;
    text-align: center;
    font-weight: 700;
    pointer-events: none
}

.welcome>div>div {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    padding: 30px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 100%;
    transition: all .5s;
    -webkit-transition: all .5s
}

.welcome>div {
    opacity: 0;
    background: rgba(var(--secondaryColor));
    color: rgba(var(--whiteColor));
}

.welcome .welcome__slide--1 {
    opacity: 1;
    background: rgba(var(--whiteColor));
    color: rgba(var(--secondaryColor));
    z-index: 1
}

.welcome .welcome__slide--1 .welcome__greeting span {
    opacity: 0;
    transform: scale(.2);
    display: inline;
    animation-name: welcome-fade-in;
    animation-duration: .1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards
}

.welcome .welcome__slide--1 .welcome__greeting span:first-child {
    animation-delay: .1s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(2) {
    animation-delay: .15s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(3) {
    animation-delay: .2s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(4) {
    animation-delay: .25s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(5) {
    animation-delay: .3s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(6) {
    animation-delay: .35s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(7) {
    animation-delay: .4s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(8) {
    animation-delay: .45s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(9) {
    animation-delay: .5s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(10) {
    animation-delay: .55s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(11) {
    animation-delay: .6s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(12) {
    animation-delay: .65s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(13) {
    animation-delay: .7s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(14) {
    animation-delay: .75s
}

.welcome .welcome__slide--1 .welcome__greeting span:nth-child(15) {
    animation-delay: .8s
}

.welcome.shown .welcome__slide--2 {
    z-index: 2;
    opacity: 1;
    transition-delay: 1s !important
}

.welcome.shown .welcome__slide--3 {
    z-index: 3;
    opacity: 1;
    transition-delay: 1.5s !important
}

.welcome.shown .welcome__slide--4 {
    opacity: 1;
    transition-delay: 2s !important;
    z-index: 4;
    overflow: hidden
}

.welcome .welcome__slide--4 .welcome__scale {
    will-change: transform;
    transform-origin: center;
    animation-name: welcome-close;
    animation-duration: .7s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 4s
}

.welcome.welcome-fade-out {
    animation-name: welcome-fade-out;
    animation-duration: .5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards
}

.welcome .welcome__greeting > div {
display: none;
}

.welcome.morning .welcome__greeting > div, .welcome.afternoon .welcome__greeting > div, .welcome.evening .welcome__greeting > div {
    display: block;
    }

.welcome.morning .welcome__greeting div:not(.morning) {
    display: none
}

.welcome.afternoon .welcome__greeting div:not(.afternoon) {
    display: none
}

.welcome.evening .welcome__greeting div:not(.evening) {
    display: none
}

@media only screen and (max-width:1023px) {
    .welcome,
    .welcome div[class^=welcome__slide] {
        font-size: 65px
    }

    .welcome>div>div {
        top: 47%
    }
}

@media only screen and (max-width:767px) {
    .welcome,
    .welcome div[class^=welcome__slide] {
        font-size: 45px
    }

    .welcome>div>div {
        top: 47%
    }
}