*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.row h3 br, h5 br{
	display:none;
}
.header {
  height: 100vh;
	 
	position:relative;
	margin-top:0px;
	
}

.header-part{
	width:50%;
	height:100vh;
	float:left;
	
}
.mobile-hero{
		display:none;
	}
.header-text{
  margin: 0;
  position: absolute;
  top: 65%;
	left:50px;
  -ms-transform: translateY(-70%);
  transform: translateY(-70%);

	
}

.header-text-mobile{
	display:none;
  margin: 20px auto;
  position: relative;
	text-align:center;
	max-width:500px;
	height:300px;
	
}

.header-text-mobile .button {
  box-sizing:border-box;
	z-index: 1;
  position: relative;
  font-size: 16px;

  color: white;
  padding: 0.5em;
  outline: none;
  border: 2px solid #2CA4DD;
	border-radius:6px;
	width:200px;
	height:40px;
  background-color: #2CA4DD;
	margin-top:20px;
}

.header-text-mobile .button::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
	border-radius:4px;
  background-color:white;
	color:#2CA4DD;
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
}

.header-text-mobile  .button:hover {
  cursor: pointer;
	color:#2CA4DD;
	
}

.header-text-mobile  .button:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
	
}


.header-text-mobile h1{
	color: #2CA4DD;
	
	margin-bottom:10px;
	margin-top:30px;
	font-weight:700;
	
}


.header-text-mobile p{
	
	font-size:14px;
	line-height:26px;
	display: inline-block; 
	text-align: left;
	
	
}



.header-part h1{
	color: #2CA4DD;
	font-size:4vw ;
	margin-bottom:20px;
	font-weight:700;
	
}

.header-part h2{
	
	font-size:2vw ;
	margin-top:0px;
	font-weight:700;
	
}



.header-part p{
	
	font-size:1.6vw;
	line-height:3vw;
	
	
}

.header-left{
	width:100%;
	height:100%;
	background-color:white;
	position:relative;
	
	 
	
}
.header-right{
	width:100%;
	height:100%;
	background-color:white;
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0,0)), url("Pictures/header.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	
}
.header-left .fa-solid{
	margin-right:10px;
	font-size: 1.4vw;
	
}

.header-part .button {
  box-sizing:border-box;
	z-index: 1;
  position: relative;
  font-size: 22px;

  color: white;
  padding: 0.5em;
  outline: none;
  border: 2px solid #2CA4DD;
	border-radius:6px;
	width:240px;
	height:60px;
  background-color: #2CA4DD;
	margin-top:40px;
}

.header-part .button::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
	border-radius:4px;
  background-color:white;
	color:#2CA4DD;
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
}

.header-part .button:hover {
  cursor: pointer;
	color:#2CA4DD;
	
}

.header-part .button:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
	
}






#myButn {
	-webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}
#myButn:before {
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 8px);
    transform: rotate(135deg);
    display: block;
	
    width: 16px;
    height: 16px;
    content: "";
    border: 6px solid white;
    border-width: 0px 0 3px 3px;
}
section {
 
  width: 100%;
	
  display: table;
 
}















.scroll-down {
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}

.scroll-down {
  position: absolute;
    bottom: 50px;
    left: 50%;
	color:white;
	font-size:25px;
	padding:10px;
    margin-left:-21px;
    display: block;
    width: 45px;
    height: 45px;
    background-color: #2CA4DD;
    background-size: 14px auto;
    border-radius: 6px;
    z-index: 2;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}



@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@media (max-width:940px){
  .scroll-down{
		display:none;
	}
	.header-text-mobile{
	display:block;
     
 
	
}
	.header-part{
	width:100%;
	height:auto;
	color:white;
	padding: 150px 20px 0px 20px;
	text-align:center;
	
}
	
	.header-part h1{
	font-size:40px;
	color:#2CA4DD;
}
	.header-part p{
	font-size:16px;
	
}
	.header-text{
  display:none;
	
}
	
	
	.header-text-mobile	h2 {
		
		font-size:20px;
	}
	
  #myButn {
		visibility:hidden;
	}
	
	body { width:100%; 
margin: 0;
  padding: 0; height: 100%; overflow-x:hidden;}
  .header {
	width:100%;
	 background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0,0)), url("Pictures/header.webp");
  height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	position:relative;
	  border-radius: 0px 0px 0px 0px
	
	
}
}

@media (max-width:650px) {
	.row h3 br, h5 br{
	display:block;
}
	.header-text-mobile{
		max-width:300px;
		text-align:center;
      min-height:auto;
		height:auto;
   padding: 0px;
	}
	.header-text-mobile h1{
	color: #2CA4DD;
	
	margin-bottom:10px;
	margin-top:10px;
	font-weight:700;
	
}


.header-text-mobile p{
	
	font-size:12px;
	line-height:24px;
	display: inline-block; 
	text-align: left;
	
	
}
	.computer-hero{
		display:none;
	}
	.mobile-hero{
		display:inline-block;
	}
	
}




