@font-face {
  font-family: "Kuka Bulo", sans-serif;
  src: url(KUKA-Bulo.otf) format("OpenType");
  font-weight: 400;
}
@font-face {
  font-family: "Kuka Bulo", sans-serif;
  src: url(KUKA-Bulo-Bold.otf) format("OpenType");
  font-weight: 600;
}
* {
  box-sizing: border-box;
}

body {
  max-height: 100vh;
  overflow: hidden;
  margin: 0;
  font-family: "Kuka Bulo", sans-serif;
  position: relative;
}
body:after {
  content: "";
  display: block;
  clear: both;
}

#banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 40px 0 0 0;
}
#banner .swiper-container {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
#banner .swiper-container .swiper-wrapper .swiper-slide {
  display: block;
  width: 100%;
  height: 100%;
}
#banner .swiper-container .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.wrapper {
  display: flex;
  flex-direction: row;
}

.left-column {
  background: white;
  width: calc(100% - 405px);
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.left-column .top-bar {
  height: 100px;
  background: #ee7123;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Kuka Bulo", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (min-width: 1920px) {
  .left-column .top-bar {
    font-size: 40px;
  }
}
.left-column .center-bar {
  height: 800px;
}
.left-column .center-bar iframe {
  width: 100%;
  height: 800px;
}
.left-column .bottom-bar {
  height: 180px;
  position: relative;
}
.left-column .bottom-bar svg {
  position: absolute;
}
.left-column .bottom-bar .dots {
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.left-column .bottom-bar .line-1 {
  height: 80px;
  padding-left: 200px;
  background: linear-gradient(to top, #383838, #000000);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-family: "Kuka Bulo", sans-serif;
  font-weight: 600;
  font-size: 28px;
}
@media (min-width: 1920px) {
  .left-column .bottom-bar .line-1 {
    font-size: 40px;
  }
}
.left-column .bottom-bar .line-2 {
  height: 100px;
  padding-left: 225px;
  padding-right: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000;
  font-family: "Kuka Bulo", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 1920px) {
  .left-column .bottom-bar .line-2 {
    font-size: 40px;
  }
}

.right-column {
  width: 405px;
  height: 100vh;
  background: #dadada;
  padding: 25px 30px;
}
.right-column .localization {
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #1b1b1c;
}
.right-column .localization svg {
  margin-right: 10px;
}
.right-column .localization .data {
  color: #ee7123;
  margin-left: 15px;
}
.right-column .hours {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  margin-bottom: 25px;
}
.right-column .hours .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 94px;
  background: #ee7123;
  margin-right: 6px;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.25);
  font-size: 95px;
  color: #fff;
}
.right-column .hours .number--last {
  margin-right: 0;
}
.right-column .hours svg {
  margin-right: 15px;
  margin-left: 9px;
}
.right-column .weather {
  padding-top: 10px;
  background: #fff;
  border-bottom: 8px solid #ee7123;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.25);
}
.right-column .weather .info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.right-column .weather .info #tempImg {
  filter: drop-shadow(2px 2px 2px #999);
}
.right-column .weather .info .col-1 {
  /* margin-right: 6px; */
  font-size: 81px;
  color: #ee7123;
}
.right-column .weather .info .col-2 {
  /* margin-right: 20px; */
  margin-right: 10px;
}
.right-column .weather .info .col-3 .inf {
  display: block;
  font-size: 20px;
  font-weight: 400;
}
.right-column .weather .info .col-3 .inf .color {
  color: #ee7123;
}
.right-column .weather .text {
  display: block;
  padding: 9px 0;
  text-align: center;
  font-size: 16px;
}
.right-column .weather-hours {
  background: #e2e2e2;
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 3;
}
.right-column .weather-hours::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.25);
  z-index: -1;
}
.right-column .weather-hours .dots {
  position: absolute;
  bottom: -30%;
  z-index: -2;
}
.right-column .weather-hours .hour {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
}
.right-column .weather-hours .hour svg {
  margin: 20px auto;
}
.right-column .linkedin {
  padding: 18px 20px;
  background: #fff;
  position: relative;
  z-index: 10;
  margin-top: 20px;
  height: 450px;
}
.right-column .linkedin .heading {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.right-column .linkedin .heading svg {
  margin-left: 5px;
}
.right-column .logo {
  display: flex;
  width: 100%;
  margin-top: 35px;
}
.right-column .logo img {
  width: 80%;
  margin: 0 auto;
  max-height: 46px;
}
.right-column .dots-2 {
  position: absolute;
  bottom: 140px;
  right: 10px;
  z-index: 2;
  margin: auto;
}/*# sourceMappingURL=style.css.map */