/* ===========================
Fonts
============================== */

/* English Fonts
font-family: "ivypresto-display", serif;
 */

/* Japanese Fonts

--Headings--
font-family: shippori-mincho, sans-serif;

--Paragraphs--
font-family: "zen-kaku-gothic-antique", sans-serif;
font-family: "zen-kaku-gothic-new", sans-serif;
*/

/* ===========================
General 
============================== */

html,
body {
  color: #222;
  font-size: 1em;
  line-height: 1.6;
  font-family: "zen-kaku-gothic-new", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "shippori-mincho", sans-serif;
}

h5 {
  line-height: 1.85rem;
}

.text-en {
  font-family: "ivypresto-display", serif;
  font-weight: 400 !important;
}

.heading-ja {
  font-family: "shippori-mincho", sans-serif;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

p {
  font-size: 1.2rem;
}

span {
  font-size: 1.2rem;
}

a {
  color: #9CB146;
  text-decoration: none
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #000000;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===========================
Header Navigation
============================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.0vw 6vw;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s ease-in-out;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.5s ease-in-out;
}

@media screen and (max-width: 1900px) {

  header {
    padding: 1.0vw 4vw;
  }

}

@media screen and (max-width: 992px) {

  header {
    padding: 10px 4vw;
  }

}

header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo svg {
  fill: #fff;
  width: 6.25vw;
  max-width: 125px;
  height: auto;
}

@media screen and (max-width: 1400px) {

  header .logo svg {
    width: 90px;
  }

}

header nav {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1400px) {

  header nav {
    display: none;
  }

}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

header nav ul li {
  margin-right: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 0.95vw;
  color: #ffffff;
  padding: 15px 20px;
}

@media screen and (max-width: 2000px) {

  header nav ul li a {
    font-size: 1.05vw;
  }

}


@media screen and (max-width: 1900px) {

  header nav ul li a {
    font-size: 1.1vw;
    padding: 15px 15px;
  }

}

@media screen and (max-width: 1700px) {

  header nav ul li a {
    font-size: 1.2rem;
    padding: 15px 8px;

  }

}

header nav ul li:last-child {
  margin-right: 0;
}

header nav ul li:last-child a {
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 15px 34px;
  transition: all 0.5s ease-in-out;
}

header nav ul li:last-child a:hover {
  background-color: #ffffff;
  color: #000000;
  transition: all 0.5s ease-in-out;

}

@media screen and (max-width: 1700px) {

  header nav ul li:last-child a {
    padding: 15px 20px;
  }

}

/* ===========================
Sections 
============================== */

section {
  padding: 90px 6vw;
  overflow: hidden;
}

@media screen and (max-width: 1900px) {
  section {
    padding: 90px 4vw;
  }

}

@media screen and (max-width: 992px) {
  section {
    padding: 60px 2vw;
  }

}

@media screen and (max-width: 500px) {
  section {
    padding: 40px 0vw;
  }

}

.block-hero {
  width: 100%;
  height: 100vh;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.block-hero .hero-banners { 
  position: absolute;
  top: 15%;
  right: 0;
  padding: 0 6vw;
  width: 25vw;
}

@media screen and (max-width: 1500px) {
  .block-hero .hero-banners { 
    width: 27.5vw;
  }
}

@media screen and (max-width: 1100px) {
  .block-hero .hero-banners { 
    width: 30vw;
  }
}

@media screen and (max-width: 850px) {
  .block-hero .hero-banners { 
    width: 35vw;
  }
}

@media screen and (max-width: 575px) {
  .block-hero .hero-banners { 
    width: 40vw;
  }
}

@media screen and (max-width: 400px) {
  .block-hero .hero-banners { 
    width: 60vw;
  }
}

.block-hero .hero-banners img { 
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.block-hero .hero-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  transform: translateY(50%);
  display: flex;
  padding: 0 6vw;
}

@media screen and (max-width: 1900px) {

  .block-hero .hero-content {
    padding: 0 4vw;
  }

}

.block-hero .hero-content h1 {
  font-size: 6vw;
  line-height: 6vw;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: end;
}

.block-hero .hero-content p {
  font-size: 1.3em;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding: 0;
  padding-left: 50px;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {

  .block-hero .hero-content {
    bottom: 50%;
    display: block;
    width: 100%;
  }

  .block-hero .hero-content h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-bottom: 30px;
    text-align: start;
  }

  .block-hero .hero-content p {
    font-size: 1.1em;
    padding: 0;
  }

}

.block-header {
  color: #fff;
  background-image: url('../img/hero.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-bottom: 150px;
  padding-top: 175px;
}

.block-content {
  margin-top: -200px;
}

.block-content .container-fluid {
  background-color: #fff;
  padding-top: 50px;
}

.block-header-tall {
  color: #fff;
  background-image: url('../img/bg-banner.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-bottom: 450px;
  padding-top: 175px;
}

.block-content-tall {
  margin-top: -480px;
}

.block-content-tall .container-fluid {
  background-color: #fff;
  padding-top: 50px;
}

/* ===========================
Navigation
============================== */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #9CB146;
  color: #000000;

}

.nav-pills .nav-link {
  background-color: #F4F4F4;
  color: #000000;
  padding: 5px 20px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.nav-pills .nav-link:hover {
  background-color: #9CB146;
}

/* ===========================
Google Map
============================== */

.google-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===========================
Table
============================== */

table tr td {
  vertical-align: top;
}

table.green-headings h1,
table.green-headings h2,
table.green-headings h3,
table.green-headings h4,
table.green-headings h5,
table.green-headings h6 {
  color: #239F84;
}

table.green-headings tr td:first-child span {
  color: #239F84;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  margin-top: -15px;
}

table.table-custom-border tr td {
  padding: 24px 0;
}

table.table-custom-border tr td {
  border-bottom: solid 1px #AFAFAF;
}

table.table-custom-border tr td:first-child {
  border-bottom: solid 1px #301E17;
  text-align: center;
}

table.table-custom-border tr td:last-child {
  padding-left: 20px;
  padding-right: 20px;
}

table.table-custom-border.table-custom-border-single tr td {
  border-top: solid 1px #AFAFAF;
}

table.table-custom-border.table-custom-border-single tr td:first-child {
  border-top: solid 1px #301E17;
}


/* ===========================
Buttons
============================== */

.btn.btn-orange {
  background-color: #E56200;
  color: #fff;
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.btn.btn-orange:hover {
  background-color: #000000;
  color: #fff;
}

/* ===========================
Text Colors
============================== */

.text-orange {
  color: #E56200;
}

.text-green {
  color: #9CB146;
}

.text-dark-green {
  color: #239F84;
}

.text-grey {
  color: #F4F4F4;
}

/* ===========================
Footer
============================== */

footer {
  background-color: #031F1E;
  color: #fff;
  padding: 100px 6vw 0;
  overflow: hidden;
}

@media screen and (max-width: 1900px) {
  footer {
    padding: 100px 4vw 0;
  }

}

@media screen and (max-width: 992px) {
  footer {
    padding: 60px 2vw 0;
  }

}

@media screen and (max-width: 768px) {
  footer {
    padding: 50px 0vw 0;
  }

}


footer .row .col-lg-4:first-child {
  padding-bottom: 40px;
  display: flex;
  align-items: end;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  footer .row .col-lg-4:first-child {
    padding-bottom: 20px;
    display: flex;
    align-items: start;
    justify-content: start;
  }
}

footer .row .col-lg-4:nth-child(2) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}

footer .row .col-lg-4:nth-child(2) img {
  width: 400px;
  height: auto;
}

footer .row .col-lg-4:last-child {
  padding-bottom: 40px;
  display: flex;
  align-items: end;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  footer .row .col-lg-4:last-child {
    padding-bottom: 20px;
    display: flex;
    align-items: start;
    justify-content: start;
  }
}

footer .footer-logo svg {
  fill: #607F72;
  width: 125px;
  height: auto;
  transition: all 0.5s ease-in-out;
}

footer .footer-logo svg:hover {
  fill: #fff;
}

footer .footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-menu ul li a {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.2rem;
  transition: all 0.4s ease-in-out;
}

footer .footer-menu ul li a:hover {
  color: #607F72;
}

footer .footer-social {
  margin-top: 20px;
}

footer .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-social ul li a {
  color: #607F72;
  font-size: 1.5rem;
  margin-right: 20px;
  transition: all 0.4s ease-in-out;
}

footer .footer-social ul li a:hover {
  color: #fff;
}

footer .btn-light {
  background-color: #fff;
  color: #000000;
  border: 0;
  border-radius: 50px;
  padding: 15px 38px 15px 46px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  position: relative;
}

footer .btn-light:hover {
  background-color: #607F72;
  color: #fff;
}

footer .btn-light span {
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
}

footer .btn-light:hover span {
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}

footer .footer-contact {
  margin-top: 40px;
}

footer .footer-contact a {
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
  transition: all 0.4s ease-in-out;
}

footer .footer-contact a:hover {
  color: #607F72;
}

footer .footer-contact a[href^="tel:"] {
  color: #fff;
  margin-bottom: 10px;
  text-decoration: underline;
}

footer .footer-contact a[href^="tel:"]:hover {
  color: #607F72;
}

footer .footer-contact-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
Tilted Image Slideshow
============================== */

.tilted-slideshow li {
  list-style: none !important;
}

/* ===========================
FAQ
============================== */

.faq-accordion {
  display: flex;
  flex-direction: column;
  border-top: solid 1px #000000;
}

.faq-accordion-item {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px #000000;
}

.faq-accordion-item-header {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 30px 0;
}

.faq-accordion-item-body-content {
  display: flex;
  justify-content: space-between;
  background-color: #F4F4F4;
  padding: 30px 0;
}

/* ===========================
FAQ Toggle Button
============================== */

.toggle-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: none;
  width: 40px;
  height: 40px;
  border: solid 1px #000000;
  border-radius: 100%;
  text-align: center;
  font-size: 1.25rem;
  background-color: #ffffff;
}

/* ===========================
FAQ Column
============================== */

.faq-column {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

/* ===========================
FAQ Header
============================== */

.faq-accordion-item-header .faq-column:first-child {
  width: 10%;
  align-items: center;
}

.faq-accordion-item-header .faq-column:nth-child(2) {
  width: 81%;
  margin-left: 2%;
  margin-right: 2%;
}

.faq-accordion-item-header .faq-column:last-child {
  width: 5%;
  text-align: center;
}

/* ===========================
FAQ Body
============================== */

.faq-accordion-item-body-content .faq-column:first-child {
  width: 10%;
  align-items: center;
}

.faq-accordion-item-body-content .faq-column:last-child {
  width: 81%;
  margin-left: 2%;
  margin-right: 7%;
}

.hidden {
  display: none;
}

/* ===========================
Contact Form
============================== */

.contact-form {
  display: flex;
  flex-direction: column;
  width: 60%;
  height: auto;
  margin: 30px auto 0;
}

@media screen and (max-width: 1200px) {
  .contact-form {
    width: 70%;
  }
}

@media screen and (max-width: 992px) {
  .contact-form {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .contact-form {
    width: 100%;
  }
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.contact-form .form-group label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  border: solid 1px #000000;
  border-radius: 0px;
  padding: 10px;
  font-size: 1.1rem;
  font-weight: 400;
}

.contact-form .form-group select {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
  font-size: 1.1rem;
  border-radius: 0px;
  border: none;
  border-right: 16px solid transparent;
  background: #EFEFEF;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
}

.contact-form .form-group textarea {
  height: 150px;
}

.contact-form .form-group .btn {
  width: 100%;
}

/* ===========================
Contact Form - Checkbox
============================== */

.contact-form .form-check {
  display: flex;
  flex-direction: row;
}

.contact-form .form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: solid 1px #000000;
  margin-right: 20px;
}

/* ===========================
Customer Block
============================== */

.customer-block {
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  padding: 0 6vw;
  margin-bottom: 30px;
}

@media screen and (max-width: 1900px) {
  .customer-block {
    padding: 0 4vw;
  }
}

.customer-block .row:last-child {
  padding-bottom: 0;
}

.customer-block .row .col-md-6 {
  padding: 30px 30px 0;
}

.customer-block .row .col-md-6:last-child {
  border-left: solid 1px #000000;
  padding-left: 40px;
}

.customer-block .row:last-child .col-md-6 {
  padding-bottom: 30px;
}

/* Customer Navigation */

.customer-navigation {
  width: 60%;
  margin: 0 auto;
  padding: 40px 0;
}

@media screen and (max-width: 1200px) {
  .customer-navigation {
    width: 70%;
  }

}

@media screen and (max-width: 992px) {
  .customer-navigation {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .customer-navigation {
    width: 100%;
  }
}

/* ===========================
Container Fluid
============================== */

@media screen and (max-width: 768px) {
  .container-fluid {
    padding-left: 22px;
    padding-right: 22px
  }
}

/* ===========================
Google Map
============================== */

.google-map iframe {
  width: 100%;
  height: 400px;
  border: solid 1px #000000;
}

/* ===========================
Background Image
============================== */

.bg-map {
  background-image: url('../img/onoe-map-bg.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 48%;
}

.map-spacer {
  display: none;
}

@media screen and (max-width: 992px) {
  .bg-map {
    background-size: 85%;
    padding-top: 30px !important;
  }

  .map-spacer {
    display: block;
    width: 100%;
    height: 90px;
  }
}

/* ===========================
Heading Border
============================== */

.heading-border img {
  margin-top: -30px;
}

/* ===========================
Customer Block
============================== */

.customer {
  background-color: #ffffff;
  padding: 0;
  padding-top: 100px;
}

/* ===========================
Lesson Card
============================== */

.lesson-card {
  position: relative;
}

.lesson-card-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
}

.lesson-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 10px;
}

.lesson-card-title {
  width: 100%;
  padding: 0 20px;
  margin: 0;
  color: #fff;
  font-size: 1.0rem;
  font-weight: 700;
  text-align: start;
}

.lesson-card-text {
  width: 80%;
  padding: 0 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: start;
}

.lesson-card-arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 25px;
  right: 20px;
}

.lesson-card-arrow svg {
  max-width: 100%;
  width: 100%;
  height: auto;
  fill: #ffffff;
}

/* ===========================
Guide Block
============================== */

.guide {
  position: relative;
  width: 100%;
  height: auto;
  border-bottom: solid 1px #DADADA;
  border-right: solid 1px #DADADA;
}

.guide-img {
  position: relative;
}

.guide-img img {
  width: 100%;
  height: auto;
}

.guide-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #00000070;
  padding: 2px 20px;
  border-radius: 50px;
}

.guide-badge span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.guide-title {
  width: 100%;
  padding: 20px;
  background: #F9F9F9;
  text-align: end;
  padding-bottom: 30px;
}

.guide-title h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

/* ===========================
Message Block
============================== */

.message-block {
  background-color: #F4F4F4;
  border-radius: 30px 20px;
  padding: 30px;
  width: 90%;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .message-block {
    width: 100%;
  }

}

.message-block table {
  margin: auto;
}


.message-block .text-center {
  margin-top: 20px;
}

/* ===========================
Utilities
============================== */

.bg-green {
  background-color: #9CB146;
}

.bg-grey {
  background-color: #F4F4F4;
}

.border-radius-30 {
  border-radius: 30px;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.mw-100 {
  max-width: 100px;
}

.mw-200 {
  max-width: 200px;
}

.mw-300 {
  max-width: 300px;
}

.mw-400 {
  max-width: 400px;
}

.mw-500 {
  max-width: 500px;
}

.mw-600 {
  max-width: 600px;
}

.mw-700 {
  max-width: 700px;
}

.mw-800 {
  max-width: 800px;
}

.mw-900 {
  max-width: 900px;
}

.mw-1000 {
  max-width: 1000px;
}

/* ======================================================
Responsive Navigation
====================================================== */

.mobile-nav-toggle {
  display: none;
}

@media screen and (max-width: 1400px) {

  .mobile-nav-toggle {
    display: block;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 9999999;
    cursor: pointer;
  }

  #toggleNavBtn {
    width: 40px;
    height: 30px;
    fill: #ffffff;
  }

  header.open {
    position: fixed;
    top: unset;
    left: unset;
    background-color: #000000;
    transition: none !important;
  }

  header nav.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  header nav ul li {
    padding: 15px 0;
  }

  header nav ul li:last-child {
    margin-top: 20px;
  }

}

.grecaptcha-badge {
  visibility: hidden !important;
}

/* ======================================================
Footer Mobile Bar 
====================================================== */

.sticky {
  position: fixed;
  bottom: 0;
  z-index: 99;
}

.btn-one,
.btn-one:hover {
  font-size: 1em;
  color: #FFFFFF;
  background-color: #3D5230;
  display: inline-block;
  margin: 7px 4px;
  border-radius: 15px;
}

.btn-two,
.btn-two:hover {
  font-size: 1em;
  color: #FFFFFF;
  background-color: #D92B18;
  display: inline-block;
  margin: 7px 4px;
  border-radius: 15px;
}

.btn-three,
.btn-three:hover {
  font-size: 1em;
  color: #FFFFFF;
  background-color: #F7A014;
  display: inline-block;
  margin: 7px 4px;
  border-radius: 15px;
}

.btn-four,
.btn-four:hover {
  font-size: 1em;
  line-height: 100%;
  color: #FFFFFF;
  background-color: #E56200;
  display: inline-block;
  margin: 7px 4px;
  border-radius: 15px;
}

.btn-one img {
  height: 40px;
  width: auto;
}

.btn-two img {
  height: 40px;
  width: auto;
}

.btn-three img {
  width: 50px;
  height: auto;
}

.btn-four img {
  width: 50px;
  height: auto;
}

.btn-four svg {
  width: 40px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .btn-one img {
    height: 30px;
    width: auto;
  }

  .btn-two img {
    height: 30px;
    width: auto;
  }

  .btn-three img {
    width: 40px;
    height: auto;
  }

  .btn-four img {
    width: 40px;
    height: auto;
  }

  .btn-four svg {
    width: 30px;
    height: auto;
  }

}

@media screen and (max-width: 550px) {

  .btn-one,
  .btn-one:hover {
    font-size: 0.8em;
  }

  .btn-two,
  .btn-two:hover {
    font-size: 0.8em;
  }

  .btn-three,
  .btn-three:hover {
    font-size: 0.8em;
  }

  .btn-four,
  .btn-four:hover {
    font-size: 0.8em;
  }


  .btn-one img {
    height: 25px;
    width: auto;
  }

  .btn-two img {
    height: 25px;
    width: auto;
  }

  .btn-three img {
    width: 30px;
    height: auto;
  }

  .btn-four img {
    width: 25px;
    height: auto;
  }

  .btn-four svg {
    width: 23px;
    height: auto;
  }

}

/* ======================================================
Custom Slider Overrides
====================================================== */

#app *, 
#app ::after, 
#app ::before {
  box-sizing: unset !important;
}

#app img { 
  max-width: unset !important;
}

