@font-face {
  font-family: "Dala-Floda-Roman-No2";
  src: url('fonts/Dala-Floda-Roman-No2.otf');
src: 	url('fonts/Dala-Floda-Roman-No2.woff2') format('woff2'), 
    url('fonts/Dala-Floda-Roman-No2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "LL Circular Black";
  src: url("fonts/lineto-circular-black.eot");
  src: url("fonts/lineto-circular-black.eot?#iefix") format("embedded-opentype"),
       url("fonts/lineto-circular-black.woff2") format("woff2"),
       url("fonts/lineto-circular-black.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "LL Circular Black Italic";
  src: url("fonts/lineto-circular-blackitalic.eot");
  src: url("fonts/lineto-circular-blackitalic.eot?#iefix") format("embedded-opentype"),
       url("fonts/lineto-circular-blackitalic.woff2") format("woff2"),
       url("fonts/lineto-circular-blackitalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "LL Circular Bold Italic";
  src: url("fonts/lineto-circular-bolditalic.eot");
  src: url("fonts/lineto-circular-bolditalic.eot?#iefix") format("embedded-opentype"),
       url("fonts/lineto-circular-bolditalic.woff2") format("woff2"),
       url("fonts/lineto-circular-bolditalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "LL Circular Book";
  src: url("fonts/lineto-circular-book.eot");
  src: url("fonts/lineto-circular-book.eot?#iefix") format("embedded-opentype"),
       url("fonts/lineto-circular-book.woff2") format("woff2"),
       url("fonts/lineto-circular-book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  box-sizing: border-box;
  margin: 0;
}

.top-nav {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  
}

.top-nav-container {
  padding: 50px 80px;
  display: flex;
  justify-content: space-between;
}

.logo-wrap {
  width: 20%;
  position: relative;
}
.logo-wrap img {
  max-width: 100px;
  width: 100%;
}
.menu {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.menu ul {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  padding-left: 0;
}
.menu-item {
  color: #000000;
  font-family: "LL Circular Book";
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 16px;
  display: flex;
  align-items: center;
}
.menu-item a {
  color: #000000;
  text-decoration: none;
}
.menu-item img {
  margin-right: 14px; 
}
.menu-item .mb {
  white-space: nowrap;
}

.banner {
  /*height: calc(100vh - 150px) ;*/
  padding-top: 180px;
  background-image: url(images/background.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  
}

/*.banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}*/
.banner .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  background:linear-gradient(180deg, #000000 0%, rgba(0,0,0,0) 18%);
  opacity: 0.75
}

.iframe-container {
  margin: 0 80px 0;
  min-height: 600px;
  max-width: 100%;
  padding: 25px 50px 50px;
  background-color: transparent;
}
iframe {
  height: 617px;
  width: 100%;
  
}

.text-container {
  padding: 62px 100px;
}
.text-container .title{
  color: #292928;
  font-family: "Dala-Floda-Roman-No2";
  font-size: 32px;
  letter-spacing: 0;
  line-height: 32px;
}
.text-container .text {
  color: #000000;
  font-family: "LL Circular Book";
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.21px;
  line-height: 22px;
}
@media (max-width: 1025px) {
  .menu {
    width: 75%;
  }
}
@media (max-width: 991px) {

  .banner {
    padding-top: 180px;
  }
}
@media (max-width: 769px) {
  .top-nav-container {
    flex-direction: column;
  }
  .menu {
    width: 100%;
  
  }
  .menu ul {
    flex-direction: column;
  }
  .menu ul li {
    padding-bottom: 10px;
  }
  .banner {
    padding-top: 290px;
  }
}
@media (max-width: 550px) {
  /* .banner {
     padding-top: 250px;
  } */
  .iframe-container {
     padding: 25px 0 50px;
     margin: 0 20px 0;
  }
  .top-nav-container {
    padding: 50px 30px;
  }
  .menu ul {
    flex-direction: column;
    margin: 20px 40px auto;
  }
  .menu-item {
    margin-bottom: 15px;
  }
  .logo-wrap {
    width: 55%;    
    margin: auto;
  }
  .logo-wrap img {
    width: 190px;
  }
  .text-container {
    padding: 62px 50px;
  }
}

@media (min-width: 550px) and (max-height: 759px) {
  .iframe-container {
    padding-top: 0px; 
  }
  .top-nav-container {
    padding-bottom: 25px
  }
  .banner {
    padding-top: 180px;
  }
}
