/* ------ VARIABLES ------ */
:root {
    --red: #eb5757;
    --blue: #004276;
    --map-height: 520px;
    --map-width: 100%;
}

/* ------ GENERAL ------ */

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: var(--blue);
    text-decoration: none;
}

:focus {
    outline: 0;
}

.big {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 9.6rem;
    line-height: 75%;
	color: var(--blue);
}

.medium {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    line-height: 90%;
    color: var(--blue);
    -ms-grid-column-align: start;
    justify-self: start;
}


/* ------ MAIN PAGE ------- */

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    scroll-behavior: smooth;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.main {
	max-width: 1200px;
	margin: auto;
}


/* ------ SPLASH SCREEN ------ */

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    width: 100%;
    height: 100%;
    background-color:var(--blue);
    overflow: hidden;
    z-index: 9999;
}

.splash-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 99vw;
    height: 98vh;
    border: 0.5px solid white;
}

.splash-col {
    display: -ms-grid;
    display: grid;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 40%;
    height: 20%;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 13rem;
    line-height: 0.8;
    text-transform: uppercase;
    color: white;
}

.tear-txt {
    -webkit-animation: color 1s forwards;
            animation: color 1s forwards;
}

.tear-txt:before {
    content: '';
    position: fixed;
    width: 580px;
    height: 60px;
    background-image: url('../img/rip-white.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: -100px;
    margin-top: 20px;
    -webkit-animation: reveal 1s forwards;
    animation: reveal 1s forwards;
}

.button-col {
    display: -ms-grid;
    display: grid;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    width: 20vw;
    height: 60vh;
}

#splash-btn {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    color: white;
    background: transparent;
    border: 4px solid white;
    border-radius: 50px;
    padding: 5px 20px;
    position: fixed;
    width: 230px;
    top: calc(50% - 40px);
    left: calc(50% + 260px);
}

#splash-btn:hover {
    background-color: white;
    color: var(--blue);
}

#logo-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 2vw;
    min-width: 30px;
    margin: 15px 12px;
}

/* ------ animations SPLASH SCREEN ----- */

@-webkit-keyframes reveal {
    0% { -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0); }
    50% { -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0); }
    100% { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
}

@keyframes reveal {
    0% { -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0); }
    50% { -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0); }
    100% { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
}

/* ------ media queries SPLASH SCREEN */

@media  only screen and (max-width: 1439px) {
	.splash-col {
		font-size: 9rem;
		margin-left: 0;
	}
	.tear-txt:before {
		width: 380px;
		height: 40px;
		margin-left: -55px;
		margin-top: 15px;
	}
}

@media  only screen and (max-width: 1199px) {
	.splash-col {
		font-size: 7rem;
		margin-left: -10%;
	}
	.tear-txt:before {
		width: 320px;
		height: 35px;
		margin-left: -55px;
		margin-top: 12px;
	}
	#splash-btn {
		left: calc(50% + 100px);
	}
}

@media  only screen and (max-width: 767px) and (orientation: portrait) {
	.splash-col {
		margin-left: 20%;
		margin-top: -40%;
	}
	#splash-btn {
		left: calc(50% - 115px);
		top: calc(65%);
	}
}

@media  only screen and (max-width: 767px) and (orientation: landscape) {
	.splash-col {
		font-size: 4rem;
		line-height: 0.7;
		margin-right: 0;
	}
	.tear-txt:before {
		width: 160px;
		height: 17px;
		margin-left: -20px;
		margin-top: 6px;
	}
	#splash-btn {
		font-size: 2rem;
		width: 180px;
		border-width: 3px;
		top: calc(50% - 25px);
		left: calc(50% + 60px);
	}
}

@media (max-height: 399px) and (orientation: landscape) {
	.splash-col {
		font-size: 4rem;
		line-height: 0.7;
		margin-right: 0;
	}
	.tear-txt:before {
		width: 160px;
		height: 17px;
		margin-left: -20px;
		margin-top: 6px;
	}
	#splash-btn {
		font-size: 2rem;
		width: 180px;
		border-width: 3px;
		top: calc(50% - 25px);
		left: calc(50% + 60px);
	}
}

@media  only screen and (max-width: 499px) and (orientation: portrait) {
	.splash-col {
		font-size: 6rem;
		margin-right: -5%;
	}
	.tear-txt:before {
		width: 250px;
		height: 25px;
		margin-left: -35px;
		margin-top: 10px;
	}
}

