* {
  box-sizing: border-box;
}

body, html {
	max-width: 100vw;
}

body {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 14px;
	background-color: #fafafa;
	font-weight: 400;
	color: #0c4c82;
	
}

a { 
	text-decoration: none; 
	color: #0c4c82;
	transition: color .23s;
}

a:hover {
	color: #fef049;
}

.navbar {
	height: 15vh;
	z-index: 2;
}

main {
	background-image: url("../images/bg.jpg");
	background-size: cover;
	min-height: 100vh;
	margin-top: -15vh;
	position: relative;
	z-index: 1;
}

main .wrapper {
	padding-top: 13vh;
}

.block__lang {
	display: grid;
    	grid-gap: 20px;
}

.block__lang a {
	background-color: #0c4c82;
	color: #fef049;
	border-radius: 50%;
	padding: 5px;
	width: 2rem;
	height: 2rem;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: .7rem;
	transition: .23s ease-in-out;
	margin: 1rem 0;
}

.block__lang a:hover {
	color: #0c4c82;
	background-color: #fef049;
}

.logo {
	width: 15vw;
}

.block__cta {
	background: linear-gradient(120deg, #ffffff00 0%, #ffffff00, 15%, #fef049 15%, #fef049 100%);
	padding: 20px;
	width: 80%;
	text-align: left;
	position: absolute;
	right: 0;
	z-index: 3;
}

.block__cta p {
	color: #0c4c82;
	font-size: 1.9rem;
	margin-left: 0;
	margin-bottom: 0;
	text-align: center;
	width: 82%;
}

.block__content {
	position: relative;
	z-index: 4;
	margin-top: 25px;
}

.block__content .col-6:first-of-type {
	display: grid;
	place-items: center;
}

.block__content .col-6:nth-of-type(2) {
	text-align: right;
}

.block__content img {
	width: 38vw;
}

.block__content video {
	margin-top: 6rem;
	width: 85%;
}

footer {
	position: sticky;
  	bottom: 0;
  	left: 0;
  	width: 100%;
  	background-color: #0c4c82;
  	display: grid;
  	place-items: center;
  	padding: 50px;
  	z-index: 0;
}

footer .first {
	grid-column-start: 1;
	grid-column-end: 4;
	width: 60%;
	text-align: center;
	margin-bottom: 3%;
}

footer p,
footer a {
	color: white;
}

footer a {
	transition: color .23s;
	text-decoration: none;
}

footer a:hover {
	color: #fef049;
}

footer i {
	margin-right: 1em;
}

footer .col-sm {
	text-align: center;
}

footer .block__contact .row__item {
	margin: 10px 0;
}

footer .block__qr img {
	width: 7vw;
	background-color: white;
	padding: 10px;
	border-radius: 15px;
}
footer .block__qr p {
	margin-top: 10px;
	font-size: 11px;
	text-align: center;
}

footer .footer-logo {
	width: 150px;
}

.spinner-wrapper  {
	width: 100%;
	height: 100vh;
	background-color: #fff;
	position: absolute;
   	top: 0;
    	left: 0;
    	z-index: 20;
}

.spinner {
  	width: 40px;
  	height: 40px;

  	position: relative;
  	position: absolute;
	top: 48%;
	left: 48%;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

@media screen and (max-width: 600px) {
	.logo {
		width: 45vw;
		margin-bottom: 22px;
	}

	.block__cta {
		width: 100%;
		background: #fef049;
		text-align: center;
	}

	.block__cta p {
		margin-left: 0;
		font-size:  1.2rem;
		width: 100%;
	}

	.block__content.row {
		flex-direction: column-reverse;
		margin-top: 9rem;
	}

	.col-6 {
		width: 100%;
	}

	.col-6:nth-of-type(2) {
		text-align: right;
		margin-bottom: 25px;
	}

	.block__content img {
		width: 100%;
	}

	.block__content video {
		margin-bottom: 6rem;
		width: 95%;
	}

	footer {
	  	grid-template-columns: repeat(1, 1fr);
	  	grid-gap: 25px;
	}

	footer .first {
		grid-column-start: auto;
    		grid-column-end: auto;
    		width: 100%;
	}

	footer .block__qr {
		grid-row-start: -1;
	}

	footer .block__qr img {
		width: 33vw;
	}

	.block__lang {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
	body main .wrapper {
		padding-top: 32vh;
	}

	.block__content video {
		margin-bottom: 6rem;
		width: 95%;
	}
}

@media screen and (min-width: 600px) and (max-width: 900px) {
	.logo {
		width: 33vw;
	}

	main .wrapper {
		padding-top: 15vh;
	}

	.block__cta p {
		margin-left: 18%;
		font-size:  1.6rem;
	}

	.block__content.row {
		flex-direction: column-reverse;
		margin-top: 18%;
	}

	.col-6 {
		width: 100%;
	}

	.col-6:nth-of-type(2) {
		text-align: right;
		margin-bottom: 25px;
	}

	.block__content img {
		width: 80%;
	}

	.block__lang {
		grid-template-columns: repeat(2, 1fr);
	}

	.block__content video {
		margin-bottom: 6rem;
		width: 95%;
	}
}

@media screen and (min-width: 900px) and (max-width: 1366px) {
	.block__cta p {
		margin-left: 15%;
	}

	.block__content.row {
		margin-top: 15%;
	}

	.block__content img {
		width: 45vw;
	}

	.block__lang {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1366px) {
	footer {
	  	grid-template-columns: repeat(3, 1fr);
	}

	.block__lang {
		grid-template-columns: repeat(2, 1fr);
	}
    	
}

@media screen and (min-width: 1600px) {
	.block__cta {
		width: 65%;
	}

	.block__content video {
		margin-top: 14rem;
		width: 95%;
	}
}