@font-face {
  font-family: 'Eurostile Extended';
  src: url('../fonts/EurostileExtended-Roman.woff2') format('woff2'), url('../fonts/EurostileExtended-Roman.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.section-vertical-space {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.container {
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
}
* {
  margin: 0;
  padding: 0;
}
*,
::before,
::after {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}
body {
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
  background-color: white;
}
.is-hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
}
p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 150%;
  text-align: justify;
}
img {
  max-width: 100%;
}
a {
  color: #000;
  text-decoration: none;
}
html {
  font-size: 10px;
}
html,
body {
  height: 100%;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  /* or any background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.container-full {
  padding: 0 1rem;
}
.header {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  height: 4.6rem;
}
.header .container-full {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .header .container-full {
    justify-content: space-between;
  }
}
.header .sumwon-logo {
  display: inline-block;
  margin: 0 3rem;
}
.header .sumwon-logo img {
  width: auto;
  max-height: 1rem;
}
@media (max-width: 1023px) {
  .header .sumwon-logo {
    margin: 0;
  }
}
@media (max-width: 649px) {
  .header .sumwon-logo img {
    max-width: 24rem;
  }
}
.header nav {
  flex: 1;
}
.header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.header nav ul li {
  padding: 0 3rem;
}
@media (max-width: 1440px) {
  .header nav ul li {
    padding: 0 2rem;
  }
}
@media (max-width: 1279px) {
  .header nav ul li {
    padding: 0 1.2rem;
  }
}
@media (max-width: 1100px) {
  .header nav ul li {
    padding: 0 1rem;
  }
}
.header nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-family: Eurostile Extended, Helvetica, Arial, sans-serif;
  letter-spacing: 0.1rem;
}
@media (max-width: 1279px) {
  .header nav ul li a {
    font-size: 1rem;
  }
}
.header nav ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.header nav ul#menu-header-nav-right {
  justify-content: flex-end;
}
.header #nav-icon {
  width: 24px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg) scale(0.8);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-left: 30px;
  display: none;
}
.header #nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header #nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.header #nav-icon span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.header #nav-icon span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.header #nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 4px;
}
.header #nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.header #nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 18px;
  left: 3px;
}
@media (max-width: 1023px) {
  .header .desktop-only {
    display: none !important;
  }
  .header .mobile-only {
    display: block !important;
  }
}
.mobile-nav {
  width: 25rem;
  height: calc(100% - 4.6rem);
  position: fixed;
  z-index: 9999;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 2rem 0;
  margin-right: -40rem;
  transition: 1s;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-nav ul {
  list-style: none;
}
.mobile-nav ul li a {
  font-size: 2rem;
  color: #fff;
  padding: 1.5rem 1rem;
  display: block;
  text-align: right;
  text-transform: uppercase;
  font-family: Eurostile Extended, Helvetica, Arial, sans-serif;
  letter-spacing: 0.1rem;
}
@media (max-width: 1023px) {
  .nav-opened .mobile-nav {
    margin-right: 0;
  }
}
.footer-logo {
  text-align: center;
  padding: 2rem;
  margin-top: auto;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  display: none !important;
}
.footer-logo img {
  max-height: 1rem;
}
@media (max-width: 767px) {
  .footer-logo {
    position: relative;
  }
}
.home .footer-logo {
  position: relative;
}
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  height: 100vh;
}
@media (max-width: 767px) {
  .video-container {
    align-items: flex-start;
    padding-bottom: 6rem;
    height: auto;
    padding-top: 4.6rem;
  }
}
.video-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  height: 80vh;
}
.video-wrapper video {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  /* keep video proportional, fill screen */
}
.video-wrapper .page-content {
  width: 50%;
  position: absolute;
  top: 0;
  padding: 10vh;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.video-wrapper .page-content.is-right {
  padding-top: 5rem;
}
.video-wrapper .page-content p:last-child {
  margin-bottom: 0;
}
.video-wrapper .page-content .brand-content {
  max-height: 100%;
  overflow: auto;
  flex: 1;
}
.video-wrapper .page-content.is-right {
  right: 0;
}
.video-wrapper .page-content.is-left {
  left: 1rem;
}
.video-wrapper .page-content h1 {
  font-size: 2rem;
}
.video-wrapper .page-content h2 {
  font-size: 1.6rem;
}
.video-wrapper .page-content h3 {
  font-size: 1.4rem;
}
.video-wrapper .page-content h4 {
  font-size: 1.2rem;
}
.video-wrapper .brand-logo {
  margin-bottom: 2rem;
  text-align: center;
}
.video-wrapper .brand-logo img {
  max-height: 2rem;
  max-width: 20rem;
  display: inline-block;
}
.video-wrapper .social-web {
  display: flex;
  justify-content: center;
  padding-top: 5rem;
}
.video-wrapper .social-web a {
  display: block;
  width: 2rem;
  height: 2rem;
  background-size: cover;
  margin: 0 1rem;
  transition: 0.2s;
}
.video-wrapper .social-web a:hover {
  transform: scale(0.9);
}
.video-wrapper .social-web a.instagram-link {
  background-image: url(../images/instagram-icon.png);
}
.video-wrapper .social-web a.website-link {
  background-image: url(../images/website-icon.png);
}
@media (max-width: 767px) {
  .video-wrapper {
    display: block;
    height: unset;
  }
  .video-wrapper video {
    height: auto;
    width: 100%;
  }
  .video-wrapper .page-content {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    padding: 2rem;
    left: unset !important;
    right: unset !important;
  }
}
.brand-swiper .swiper-button-next,
.brand-swiper .swiper-button-prev {
  width: 6rem;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.brand-swiper .swiper-button-next::after,
.brand-swiper .swiper-button-prev::after {
  display: none;
}
@media (max-width: 767px) {
  .brand-swiper .swiper-button-next,
  .brand-swiper .swiper-button-prev {
    top: 36%;
    margin-top: 1.5rem;
  }
}
.brand-swiper .swiper-button-next,
.brand-swiper .view-brands-link {
  right: 3rem;
  background-image: url(../images/arrow.png);
}
@media (max-width: 767px) {
  .brand-swiper .swiper-button-next,
  .brand-swiper .view-brands-link {
    right: 0;
    height: 1.7rem;
    background-image: url(../images/arrow-res.png);
  }
}
.brand-swiper .swiper-button-prev {
  left: 3rem;
  background-image: url(../images/arrow-prev.png);
}
@media (max-width: 767px) {
  .brand-swiper .swiper-button-prev {
    height: 1.7rem;
    left: 0;
    transform: rotate(-180deg);
    background-image: url(../images/arrow-res.png);
  }
}
.overflow-visible {
  overflow: visible;
}
.view-brands-link {
  width: 6rem;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/arrow.png);
  position: absolute;
  z-index: 1;
}
@media (min-width: 768px) {
  .view-brands-link {
    position: fixed;
    right: 3rem;
  }
}
@media (max-width: 767px) {
  .view-brands-link {
    right: 3rem;
  }
}
.form-cover {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.form-cover .form-field {
  width: 50%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}
.form-cover .form-field.full {
  min-width: 100%;
}
@media (max-width: 1023px) {
  .form-cover .form-field {
    min-width: 100%;
  }
}
.form-cover .form-field .wpcf7-quiz-label {
  text-align: left;
  display: block;
}
.form-cover .form-field p {
  margin-bottom: 0;
}
.form-cover .form-input {
  width: 100%;
  height: 4rem;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  font-size: 1.4rem;
  transition: 0.3s;
  background-color: unset;
}
.form-cover .form-input:focus {
  border-bottom-color: #000;
}
.form-cover textarea.form-input {
  height: 8rem;
  resize: none;
  font-family: Helvetica, Arial, sans-serif;
}
.form-cover .submit-btn {
  padding: 0 4rem;
  height: 4rem;
  background: #000;
  border: none;
  color: #fff;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  cursor: pointer;
}