@media  only screen and (max-width: 374px) and (orientation: portrait) {
	.splash-col {
		font-size: 4rem;
		line-height: 0.7;
		margin-right: -5%;
	}
	.tear-txt:before {
		width: 160px;
		height: 17px;
		margin-left: -20px;
		margin-top: 6px;
	}
	#splash-btn {
		font-size: 2rem;
		width: 180px;
		border-width: 3px;
		left: calc(50% - 90px);
	}
}

/* ------ INTRO SECTION ------ */

.section-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
}

.location {
	width: 797px;
	opacity: 0.6;
	display: -ms-grid;
	display: grid;
	-ms-grid-row-align: center;
	align-self: center;
	overflow: hidden;
}

.intro {
    width: 420px;
    height: 100%;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

#typedtext {
	position: relative;
	min-width: 495px;
	min-height: 300px;
	margin-left: 126px;
	z-index: 1;
}

/* ------ media queries INTRO SECTION */

@media  only screen and (max-width: 1199px) and (orientation: landscape) {
	.location {
		top: 0;
		right: 0;
		min-height: 100vh;
		min-width: 103vh;
	}
}

@media  only screen and (max-width: 991px) {
	.big {
		font-size: 8rem;
	}
	#typedtext {
		min-width: 415px;
		min-height: 240px;
		margin-left: 30%;
	}
}

@media  only screen and (max-width: 991px) and (orientation: landscape) {
	.big {
		font-size: 6rem;
	}
	.location {
		margin-left: -122px;
		
	}
	#typedtext {
		min-width: 360px;
		min-height: 210px;
		margin-left: 24%;
		margin-top: 20px;
	}
}

@media  only screen and (max-width: 767px) {
	.big {
		font-size: 6rem;
	}
	.location {
		margin-left: -135px;
	}
	#typedtext {
		min-width: 360px;
		min-height: 210px;
		margin-left: 22%;
		margin-top: 20px;
	}
}

@media  only screen and (max-width: 480px) {
	.intro {
    display: block;
}
	.location {
		position: absolute;
		bottom: 0;
		height: 96vw;
		width: 100vw;
		margin: auto;
		overflow: hidden;
}
	#typedtext {
		font-size: 16vw;
		margin-left: 8vw;
		line-height: 0.8;
		margin-top: 13vw;
	}
}

@media  only screen and (max-width: 480px) and (min-height: 800px) and (orientation: portrait) {
	#typedtext {
		margin-top: 74vw;
		margin-left: 10vw;
	}
}

/* ------ ABOUT SECTION ------ */

.section-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    max-height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 3;
    overflow: hidden;
}

.about {
	width: 380px;
	min-width: 380px;
	-ms-grid-row-align: center;
	align-self: center;
	font-size: 1.4rem;
	line-height: 1.4;
	text-align: left;
}

.about h1,
.about h2,
.about h3,
.about h4,
.about h5,
.about h6,
.about p:not(.medium) {
	font-size: inherit;
	display: inline;
}

.tbba {
	width: 780px;
	display: -ms-grid;
	display: grid;
	-ms-grid-row-align: center;
	align-self: center;
	background-color: var(--blue);
	background-image: url(../img/tbba.jpg);
	background-position: bottom 18px left 16px;
    background-repeat: no-repeat;
    background-size: 8vw;
}

.tbba {
	height: 100%;
	max-height: 500px;
	margin-top: -16px;
	}

/* -- media queries about -- */

@media  only screen and (max-width: 1199px) {
	.tbba, .about {
		margin-right: 20px;
	}
}

@media  only screen and (max-width: 991px) {
		.medium { font-size: 6rem; }
		.about {
			font-size: 1.4rem;
		}
}

@media  only screen and (max-width: 767px) and (orientation: portrait) {
    .medium {
        font-size: 5rem;
        line-height: 0.4;
    }
	.about {
		font-size: 1.3rem;
		padding: 20px;
		min-width: 100vw;
		max-width: 100vw;
		height: 50vh;
		position: absolute;
		top: 20px;
		justify-items: start;
		margin-left: 2px;
	}
	.tbba {
		display: -ms-grid;
		display: grid;
		-ms-grid-row-align: center;
		align-self: center;
		background-color: var(--blue);
		background-image: url(../img/tbba.jpg);
		background-repeat: no-repeat;
		background-position: bottom left;
		background-size: 16vw;
		margin-bottom: 35px;
		min-height: 20vw;
		max-height: 30vw;
		width: 94vw;
		position: absolute;
		bottom: 6px;
		left: 3vw;
	}
}

