/* Use the find function to cycle through different sections of this document by finding the string "||" */

/* || Fonts */

@font-face {
	font-family: TommySoft;
	src: url(../fonts/tommy_soft/Black.otf);
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: TommySoft;
	src: url(../fonts/tommy_soft/ExtraBold.otf);
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: TommySoft;
	src: url(../fonts/tommy_soft/Bold.otf);
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: TommySoft;
	src: url(../fonts/tommy_soft/Medium.otf);
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: TommySoft;
	src: url(../fonts/tommy_soft/Regular.otf);
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: TommySoft;
	src: url(../fonts/tommy_soft/Light.otf);
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: TommySoft;
	src: url(../fonts/tommy_soft/Thin.otf);
	font-weight: 100;
	font-style: normal;
} 

 /* || Variables */

:root {

	--color-white: #ffffff;

	--color-blue: #3583F6;
	--color-blue-80: #7EB0F9;
	--color-blue-60: #B6D2FC;
	--color-blue-40: #DFEBFE;

	--color-purple: #D269E2;
	--color-purple-80: #E29FED;
	--color-purple-60: #EFC9F5;
	--color-purple-40: #F8E7FA;

	--color-pink: #FF6AB0;
	--color-pink-80: #FFA0CD;
	--color-pink-60: #FFCAE3;
	--color-pink-40: #FFE7F2;

	--color-coral: #FF917D;
	--color-coral-80: #FFB9AC;
	--color-coral-60: #FFD7D0;
	--color-coral-40: #FFEDEA;

	--color-orange: #FFC65F;
	--color-orange-80: #FFDA99;
	--color-orange-60: #FFEBC5;
	--color-orange-40: #FFF6E5;

	--color-yellow: #F9F871;
	--color-yellow-80: #FBFAA4;
	--color-yellow-60: #FDFDCC;
	--color-yellow-40: #FEFEE8;

	--color-black: #111111;
	--color-black-80: #555555;
	--color-black-60: #aaaaaa;
	--color-black-40: #E1E1E4;

	--color-grey: #444444;
	--color-grey-80: #777777;
	--color-grey-60: #aaaaaa;
	--color-grey-40: #cccccc;

	--color-red: #E44400;
	--color-red-80: #ED875C;
	--color-red-60: #F5BCA3;
	--color-red-40: #FBE1D6;

	--color-green: #009B59;
	--color-green-80: #5CBF95;
	--color-green-60: #A3DBC3;
	--color-green-40: #D6EFE5;

	--font-weight-thin: 100;
	--font-weight-extralight: 100;
	--font-weight-light: 200;
	--font-weight-regular: 200;
	--font-weight-medium: 300;
	--font-weight-semibold: 300;
	--font-weight-bold: 300;
	--font-weight-extrabold: 300;
	--font-weight-black: 300;

	--default-border-radius: 10px;
	--default-background-color: var(--color-white);
	--default-spacing: 16px;
	--content-height: calc(100vh - 120px);
	--content-inner-height: calc(100vh - 170px);

	--facebook-color: #3B5998;
	--twitter-color: #00ACED;
	--youtube-color: #C4302B;
	--instagram-color: #FFC838;
}


/* || General Styles */


* {
	box-sizing: border-box;
	margin: 0;
	
	font-family: 'TommySoft', sans-serif;
	font-weight: var(--font-weight-regular);
	line-height: 1.5;

	transition: 0.2s;
	/*border: 1px solid black;*/
}

*:focus {
	outline: none;
}

html {

}

body {
	font-size: 16px;
	display: flex;
	flex-direction: column;
	font-weight: var(--font-weight-regular);

}

.body--bg-black {
	background-color: var(--default-background-color);
	color: var(--color-black);
}

.body--bg-white {
	background-color: white;
	color: black;
}


ul {
	/*list-style-type: none;*/
}

a, button {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	border: none;

}

a:hover {
	color: default;
}

b {
	font-weight: var(--font-weight-bold);
}

input[type='checkbox'] {

	padding-left:5px;
	padding-right:5px;
	border-radius:2px;

    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;

    outline: none;

	border: 2px solid var(--color-grey);

	background-color: inherit;
	white-space: nowrap;
	overflow:hidden;

	width: 1rem;
	height: 1rem;

	cursor: pointer;

}

input[type='checkbox']:checked {
	background-color:var(--color-blue);
	border-color: var(--color-blue);
}

input[type='checkbox']:hover {
	border-color: var(--color-blue);
}

select {

	border: 1px solid var(--color-grey);
	border-radius: 50vh;
	background-color: var(--color-white);
	color: var(--color-darker-grey);
	padding: 4px 10px;
	font-size: 12px;
	font-weight: var(--font-weight-medium);

	text-align: center;

}

