* {
  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;
  z-index: 99;
}
.logoa img{
  z-index: 3;
}
header.sticky {
  padding: 0px 0;
  background-color: #fff;
  box-shadow: 0 3px 13px #000;
  z-index: 5;
}
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;
}




.banner {
  width: 100%;
  height: calc(50vh);
  background: url(/images/marketpicture.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}





.main-content{
    display: flex;
    justify-content: center;
    height: fit-content;
    padding: 1rem 0;
}
.main-content img{
    width: 50%;
}








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) {
.banner {
  height: 40vh;
} 
.main-content {
  padding: 1rem 1rem;
}
.main-content img {
  width: 100%;
}
}


@media screen and (max-width: 430px){
.main-content-1 h2 {
  font-size: 2rem;
  line-height: 1.4;
}
.gallery-wrapper .image-wrapper a img {
  height: auto;
}
}


