@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
html {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  color: #FFFFFF;
  background-color: rgba(35, 31, 32, 0.9);
}

.background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1400px;
  padding: 50px 30px;
  z-index: 2;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin: 0 -30px;
}

.col {
  width: 100%;
  max-width: 40%;
  padding: 0 60px;
}
.col:last-child {
  max-width: 60%;
}
@media (max-width: 767.98px) {
  .col {
    max-width: 100%;
  }
  .col:last-child {
    max-width: 100%;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  img {
    max-width: 250px;
    margin-bottom: 60px;
  }
}

.btns .row {
  margin: 0 -1.5rem;
}
.btns .col {
  max-width: 50%;
  padding: 0 1.5rem;
}
@media (max-width: 991.98px) {
  .btns .col {
    max-width: 100%;
  }
  .btns .col:first-child {
    margin-bottom: 20px;
  }
}

a {
  position: relative;
  display: block;
  padding: 1rem 2rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  border: 1px solid white;
}
@media (max-width: 767.98px) {
  a {
    font-size: 12px;
  }
}
a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}
a span {
  position: relative;
  transition: color 0.3s ease-in-out;
  z-index: 2;
}
a:hover:after {
  transform-origin: left;
  transform: scaleX(1);
}
a:hover span {
  color: #231F20;
}

.content--text .subTitle {
  display: block;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 2rem;
  color: #D1D1D1;
}
@media (max-width: 767.98px) {
  .content--text .subTitle {
    font-size: 1rem;
  }
}
.content--text .title {
  display: block;
  margin-bottom: 4rem;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .content--text .title {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .content {
    text-align: center;
  }
}

.rbq {
  position: absolute;
  bottom: 40px;
  right: -84px;
  display: inline-block;
  transform-origin: left;
  transform: rotate(-90deg);
  font-size: 12px;
}

/*# sourceMappingURL=style.css.map */
