
html, body {
	width: 100%;
	font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 400;
 	font-style: normal;
 	background-color: #000;
}
html {
	scroll-behavior: smooth;

}
body {
	color: #000;
	overflow: hidden;
	min-width: 350px;
	margin: 0;
	height: 100vh;
	font-size: clamp(16px, 1.4vw, 2vw);
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-position: center center;;
}
#wrapper {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}
header {
	display: flex;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    max-width: 90vw;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;;
    height: 15vh;
    position: relative;
}
h1 {
	text-indent: -1000em;
	background-image: url(../img/White-Logo-2.png);
/*text-shadow: 0 0 .1em rgba(0,0,0,1);*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	font-size: 5vh;
	height: 100%;
	width: 100%;
	color: var(--maincolor);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
nav {
/*    position: absolute;*/
/*    right: 1vw;*/
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#top-nav {
	display: none;
}
#side-nav {
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
	letter-spacing: 0.05em;
	height: 100%;
	text-transform: uppercase;
	font-weight: 600;

}

:root {
	--maincolor: #10edff;
}
a {
	color: #fff;
	text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: .2em;
}
a:hover {
	text-decoration-color: var(--maincolor);
}

.social-link {
	transition: text-decoration-color .1s;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-left: 1em;
}
.icon {
	margin-left: .3em;
	transition: fill .8s, transform .5s;
	height: 100%;
	fill: #fff;
}
.social-link:hover {
	transition: text-decoration-color .6s;
	text-decoration-color: var(--maincolor);	
	transform: scale(1.1);
}

.social-link:hover .icon {
	fill: var(--maincolor);
	transition: fill .1s, transform .3s;
	transform: scale(1.25);
}
h2 {
	color: #76777d;
	letter-spacing: -0.02vw;
}
nav a {
	padding: 1vh;
}
nav svg{
	width: 2vw;
}
.btn{
	
}

#dolphinWrap {
	opacity: 0;
	top: 0;
	left: 0;
	position: absolute;
    width: 6vh;
    height: 6vh;
/*    filter: hue-rotate(8deg) brightness(3.7);*/
}
#dolphin {
	 position: absolute;
    width: 6vh;
    height: 6vh;
    background-image: url(../img/dolphin.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
/*    border-radius: 50%;*/
    pointer-events: none; /* prevents blocking clicks */
    z-index: 100;
}
main {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	max-width: 90vw;
	margin: 0 auto;
	width: 100%;
	height: auto
}
section {
	width: 15%; 
	margin: 0 auto;
	padding: 3vh;
	display: flex;
	flex-direction: column;
}
section a {
	font-size: 70%;
	margin: 1.5vh 0;
	
}

#calendar {
	opacity: .8;
	max-width: 80vw;
	min-width: 350px;
	width: 90%;
	padding: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
#calendar iframe {
	width: 100%;
	height: 60vh;
}
#catalog {
	margin: 0 0 0 0;
	text-align: right;
	align-items: flex-end;
}

footer {
	display: flex;
	flex-direction: row;
	max-width: 60vw;
	margin: 1.5em auto 0;
	padding-bottom: 1em;
	align-items: center;
	font-variant: small-caps;
	box-sizing: border-box;
	justify-content: space-between;
	flex-direction: row;
	font-size: 60%;
	width: 58%;
}
a#footer-logo {
	max-width: 20%;
	width: auto;
	display: inline-flex;
	height: 100%;
}
#footer-logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#contact {
	
}
footer a {
	height: 1.2em;
	display: inline-flex;
	width: auto;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
footer a .icon{
	margin: .3em;
}
footer a:hover {
	transition: text-decoration-color .6s;
	text-decoration-color: var(--maincolor);	
	transform: scale(1.1);
}
footer a.mailing {
	font-size: 150%;
	
	text-align: right;
}
footer a:hover .icon {
	fill: var(--maincolor);
	transition: fill .1s, transform .3s;
	transform: scale(1.25);
}
#privacy {
	position: absolute;
	bottom: .5em;
	right: .5em;
	font-size: 1vh;
}