/**
* Set up a decent box model on the root element
*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #fff;
}

/**
* Make all elements from the DOM inherit from the parent box-sizing
* Since `*` has a specificity of 0, it does not override the `html` value
* making all elements inheriting from the root box-sizing value
* See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
*/
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
}

body {
  background: #fff;
}

body, ul, ol, dl {
  margin: 0;
}

article, aside, audio,
footer, header, nav, section, video {
  display: block;
}

p {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* sets hyphenation by default on paragraphs */
textarea {
  resize: vertical;
}

/* changes textarea resizing from "both" (UA default) to vertical only */
table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
}

input[type=submit]::-moz-focus-inner,
input[type=button]::-moz-focus-inner {
  border: 0px;
}

/* removes the inner border effect from focused buttons for form elements in Firefox */
input[type=search] {
  -webkit-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

/* removes the OS X appearance from HTML5 search inputs and submit buttons when viewed in Safari */
input:required:after {
  color: #f00;
  content: " *";
}

/* sets up required form fields with the conventional following red asterix */
input[type=email]:invalid {
  background: #f00;
}

sub, sup {
  line-height: 0;
}

/**
* Basic styles for links
*/
a {
  color: #305fab;
  text-decoration: none;
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

html.has-scroll-smooth, [data-scroll-container] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0);
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}
/**
* Basic typography style for copy text
*/
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "Cocogoose Light";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_light.woff") format("woff"), url("./fonts/Cocogoose_light.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose Pro";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_pro.woff") format("woff"), url("./fonts/Cocogoose_pro.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose Semilight";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_semilight.woff") format("woff"), url("./fonts/Cocogoose_semilight.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose thin";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_thin.woff") format("woff"), url("./fonts/Cocogoose_thin.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose ultralight";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_ultralight.woff") format("woff"), url("./fonts/Cocogoose_ultralight.woff2") format("woff2");
}
body {
  font-size: 14px;
  font-family: "Cocogoose light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-smooth: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
* Clear inner floats
*/
.ultrathin {
  font-family: "Cocogoose ultralight";
}

.pro {
  font-family: "Cocogoose Pro";
}

.semilight {
  font-family: "Cocogoose Semilight";
}

.light {
  font-family: "Cocogoose Light";
}

.thin {
  font-family: "Cocogoose thin";
}

.default-text {
  font-family: "Inter", sans-serif;
}

.numbers {
  font-size: 18px;
  font-weight: 500;
}

.special-text {
  font-family: "Tinos", cursive;
}

.blue-colored {
  color: #305fab;
}

.yellow-colored {
  color: #edae49;
}

.shadowed {
  text-shadow: 2px 1px 0px #ccdde2;
}

.bg-1 {
  background-color: #ccdde2;
}

.bg-2 {
  background-color: #f5f4ed;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.primary-button {
  font-size: 13px;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  background-color: #305fab;
  transition: all 0.45s ease-out;
  color: #f5f4ed;
  border-radius: 50px;
}
.primary-button.cancel {
  background-color: rgb(163, 35, 35);
}
.primary-button span {
  position: relative;
  z-index: 4;
}
.primary-button:hover {
  background-color: #edae49;
  color: #305fab;
}

/* From uiverse.io */
.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 12rem;
  height: auto;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #201d1f;
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #201d1f;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .learn-more .button-text {
    margin: 0 0 0 2rem;
  }
}
header {
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.header-nav #logo {
  margin-right: 48px;
}
.header-nav #logo img {
  height: 90px;
}
.header-nav .header-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header-nav .header-menu ul li {
  display: inline-block;
  margin: 0 12px;
}
.header-nav .header-menu ul li a {
  display: block;
  font-size: 16px;
  position: relative;
  color: #201d1f;
}
.header-nav .header-menu ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #edae49;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header-nav .header-menu ul li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #edae49;
}