@media  only screen and (max-width: 991px) and (orientation: landscape) {
	.tbba {
		/* height: 100vh; */
		width: 35vw;
		margin: 0;
	}
	.about {
		width: 60vw;
		font-size: 1.3rem;
		margin-top: -10px;
		line-height: 1.2;
	}
	.about br {
		display: none;
	}
	.medium {
		font-size: 4rem;
		line-height: 1.3;
	}
}

@media  only screen and (max-width: 767px) and (orientation: landscape) {
	.tbba {
		width: 25vw;
	}
	.about {
		width: 70vw;
	}
}

@media  only screen and (max-width: 665px) and (orientation: landscape) {
	.about {
		font-size: 1.2rem;
	}
}

@media  only screen and (max-width: 480px) {
	.medium {
		font-size: 4rem;
	}
	.tbba {
		background-size: 19vw;
		background-position: bottom 3px left;
	}
}

@media  only screen and (max-width: 375px) and (max-height: 667px) {
	.about {
		font-size: 1.2rem;
    	line-height: 1.2;
		padding: 5px 25px 0 15px;
	}
	.about br {
		display: none;
	}
}

@media (max-height: 320px) and (orientation: landscape) {
	.medium {
		font-size: 3.5rem;
	}
	.tbba {
		width: 20vw;
	}
	.about {
		width: 80vw;
		padding-left: 15px;
		line-height: 1.4rem;
	}
}

@media  only screen and (max-width: 320px) {
	.medium {
		font-size: 4rem;
	}
	.about {
		font-size: 1.2rem;
		padding: 0px 25px 0 15px;
	}
}

/* ------ CONTACT ------ */

.section-contact {
	height: 100vh;
	overflow: hidden;
}

.contact-wrapper {
	display: -ms-grid;
	display: grid;
	height: 100vh;
	-ms-flex-line-pack: center;
	align-content: center;
}

.contact-ams {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	/* min-height: 100vh; */
}

.info-ams {
	display: -ms-grid;
	display: grid;
	font-size: 1.5rem;
	padding-right: 40px;
	max-height: 500px;
}

.map-ams {
	width: 930px;
	position: relative;
	z-index: 1;
	height: calc(100vh + 20px);
	max-height: 500px;
	-ms-flex-line-pack: center;
	    align-content: center;
	margin-bottom: -20px;
}

.map-ams:after {
	content: '';
	position: absolute;
	width: 930px;
	height: 20px;
	background: white;
	margin-top: -20px;
}

/* -- media queries contact -- */

@media  only screen and (max-width: 1199px) {
	.info-ams {
		padding-left: 30px;
	}
	.map-ams {
		width: 75vw;
	}
}

@media  only screen and (max-width: 991px) {
	.info-ams {
		width: 25vw;
		font-size: 1.3rem;
	}
	.map-ams {
		width: 70vw;
	}
	.info-ams br:first-of-type {
		display: none;
	}
	.medium {
		font-size: 4rem;
		line-height: 1.3;
	}
} 


@media  only screen and (max-width: 991px) and (orientation: landscape) {
	.info-ams {
		max-height: 100vh;
		width: 3vw;
		-ms-flex-line-pack: start;
		    align-content: start;
		margin-top: 20px;
	}
}

@media  only screen and (max-width: 767px) and (orientation: portrait) {
	.contact-ams {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.info-ams {
		width: 100vw;
		height: 200px;
		padding-top: 35px;
	}
	.map-ams {
		width: 100vw;
		height: calc(100vh - 200px);
		margin-top: 30px;
	}
}

@media  only screen and (max-width: 640px) and (orientation: landscape) {
	.medium {
		font-size: 3rem;
	}
	.info-ams {
		font-size: 1.2rem;
	}
	.map-ams {
		min-height: 110vh;
		margin-bottom: -10vh;
	}
}

@media  only screen and (max-width: 464px) and (orientation: portrait) {
	.contact-ams {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		max-height: 100vh;
	}
	.map-ams {
		min-height: 400px;
	}
}

@media  only screen and (max-width: 464px) and (min-height: 726px) and (orientation: portrait) {
	.contact-ams {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		max-height: 100vh;
	}
	.info-ams {
		width: 100vw;
		height: 200px;
		padding-top: 35px;
	}
	.map-ams {
		width: 100vw;
		min-height: 76vh;
	}
}

@media  only screen and (max-width: 464px) and (orientation: landscape) {
	.map-ams {
		height: calc(100vh - 170px);
		max-height: 100vh;
	}
}

/* ------ CONTACT FOOTER ------ */

.contact-footer {
	position: relative;
	display: -ms-grid;
	display: grid;
	-ms-grid-row-align: end;
	align-self: end;
	max-width: 100vw;
	background-color: #fff;
	z-index: 2;
	margin-top: -31px;
}

.contact-footer-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

/* ------ FOOTER ------ */

footer {
    max-width: 1200px;
    margin: auto;
    margin-top: -36px;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 1.6rem;
}

.footer-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.copyright {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	padding: 6px;
}

.disclaimer-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	}