/** { border: 1px solid red }*/


.hero, .hero--video-detail {
	position: relative;
	display: block;
	width: 100%;
	height: 75vh;
}

.hero--video-detail {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
}

.hero__image {
	width: inherit;
	height: inherit;
}

.hero__image > img {
	width: inherit;
	height: inherit;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: inherit;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;

	/*padding-top: 0px;*/
	/*padding-bottom: 10%;*/
	padding-left: 30px;
	padding-right: 100px;

	background-image: linear-gradient(to right, rgba(0,0,0,0.8) , rgba(0,0,0,0));
}

.hero__title_image {
	width: 90%;
}

.hero__title_image > img {
	width: inherit;
	height: inherit;
	object-fit: contain;
	object-position: left;
}

.hero__description {
	padding: 8px 0 12px 0px;
}

.hero__button {

	max-width: 100%;

	text-align: center;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	color: var(--color-white);
	background-color: var(--color-black);

	padding: 12px 36px;
	margin: 8px 0px;

	border-radius: var(--default-border-radius);

	cursor: pointer;
}

.hero__button:hover {
	background-color: var(--color-black-80);
}





.header_spacer {
	width: 100%;
	height: 80px;
}

.footer_spacer {
	width: 100%;
	height: 100px;
}

.banner {

	display: block;

	width: 100%;

	padding: 16px 20px;
	margin-top: 20px;

	background-color: var(--color-blue);
	color: var(--color-white);

	border-radius: var(--default-border-radius);
}

.banner__text {
	font-weight: var(--font-weight-light);
}

.banner__text b {
	font-weight: var(--font-weight-medium);
}



.profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.profile__image {
	width: 100%;
	height: 260px;
}


.profile__image > img {
	height: inherit;
	width: inherit;
	object-fit: cover;
}



.profile__section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	margin-bottom: 32px;
}

.subtitle {
	font-weight: var(--font-weight-regular);
	font-size: 16px;

	color: var(--color-black-60);

}


.list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: flex-start;

	gap: 15px;


	/*width: 100%;*/
	max-width: 100%;

	/*padding: 30px;*/

}

.list__object {

    position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	width: 450px;
	max-width: 100%;

	border-radius: 4px;

	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.list__overlay {
    position: absolute;
	top:0;
    left:0;
    width:100%;
    height:100%;

	background-color: rgba(0, 0, 0, 0);

	z-index: 10000;
}

.list__overlay:hover{

	background-color: rgba(0, 0, 0, 0.2);
}

.list__image {
	width: 100%;
	height: 250px;
}


.list__image > img {
	height: inherit;
	width: inherit;
	object-fit: cover;
	border-radius: 4px;
}

.list__information {
	display: flex;
	flex-direction: column;
	flex-grow: 2;

	padding: 10px 20px;

	width: 100%;

	align-items: center;
}

.list__title {
	font-weight: var(--font-weight-regular);
	font-size: 20px;
	line-height: 30px;
}

.list__subtitle {
	font-weight:  var(--font-weight-thin);
	font-size: 14px;
	line-height: 20px;

	color: var(--color-grey-80);
}

.list__navigation {
	width: 24px;
	/*padding: 20px;*/

}

.list__navigation > svg {
	stroke:  var(--color-grey-40);
}

.list__object:hover > .list__navigation > svg {
	stroke: var(--color-black);
}

.list > .button {
	margin-top: 32px;
}


.header {
	display: flex;
	justify-content: space-between;
	align-items: center;

	position: fixed;
	top: 0;
	z-index: 100000;

	height: 80px;
	width: 100vw;

	padding-top: 8px;
	padding-bottom: 2px;
	padding-left: 30px;
	padding-right: 20px;

	/*background-color: var(--color-white);*/
	/*box-shadow: 0px 0px 4px 0px rgba(100, 100, 100, 0.25);*/
}

.header--solid {
	background-color: var(--color-white);
	box-shadow: 0px 0px 4px 0px rgba(100, 100, 100, 0.25);
}

.header__logo {

}

.header__navigation {
	width: 24px;
}

.navigation {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	align-items: center;

	position: fixed;
	bottom: 0;
	z-index: 100000;

	width: 100%;
	height: 60px;

	background-color: var(--color-white);


	box-shadow: 0px 0px 10px 0px rgba(100, 100, 100, 0.1);
}

.navigation__item, .navigation__item--active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding: 8px;

	color: var(--color-grey);
}

.navigation__item:hover {
	color: var(--color-black);
}

.navigation__item--active {
	color:  var(--color-black);
}

.navigation__icon {
	height: 24px;
	width: 24px;

	color: inherit;
}