#left-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-right: 55px;
}
#left-menu li {
  position: relative;
}
#left-menu li .cart-number {
  position: absolute;
  top: -4px;
  right: 4px;
  background-color: #305fab;
  color: #f5f4ed;
  padding: 5px 6px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}
#left-menu li a {
  margin: 0 12px;
}
#left-menu li a img {
  height: 32px;
}

#menu-click {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#mainMenu {
  padding-top: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 8;
  background-color: #ccdde2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(0, -100%);
}
#mainMenu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg1.png");
  background-size: contain;
  background-position: right center;
  opacity: 0.15;
  z-index: 0;
}
#mainMenu .main-menu-list {
  list-style: none;
}
#mainMenu .main-menu-list li a {
  font-size: 32px;
  display: inline-block;
  margin: 14px 0;
  letter-spacing: 1px;
  position: relative;
}
#mainMenu .main-menu-list li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #edae49;
  transform: scaleY(1.001);
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#mainMenu .main-menu-list li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edae49;
}
#mainMenu .sub-menu {
  list-style: none;
}
#mainMenu .sub-menu li a {
  font-size: 18px;
  display: inline-block;
  margin: 10px 0;
  letter-spacing: 1px;
  position: relative;
}
#mainMenu .sub-menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #edae49;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scaleY(1.001);
}
#mainMenu .sub-menu li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #edae49;
  transform: scaleY(1.001);
}

.menu-contact-box {
  padding: 10px;
}
.menu-contact-box .c-title {
  font-size: 1.75rem;
  margin-bottom: 15px;
}
.menu-contact-box p {
  font-size: 14px;
  line-height: 2;
}
.menu-contact-box .direction-link {
  font-size: 18px;
}
.menu-contact-box .direction-link a {
  position: relative;
}
.menu-contact-box .direction-link a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  background-color: #edae49;
  height: 2px;
}
.menu-contact-box .default-text {
  font-size: 16px;
  margin-left: 10px;
}
.menu-contact-box .default-text a {
  position: relative;
}
.menu-contact-box .default-text a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #edae49;
  transform: scaleY(1.001);
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu-contact-box .default-text a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edae49;
}

@media only screen and (max-width: 1400px) {
  .header-nav .header-menu ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu {
    display: none;
  }
  #mainMenu {
    justify-content: flex-start;
    overflow-y: scroll;
    padding-top: 120px;
  }
  #mainMenu .main-menu-list li a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  #left-menu {
    padding-left: 0;
  }
  #left-menu li a img {
    width: 24px;
  }
  .header-nav #logo {
    margin-right: 15px;
  }
}
footer {
  padding: 60px 0 0 0;
  background-color: #305fab;
  color: #f5f4ed;
  position: relative;
}
footer .footer-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .footer-flex .footer-item {
  width: 33.33%;
  margin-bottom: 48px;
}
footer .footer-flex .footer-item .footer-item-title {
  font-size: 1rem;
  font-weight: bold;
}
footer .footer-flex .footer-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .footer-flex .footer-item ul li a {
  display: inline-block;
  line-height: 2.3;
  position: relative;
  font-size: 13px;
  color: #f5f4ed;
}
footer .footer-flex .footer-item ul li a:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  transition: all 0.25s ease-in-out;
  height: 2px;
  background-color: #edae49;
  transform: scaleY(1.001);
}
footer .footer-flex .footer-item ul li a:hover:before {
  width: 100%;
}
footer .footer-flex .footer-item ul li a .default-text {
  font-size: 15px;
}
footer .foot-end {
  padding: 15px 0;
  margin-top: 30px;
}
footer .foot-end #seperator {
  position: relative;
}
footer .foot-end #seperator:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(1.001);
  width: 100%;
  height: 1px;
  background-color: #edae49;
  z-index: 0;
}
footer .foot-end #seperator .d-inline-flex {
  background-color: #305fab;
  position: relative;
  padding: 4px;
}
footer #footer-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 33.33%;
}
footer #footer-image img {
  max-width: none;
  max-height: 450px;
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  footer .footer-flex {
    flex-wrap: wrap;
  }
  footer .footer-flex .footer-item {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }
  footer #footer-image {
    width: 100%;
    opacity: 0.05;
  }
  footer #footer-image img {
    max-height: 100vh;
  }
}
div.marquee {
  position: absolute;
  width: 100%;
  color: transparent;
  font-size: 5.6vw;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #B7ADA1;
  z-index: 0;
  text-transform: uppercase;
  transform: translate(0%);
  opacity: 0.2;
  white-space: nowrap;
}

