/* http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
*/
html {
	font-size: 62.5%;
	/* changes a default 16px font size to 10px */
	
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    color: var(--text-color);
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {text-decoration: none; cursor: pointer; transition: all 0.3s ease-in-out 0s;}
button {transition: all 0.3s ease-in-out 0s;}
*, *:after, *:before {box-sizing: border-box;}
/* ===== Scrollbar CSS ===== */
* {
	scrollbar-width: thin;
	scrollbar-color: #018dfb #018dfb;
}

*::-webkit-scrollbar {
	width: 7px;
}

*::-webkit-scrollbar-track {
	background: #000;
}

*::-webkit-scrollbar-thumb {
	background-color: #018dfb;
	border-radius: 10px;
	border: 0px solid #ffffff;
}
::-webkit-input-placeholder { /* Edge */
	color: inherit;
	opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: inherit;
	opacity: 1;
}
::placeholder {
	color: inherit;
	opacity: 1;
}

body {font-family: 'Hanken Grotesk', sans-serif; color: var(--text-color); font-size: 1.7rem; background: url(../images/bg.jpg) center center; background-size: cover; background-attachment: fixed;}
img {max-width: 100%; vertical-align: top;}
p {line-height: 1.4;}
input, select {font-family: 'Hanken Grotesk', sans-serif; font-weight: normal;}

:root {
    --primary: #1e50ff;
    --text-color: #fafafa;
}
.owl-dots {}
.owl-theme.owl-carousel .owl-dots {margin-top: 52px !important;}
.owl-theme.owl-carousel .owl-dots .owl-dot {width: 17px; height: 17px; border: 2px solid currentColor; border-radius: 100%; margin: 0 4px; position: relative;}
.owl-theme.owl-carousel .owl-dots .owl-dot span {position: absolute; top: 3px; bottom: 3px; left: 3px; right: 3px; opacity: 0; margin: 0; background: currentColor !important; width: auto; height: auto;}
.owl-theme.owl-carousel .owl-dots .owl-dot.active span {opacity: 1;}

.justify-center {justify-content: center;}

.floating-man {  
    animation-name: floating;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}
@keyframes floating {
    from { transform: translate(0,  -0px); }
    65%  { transform: translate(0, -50px); }
    to   { transform: translate(0, 0px); }    
}

@media screen and (min-width:1024px) and (max-width:1400px){ 
	html {
		font-size: 50%;
	}
}
@media screen and (max-width:768px) {
	.owl-theme.owl-carousel .owl-dots {margin-top: 20px !important;}
} 