.navigation__title {
	font-size: 7px;
	font-weight: var(--font-weight-bold);

	padding: 2px;

	color: inherit;
}

.content--bg-inverted {

	background-color: white;
}


.content, .content--centered, .content--padded {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;

	position: relative;

	width: 100%;
	min-height: var(--content-height);

	padding-bottom: 50px;

}

.content--centered {
	justify-content: space-around;
}

.content--padded {
	padding-top: 50px;
}

.title {
	/*display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;

	text-align: center;*/

}

.title__text {
	padding: 24px 0 12px 0;

	font-size: 20px;
	font-weight: var(--font-weight-bold);
}


.title__icon {

	height: 58px;
	width: 26px;

	padding: 16px 0;
	margin-left: 4px;
	margin-right: -30px;

	color: var(--color-grey-80);

}

.title__icon:hover {

	color: var(--color-black);
}


.container, .container--center {

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;

	width: 100%;

	padding: 0 30px;

}

.container--center {

	justify-content: center;
	align-items: center;
	align-content: center;
}

.container--fullscreen {

	display: fixed;
	width: 100%;
	height: 100%;

	background-color: black;
}

.container__errors {
	display: flex;
	flex-direction: column;

	min-height: 100px;

	color: var(--color-red);
	font-weight: var(--font-weight-light);
	text-align: center;
}

.container__errors ul, .container__errors li {
	list-style-type: none;
	margin: 0;
	padding: 0;

	font-weight: var(--font-weight-light);
}

.form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form__input {
	/*display: flex;
	justify-content: center;
*/
	/*width:  100%;*/
	margin: 8px 0;
}

.signup_option, .signup_option--selected {
	padding: 3px 8px;
	margin: 0 4px;

	font-size: 14px;
	font-weight: var(--font-weight-light);

	color: var(--color-black);
	border-bottom: 3px solid var(--color-white);
    cursor: pointer;
}

.signup_option:hover {
	color: var(--color-blue);
}

.signup_option--selected {
	font-weight: var(--font-weight-regular);
	color: var(--color-blue);
	border-bottom: 3px solid var(--color-blue);
}


.text_input {

	width: 300px;
	max-width: 100%;

	font-size: 16px;
	font-weight: var(--font-weight-regular);
	color: var(--color-black);

	background-color: var(--color-white);

	text-align: center;

	padding: 8px 16px;

	border: 1.5px solid var(--color-grey-60);
	border-radius: var(--default-border-radius);

}

.text_input:focus {
	border: 1.5px solid var(--color-black);
}

.button, .button--grey, .button--red {

	display: flex;
	align-items: center;
	justify-content: center;

	width: 300px;
	max-width: 100%;

	text-align: center;
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	color: var(--color-white);
	background-color: var(--color-black);

	padding: 9px 16px;
	margin: 8px 0;

	border-radius: var(--default-border-radius);

}

.button:hover {
	background-color: var(--color-black-80);
}

.button--grey {

	color: var(--color-black);
	background-color: var(--color-grey-40);
}

.button--grey:hover {
	background-color: var(--color-grey-60);
}

.button--red {
	background-color: var(--color-red);
}

.button--red:hover {
	background-color: var(--color-red-80);
}

.button__icon {
	display: inline-block;
	height: 20px;
	width: 20px;

	margin-right: 4px;
}


.link {
	display: flex;
	justify-content: center;
	width: 100%;

	font-size: 16px;
	font-weight: var(--font-weight-regular);
	color: var(--color-black);

	padding: 8px 16px;
}

.link:hover {
	color: var(--color-black-60);
}

.text, .text--center, .text--large {
	font-weight: var(--font-weight-light);

	margin-bottom: 32px;
}

.text--center {
	text-align: center;
}

.text--large {
	font-size: 18px;	
}

.divider {
	width: 100%;
	margin: 8px 0;

	border-bottom: 2px solid var(--color-grey-40);
}

.floor {
	position: absolute;
	bottom: 60px;
}

.mt-80 {
	margin-top: 80px;
}

/* Extra small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 

	.hero__overlay {
		
		width: 75%;
		
		padding-left: 30px;
		padding-right: 60px;

	}


}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

	.hero__overlay {
		
		width: 75%;
		
		padding-left: 60px;
		padding-right: 100px;

	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	
	.hero__overlay {
		
		width: 75%;
		
		padding-left: 100px;
		padding-right: 25%;

	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

	.hero__overlay {
		
		width: 75%;
		
		padding-left: 100px;
		padding-right: 35%;

	}

}


/* Extra Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1600px) {

	
}



.disabled {
	pointer-events: none;
	cursor: default;

	color: var(--color-light-grey);
}

.hide_me {
	display: none !important;
}

.no_scroll {
	overflow: hidden;
}
