@charset "UTF-8";
/** HOME ============================================*/
/** HERO */
.gvx-hero-block {
  position: relative;
  background-color: var(--primary-Color);
  overflow: hidden;
}
.gvx-hero-block img.hero-logo-overlay {
  opacity: 0.4;
  position: absolute;
  width: 470px;
  left: -235px;
  top: 220px;
  z-index: 50;
}
.gvx-hero-block .hero-wrap {
  background-color: #eb3945;
}
.gvx-hero-block .hero-wrap .box {
  width: 100%;
  padding: 0 1.5em;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  max-width: 2000px;
  height: 75vh;
  min-height: 800px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gvx-hero-block .hero-wrap .box {
    align-items: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .gvx-hero-block .hero-wrap .box {
    height: 65vh;
    min-height: 600px;
  }
}
.gvx-hero-block .hero-wrap .box .hero-video {
  width: 90%;
  max-width: 970px;
  margin: 10% 5% 5% auto;
  z-index: 50;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gvx-hero-block .hero-wrap .box .hero-video {
    max-width: 600px;
    margin: 100px 0 5% auto;
  }
}
@media screen and (max-width: 640px) {
  .gvx-hero-block .hero-wrap .box .hero-video {
    margin: 135px 0 5% auto;
  }
}
.gvx-hero-block .hero-wrap .box .hero-video video {
  width: 100%;
}
.gvx-hero-block .hero-wrap .box .hero-video span {
  color: #fff;
  font-size: 18px;
  font-family: var(--primary-Font);
  position: absolute;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 640px) {
  .gvx-hero-block .hero-wrap .box .hero-video span {
    font-size: 12px;
    right: 15px;
    bottom: 15px;
  }
}
.gvx-hero-block .hero-wrap .box .hero-video span::before {
  content: "";
  display: inline-block;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 13px;
  height: 16px;
  margin: 0 10px 0 0;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 640px) {
  .gvx-hero-block .hero-wrap .box .hero-video span::before {
    height: 12px;
    margin: 0;
    width: 10px;
  }
}
.gvx-hero-block .hero-wrap .box .hero-info {
  max-width: 75%;
  position: absolute;
  top: 45%;
  left: 12.5%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .gvx-hero-block .hero-wrap .box .hero-info {
    top: 58%;
    left: 10%;
  }
}
.gvx-hero-block .hero-wrap .box .hero-info h1 {
  color: #fff;
  font-family: var(--primary-Font);
  font-size: 125px;
  line-height: 1em;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  letter-spacing: 3px;
}
@media screen and (max-width: 1200px) {
  .gvx-hero-block .hero-wrap .box .hero-info h1 {
    font-size: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .gvx-hero-block .hero-wrap .box .hero-info h1 {
    font-size: 12vw;
  }
}
@media screen and (max-width: 640px) {
  .gvx-hero-block .hero-wrap .box .hero-info h1 {
    font-size: 14vw;
  }
}
@media screen and (max-width: 480px) {
  .gvx-hero-block .hero-wrap .box .hero-info h1 {
    font-size: 16vw;
  }
}
.gvx-hero-block .hero-wrap .box .hero-info h2 {
  color: #fff;
  font-family: var(--primary-Font);
  font-size: 55px;
  line-height: 1.5em;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .gvx-hero-block .hero-wrap .box .hero-info h2 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .gvx-hero-block .hero-wrap .box .hero-info h2 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 640px) {
  .gvx-hero-block .hero-wrap .box .hero-info h2 {
    font-size: 7vw;
  }
}
@media screen and (max-width: 480px) {
  .gvx-hero-block .hero-wrap .box .hero-info h2 {
    font-size: 8vw;
  }
}
.gvx-hero-block .hero-mask {
  height: 420px;
  z-index: 20;
  background-image: url("../images/home-hero-spots-overlay.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gvx-hero-block .hero-mask {
    height: 40vw;
    margin-top: -1px;
  }
}
.gvx-hero-block .hero-mask::before {
  width: 100%;
  height: 150px;
  display: block;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 21%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 21%, 0% 100%);
  background: var(--primary-Color);
  content: "";
}
@media screen and (max-width: 768px) {
  .gvx-hero-block .hero-mask::before {
    height: 100px;
  }
}

.gvx-video-overlay {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 80px 15%;
  display: none;
  z-index: 999999;
}
.gvx-video-overlay .embed-container {
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  position: relative;
}
.gvx-video-overlay .embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gvx-video-overlay > button {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 10%;
  top: 20px;
  cursor: pointer;
  text-indent: -999em;
  opacity: 0.8;
  transition: 0.2s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background: transparent;
  border: 0;
}
.gvx-video-overlay > button i {
  height: 28px;
  width: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

/** FEATURE */
.gvc-feature-block {
  position: relative;
  padding: 0;
  top: -50px;
  z-index: 50;
  background: #000;
}
.gvc-feature-block .box-feature {
  max-width: 1040px;
  padding: 0 30px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 640px) {
  .gvc-feature-block .box-feature {
    padding: 0 20px;
  }
}
.gvc-feature-block .box-feature h2.sub {
  font-family: var(--primary-Font);
  font-size: 28px;
  line-height: 1.25em;
  color: #fff;
  text-align: center;
  margin: 0 auto 3em;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .gvc-feature-block .box-feature h2.sub {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .gvc-feature-block .box-feature h2.sub {
    font-size: 18px;
  }
}
.gvc-feature-block .box-feature h3.name {
  font-family: var(--primary-Font);
  font-size: 26px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .gvc-feature-block .box-feature h3.name {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .gvc-feature-block .box-feature h3.name {
    font-size: 16px;
  }
}
.gvc-feature-block .box-feature .row {
  margin: 0 -10px;
}
@media screen and (max-width: 575px) {
  .gvc-feature-block .box-feature .row {
    padding: 0 30px;
  }
}
.gvc-feature-block .box-feature .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .gvc-feature-block .box-feature .row > [class*=col-] {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.gvc-feature-block .box-feature .more-x {
  text-align: center;
}
.gvc-feature-block .box-feature .more-x a {
  display: inline-block;
  color: #00b0cd;
  font-family: var(--primary-Font);
  margin-top: 1.75em;
  font-size: 21px;
  line-height: 1.25em;
  max-width: 85%;
  font-weight: 500;
}
.gvc-feature-block .box-feature .more-x a::after {
  width: 28px;
  height: 28px;
  content: "";
  position: relative;
  display: inline-block;
  background: url("../images/svg/icx-circle.svg") no-repeat;
  top: 7px;
  left: 0.75em;
  transition: 0.2s all ease;
}

/** QUOTE */
.gvx-quote-block {
  background-color: #000;
  background-image: url("../images/home-quote-angle-bg-gray.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 2em;
  padding: 0 7.5% 65px;
  margin: 4em 0 0;
}
.gvx-quote-block .home-quote-spots-overlay {
  position: absolute;
  top: -20%;
  right: 0;
  width: 20%;
  max-width: 300px;
  opacity: 0.25;
}
.gvx-quote-block .home-quote-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5em;
  display: flex;
  max-width: 1000px;
  align-items: flex-end;
}
@media screen and (max-width: 640px) {
  .gvx-quote-block .home-quote-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.gvx-quote-block .home-quote-wrap .quote-image {
  flex: 0 1 45%;
  padding: 0 5em 0 0;
}
@media screen and (max-width: 768px) {
  .gvx-quote-block .home-quote-wrap .quote-image {
    flex: 0 1 50%;
    padding: 0 4em 0 0;
  }
}
@media screen and (max-width: 640px) {
  .gvx-quote-block .home-quote-wrap .quote-image {
    flex: 1 1 auto;
    padding: 0;
  }
}
.gvx-quote-block .home-quote-wrap .quote-image .pc-img {
  display: block;
}
@media screen and (max-width: 768px) {
  .gvx-quote-block .home-quote-wrap .quote-image .pc-img {
    display: none;
  }
}
.gvx-quote-block .home-quote-wrap .quote-image .mb-img {
  display: none;
}
@media screen and (max-width: 768px) {
  .gvx-quote-block .home-quote-wrap .quote-image .mb-img {
    display: block;
  }
}
.gvx-quote-block .home-quote-wrap .quote-image img {
  width: 85%;
  max-width: 290px;
  display: block;
  border-radius: 30px;
  box-shadow: 15px 15px 0px 0px rgb(100, 100, 100);
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 640px) {
  .gvx-quote-block .home-quote-wrap .quote-image img {
    width: 40%;
    margin: auto auto 2em;
    border-radius: 20px;
    box-shadow: none;
  }
}
.gvx-quote-block .home-quote-wrap .quote-info {
  flex: 0 1 50%;
  padding: 0 0 4em;
}
@media screen and (max-width: 768px) {
  .gvx-quote-block .home-quote-wrap .quote-info {
    flex: 0 1 45%;
    padding: 0 0 1em;
  }
}
@media screen and (max-width: 640px) {
  .gvx-quote-block .home-quote-wrap .quote-info {
    flex: 1 1 auto;
    padding: 0 5% 1em;
    text-align: center;
  }
}
.gvx-quote-block .home-quote-wrap .quote-info .desc {
  position: relative;
  font-size: 24px;
  line-height: 1.25em;
  color: #fff;
  margin: auto auto 1.5em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .gvx-quote-block .home-quote-wrap .quote-info .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .gvx-quote-block .home-quote-wrap .quote-info .desc {
    font-size: 16px;
  }
}
.gvx-quote-block .home-quote-wrap .quote-info .desc::before {
  content: "“";
  position: absolute;
  left: -0.9em;
  font-family: "Cabin", sans-serif;
  font-size: 50px;
}
@media screen and (max-width: 640px) {
  .gvx-quote-block .home-quote-wrap .quote-info .desc::before {
    font-size: 2.55em;
    left: -0.35em;
    top: 0.1em;
    position: absolute;
  }
}
.gvx-quote-block .home-quote-wrap .quote-info .desc::after {
  content: "”";
  display: inline;
  position: relative;
  font-family: "Cabin", sans-serif;
}
.gvx-quote-block .home-quote-wrap .quote-info .name h3 {
  color: #666;
  font-family: var(--primary-Font);
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .gvx-quote-block .home-quote-wrap .quote-info .name h3 {
    font-size: 16px;
  }
}
.gvx-quote-block .home-quote-wrap .quote-info .name p {
  margin-bottom: 0;
  color: #666;
  font-family: var(--primary-Font);
  font-size: 15px;
  font-weight: 500;
}

/** SUBMIT */
.gvc-submit-block {
  text-align: center;
  background-color: #000;
  padding: 270px 7.5% 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-image: url("../images/pattern-bg-black-diamonds.svg");
  color: #fff;
}
@media screen and (max-width: 768px) {
  .gvc-submit-block {
    padding: 200px 7.5% 150px;
  }
}
@media screen and (max-width: 640px) {
  .gvc-submit-block {
    padding: 80px 7.5% 60px;
  }
}
.gvc-submit-block h2 {
  font-family: var(--primary-Font);
  margin: 0 auto 1em;
  font-size: 50px;
  line-height: 1.25em;
  max-width: 800px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .gvc-submit-block h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 640px) {
  .gvc-submit-block h2 {
    font-size: 24px;
  }
}
.gvc-submit-block a {
  font-family: var(--primary-Font);
  font-size: 16px;
  line-height: 1em;
  color: #fff;
  background-color: #00b0cd;
  padding: 20px 40px;
  display: inline-block;
  margin-bottom: 0.35em;
  font-weight: 500;
  border: none;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .gvc-submit-block a {
    font-size: 18px;
  }
}/*# sourceMappingURL=home.css.map */