@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap');


:root {
    --khand: "Khand", sans-serif;
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: inherit
}

body,
html {
    height: 100%
}

html {
    font-size: 16px
}

body {
    line-height: 1;
    font-size: 16px;
    font-family: "Baloo Bhai", sans-serif;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

ol li,
ul li {
    list-style: none
}

a {
    text-decoration: none
}

img {
    max-width: 100%
}

.slider {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden
}

.slider__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none;
    white-space: nowrap
}

.slider__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    visibility: hidden
}

.slider__item {
    position: relative;
    height: 100%;
    width: 100%;
    display: inline-block
}

.slider-controls {
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0px);
    transform: translate3d(0px, -50%, 0px);
    z-index: 999;
}

.slider-controls>.previous,
.slider-controls>.next {
    position: absolute;
    width: 64px;
    height: 64px;
    display: block;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-size: 64px;
    background-color: transparent;
    background-repeat: no-repeat;
    z-index: 9999;
}

.slider-controls>.next {
    right: 20px;
    background-image: url(https://mverissimo.github.io/tweenslideshow/dist/assets/images/arrow-right.svg);
    z-index: 999;
}

.slider-controls>.previous {
    left: 20px;
    background-image: url(https://mverissimo.github.io/tweenslideshow/dist/assets/images/arrow-left.svg );
    /* z-index: 999; */

}

.slider-navigation {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    text-align: center;
    /* margin-top: 14px; */
}

.slider-navigation>li {
    position: relative;
    display: inline-block;
    margin-right: 12px
}

.slider-navigation>li>a {
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 3px solid #FFF;
    border-radius: 50%;
    background: transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.slider-navigation>li>a.is-active {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0)
}

.section {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box
}

.grid {
    display: table
}

.grid>.column {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background-color: #df8600;
    width: 86%;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
    margin: 0 auto;
}

/* .grid>.column:first-child {
    text-align: right
} */

.slide-burger {
    background: rgb(254, 173, 74);
    background: linear-gradient(52deg, rgba(254, 173, 74, 1) 0%, rgba(254, 150, 35, 1) 100%);
}

.slide-astronaut {
    background: rgb(0, 167, 204);
    background: linear-gradient(117deg, rgba(0, 167, 204, 1) 0%, rgba(0, 136, 178, 1) 100%);
}

.slide-coffee {
    background: rgb(28,4,0);
    background: linear-gradient(83deg, rgba(28,4,0,1) 0%, rgba(88,30,11,1) 100%); 
}

.title {
	font-size: 55px !important;
	/* font-weight: 100; */
	color: #FFF;
	text-transform: capitalize;
	text-align: left;
	margin-left: 6rem;
	font-weight: 700;
	font-family: var(--khand);
	z-index: 100;
	position: relative;
	line-height: 63px;
}
.caption {
    position: relative;
    left: 40px;
    z-index: 999;
}

@media only screen and (min-width: 768px) {
    .title {
        font-size: 7em
    }
}



#box {
    width: 100px;
    height: 100px;
    background-color: blue;
    position: relative;
}

@keyframes topToBottom {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.animate {
    animation: topToBottom 1s forwards;
}

/*# sourceMappingURL=maps/application.min.css.map */