* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  height: 90vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 40%;
      grid-template-columns: 60% 40%;
}

.hero .menubar {
  position: absolute;
  z-index: 1;
  top: 2rem;
  left: 2rem;
}

.hero .menubar img {
  height: 80px;
}

.hero .hero-left {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: #000;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.hero .hero-left:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000, transparent);
}

.hero .hero-right {
  background: #000;
  height: 90vh;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-size: cover !important;
  background-position: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero .hero-right .wrap {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.hero .hero-right .wrap .title {
  position: absolute;
  width: 80vw;
  text-align: right;
}

.hero .hero-right .wrap .title h1 {
  color: white;
  font-size: calc(40px + 4vw);
}

.hero .hero-right .wrap .actions {
  max-width: 300px;
  margin-top: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.hero .hero-right:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 90vh;
  background: rgba(0, 0, 0, 0.5);
}

.primary-button {
  cursor: pointer;
  padding: 22px 80px;
  border-radius: 30px;
  background: linear-gradient(-45deg, #ff7b69, #ffbd53);
  color: white;
  font-weight: bold;
}

.primary-button:hover {
  background: linear-gradient(-45deg, #f73f3f, #eb9b1c);
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-wrapper .slider-img-right {
  position: absolute;
  margin-top: 0;
  margin-left: 0;
  width: 40%;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.slider-wrapper img {
  position: absolute;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.slider-wrapper img.show {
  opacity: 1;
  pointer-events: all;
}

footer {
  padding-top: 3rem;
  max-height: 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .final-row {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .final-row h1 {
  font-size: 50px;
  margin-bottom: 1rem;
}

footer .footer-con {
  background: #000;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .hero {
    height: 90vh;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 60% 40%;
        grid-template-columns: 60% 40%;
  }
  .hero .menubar {
    position: absolute;
    z-index: 1;
    top: 2rem;
    left: 2rem;
  }
  .hero .menubar img {
    height: 80px;
  }
  .hero .hero-left {
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: #000;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
  }
  .hero .hero-left:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000, transparent);
  }
  .hero .hero-right {
    background: #000;
    height: 90vh;
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background-size: cover !important;
    background-position: center !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero .hero-right .wrap {
    position: absolute;
    right: 4rem;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .hero .hero-right .wrap .title {
    position: absolute;
    width: 80vw;
    text-align: right;
  }
  .hero .hero-right .wrap .title h1 {
    color: white;
    font-size: calc(30px + 4vw);
  }
  .hero .hero-right .wrap .actions {
    max-width: 300px;
    margin-top: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .hero .hero-right:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 90vh;
    background: rgba(0, 0, 0, 0.5);
  }
}

@media only screen and (max-width: 600px) {
  .slider-wrapper {
    overflow: hidden;
    width: 100%;
    height: 50vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slider-wrapper .slider-img {
    position: absolute;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  .slider-wrapper img {
    position: absolute;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  .slider-wrapper img.show {
    opacity: 1;
    pointer-events: all;
  }
  .hero {
    height: 50vh !important;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 60% 40%;
        grid-template-columns: 60% 40%;
  }
  .hero .menubar {
    position: absolute;
    z-index: 1;
    top: 2rem;
    left: 2rem;
  }
  .hero .menubar img {
    height: 50px;
  }
  .hero .hero-left {
    height: 50vh;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    width: 100vw;
    background: #000;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
  }
  .hero .hero-right {
    background: #000;
    height: 50vh;
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background-size: cover !important;
    background-position: center !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero .hero-right::after {
    display: none;
  }
  .hero .hero-right .slider-wrapper {
    display: none;
  }
  .hero .hero-right .wrap {
    position: absolute;
    right: 2rem;
    margin-top: 4rem;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .hero .hero-right .wrap .title {
    position: absolute;
    width: 80vw;
    text-align: right;
  }
  .hero .hero-right .wrap .title h1 {
    color: white;
    font-size: calc(22px + 4vw);
  }
  .hero .hero-right .wrap .actions {
    max-width: 300px;
    margin-top: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer {
    padding-top: 3rem;
    max-height: 60px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .final-row {
    text-align: center;
    margin-bottom: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .final-row h1 {
    font-size: 40px;
    margin-bottom: 1rem;
  }
  footer .final-row h3 {
    padding: 0 2rem;
    text-align: left !important;
  }
  footer .footer-con {
    background: #000;
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
  }
}
/*# sourceMappingURL=style.css.map */