* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #fff;
}



/*NAVBAR*//*NAVBAR*//*NAVBAR*//*NAVBAR*//*NAVBAR*//*NAVBAR*//*NAVBAR*/
.hamburguer {
  position: relative;
  z-index: 999;
  height: 50px;
  width: 80px;
  display: none;
}
.navigation .hamburguer {
  position: relative;
  z-index: 999;
  height: 30px;
  width: 30px;
  display: none;
}
.hamburguer:after {
  content: "";
  position: absolute;
  top: 30%;
  left: 15%;
  width: 70%;
  height: 12%;
  background-color: #fff;
  border-radius: 20px;
  transition: 1s ease-in;
}
.hamburguer:before {
  content: "";
  position: absolute;
  top: 60%;
  right: 15%;
  width: 40%;
  height: 12%;
  background-color: #fff;
  border-radius: 20px;
  transition: 0.5s ease-in-out;
}
#check {
  display: none;
}
#check:checked + label .hamburguer:after {
  transform: rotate(225deg);
  top: 45%;
}
#check:checked + label .hamburguer:before {
  transform: rotate(-405deg);
  width: 70%;
  top: 45%;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  transition: 0.5s;
  background-color: rgb(0, 0, 0, 0.5);
  font-family: 'Source Sans Pro', sans-serif;
}
.logoa img{
  z-index: 3;
}
header.sticky {
  padding: 0px 0;
  background-color: #fff;
  box-shadow: 0 3px 13px #000;
  z-index: 2;
}
header.sticky .logo, header.sticky ul li a {
  color: #000;
  font-weight: 600;
}
header.sticky .hamburguer:before, header.sticky .hamburguer:after {
  background-color: #000;
}
header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  list-style: none;
}
header ul li a {
  margin: 0 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: lighter;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.7s;
}
.logo{
  width: 25%;
}





#mbPOCControlsLangDrop{
  display: flex;
  width: fit-content;
  margin: 30px 0;
  font-family: 'Courier New', Courier, monospace;
}





.vid-index {
  z-index: -1;
  max-width: 100vw;
  height: 60vh;
  overflow: hidden;
}
.vid-index video{
  z-index: -1;
  position: relative;
  max-width: 100vw;
}




.grid-title{
  display: flex;
  height: fit-content;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 10rem 1rem 10rem;
}
.grid-title h2{
  font-size: 4rem;
  text-decoration: underline 3px #B8D941;
  text-underline-position: under;
  color: #03A64A;
  font-family: 'Source Sans Pro', sans-serif;
}



.grid-gallery{
  display: flex;
  height: fit-content;
  flex-direction: column;
  align-items: center;
  padding: 0 5rem;
}
.grid-gallery a{
  font-size: 1.5rem;
  padding: 3rem 0 2rem 0;
  font-family: 'Source Sans Pro', sans-serif;
}
.grid-gallery button{
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  background-color: #03A64A;
  color: #fff;
}
.grid-gallery button:hover{
  background-color: #B8D941;
  color: #000;
}
.gallery-wrapper {
  width: 98%;
  margin: 0;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  grid-gap: 1rem;
}
.gallery-wrapper .image-wrapper a {
  padding: 0.5rem;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: all 200ms ease-in-out;
}
.gallery-wrapper .image-wrapper a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.gallery-wrapper .image-wrapper a img {
  max-width: 100%;
  height: 360px;
}

