@font-face {
    font-family: Poppins;
    src: url(../fonts/poppins/Poppins-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: Poppins;
    src: url(../fonts/poppins/Poppins-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: Montserrat;
    src: url(../fonts/montserrat/Montserrat-VariableFont_wght.ttf);
    font-weight: normal;
}
@font-face {
    font-family: Montserrat;
    src: url(../fonts/montserrat/Montserrat-VariableFont_wght.ttf);
    font-weight: bold;
}

*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body{
  background: #090909;
  background-size: cover;
  background-position: center;
  min-height: 450px;
  height: 100vh; 
}


/* ---------------------------------------------- */
/* NAV BAR */
/* ---------------------------------------------- */

nav{
  background: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;
}
nav .logo{
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}
nav .nav-items li{
  list-style: none;
  padding: 0 15px;
}
nav .nav-items li a{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #0088a9;
  transition: all 0.3s ease 0s;
}
nav .menu-icon,
nav .cancel-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon{
  display: none;
}

nav .social-icons{
  width: 150px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1140px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
    font-size:22px;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav .menu-icon{
    display: block;
  }
  nav .social-icons,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .social-icons.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .social-icons{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}

@media (max-width: 415px){
	.rotlogo{
		display: none;
	}
}


@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .social-icons{
    margin: 0 10px;
    font-size: 16px;
  }
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* ---------------------------------------------- */
/* SOCIAL ICONS */
/* ---------------------------------------------- */

.fa {
  font-size: 20px !important;
  color: #ffffff;
  width: 30px;
  text-align: center;
  text-decoration: none;
}

.fa:hover {
	color: #0088a9;
	transition: all 0.3s ease 0s;
}


/* ---------------------------------------------- */
/* COMPARISION SLIDER */
/* ---------------------------------------------- */

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

.container {
	position: relative;
	width: 100%;
	margin: 5px 0;
	display: inline-block;
	max-width: 700px;
}

.comparison-slider-wrapper {
	position: relative;
	width: 95%;
	margin: 20px 2.5%;
	background-color: white;

	.comparison-slider {
		position: relative;
		width: 100%;
		margin: 0;
		border: 0px black solid;
		box-sizing: border-box;
		> img {
			width: 100%;
			height: auto;
			display: block;
		}

		.overlay {
			display: none;
			position: absolute;
			width: 250px;
			bottom: 20px;
			right: 20px;
			background-color: rgba(0, 0, 0, 0.4);
			padding: 10px;
			box-sizing: border-box;
			color: #DDD;
			text-align: right;
			@include media('tabletUpwards') {
				display: block;
			}
		}

		.resize {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			width: 50%;
			overflow: hidden;
			> img {
				display: block;
			}
			.overlay {
				right: auto;
				left: 20px;
				text-align: left;
			}
		}

		.divider {
			position: absolute;
			width: 2px;
			height: 100%;
			background-color: rgba(256, 256, 256, 0.2);
			left: 50%;
			top: 0;
			bottom: 0;
			margin-left: -1px;
			cursor: ew-resize;
			&:before {
				content: "";
				position: absolute;
				width: 60px;
				height: 60px;
				left: -29px;
				margin-top: -30px;
				top: 50%;
				background-color: rgba(256, 256, 256, 0.7);
				transform: rotate(45deg);
				transition: all 0.1s ease-in-out;
			}
			/*
			&:after {
				content: "";
				position: absolute;
				width: 12px;
				height: 12px;
				left: -5px;
				top: 50%;
				margin-top: -6px;
				background-color: white;
				transform: rotate(45deg);
				transition: all 0.1s ease-in-out;
			}
			*/
			&.draggable{
				&:before {
				background-color: rgba(256, 256, 256, 0.2);	
				}
				/*
				&:before {
					width: 30px;
					height: 30px;
					left: -14px;
					margin-top: -15px;
				}
				
				&:after {
					width: 20px;
					height: 20px;
					left: -9px;
					margin-top: -10px;
					background-color: #555;
				}
				*/
			}
		}
	}

	.caption {
		position: relative;
		width: 100%;
		padding: 10px;
		box-sizing: border-box;
		
		font-family: Poppins;
		font-weight: normal;
		font-size: 12px;
		*font-style: italic;
	}	
}

/* ---------------------------------------------- */
/* ROTATING LOGO (BIG) */
/* ---------------------------------------------- */

.rotimg {
	margin: auto; 
	display: block; 
	max-width:20%; 
	max-height:20%;
    
    -webkit-animation:spin 5s linear infinite;
    -moz-animation:spin 5s linear infinite;
    animation:spin 5s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

/* ---------------------------------------------- */
/* ROTATING LOGO (SMALL) */
/* ---------------------------------------------- */

.rotlogo {
	vertical-align: middle;
	margin-top: -6px;
	height: 50px;
	  
    -webkit-animation:spin 5s linear infinite;
    -moz-animation:spin 5s linear infinite;
    animation:spin 5s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

/* ---------------------------------------------- */
/* TEXTUAL CONTENT */
/* ---------------------------------------------- */

.textual-content {
	width: 80%;
	margin: 2% auto;
	text-align: left;
	color: white;
}

.textual-content-center {
	width: 80%;
	margin: 2% auto;
	text-align: center;
	color: white;
}

.textual-title {
	margin-top: 20px;
	margin-bottom: 20px;	
	font-weight: bold;	
}

.textual-subtitle {
	margin-top: 20px;
	font-weight: bold;
}

.textual-image {
	max-width: 100%;
	max-height: 150px;
}

.about-content {
	max-width: 100%;
	margin: 0 auto;
	text-align: left;
	color: white;

	width: 800px;
	*background-color: #000000;
	padding: 20px 5%;
}

/* ---------------------------------------------- */
/* VIDEO */
/* ---------------------------------------------- */

video {
	max-width: 100%;
}

video::-webkit-media-controls {
  display: none;
}

.video-container {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}