.disclaimer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 6px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
}

.disclaimer a {
	padding: 0 15px 0 0;
}

.social-media {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

footer .social-media {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 3;
	margin-top: 2px;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.contact-us {
	font-family: 'Nunito Sans', sans-serif;
	text-transform: uppercase;
	font-size: 1.4rem;
	text-align: center;
	font-weight: 900;
	padding: 2px 20px;
	border: 2px solid #000;
	border-radius: 50px;
	cursor: pointer;
	position: relative;
	margin-left: 2px;
	color: #000;
	line-height: 1.2;
	height: 22px;
	margin-top: 5px;
	margin-right: 5px;
}

.contact-us:hover {
	cursor: pointer;
	border: 2px solid #004276;
	background: #9bacb9;
	color: #fff;
}

.social-media-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 3px;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	max-width: 380px;
}

.social {
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-clip: border-box;
    -webkit-transition: background-size 0.2s;
    -o-transition: background-size 0.2s;
    transition: background-size 0.2s;
    -webkit-transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
         -o-transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
            transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
    display: block;
    width: 20px;
    height: 20px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    text-indent: 100%;
    white-space:nowrap;
    margin: 4px;
    opacity: 0.9;
}

.social:hover { opacity: 1; }

#linkedin {background-image: url('../img/linkedin-blk.png'); cursor: default;}
/* #linkedin:hover { background-image: url('../img/linkedin.png'); } */
#spotify { background-image: url('../img/spotify-blk.png'); }
#spotify:hover { background-image: url('../img/spotify.png'); }
#instagram { background-image: url('../img/instagram-blk.png'); }
#instagram:hover { background-image: url('../img/instagram.png'); }
#twitter { background-image: url('../img/twitter-blk.png'); cursor: default;}
/* #twitter:hover { background-image: url('../img/twitter.png'); } */
#facebook { background-image: url('../img/facebook-blk.png'); margin-right: 0; padding-right: 0;}
#facebook:hover { background-image: url('../img/facebook.png'); }

/* -- media queries footer -- */

@media (max-width: 1199px) {
	footer{
		margin-right: 20px;
		} 
	.contact-footer {
		font-size: 1.4rem;
		margin-top: -32px;
	}
	.social-media-wrapper {
		margin-right: 6px;
	}
}

@media (max-width: 991px) {
	.contact-footer {
		font-size: 1.3rem;
	}
}

@media  only screen and (max-width: 991px) and (orientation: landscape) {
	.contact-footer {
		margin-top: -30px;
	}
	.social {
		margin-top: 2px;
	}
}

@media (max-width: 800px) {
	.disclaimer a {
		padding: 0 10px 0 0;
	}
}

@media (max-width: 767px) and (min-height: 376px) {
	.footer-wrapper {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (max-width: 699px) and (orientation: portrait) {
	.contact-footer-wrapper {
		display: -ms-grid;
		display: grid;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		justify-items: center;
	}
	.disclaimer {
		padding: 0;
	}
	.disclaimer a {
		padding: 0;
	}
	.disclaimer a:first-of-type {
		padding-right: 10px;
	}
	.copyright {
		padding: 0;
	}
	.social-media-wrapper {
		padding: 0;
	}
	.contact-footer {
		position: absolute;
		bottom: 0;
		width: 100%;
	}
}

@media ( max-width: 480px) {
	footer {
		font-size: 1.6rem;
	}
}

@media (max-width: 320px) {
	footer {
		font-size: 1.2rem;
	}
}

@media (max-height: 320px) and (orientation: landscape) {
	.contact-footer-wrapper {
		justify-content: space-around;
	}
	.contact-footer {
		font-size: 1.2rem;
		margin-top: -29px;
	}
}

/* ------ animations ------ */

@-webkit-keyframes load {
    0% { opacity: 0; -webkit-transform: translateY(-400px); transform: translateY(-400px); }
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes load {
    0% { opacity: 0; -webkit-transform: translateY(-400px); transform: translateY(-400px); }
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@-webkit-keyframes color {
    0% { color: #fff; }
    100% {color: var(--red); }
}

@keyframes color {
    0% { color: #fff; }
    100% {color: var(--red); }
}