.gallery-lightboxes .image-lightbox {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0ms ease-in-out;
}
.gallery-lightboxes .image-lightbox:target {
  opacity: 1;
  visibility: visible;
}
.gallery-lightboxes .image-lightbox:target .image-lightbox-wrapper {
  opacity: 1;
  transform: scale(1, 1) translateY(0);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper {
  transform: scale(0.95, 0.95) translateY(-30px);
  transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
  opacity: 0;
  margin: 1em auto;
  max-width: 75%;
  padding: 0.5em;
  display: inline-block;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  position: relative;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close {
  width: 1.5em;
  height: 1.5em;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 0 0 2px white inset, 0 0 5px rgba(0, 0, 0, 0.5);
  position: absolute;
  right: -1em;
  top: -1em;
  padding: 0;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close:before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #fff;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -5px;
  transform: rotate(-45deg);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #fff;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -5px;
  transform: rotate(45deg);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .arrow-left {
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  left: 0;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .arrow-left:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-right: 0;
  border-radius: 4px 0 0 0;
  position: absolute;
  top: 50%;
  right: 100%;
  cursor: pointer;
  transform: rotate(-45deg) translateY(-50%);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .arrow-right:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 4px 0 0;
  position: absolute;
  top: 50%;
  left: 100%;
  cursor: pointer;
  transform: rotate(45deg) translateY(-50%);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper img {
  margin: 0 auto;
  max-height: 70vh;
}
/*BACK TO TOP*//*BACK TO TOP*//*BACK TO TOP*//*BACK TO TOP*//*BACK TO TOP*//*BACK TO TOP*/
.button{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  font-family: 'Source Sans Pro', sans-serif;
}
.button a{
  scroll-behavior: smooth;
  font-size: 1.5rem;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
}
.button button{
  padding: 0.5rem 1rem;
  background-color: #B8D941;
  color: #000;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 15px;
}
.button button:hover{
  background-color: #03A64A;
  color: #000;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 3px 13px #000;
}
























footer{
  display: flex;
  justify-content: center;
  background-color: #041E42;
  box-shadow: 0 3px 13px #000;
  padding: 2rem 5rem 1rem 5rem;
  font-family: 'Source Sans Pro', sans-serif;
  max-width: 100%;
}
/*FOOTER LOGO & TEXT*//*FOOTER LOGO & TEXT*//*FOOTER LOGO & TEXT*//*FOOTER LOGO & TEXT*/
.footer-logo{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  width: 40%;
  font-size: 1.1rem;
}
.footer-logo h4{
  font-size: 1.5rem;
  color: #03A64A;
  padding: 0 0 0.5rem 0;
}
.footer-logo img{
  width: 70%;
}
/*FOOTER INFO*//*FOOTER INFO*//*FOOTER INFO*//*FOOTER INFO*//*FOOTER INFO*/
.footer-info{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 60%;
}
.footer-info h4{
  font-size: 1.5rem;
  color: #03A64A;
  padding: 0 0 0.5rem 0;
}
.footer-info p{
  color: #fff;
  line-height: 1.5;
  font-size: 1.1rem;
}
.number{
  font-size: 1.1rem !important;
}
.footer-info a{
  color: #fff;
  font-size: 1.1rem;
}
.footer-info a:hover{
  color: lightsalmon;
}
.footer-links{
  display: flex;
  flex-direction: column;
}
.footer-links a{
  font-size: 1.2rem;
  line-height: 1.5;
  color: #B8D941;
}
.footer-contact{
  width: auto;
}
.footer-social{
  width: auto;
  flex-wrap: wrap;
}
.footer-social-link{
  display: flex;
  flex-direction: row;
}
.footer-social-link a{
  padding-right: 1.3rem;
}
.footer-social-link img{
  width: 3rem;
}
.footer-certs{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.footer-certs img{
  padding: 0.5rem;
  width: 50%;
}
.SOM{
  height: max-content;
}
.myO{
  height: max-content;
}










/*MOBILE SIZES*//*MOBILE SIZES*//*MOBILE SIZES*//*MOBILE SIZES*//*MOBILE SIZES*//*MOBILE SIZES*/
/*GENERAL ITEMS*//*GENERAL ITEMS*//*GENERAL ITEMS*/
/*NAVBAR MOBILE*//*NAVBAR MOBILE*//*NAVBAR MOBILE*//*NAVBAR MOBILE*//*NAVBAR MOBILE*/
@media screen and (max-width: 1600px) {
.footer-links {
  padding: 0 1rem;
}
.footer-contact {
  padding: 0 1rem;
}
.footer-social {
  padding: 0 1rem;
}
}
@media screen and (max-width: 1024px) {
.hamburguer {
  display: block;
  width: 50px;
}
ul {
  position: fixed;
  top: 0;
  right: -1200px;
  height: 100vh;
  width: 100%;
  margin: 0;
  background: rgba(0, 0, 0, 0.9);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
ul li {
  margin: 30px 0;
}
#check:checked ~ ul {
  right: 0;
}
header{
  justify-content: space-between;
}
header ul li a {
  color: #fff;
}
header.sticky ul li a {
  color: #000;
}
header.sticky .hamburguer:before,
header.sticky .hamburguer:after {
  background-color: #000;
}
header.sticky ul {
  background: rgba(255, 255, 255, 0.9);
}
header .hamburguer:before,
header .hamburguer:after {
  background-color: #fff;
}
header img{
  width: 100%;
}
.logo {
  width: 35%;
  padding-left: 1rem;
}
#mbPOCControlsLangDrop{
  display: flex;
  width: fit-content;
  margin: 30px 0;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.9);
}
}
@media screen and (max-width: 430px) {
.logo {
  width: 55%;
  padding-left: 1rem;
}  
#mbPOCControlsLangDrop{
  display: flex;
  width: fit-content;
  margin: 30px 0;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.9);
}
}
/*FOOTER MOBILE*//*FOOTER MOBILE*//*FOOTER MOBILE*//*FOOTER MOBILE*//*FOOTER MOBILE*/
@media screen and (max-width: 1024px) {
footer{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}
.footer-logo{
  width: 91%;
}
.footer-logo img {
  width: 100%;
}
.footer-info {
  padding: 2rem 0 1rem 0;
  width: 100%;
}
.footer-info h4 {
  font-size: 1.3rem;
}
.footer-links{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 20%;
}
.footer-links a {
  line-height: 2;
}
.footer-contact{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 20%;
}
.footer-social{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 20%;
}
.footer-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-social-link a {
  padding: 0.5rem 0;
}
.footer-social-link img {
  width: 2.5rem;
}
.footer-certs {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 20%;
}
.certs h3{
  padding: 0 0.5rem 0 0;
}
.footer-certs img{
  padding: 0.5rem;
  width: 70%;
}
}




@media screen and (max-width: 430px) {
footer{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 5rem;
}
.footer-logo img {
  width: 80%;
}
.footer-logo{
  width: 100%;
}
.footer-logo h4{
  font-size: 1.5rem;
}
.footer-logo p{
  font-size: 1.5rem;
}
.footer-info {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.footer-info h4 {
  font-size: 1.5rem;
}
.footer-links{
  width: 100%;
  padding: 1rem 0;
  font-size: 1.5rem;
}
.footer-links a {
  font-size: 1.5rem;
  line-height: 1.5;
}
.footer-contact{
  width: 100%;
  padding: 1rem 0;
  font-size: 2rem;
}
.footer-contact p{
  font-size: 1.5rem;
}
.number{
  font-size: 1.5rem !important;
}
.footer-social{
  width: 100%;
  padding: 1rem 0;
  align-items: flex-start;
}
.footer-social-link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.footer-social-link a {
  padding: 0.5rem;
}
.footer-social-link img {
  width: 3rem;
}
.footer-certs {
  width: 100%;
  padding: 1rem 0;
  align-items: flex-start;
}
.certs h3{
  padding: 0;
}
.footer-certs img{
  padding: 0.5rem;
  width: 50%;
}
}
@media screen and (max-width: 390px){
footer {
  padding: 1rem 2rem;
}
}


/*VIDEO INDEX*//*VIDEO INDEX*//*VIDEO INDEX*//*VIDEO INDEX*//*VIDEO INDEX*/
@media screen and (max-width: 1024px) {
.vid-index{
  width: auto;
  height: auto;
}
.vid-index video{
  width: 100%;
  height: 200%;
  overflow: hidden;
}
}



/*CONTENT ITEMS*//*CONTENT ITEMS*//*CONTENT ITEMS*/
@media screen and (max-width: 1024px) { 
.grid-title {
  display: flex;
  height: fit-content;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1rem 1rem 1rem;
}  
.grid-title h2 {
  font-size: 3rem;
  line-height: 1.4;
}
.grid-gallery{
  padding: 0;
}
.gallery-wrapper {
  margin: 0;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  grid-gap: 1rem;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper img {
  max-width: 70vw;
  max-height: 70vh;
}
}


@media screen and (max-width: 430px){
.grid-title {
  padding: 1rem 1rem 1rem 1rem;
}  
.grid-title h2 {
  font-size: 2rem;
  line-height: 1.4;
}  
.gallery-wrapper .image-wrapper a img {
  height: auto;
}
.gallery-wrapper {
  margin: 0;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  grid-gap: 0.5rem;
}
.grid-gallery a {
  font-size: 1rem;
}
.button {
  padding: 1rem;
}
}
