@charset "utf-8";
/* CSS Document */
body, html {
	margin: 0 auto;
	padding: 0 auto;
    font-family: raleway;
	scroll-behavior: smooth;
/*	overflow-x: hidden;*/
}

nav{
	align-content: center;
	background-color: #13919e;
}

/* .navbar-brand{
	position: relative;
	margin: 0;
	padding: 0;
} */

.nav-link{
	color: white;
	font-family:  -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}



/* NAVIGATION */
nav ul {
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 10px;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}

nav ul li a:hover {
  color: black;
}

/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: white;
  height: 1px;
}
nav.stroke ul li a:hover:after {
  width: 100%;
}





.custom-toggler.navbar-toggler {
    border-color: rgba(249,249,249,1.00);
}
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(249,249,249,1.00)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

* {
    box-sizing: border-box;
}


/* Center website */
.main {
    max-width: 1400px;
    margin: auto;
	margin-top: 100px;
}

h1 {
	padding-bottom: 100px;
    font-size: 50px;
	text-align: center;
}

/*
h2{
	font-size: 10px;
	text-align: center;
	padding: 20px;
}
*/

.row {
	/*    margin: 8px -16px;*/
	margin: 0;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
    padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
    float: center;
    width: 50%;
}

/* Clear floats after rows */ 
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
	border-width: medium;
	border: thick;
	border-color: black;
	margin: 40px;
	padding: auto;
	align-content: center;
	text-align: center;
}

img{
	border-radius: 5px;	
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
    .column {
        width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}



.footer {
	margin-top: 70px;
  	background: #13919e;
  	padding: 10px 0;
	color: white;
}

.social {
 	color: white;
 	font-size: 20px;
 	padding: 10px;
 	transition: all .5s ease;
}
.social:first-child {
  	border-left: 1px solid #70726F;
}
.social:hover {
  	color: black;
}

.sign{
	margin-right: 50px;
}

.separation2{
	margin-top: 100px;
	margin-bottom: 100px;
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #13919e;
;
}

.separation2:after{
	content: '';
	display: block;
	margin-top: 5px;
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #13919e;
}







.ba-slider {
    position: relative;
    overflow: hidden;
}
 
.ba-slider img {
    width: 100%;
    display:block;
}
 
.resize {
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}


.handle { /* Thin line seperator */
  position:absolute; 
  left:50%;
  top:0;
  bottom:0;
  width:4px;
  margin-left:-2px;
 
  background: rgba(0,0,0,.5);
  cursor: ew-resize;
}
 
.handle:after {  /* Big orange knob  */
    position: absolute;
    top: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
 
    content:'\21d4';
    color:white;
    font-weight:bold;
    font-size:36px;
    text-align:center;
/*    line-height:64px;*/
 
    background: #13919e; /* @blue */
/*    border:1px solid #e6a600;  darken(@orange, 5%) */
    border-radius: 50%;
    transition:all 0.3s ease;
    box-shadow:
      0 2px 6px rgba(0,0,0,.3), 
      inset 0 2px 0 rgba(255,255,255,.5),
/*      inset 0 60px 50px -30px #ffd466;  lighten(@orange, 20%) */
}

.draggable:after {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    line-height:48px;
    font-size:30px;
}



.description{
	margin: auto;
	padding-top: 50px;
	padding-bottom: 30px;
	align-content: center;
	text-align: center;
	max-width: 400px;
	font-size: 20px;
}

.button{
	margin-top: 50px;
	font-size: 20pt;
	font-family: raleway;
	color: white;
	background-color: #13919e;
	padding: 20px;
}