@media (max-width: 991px) {
  div.marquee {
    font-size: 36px;
    line-height: 38px;
  }
}
div.marquee.marquee-1 {
  top: 10vw;
  -webkit-animation: marquee 40s linear infinite running;
          animation: marquee 40s linear infinite running;
}

div.marquee.marquee-1 span {
  margin: 0 30px;
}

@media (max-width: 991px) {
  div.marquee.marquee-1 {
    top: 19vw;
    font-size: 9vw;
  }
}
div.marquee.marquee-2 {
  top: 15vw;
  -webkit-animation: marqueereverse 40s linear infinite running;
          animation: marqueereverse 40s linear infinite running;
}

div.marquee.marquee-2 span {
  margin: 0 30px;
}

@media (max-width: 991px) {
  div.marquee.marquee-2 {
    top: 28vw;
    font-size: 9vw;
  }
}
@-webkit-keyframes marquee {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes marquee {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes marqueereverse {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marqueereverse {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(-100%);
  }
}
.story-main {
  height: 100vh;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}
.story-main .story-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.story-main .story-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.story-main .story-img .story-image-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  text-align: center;
}
.story-main .story-img .story-image-content .banner-text {
  font-size: 3rem;
  color: #305fab;
}

.story-wrapper {
  padding: 40px 0;
  background-color: #d5e7ea;
}
.story-wrapper h2 {
  font-size: 2.5vw;
  text-transform: uppercase;
}
.story-wrapper h2 small {
  display: block;
}

.animated-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
}

svg {
  display: inline-block;
  height: 100%;
}

.story-title {
  font-size: 5vw;
  margin-bottom: 32px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #305fab;
}
.story-title span {
  display: block;
  color: #305fab;
}

.story-section {
  padding-top: 150px;
  overflow: hidden;
}
.story-section .svg-image {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 200px;
  max-width: 200px;
}
.story-section .story-section-title {
  font-size: 64px;
  margin-bottom: -25px;
  position: relative;
  z-index: 2;
  font-weight: 800;
  line-height: 1;
}
.story-section .rotate-clock {
  transform-origin: center;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
}
.story-section .rotate-clock .story-section-title {
  transform: rotate(8deg);
}
.story-section .rotate-anticlock {
  transform-origin: center;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
}
.story-section .rotate-anticlock .story-section-title {
  transform: rotate(-8deg);
}
.story-section .story-content {
  margin-top: 40px;
  width: 115%;
  font-size: 14px;
  letter-spacing: -0.5px;
  line-height: 1.8;
  font-weight: 600;
}
.story-section .story-content.shift-right {
  padding-left: 170px;
  transform: translateX(100px);
  opacity: 0;
  width: 150%;
}
.story-section .story-content.shift-left {
  margin-left: -190px;
  transform: translateX(-100px);
  opacity: 0;
  padding-right: 100px;
  width: 150%;
}

.story-title1 {
  font-size: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  font-weight: 800;
  line-height: 1;
  color: #305fab;
}
.story-title1 small {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #edae49;
}

.type-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.middle-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