/* ======================================================
Swiper Slider Hero
====================================================== */


:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper .hero-banners { 
  position: absolute;
  top: 15%;
  right: 0;
  padding: 0 6vw;
  width: 25vw;
  z-index: 999999;
}

.swiper .hero-banners img { 
	cursor: pointer;
}

@media screen and (max-width: 1500px) {
  .swiper .hero-banners { 
    width: 27.5vw;
  }
}

@media screen and (max-width: 1100px) {
  .swiper .hero-banners { 
    width: 30vw;
  }
}

@media screen and (max-width: 850px) {
  .swiper .hero-banners { 
    width: 35vw;
  }
}

@media screen and (max-width: 575px) {
  .swiper .hero-banners { 
    width: 40vw;
  }
}

@media screen and (max-width: 400px) {
  .swiper .hero-banners { 
    width: 60vw;
  }
}

.swiper .hero-banners img { 
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}








.swiper-slide-content {
  position: absolute;
  left: 32px;
  bottom: 32px;
  max-width: calc(100% - 64px);
}

.swiper-slide-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.25;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

/* */

.swiper.hero-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  transform: translateY(50%);
  display: flex;
  padding: 0 6vw;
}

@media screen and (max-width: 1900px) {

  .swiper .hero-content {
    padding: 0 4vw;
  }

}

.swiper .hero-content h1 {
  font-size: 6vw;
  line-height: 6vw;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: end;
}

.swiper .hero-content p {
  font-size: 1.3em;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding: 0;
  padding-left: 50px;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {

  .swiper .hero-content {
    bottom: 50%;
    display: block;
    width: 100%;
  }

  .swiper .hero-content h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-bottom: 30px;
    text-align: start;
  }

  .swiper .hero-content p {
    font-size: 1.1em;
    padding: 0;
  }

}