.story-introduction {
  padding: 100px 0 200px 0;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: #f5f5ed;
  position: relative;
  overflow-x: hidden;
}
.story-introduction div.marquee {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  white-space: nowrap;
}
.story-introduction div.marquee.marquee-1 {
  top: auto;
  bottom: 12vw;
  -webkit-animation: marquee 40s linear infinite running;
          animation: marquee 40s linear infinite running;
}
@media (max-width: 991px) {
  .story-introduction div.marquee.marquee-1 {
    top: 19vw;
    font-size: 9vw;
  }
}
.story-introduction div.marquee.marquee-2 {
  top: auto;
  -webkit-animation: marqueereverse 40s linear infinite running;
          animation: marqueereverse 40s linear infinite running;
}
@media (max-width: 991px) {
  .story-introduction div.marquee.marquee-2 {
    top: auto;
    font-size: 9vw;
  }
}
.story-introduction:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
  background-image: url("../images/bg1.png");
  opacity: 0.15;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.story-parts {
  background-color: #f5f5ed;
  padding: 60px 0 90px 0;
  position: relative;
}
.story-parts .bg-image {
  position: absolute;
  width: 500px;
  height: auto;
  z-index: 0;
  opacity: 0.25;
}

@-webkit-keyframes mask-image {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -22330px 0;
  }
}

@keyframes mask-image {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -22330px 0;
  }
}
.parts-even .bg-image {
  right: 0;
  bottom: 0;
}
.parts-even .rotating-image img {
  transform: rotate(9deg);
  box-shadow: rgba(0, 0, 0, 0.6) 0px 3px 12px;
}

.parts-odd .bg-image {
  left: 0;
  top: 0;
}
.parts-odd .rotating-image img {
  transform: rotate(-9deg);
  box-shadow: rgba(0, 0, 0, 0.6) 0px 3px 12px;
}

.flex-image {
  width: 50%;
  height: 85vh;
}
.flex-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.flex-content {
  width: 50%;
  padding: 50px 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.flex-content .story-title1 {
  font-size: 32px;
  line-height: 1;
}

@media only screen and (max-width: 600px) {
  .story-main .story-img .story-image-content .banner-text {
    font-size: 2rem;
  }
  .story-main .story-img img {
    display: none;
  }
  .story-main {
    height: 75vh;
  }
  .story-main .story-img .story-image-content {
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .story-wrapper h2 {
    font-size: 2.5vh;
  }
  .flex-image, .flex-content {
    width: 100%;
  }
  .flex-image {
    height: 45vh;
  }
  .flex-content {
    padding: 40px 20px;
  }
  .rotating-image {
    width: 90%;
    margin: 0 auto;
  }
  .story-parts {
    padding: 30px 0;
  }
  .story-introduction {
    padding: 50px 0;
  }
}
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger--collapse .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.section-title {
  margin-bottom: 32px;
}
.section-title span {
  position: relative;
  padding: 12px 0px;
  line-height: 1;
}
.section-title span img {
  height: 32px;
  margin: 0 24px;
}
.section-title span:before, .section-title span:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #edae49;
  position: absolute;
  left: 0;
  transform: scaleY(1.001);
}
.section-title span:before {
  top: 0;
}
.section-title span:after {
  bottom: 0;
}

.floating1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
  will-change: transform;
}
.floating1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.25;
}

.floating2 {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
  will-change: transform;
}
.floating2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.25;
}

.line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #edae49;
  height: 0;
  opacity: 0.75;
}

.top-line {
  top: 0;
}

.bottom-line {
  bottom: 0;
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  margin-bottom: 4px;
  font-weight: 500;
  opacity: 0.9;
}
.form-group .form-control {
  border-radius: 0px;
  border: 1px solid #ccdde2;
  background-color: #fafafa;
  font-size: 14px;
}

#page-title {
  background-color: #f5f4ed;
  padding: 175px 0 30px 0;
}
#page-title h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #305fab;
}
#page-title p {
  font-size: 13px;
}

@media only screen and (max-width: 600px) {
  .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 32px;
  }
  #page-title {
    background-color: #f5f4ed;
    padding: 120px 0 30px 0;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-title h2 .text:before {
    display: none;
  }
  .section-title h2 .text:after {
    display: none;
  }
}
#billing-address {
  display: none;
  margin-top: 40px;
}

#diff-address {
  display: inline-block;
}/*# sourceMappingURL=story.css.map */