/** red **/
/** orange **/
/** orange **/
@-webkit-keyframes arrowTurnUp {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(180deg);
  }
}
@keyframes arrowTurnUp {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes arrowTurnDown {
  0% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0);
  }
}
@keyframes arrowTurnDown {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes spectacularButton {
  0% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale3d(10, 10, 10);
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

html {
  font-family: "niveau-grotesk", Verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a img {
  border: 0;
}

img {
  display: inline-block;
  max-width: 100%;
}

/***** HEADERS *****/
.section-header {
  text-align: center;
  padding: 0 0 40px 0;
}
@media (min-width: 768px) {
  .section-header {
    padding-bottom: 60px;
  }
}
.section-header .section-header__inner {
  display: inline-block;
  position: relative;
}
.section-header .section-header__inner:after {
  content: "";
  display: block;
  clear: both;
}
.section-header .section-header__title {
  padding: 0 10px 0 0;
  display: block;
  font-weight: 400;
  font-family: "adam", Verdana, sans-serif;
  text-align: right;
  letter-spacing: 2px;
  float: left;
  font-size: 26px;
  margin: -4px 0 0 0;
}
@media (min-width: 768px) {
  .section-header .section-header__title {
    font-size: 28px;
  }
}
@media (min-width: 1300px) {
  .section-header .section-header__title {
    font-size: 30px;
    letter-spacing: 3px;
  }
}
@media (min-width: 1500px) {
  .section-header .section-header__title {
    font-size: 32px;
    padding-right: 15px;
  }
}
@media (min-width: 1700px) {
  .section-header .section-header__title {
    font-size: 34px;
  }
}
.section-header .section-header__subtitle {
  float: right;
  padding: 17px 0 0 10px;
  border-left: 2px solid #000;
  font-weight: 400;
  text-align: left;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 20px;
  font-family: "adam", Verdana, sans-serif;
}
@media (min-width: 768px) {
  .section-header .section-header__subtitle {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
  }
}
@media (min-width: 1300px) {
  .section-header .section-header__subtitle {
    font-size: 18px;
    line-height: 24px;
    padding-top: 18px;
  }
}
@media (min-width: 1500px) {
  .section-header .section-header__subtitle {
    font-size: 20px;
    line-height: 26px;
    padding-top: 20px;
    padding-left: 15px;
  }
}
@media (min-width: 1700px) {
  .section-header .section-header__subtitle {
    padding-top: 24px;
    letter-spacing: 4px;
  }
}

@media (min-width: 1300px) {
  .section-header--more-space {
    padding-bottom: 80px;
  }
}
@media (min-width: 1700px) {
  .section-header--more-space {
    padding-bottom: 120px;
  }
}

.section-header--side-a {
  text-align: left;
}
.section-header--side-b {
  text-align: right;
  padding-right: 50px;
}
@media (min-width: 768px) {
  .section-header--side-b {
    padding-right: 100px;
  }
}

.section-header--type-01 .section-header__subtitle {
  padding-top: 50px;
}

.section-header--type-02 .section-header__inner {
  border-right: 2px solid #000;
  padding: 0 10px 0 0;
}
.section-header--type-02 .section-header__title {
  padding: 0;
  text-align: right;
  letter-spacing: 2px;
  float: none;
}
.section-header--type-02 .section-header__subtitle {
  float: none;
  padding: 15px 0 0 0;
  border-left: 0;
  font-weight: 400;
  text-align: right;
  letter-spacing: 1px;
}

.section-header--light .section-header__inner {
  border-color: #fff;
}
.section-header--light .section-header__subtitle {
  border-color: #fff;
}

@media (min-width: 768px) {
  .section-subheader {
    padding-bottom: 10px;
  }
}
.section-subheader .section-subheader__title {
  font-size: 18px;
  font-weight: 400;
  font-family: "adam", Verdana, sans-serif;
}
@media (min-width: 500px) {
  .section-subheader .section-subheader__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .section-subheader .section-subheader__title {
    font-size: 22px;
  }
}

.subsection-header {
  padding: 0 0 20px 0;
}
@media (min-width: 992px) {
  .subsection-header {
    padding-bottom: 28px;
  }
}
@media (min-width: 1300px) {
  .subsection-header {
    padding-bottom: 32px;
  }
}
@media (min-width: 1700px) {
  .subsection-header {
    padding-bottom: 36px;
  }
}
.subsection-header .subsection-header__subtitle {
  padding: 4px 0 0 0;
}
@media (min-width: 1700px) {
  .subsection-header .subsection-header__subtitle {
    padding-top: 8px;
  }
}

.comment-subtitle {
  font-size: 14px;
  color: #7D7D7D;
  font-weight: 400;
}
@media (min-width: 1300px) {
  .comment-subtitle {
    font-size: 18px;
  }
}

.brand-logo-header {
  padding: 0 0 40px 0;
}
@media (min-width: 768px) {
  .brand-logo-header {
    padding-bottom: 60px;
  }
}
@media (min-width: 1100px) {
  .brand-logo-header {
    padding-bottom: 80px;
  }
}
@media (min-width: 1500px) {
  .brand-logo-header {
    padding-bottom: 120px;
  }
}
.brand-logo-header .brand-logo-header__inner {
  display: inline-block;
  padding: 0 0 0 152px;
  background: url("../img/logo-magic-movers.svg") no-repeat center left;
  background-size: 142px auto;
}
@media (min-width: 900px) {
  .brand-logo-header .brand-logo-header__inner {
    background-size: 162px auto;
    padding-left: 172px;
  }
}
@media (min-width: 1500px) {
  .brand-logo-header .brand-logo-header__inner {
    background-size: 184px auto;
    padding-left: 194px;
  }
}
.brand-logo-header .brand-logo-header__title {
  border-left: 1px solid #e70b13;
  padding: 0 0 0 10px;
  font-family: "gilroy", Verdana, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
  color: #e70b13;
}
@media (min-width: 900px) {
  .brand-logo-header .brand-logo-header__title {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1100px) {
  .brand-logo-header .brand-logo-header__title {
    font-size: 24px;
    line-height: 28px;
  }
}

.brand-logo-header--light .brand-logo-header__inner {
  background-image: url("../img/logo-magic-movers-light.svg");
}
.brand-logo-header--light .brand-logo-header__title {
  border-color: #fff;
  color: #fff;
}

.plain-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
@media (min-width: 1300px) {
  .plain-title {
    font-size: 18px;
  }
}
@media (min-width: 1700px) {
  .plain-title {
    font-size: 20px;
  }
}

.simple-title {
  font-family: "adam", Verdana, sans-serif;
  font-size: 20px;
}
@media (min-width: 1300px) {
  .simple-title {
    font-size: 21px;
  }
}
@media (min-width: 1700px) {
  .simple-title {
    font-size: 23px;
  }
}

.simple-title--smaller {
  font-size: 18px;
}
@media (min-width: 1300px) {
  .simple-title--smaller {
    font-size: 20px;
  }
}
@media (min-width: 1700px) {
  .simple-title--smaller {
    font-size: 22px;
  }
}

/***** TEXT *****/
.line {
  display: block;
}

.text {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .text {
    font-size: 16px;
    line-height: 22px;
  }
}
.text p {
  padding: 10px 0;
}
.text p:first-child {
  padding-top: 0;
}
.text p:last-child {
  padding-bottom: 0;
}

.text--with-greeting p:first-child:first-line {
  font-weight: 700;
  padding: 0 0 12px 0;
  display: block;
}

.address {
  font-style: normal;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

/***** LISTS *****/
ul {
  list-style-type: none;
}

.plain-list {
  padding: 20px 0 0 0;
}
.plain-list > li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.icons {
  text-align: center;
  padding: 0;
  margin: 0 auto;
  list-style-type: none;
  width: 900px;
}
.icons > li {
  display: inline-block;
  width: 33.33%;
  padding: 20px 30px;
  margin: 0 0 0 -5px;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.icons .icons__icon-container {
  margin: 0 auto 20px auto;
  width: 100px;
  height: 100px;
  background: #f6f6f6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.icons .icons__icon {
  margin: 0 auto;
}
.icons .icons__header {
  font-size: 20px;
  font-weight: 400;
}

.dropdown {
  position: relative;
  display: block;
  max-width: 300px;
}
.dropdown .dropdown__header {
  padding: 10px 50px 10px 15px;
  border: 1px solid #444;
  position: relative;
  cursor: pointer;
}
.dropdown .dropdown__header .icon {
  position: absolute;
  top: 50%;
  right: 16px;
  margin: -4px 0 0 0;
  -webkit-animation-name: arrowTurnDown;
  -moz-animation-name: arrowTurnDown;
  animation-name: arrowTurnDown;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.dropdown .dropdown__title {
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 14px;
}
.dropdown .dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  font-size: 14px;
  padding: 15px 10px;
  background: #fafafa;
  border: 1px solid #c4c4c4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
}
.dropdown .dropdown__list > li {
  display: block;
  padding: 5px 0;
}
.dropdown .dropdown__list a {
  display: block;
}

.dropdown.dropdown--open .dropdown__header .icon {
  -webkit-animation-name: arrowTurnUp;
  -moz-animation-name: arrowTurnUp;
  animation-name: arrowTurnUp;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.horizontal-list > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 -5px;
  padding: 0 35px;
}
.horizontal-list > li:first-child {
  padding-left: 0;
}
.horizontal-list > li:last-child {
  padding-right: 0;
}

.distinguishing-list {
  font-weight: 700;
  line-height: 24px;
}
.distinguishing-list a {
  color: #e70b13;
}
.distinguishing-list a:hover {
  color: rgba(255, 54, 8, 0.6);
}
.distinguishing-list > li {
  display: block;
  padding: 0;
}
.distinguishing-list .distinguishing-list__title {
  color: #000;
  vertical-align: top;
  display: inline-block;
}
.distinguishing-list .distinguishing-list__content {
  vertical-align: top;
  display: inline-block;
  padding: 0 0 0 5px;
  color: #e70b13;
}
.distinguishing-list .distinguishing-list__content a {
  display: block;
}

.horizontal-links {
  font-size: 14px;
}
.horizontal-links > li {
  display: block;
  padding: 4px 0;
}
@media (min-width: 900px) {
  .horizontal-links > li {
    display: inline-block;
    padding: 0 20px;
  }
}
@media (min-width: 900px) {
  .horizontal-links > li:first-child {
    padding-left: 0;
  }
}
@media (min-width: 900px) {
  .horizontal-links > li:last-child {
    padding-right: 0;
  }
}

.horizontal-links--nearly-light a {
  color: rgba(255, 255, 255, 0.5);
}
.horizontal-links--nearly-light a:hover, .horizontal-links--nearly-light a:focus {
  color: #fff;
}

.icon-items {
  list-style-type: none;
}
@media (min-width: 480px) {
  .icon-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8%;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .icon-items {
    gap: 12%;
  }
}
@media (min-width: 992px) {
  .icon-items {
    gap: 4%;
  }
}
.icon-items > li {
  display: block;
  padding: 16px 0;
}
@media (min-width: 480px) {
  .icon-items > li {
    min-width: 46%;
    max-width: 46%;
    padding: 20px 0;
  }
}
@media (min-width: 650px) {
  .icon-items > li {
    min-width: 46%;
    max-width: 46%;
    padding: 28px 0;
  }
}
@media (min-width: 768px) {
  .icon-items > li {
    min-width: 44%;
    max-width: 44%;
  }
}
@media (min-width: 992px) {
  .icon-items > li {
    min-width: 22%;
    max-width: 22%;
    padding: 0;
  }
}
.icon-items > li:first-child {
  padding-top: 0;
}
.icon-items > li:nth-child(2) {
  padding-top: 0;
}
.icon-items > li:last-child {
  padding-bottom: 0;
}

/***** CONTAINERS *****/
.site-content {
  overflow: hidden;
  margin: 0 auto;
}

.wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.wrapper > div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.container {
  padding: 0;
  position: relative;
}
.container:after {
  content: "";
  display: block;
  clear: both;
}
.container .column {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.container .col-9 {
  width: 75%;
}
.container .col-8 {
  width: 66.6666666667%;
}
.container .col-6 {
  width: 50%;
}
.container .col-4 {
  width: 33.3333333333%;
}
.container .col-3 {
  width: 25%;
}
.container .col-2 {
  width: 16.6666666667%;
}
.container .middle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  margin: 0 0 0 -25%;
}

.container--reverse .column {
  float: right;
}

.container--same-height-columns {
  position: relative;
}
.container--same-height-columns .column {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.container--same-height-columns .column--highest {
  position: static;
}

.video {
  display: block;
  position: relative;
  padding-bottom: 56.75%;
  height: 0;
  margin: 0 auto;
}
.video iframe,
.video video {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.separated-columns {
  position: relative;
}
@media (min-width: 768px) {
  .separated-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12%;
  }
}
@media (min-width: 1300px) {
  .separated-columns {
    gap: 20%;
  }
}
@media (min-width: 768px) {
  .separated-columns:before {
    content: "";
    display: block;
    width: 6px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 0 0 -3px;
  }
}
.separated-columns__column {
  padding: 32px 0;
}
@media (min-width: 768px) {
  .separated-columns__column {
    padding: 0;
    min-width: 44%;
    max-width: 44%;
  }
}
@media (min-width: 1300px) {
  .separated-columns__column {
    min-width: 40%;
    max-width: 40%;
  }
}
.separated-columns__column:first-child {
  padding-top: 0;
}
.separated-columns__column:last-child {
  padding-bottom: 0;
}

.row {
  padding: 40px 0 0 0;
}
.row:first-child {
  padding-top: 0;
}

.row--more-space {
  padding-top: 64px;
}
@media (min-width: 768px) {
  .row--more-space {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .row--more-space {
    padding-top: 80px;
  }
}
@media (min-width: 1700px) {
  .row--more-space {
    padding-top: 100px;
  }
}

.small-subsection__header {
  padding: 0 0 8px 0;
}

.simple-subsections {
  list-style-type: none;
}
.simple-subsections > li {
  padding: 12px 0;
}
@media (min-width: 992px) {
  .simple-subsections > li {
    padding: 16px 0;
  }
}
.simple-subsections > li:first-child {
  padding-top: 0;
}
.simple-subsections > li:last-child {
  padding-bottom: 0;
}

/* containers-end */
/***** MODULES *****/
.article .article__header {
  padding: 0 0 10px 0;
  text-align: center;
}
.article .article__title {
  font-size: 26px;
  font-weight: 400;
}
.article .article__text {
  font-size: 16px;
  line-height: 22px;
}
.article .article__text p {
  padding: 10px 0;
}

.bookmarks-manager .bookmarks-manager__bookmarks > li {
  padding: 20px;
  display: block;
}
.bookmarks-manager .bookmarks-manager__bookmark-content {
  display: none;
}
.bookmarks-manager .bookmarks-manager__content-container {
  display: none;
}

.social-media {
  display: none;
}
.social-media > ul > li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 7px;
  position: relative;
  -webkit-transition: all 0.8s ease-in 0.5s;
  -moz-transition: all 0.8s ease-in 0.5s;
  -o-transition: all 0.8s ease-in 0.5s;
  transition: all 0.8s ease-in 0.5s;
}
.social-media > ul > li a {
  display: block;
  width: 30px;
  height: 30px;
  background: #e70b13;
  color: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-media > ul > li a:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.social-media > ul > li a:hover {
  background: none;
}
.social-media > ul > li a:hover:before {
  opacity: 1;
}
.social-media > ul > li:nth-child(1) {
  left: 35px;
}
.social-media > ul > li:nth-child(1) a {
  background: rgba(255, 54, 8, 0.3);
}
.social-media > ul > li:nth-child(1) a:before {
  border-color: rgba(255, 54, 8, 0.3);
}
.social-media > ul > li:nth-child(1) a:hover {
  background: none;
}
.social-media > ul > li:nth-child(2) a {
  background: rgba(255, 54, 8, 0.6);
}
.social-media > ul > li:nth-child(2) a:before {
  border-color: rgba(255, 54, 8, 0.6);
}
.social-media > ul > li:nth-child(2) a:hover {
  background: none;
}
.social-media > ul > li:nth-child(3) {
  left: -35px;
}
.social-media > ul > li:nth-child(3) a {
  background: #e70b13;
}
.social-media > ul > li:nth-child(3) a:before {
  border-color: #e70b13;
}
.social-media > ul > li:nth-child(3) a:hover {
  background: none;
}
.social-media > ul > li .fa {
  opacity: 0;
  display: block;
  font-size: 14px;
  -webkit-transition: all 0.2s linear 1.5s;
  -moz-transition: all 0.2s linear 1.5s;
  -o-transition: all 0.2s linear 1.5s;
  transition: all 0.2s linear 1.5s;
}

.social-media--visible > ul > li {
  left: 0 !important;
}
.social-media--visible > ul > li .fa {
  opacity: 1;
}

.huge-circle {
  position: relative;
  width: 180px;
  height: 180px;
  color: #fff;
  cursor: pointer;
  margin: 30px auto;
}
@media (min-width: 768px) {
  .huge-circle {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 992px) {
  .huge-circle {
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 1700px) {
  .huge-circle {
    width: 350px;
    height: 350px;
  }
}
.huge-circle:before {
  content: "";
  display: block;
  background: rgba(255, 54, 8, 0.6);
  z-index: 2;
}
.huge-circle:after {
  content: "";
  display: block;
  background: rgba(255, 54, 8, 0.3);
  z-index: 4;
}
.huge-circle .huge-circle__inner {
  background: #e70b13;
  z-index: 6;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.huge-circle .huge-circle__inner, .huge-circle:before, .huge-circle:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.huge-circle:before {
  margin: 0 0 0 -180px;
  -webkit-transition: all 0.3s ease-out 0.8s;
  -moz-transition: all 0.3s ease-out 0.8s;
  -o-transition: all 0.3s ease-out 0.8s;
  transition: all 0.3s ease-out 0.8s;
}
.huge-circle:after {
  margin: 0 0 0 -360px;
  -webkit-transition: all 0.6s ease-out 0.8s;
  -moz-transition: all 0.6s ease-out 0.8s;
  -o-transition: all 0.6s ease-out 0.8s;
  transition: all 0.6s ease-out 0.8s;
}
.huge-circle .huge-circle__title {
  text-transform: uppercase;
  font-weight: 400;
  font-family: "adam", Verdana, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .huge-circle .huge-circle__title {
    font-size: 22px;
  }
}
@media (min-width: 1500px) {
  .huge-circle .huge-circle__title {
    font-size: 24px;
  }
}
@media (min-width: 1700px) {
  .huge-circle .huge-circle__title {
    font-size: 28px;
  }
}
.huge-circle .huge-circle__subtitle {
  font-family: "gilroy", Verdana, sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 2px 0 0 0;
}
@media (min-width: 768px) {
  .huge-circle .huge-circle__subtitle {
    font-size: 20px;
  }
}
@media (min-width: 1500px) {
  .huge-circle .huge-circle__subtitle {
    font-size: 22px;
  }
}
@media (min-width: 1700px) {
  .huge-circle .huge-circle__subtitle {
    font-size: 24px;
  }
}

.huge-circle--simple .huge-circle__title {
  text-transform: none;
  font-weight: 300;
  letter-spacing: 1px;
  font-family: "niveau-grotesk", Verdana, sans-serif;
  font-size: 18px;
}
@media (min-width: 768px) {
  .huge-circle--simple .huge-circle__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .huge-circle--simple .huge-circle__title {
    font-size: 24px;
  }
}
@media (min-width: 1700px) {
  .huge-circle--simple .huge-circle__title {
    font-size: 28px;
  }
}

.huge-circle--medium .huge-circle__inner .huge-circle__over {
  border: 2px solid #e70b13;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -2px;
  left: -2px;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.huge-circle--medium .huge-circle__inner:hover .huge-circle__over {
  opacity: 1;
}

.huge-circle--light .huge-circle__inner {
  background: #fff;
  color: #e70b13;
}
.huge-circle--light:before, .huge-circle--light:after {
  background: #fff;
}
.huge-circle--light:before {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-out 0.4s;
  -moz-transition: all 0.3s ease-out 0.4s;
  -o-transition: all 0.3s ease-out 0.4s;
  transition: all 0.3s ease-out 0.4s;
}
.huge-circle--light:after {
  opacity: 0.3;
  -webkit-transition: all 0.6s ease-out 0.4s;
  -moz-transition: all 0.6s ease-out 0.4s;
  -o-transition: all 0.6s ease-out 0.4s;
  transition: all 0.6s ease-out 0.4s;
}

.huge-circle--light.huge-circle--done:before, .huge-circle--light.huge-circle--done:after,
.huge-circle--done:before,
.huge-circle--done:after {
  margin: 0;
}

.decorative-section {
  position: relative;
}
.decorative-section .decorative-section__inner {
  position: relative;
}
.decorative-section .decorative-section__item {
  position: absolute;
}
.decorative-section .decorative-section__item--dark {
  background: #000;
}
.decorative-section .decorative-section__item--grey {
  background: #828487;
}
.decorative-section .decorative-section__item--grey-02 {
  background: #C9CACC;
}
.decorative-section .decorative-section__item--light {
  background: #fff;
}
.decorative-section .decorative-section__item--medium {
  background: #e70b13;
}
.decorative-section .decorative-section__item--medium-01 {
  background: rgba(255, 54, 8, 0.6);
}
.decorative-section .decorative-section__item--medium-02 {
  background: rgba(255, 54, 8, 0.3);
}
.decorative-section .decorative-section__circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.decorative-section-header-decoration .decorative-section__item-01,
.decorative-section-header-decoration .decorative-section__item-02,
.decorative-section-header-decoration .decorative-section__item-03 {
  display: none;
}
@media (min-width: 992px) {
  .decorative-section-header-decoration .decorative-section__item-01,
  .decorative-section-header-decoration .decorative-section__item-02,
  .decorative-section-header-decoration .decorative-section__item-03 {
    top: 0;
    left: 15%;
    width: 60px;
    height: 60px;
    display: block;
  }
}
@media (min-width: 1300px) {
  .decorative-section-header-decoration .decorative-section__item-01,
  .decorative-section-header-decoration .decorative-section__item-02,
  .decorative-section-header-decoration .decorative-section__item-03 {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 992px) {
  .decorative-section-header-decoration .decorative-section__item-01 {
    z-index: 8;
  }
}
@media (min-width: 992px) {
  .decorative-section-header-decoration .decorative-section__item-02 {
    -webkit-transform: translate3d(-16px, 12px, 0);
    -moz-transform: translate3d(-16px, 12px, 0);
    transform: translate3d(-16px, 12px, 0);
    z-index: 6;
  }
}
@media (min-width: 1300px) {
  .decorative-section-header-decoration .decorative-section__item-02 {
    -webkit-transform: translate3d(-20px, 14px, 0);
    -moz-transform: translate3d(-20px, 14px, 0);
    transform: translate3d(-20px, 14px, 0);
  }
}
@media (min-width: 992px) {
  .decorative-section-header-decoration .decorative-section__item-03 {
    -webkit-transform: translate3d(-32px, 24px, 0);
    -moz-transform: translate3d(-32px, 24px, 0);
    transform: translate3d(-32px, 24px, 0);
    z-index: 4;
  }
}
@media (min-width: 1300px) {
  .decorative-section-header-decoration .decorative-section__item-03 {
    -webkit-transform: translate3d(-40px, 28px, 0);
    -moz-transform: translate3d(-40px, 28px, 0);
    transform: translate3d(-40px, 28px, 0);
  }
}

.decorative-section-subsections-decoration .decorative-section__item-01,
.decorative-section-subsections-decoration .decorative-section__item-02,
.decorative-section-subsections-decoration .decorative-section__item-03 {
  display: none;
}
@media (min-width: 992px) {
  .decorative-section-subsections-decoration .decorative-section__item-01,
  .decorative-section-subsections-decoration .decorative-section__item-02,
  .decorative-section-subsections-decoration .decorative-section__item-03 {
    display: block;
    width: 72px;
    height: 18px;
    top: 32px;
    right: 0;
    left: auto;
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
}
@media (min-width: 992px) {
  .decorative-section-subsections-decoration .decorative-section__item-02 {
    top: 8px;
    right: -16px;
  }
}
@media (min-width: 992px) {
  .decorative-section-subsections-decoration .decorative-section__item-03 {
    top: 48px;
    right: 28px;
  }
}

.spectacular-picture {
  padding: 0 0 50px 0;
}
@media (min-width: 500px) {
  .spectacular-picture {
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .spectacular-picture {
    padding-bottom: 100px;
  }
}
@media (min-width: 1300px) {
  .spectacular-picture {
    padding-bottom: 120px;
  }
}
.spectacular-picture .spectacular-picture__inner {
  padding: 0;
  position: relative;
}
.spectacular-picture .spectacular-picture__picture {
  display: block;
  width: 100%;
  position: relative;
}
.spectacular-picture .decorative-section__circle {
  width: 40px;
  height: 40px;
}
@media (min-width: 500px) {
  .spectacular-picture .decorative-section__circle {
    height: 60px;
    width: 60px;
  }
}
@media (min-width: 768px) {
  .spectacular-picture .decorative-section__circle {
    height: 90px;
    width: 90px;
  }
}
@media (min-width: 1100px) {
  .spectacular-picture .decorative-section__circle {
    height: 110px;
    width: 110px;
  }
}
@media (min-width: 1300px) {
  .spectacular-picture .decorative-section__circle {
    height: 130px;
    width: 130px;
  }
}
.spectacular-picture .decorative-section__circle--small {
  width: 30px;
  height: 30px;
}
@media (min-width: 500px) {
  .spectacular-picture .decorative-section__circle--small {
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 768px) {
  .spectacular-picture .decorative-section__circle--small {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 1100px) {
  .spectacular-picture .decorative-section__circle--small {
    height: 60px;
    width: 60px;
  }
}
@media (min-width: 1300px) {
  .spectacular-picture .decorative-section__circle--small {
    height: 80px;
    width: 80px;
  }
}
.spectacular-picture .decorative-section__circle--very-small {
  width: 20px;
  height: 20px;
}
@media (min-width: 500px) {
  .spectacular-picture .decorative-section__circle--very-small {
    height: 30px;
    width: 30px;
  }
}
@media (min-width: 768px) {
  .spectacular-picture .decorative-section__circle--very-small {
    height: 35px;
    width: 35px;
  }
}
@media (min-width: 1300px) {
  .spectacular-picture .decorative-section__circle--very-small {
    height: 40px;
    width: 40px;
  }
}
.spectacular-picture .decorative-section__item-00 {
  top: 30%;
  right: -30px;
  z-index: 10;
}
@media (min-width: 768px) {
  .spectacular-picture .decorative-section__item-00 {
    right: -50px;
    top: 25%;
  }
}
@media (min-width: 1100px) {
  .spectacular-picture .decorative-section__item-00 {
    top: 30%;
    right: -70px;
  }
}
@media (min-width: 1500px) {
  .spectacular-picture .decorative-section__item-00 {
    right: -110px;
  }
}
.spectacular-picture .decorative-section__item-01 {
  top: 30%;
  right: -20px;
  margin: 10px 0 0 0;
  z-index: 8;
}
@media (min-width: 768px) {
  .spectacular-picture .decorative-section__item-01 {
    right: -35px;
    top: 25%;
    margin-top: 15px;
  }
}
@media (min-width: 1100px) {
  .spectacular-picture .decorative-section__item-01 {
    top: 30%;
    right: -50px;
  }
}
@media (min-width: 1300px) {
  .spectacular-picture .decorative-section__item-01 {
    right: -40px;
    margin-top: 25px;
  }
}
@media (min-width: 1500px) {
  .spectacular-picture .decorative-section__item-01 {
    right: -80px;
  }
}
.spectacular-picture .decorative-section__item-02 {
  top: 30%;
  right: -10px;
  margin: 20px 0 0 0;
  z-index: 6;
}
@media (min-width: 768px) {
  .spectacular-picture .decorative-section__item-02 {
    right: -20px;
    top: 25%;
    margin-top: 30px;
  }
}
@media (min-width: 1100px) {
  .spectacular-picture .decorative-section__item-02 {
    top: 30%;
    right: -30px;
  }
}
@media (min-width: 1300px) {
  .spectacular-picture .decorative-section__item-02 {
    right: -10px;
    margin-top: 50px;
  }
}
@media (min-width: 1500px) {
  .spectacular-picture .decorative-section__item-02 {
    right: -50px;
  }
}
.spectacular-picture .decorative-section__item-03 {
  bottom: -15px;
  right: 10%;
}
@media (min-width: 768px) {
  .spectacular-picture .decorative-section__item-03 {
    bottom: -25px;
  }
}
@media (min-width: 1100px) {
  .spectacular-picture .decorative-section__item-03 {
    bottom: -30px;
  }
}
@media (min-width: 1300px) {
  .spectacular-picture .decorative-section__item-03 {
    bottom: -40px;
  }
}
.spectacular-picture .decorative-section__item-04 {
  bottom: -30px;
  right: 30%;
}
@media (min-width: 500px) {
  .spectacular-picture .decorative-section__item-04 {
    bottom: -45px;
  }
}
@media (min-width: 768px) {
  .spectacular-picture .decorative-section__item-04 {
    bottom: -60px;
  }
}
@media (min-width: 1300px) {
  .spectacular-picture .decorative-section__item-04 {
    bottom: -80px;
  }
}

@media (min-width: 550px) {
  .decorative-text {
    padding: 100px 0 40px 0;
  }
}
.decorative-text .decorative-section__inner {
  max-width: 450px;
  margin: 0 auto;
}
.decorative-text .decorative-section__item {
  display: none;
}
@media (min-width: 550px) {
  .decorative-text .decorative-section__item {
    display: block;
  }
}
.decorative-text .decorative-section__rectangle {
  width: 80px;
  height: 13px;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.decorative-text .decorative-section__smaller-rectangle {
  width: 72px;
  height: 18px;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.decorative-text .decorative-section__circle {
  width: 28px;
  height: 28px;
}
.decorative-text .decorative-section__item-00 {
  top: -40px;
  left: -60px;
}
.decorative-text .decorative-section__item-01 {
  top: -28px;
  left: -65px;
  opacity: 0.6;
}
.decorative-text .decorative-section__item-02 {
  top: -100px;
  left: 70px;
}
.decorative-text .decorative-section__item-03 {
  bottom: -20px;
  right: -25px;
}

.irregular-section {
  position: relative;
}
@media (min-width: 992px) {
  .irregular-section {
    width: 70%;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1300px) {
  .irregular-section {
    width: 50%;
  }
}
@media (min-width: 1500px) {
  .irregular-section {
    width: 48%;
  }
}
.irregular-section .irregular-section__items {
  padding: 0 0 10px 0;
  position: static;
}
@media (min-width: 768px) {
  .irregular-section .irregular-section__items {
    padding: 0 0 20px 0;
  }
}
.irregular-section .irregular-section__item-container {
  padding: 20px 0;
}
@media (min-width: 992px) {
  .irregular-section .irregular-section__item-container {
    padding: 0;
    position: absolute;
  }
}
@media (min-width: 992px) {
  .irregular-section .irregular-section__item-container-00 {
    bottom: 150px;
    left: -220px;
  }
  .irregular-section .irregular-section__item-container-00:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    bottom: 150px;
    left: -30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  .irregular-section .irregular-section__item-container-00:after {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    bottom: 140px;
    left: -40px;
    opacity: 0.6;
    margin: 0 10px 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
}
@media (min-width: 992px) {
  .irregular-section .irregular-section__item-container-01 {
    bottom: 90px;
    left: -10px;
    /**&:before {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background: $light-color;
    bottom: -15px;
    right: 40%;
    @include border-radius(50%);
    }

    &:after {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background: $light-color;
    bottom: -25px;
    right: 40%;
    opacity: .6;
    margin: 0 10px 0 0;
    @include border-radius(50%);
    }**/
  }
}
@media (min-width: 992px) {
  .irregular-section .irregular-section__item-container-02 {
    bottom: 30px;
    left: 180px;
  }
  .irregular-section .irregular-section__item-container-02:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    bottom: -20px;
    right: -20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
}
.irregular-section .irregular-section__item {
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  font-family: "adam", Verdana, sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
  z-index: 10;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.irregular-section .irregular-section__item-00 {
  width: 140px;
  height: 140px;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0 0 0;
}
@media (min-width: 992px) {
  .irregular-section .irregular-section__item-00 {
    width: 150px;
    height: 150px;
  }
}
.irregular-section .irregular-section__item-00:hover {
  background: #fff;
  color: #000;
}
.irregular-section .irregular-section__item-01 {
  width: 140px;
  height: 140px;
  background: #e70b13;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 10px;
}
@media (min-width: 992px) {
  .irregular-section .irregular-section__item-01 {
    width: 120px;
    height: 120px;
    font-size: 8px;
  }
}
.irregular-section .irregular-section__item-01 .line {
  font-size: 14px;
  padding: 2px 0 0 0;
}
@media (min-width: 992px) {
  .irregular-section .irregular-section__item-01 .line {
    font-size: 12px;
  }
}
.irregular-section .irregular-section__item-01:hover {
  background: #fff;
  color: #e70b13;
}
.irregular-section .irregular-section__item-02 {
  width: 140px;
  height: 140px;
  background: #fff;
  color: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px 0 0 0;
}
@media (min-width: 992px) {
  .irregular-section .irregular-section__item-02 {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
}
.irregular-section .irregular-section__item-02:hover {
  background: #000;
  color: #fff;
}

.spectacular-section {
  position: relative;
}
.spectacular-section .spectacular-section__front {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2 linear;
  -moz-transition: all 0.2 linear;
  -o-transition: all 0.2 linear;
  transition: all 0.2 linear;
}
.spectacular-section .spectacular-section__content {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.5s linear 0.2s;
  -moz-transition: all 0.5s linear 0.2s;
  -o-transition: all 0.5s linear 0.2s;
  transition: all 0.5s linear 0.2s;
}
.spectacular-section .spectacular-section__launch-button {
  z-index: 7000;
  position: relative;
}
.spectacular-section .spectacular-section__launch-button .huge-circle__title {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.spectacular-section.clicked .spectacular-section__front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.spectacular-section.clicked .spectacular-section__launch-button {
  animation-name: spectacularButton;
  animation-duration: 1s;
}
.spectacular-section.clicked .spectacular-section__launch-button .huge-circle__title {
  opacity: 0;
}

.box {
  width: auto;
  height: auto;
  position: relative;
  padding: 0 0 55% 0;
  border: 2px solid #e70b13;
  font-family: "adam", Verdana, sans-serif;
  overflow: hidden;
}
.box .box__title {
  font-weight: 400;
}
.box .box__front-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e70b13;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.box .box__front-layer .box__title {
  letter-spacing: 2px;
  font-size: 20px;
}
@media (min-width: 480px) {
  .box .box__front-layer .box__title {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
@media (min-width: 650px) {
  .box .box__front-layer .box__title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .box .box__front-layer .box__title {
    font-size: 26px;
  }
}
@media (min-width: 1500px) {
  .box .box__front-layer .box__title {
    font-size: 32px;
  }
}
@media (min-width: 1700px) {
  .box .box__front-layer .box__title {
    font-size: 34px;
  }
}
.box .box__content-layer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  color: #e70b13;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.box .box__content-layer .box__title {
  letter-spacing: 2px;
  font-size: 16px;
  padding: 0 0 12px 0;
}
@media (min-width: 480px) {
  .box .box__content-layer .box__title {
    font-size: 20px;
    padding-bottom: 20px;
    letter-spacing: 3px;
  }
}
@media (min-width: 650px) {
  .box .box__content-layer .box__title {
    font-size: 24px;
    padding-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .box .box__content-layer .box__title {
    font-size: 16px;
    padding-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .box .box__content-layer .box__title {
    font-size: 18px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1300px) {
  .box .box__content-layer .box__title {
    font-size: 22px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1500px) {
  .box .box__content-layer .box__title {
    font-size: 24px;
  }
}
.box .box__content-layer .box__subtitle {
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .box .box__content-layer .box__subtitle {
    font-size: 14px;
  }
}
@media (min-width: 650px) {
  .box .box__content-layer .box__subtitle {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .box .box__content-layer .box__subtitle {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .box .box__content-layer .box__subtitle {
    font-size: 14px;
  }
}
@media (min-width: 1500px) {
  .box .box__content-layer .box__subtitle {
    font-size: 16px;
  }
}
.box .box__content-layer .box__measurements {
  font-size: 18px;
  padding: 12px 0;
}
@media (min-width: 480px) {
  .box .box__content-layer .box__measurements {
    font-size: 26px;
    padding: 20px 0;
  }
}
@media (min-width: 650px) {
  .box .box__content-layer .box__measurements {
    font-size: 30px;
    padding: 25px 0;
  }
}
@media (min-width: 768px) {
  .box .box__content-layer .box__measurements {
    font-size: 24px;
    padding: 15px 0;
  }
}
@media (min-width: 992px) {
  .box .box__content-layer .box__measurements {
    font-size: 26px;
    padding: 20px 0;
  }
}
@media (min-width: 1300px) {
  .box .box__content-layer .box__measurements {
    font-size: 28px;
    padding: 25px 0;
  }
}
@media (min-width: 1500px) {
  .box .box__content-layer .box__measurements {
    font-size: 32px;
  }
}
.box .box__content-layer .box__amount {
  font-size: 14px;
}
@media (min-width: 480px) {
  .box .box__content-layer .box__amount {
    font-size: 18px;
  }
}
@media (min-width: 650px) {
  .box .box__content-layer .box__amount {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .box .box__content-layer .box__amount {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .box .box__content-layer .box__amount {
    font-size: 18px;
  }
}
@media (min-width: 1500px) {
  .box .box__content-layer .box__amount {
    font-size: 20px;
  }
}
.box:hover .box__front-layer {
  top: -100%;
}
.box:hover .box__content-layer {
  top: 0;
}

.boxes:after {
  content: "";
  display: block;
  clear: both;
}
.boxes .boxes__item {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .boxes .boxes__item {
    float: left;
    padding: 0 15px;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.boxes .boxes__item:nth-child(2n+1) {
  padding-left: 0;
}
.boxes .boxes__item:nth-child(2n+2) {
  padding-right: 0;
}

.circle {
  width: 60px;
  height: 60px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.circle--medium {
  background: #e70b13;
}

.circle--medium-01 {
  background: rgba(255, 54, 8, 0.6);
}

.circle--medium-02 {
  background: rgba(255, 54, 8, 0.3);
}

.triple-section {
  padding: 60px 0;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 650px) {
  .triple-section {
    padding: 80px 0;
  }
}
.triple-section .triple-section__item {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  -webkit-transition: all 0.8s ease-in 0.5s;
  -moz-transition: all 0.8s ease-in 0.5s;
  -o-transition: all 0.8s ease-in 0.5s;
  transition: all 0.8s ease-in 0.5s;
}
.triple-section .triple-section__item:nth-child(1) {
  left: 70px;
}
.triple-section .triple-section__item:nth-child(3) {
  left: -70px;
}
.triple-section .triple-section__item .wrapper {
  opacity: 0;
  -webkit-transition: all 0.2s linear 1.5s;
  -moz-transition: all 0.2s linear 1.5s;
  -o-transition: all 0.2s linear 1.5s;
  transition: all 0.2s linear 1.5s;
}
.triple-section .circle {
  margin: 0 auto;
  font-size: 20px;
  position: relative;
  color: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 480px) {
  .triple-section .circle {
    width: 80px;
    height: 80px;
    font-size: 26px;
  }
}
.triple-section .circle .fa {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.triple-section .circle:before {
  content: "";
  display: block;
  border: 2px solid #000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -2px;
  left: -2px;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.triple-section .circle:hover {
  background: none;
  color: #e70b13;
}
.triple-section .circle:hover:before {
  opacity: 1;
}
.triple-section .circle--medium:before {
  border-color: #e70b13;
}
.triple-section .circle--medium:hover .fa {
  color: #e70b13;
}
.triple-section .circle--medium-01:before {
  border-color: rgba(255, 54, 8, 0.6);
}
.triple-section .circle--medium-01:hover .fa {
  color: rgba(255, 54, 8, 0.6);
}
.triple-section .circle--medium-02:before {
  border-color: rgba(255, 54, 8, 0.3);
}
.triple-section .circle--medium-02:hover .fa {
  color: rgba(255, 54, 8, 0.3);
}
.triple-section .triple-section__header {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.triple-section .triple-section__title {
  font-size: 20px;
  font-family: "adam", Verdana, sans-serif;
  letter-spacing: 2px;
}
.triple-section .decorative-section__rectangle {
  width: 70px;
  height: 12px;
}
.triple-section .decorative-section__item-00 {
  left: 50%;
  top: 0;
  margin: 0 0 0 -35px;
}
.triple-section .decorative-section__item-01 {
  opacity: 0.4;
  left: 50%;
  top: 6px;
  margin: 0 0 0 -45px;
}

.triple-section--visible .triple-section__item:nth-child(1) {
  left: 0;
}
.triple-section--visible .triple-section__item:nth-child(3) {
  left: 0;
}
.triple-section--visible .triple-section__item .wrapper {
  opacity: 1;
}

.reference .reference__title {
  text-transform: uppercase;
  font-family: "adam", Verdana, sans-serif;
  letter-spacing: 2px;
  font-size: 22px;
  font-weight: 400;
  padding: 0 0 10px 0;
}
@media (min-width: 1500px) {
  .reference .reference__title {
    font-size: 28px;
  }
}
.reference .reference__title .reference__title-extra {
  font-size: 18px;
}
@media (min-width: 1500px) {
  .reference .reference__title .reference__title-extra {
    font-size: 20px;
  }
}
.reference .reference__title .reference__title-extra:before {
  content: "/";
  font-size: 22px;
  padding: 0 10px 0 0;
}
@media (min-width: 1500px) {
  .reference .reference__title .reference__title-extra:before {
    font-size: 28px;
  }
}
.reference .reference__content {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1500px) {
  .reference .reference__content {
    font-size: 16px;
    line-height: 24px;
  }
}
.reference .reference__content p {
  padding: 5px 0;
}

.logo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.floating-label {
  display: none;
}
@media (min-width: 900px) {
  .floating-label {
    position: fixed;
    bottom: 0;
    right: 0;
    background: #e70b13;
    padding: 10px 20px;
    color: #fff;
    display: block;
    z-index: 3000;
  }
}
.floating-label__icon-container {
  display: inline-block;
  vertical-align: middle;
  font-size: 26px;
}
.floating-label__inner {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0 0 10px;
  font-size: 20px;
  letter-spacing: 1px;
}

.icon-label {
  margin: 0 auto;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 1700px) {
  .icon-label {
    font-size: 16px;
  }
}
.icon-label__wrapper {
  position: relative;
  padding: 4px 0 0 34px;
  min-height: 20px;
}
@media (min-width: 1700px) {
  .icon-label__wrapper {
    padding: 4px 0 0 43px;
    min-height: 24px;
  }
}
.icon-label__icon-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}
@media (min-width: 1700px) {
  .icon-label__icon-container {
    width: 28px;
    height: 28px;
  }
}
.icon-label__icon {
  display: block;
  width: 24px;
  height: 24px;
}
@media (min-width: 1700px) {
  .icon-label__icon {
    width: 28px;
    height: 28px;
  }
}

.horizontal-items > li {
  display: block;
  padding: 10px 0;
}
@media (min-width: 992px) {
  .horizontal-items > li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
  }
}
@media (min-width: 1300px) {
  .horizontal-items > li {
    padding: 0 30px;
  }
}

.icon-item {
  max-width: 250px;
}
@media (min-width: 1300px) {
  .icon-item {
    max-width: 320px;
  }
}
.icon-item__icon-container {
  padding: 0 0 8px 0;
}
@media (min-width: 1700px) {
  .icon-item__icon-container {
    padding-bottom: 12px;
  }
}
.icon-item__icon {
  display: block;
  width: 48px;
}
@media (min-width: 1700px) {
  .icon-item__icon {
    width: 56px;
  }
}
.icon-item__header {
  padding: 0 0 16px 0;
}

/**** MODULES-END *****/
/***** FORMS *****/
.extended-form {
  width: auto;
  margin: 0 auto;
  padding: 0;
  font-family: "gilroy", Verdana, sans-serif;
}
.extended-form fieldset {
  border: 0;
}
.extended-form .extended-form__field-container,
.extended-form .extended-form__multifields-container {
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  position: relative;
}
.extended-form .extended-form__fields-group {
  padding: 30px 0 0 0;
}
.extended-form .extended-form__fields-group:first-child {
  padding: 0;
}
.extended-form .extended-form__field-container--inline-fields {
  text-align: right;
}
.extended-form .extended-form__field-container--inline-fields .extended-form__field-wrapper:last-child {
  margin-right: 0;
}
.extended-form .extended-form__field-container--inline-fields .extended-form__field-wrapper--inline {
  width: 30%;
  margin: 0;
}
.extended-form .extended-form__field-container--inline-fields .extended-form__field-description {
  width: 30%;
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px 0 0;
  margin: -5px 0 0 0;
  font-weight: 800;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.extended-form .extended-form__section-header {
  text-align: center;
  padding: 0 0 5px 0;
}
.extended-form .extended-form__section-title {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "adam", Verdana, sans-serif;
  font-weight: 400;
}
@media (min-width: 1300px) {
  .extended-form .extended-form__section-title {
    padding: 0 0 10px 0;
  }
}
.extended-form .extended-form__section-subtitle {
  font-size: 12px;
  font-family: "adam", Verdana, sans-serif;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 1300px) {
  .extended-form .extended-form__section-subtitle {
    padding: 0 0 10px 0;
  }
}
.extended-form .extended-form__section-header-comment {
  background: none;
  border: 0;
  display: block;
  font-size: 14px;
  color: #e70b13;
  cursor: pointer;
  text-align: center;
  width: 100%;
  padding: 5px 0;
  margin: 27px 0 0 0;
}
.extended-form .col-4 {
  padding: 20px 0;
}
.extended-form .extended-form__field {
  display: block;
  letter-spacing: 1px;
  padding: 7px 10px;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-weight: 300;
  font-size: 14px;
  font-family: "gilroy", Verdana, sans-serif;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.extended-form .extended-form__field-container.error,
.extended-form .extended-form__field-wrapper.error {
  position: relative;
}
.extended-form .extended-form__field-container.error:before,
.extended-form .extended-form__field-wrapper.error:before {
  content: "!";
  display: block;
  position: absolute;
  top: 16px;
  right: 10px;
  color: #e00;
  font-family: "niveau-grotesk", Verdana, sans-serif;
  font-weight: 700;
  z-index: 5;
  font-size: 20px;
}
.extended-form .extended-form__field-container.error .extended-form__field,
.extended-form .extended-form__field-wrapper.error .extended-form__field {
  border-color: #e00;
}
.extended-form .extended-form__field-wrapper.error:before {
  top: 6px;
}
.extended-form .extended-form__field-wrapper--inline {
  width: 90px;
  margin: 0 10px;
  display: inline-block;
}
.extended-form .extended-form__field:focus {
  border-color: #000;
}
.extended-form .extended-form__field::-webkit-input-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
.extended-form .extended-form__field:-moz-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
.extended-form .extended-form__field::-moz-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
.extended-form .extended-form__field:-ms-input-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
.extended-form .button-container {
  text-align: center;
}
.extended-form .extended-form__choice {
  cursor: pointer;
  position: relative;
  display: block;
  text-align: center;
}
.extended-form .extended-form__choice input[type=checkbox],
.extended-form .extended-form__choice input[type=radio] {
  display: none;
}
.extended-form .extended-form__choice .extended-form__choice-description {
  font-weight: 800;
}
.extended-form .extended-form__choice .extended-form__choice-field-container {
  border: 1px solid #000;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.extended-form .extended-form__choice .extended-form__choice-field {
  padding: 3px;
}
.extended-form .extended-form__choice .extended-form__choice-field-filling {
  width: 18px;
  height: 18px;
  background: #e70b13;
  opacity: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 1500px) {
  .extended-form .extended-form__choice .extended-form__choice-field-filling {
    width: 20px;
    height: 20px;
  }
}
.extended-form .extended-form__choice input[type=checkbox]:checked + .extended-form__choice-field .extended-form__choice-field-filling,
.extended-form .extended-form__choice input[type=radio]:checked + .extended-form__choice-field .extended-form__choice-field-filling {
  opacity: 1;
}
.extended-form .extended-form__choice.error {
  border: 1px solid #e00;
}
.extended-form .delivery-mode.error,
.extended-form .delivery-time.error,
.extended-form .basic-data-packaging-container.error,
.extended-form #floor-type.error {
  border: 1px solid #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 900px) {
  .extended-form .delivery-mode.error,
  .extended-form .delivery-time.error,
  .extended-form .basic-data-packaging-container.error,
  .extended-form #floor-type.error {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.extended-form .delivery-mode.error:before,
.extended-form .delivery-time.error:before,
.extended-form .basic-data-packaging-container.error:before,
.extended-form #floor-type.error:before {
  content: "!";
  display: block;
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: "niveau-grotesk", Verdana, sans-serif;
  font-size: 26px;
  font-weight: 700;
}
@media (min-width: 1500px) {
  .extended-form .delivery-mode.error:before,
  .extended-form .delivery-time.error:before,
  .extended-form .basic-data-packaging-container.error:before,
  .extended-form #floor-type.error:before {
    font-size: 32px;
  }
}
.extended-form .delivery-mode.error .extended-form__choice-field-container,
.extended-form .delivery-time.error .extended-form__choice-field-container,
.extended-form .basic-data-packaging-container.error .extended-form__choice-field-container,
.extended-form #floor-type.error .extended-form__choice-field-container {
  right: 10px;
}
.extended-form #floor-type.error,
.extended-form .delivery-mode.error {
  border: 1px solid #e00;
}
.extended-form #floor-type.error:before,
.extended-form .delivery-mode.error:before {
  color: #e00;
}
.extended-form .extended-form__spectacular-choice {
  cursor: pointer;
  position: relative;
  display: block;
  text-align: center;
}
.extended-form .extended-form__spectacular-choice input[type=checkbox],
.extended-form .extended-form__spectacular-choice input[type=radio] {
  display: none;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-description {
  width: 170px;
  height: 170px;
  border: 2px solid #000;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-description-title {
  font-family: "adam", Verdana, sans-serif;
  font-size: 36px;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-description-title--small {
  font-size: 18px;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-description-caption {
  font-size: 14px;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-description-caption .wrapper > div {
  vertical-align: top;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-field-container {
  border: 1px solid #000;
  cursor: pointer;
  margin: 20px auto 0 auto;
  display: inline-block;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-field {
  padding: 3px;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-field-filling {
  width: 18px;
  height: 18px;
  background: #e70b13;
  opacity: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 1500px) {
  .extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-field-filling {
    width: 20px;
    height: 20px;
  }
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-extra-info {
  padding: 10px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 20px;
  font-family: "adam", Verdana, sans-serif;
}
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-extra-info--small {
  text-transform: none;
  font-family: "niveau-grotesk", Verdana, sans-serif;
}
.extended-form .extended-form__spectacular-choice input[type=checkbox]:checked + .extended-form__spectacular-choice-field .extended-form__spectacular-choice-field-filling,
.extended-form .extended-form__spectacular-choice input[type=radio]:checked + .extended-form__spectacular-choice-field .extended-form__spectacular-choice-field-filling {
  opacity: 1;
}
.extended-form .extended-form__spectacular-choice--light .extended-form__spectacular-choice-description {
  border-color: #fff;
}
.extended-form .extended-form__choice--radio .extended-form__choice-field-container,
.extended-form .extended-form__choice--radio .extended-form__spectacular-choice-field-container,
.extended-form .extended-form__spectacular-choice .extended-form__choice-field-container,
.extended-form .extended-form__spectacular-choice .extended-form__spectacular-choice-field-container {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.extended-form .extended-form__choice--light .extended-form__choice-field-container,
.extended-form .extended-form__choice--light .extended-form__spectacular-choice-field-container,
.extended-form .extended-form__spectacular-choice--light .extended-form__choice-field-container,
.extended-form .extended-form__spectacular-choice--light .extended-form__spectacular-choice-field-container {
  border-color: #fff;
}
.extended-form .extended-form__choice--light .extended-form__choice-field-filling,
.extended-form .extended-form__choice--light .extended-form__spectacular-choice-field-filling,
.extended-form .extended-form__spectacular-choice--light .extended-form__choice-field-filling,
.extended-form .extended-form__spectacular-choice--light .extended-form__spectacular-choice-field-filling {
  background: #fff;
}
.extended-form .extended-form__comment {
  text-align: center;
  padding: 20px 0;
}
.extended-form .not-required-fields-container {
  position: relative;
}
.extended-form .not-required-fields .not-required-fields__placeholder .button-container {
  padding: 20px 0 0 0;
}
.extended-form .not-required-fields .not-required-fields__content {
  display: none;
}
.extended-form .not-required-fields .not-required-fields__content .not-required-fields__close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media (min-width: 900px) {
  .extended-form .filefield {
    text-align: center;
  }
}
.extended-form .filefield input {
  display: none;
}
.extended-form .filefield .button {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  width: 29%;
  text-align: center;
  float: left;
}
@media (min-width: 900px) {
  .extended-form .filefield .button {
    width: auto;
    float: none;
    margin: 0 auto 20px auto;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1500px) {
  .extended-form .filefield .button {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    width: 40%;
    float: left;
  }
}
.extended-form .filefield .filefield__path {
  width: 69%;
  float: right;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 900px) {
  .extended-form .filefield .filefield__path {
    width: 100%;
    float: none;
  }
}
@media (min-width: 1500px) {
  .extended-form .filefield .filefield__path {
    width: 55.5%;
    float: right;
    overflow: hidden;
    text-align: center;
  }
}
.extended-form .filefield .filefield__description {
  padding: 10px 0 0 0;
}
.extended-form .filefield.error {
  border: 1px solid #fff;
  padding: 50px 10px 10px 10px;
}
.extended-form .filefield.error:before {
  content: "!";
  display: block;
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: "niveau-grotesk", Verdana, sans-serif;
  font-size: 26px;
  font-weight: 700;
}
@media (min-width: 1500px) {
  .extended-form .filefield.error:before {
    font-size: 32px;
  }
}
.extended-form .extended-form__multifields-container .extended-form__multifields-title {
  font-weight: 800;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 0 0 10px 0;
}
.extended-form .extended-form__multifields-container .extended-form__field-container {
  padding: 0;
  float: left;
  width: 32%;
}
.extended-form .extended-form__multifields-container .extended-form__field-container:nth-child(2) {
  padding: 0 2%;
}
@media (min-width: 1500px) {
  .extended-form .extended-form__multifields-container .extended-form__field-container {
    width: 30.33%;
  }
  .extended-form .extended-form__multifields-container .extended-form__field-container:nth-child(2) {
    padding: 0 4.5%;
  }
}
.extended-form .form-info-container {
  padding: 20px 0 0 0;
}
.extended-form .extended-form__button-container {
  background: #000;
  padding: 30px 0;
  text-align: center;
  color: #fff;
}
@media (min-width: 1300px) {
  .extended-form .extended-form__button-container {
    padding: 40px 0;
  }
}
.extended-form .extended-form__button-container a {
  color: #fff;
  text-decoration: underline;
}
.extended-form .extended-form__button-container a:hover {
  color: #e70b13;
}
.extended-form .extended-form__button-container .extended-form__button-container-row {
  padding: 10px 0;
}
.extended-form .extended-form__button-container .extended-form__button-container-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1300px) {
  .extended-form .extended-form__button-container .extended-form__button-container-inner {
    padding: 0 40px;
  }
}
.extended-form .extended-form__next-item-button-container {
  padding: 20px 0 0 0;
  text-align: center;
}
.extended-form .item-subsection {
  border-bottom: 2px solid #fff;
  margin: 0 0 10px 0;
  padding: 20px 0;
}
.extended-form .item-subsection:first-child {
  padding: 0;
}
.extended-form .item-subsection:first-child .item-subsection__close {
  display: none;
}
.extended-form .item-subsection__close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.extended-form .extended-form__spinner {
  display: none;
  padding: 20px 0 0 0;
}
.extended-form .extended-form__spinner img {
  max-width: 50px;
}
.extended-form .icon-accept-container {
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.extended-form .icon-accept-container--accepted {
  opacity: 1;
}

.simple-form {
  width: auto;
  margin: 0 auto;
  padding: 0;
}
.simple-form .simple-form__inner {
  border: 0;
}
.simple-form .simple-form__field-container {
  display: block;
  margin: 0 auto;
  padding: 20px 0;
}
.simple-form .simple-form__field-wrapper {
  overflow: hidden;
  position: relative;
  padding: 0;
}
.simple-form .simple-form__field-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #000;
  display: none;
}
.simple-form .simple-form__field-underline--active {
  left: -100%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #e70b13;
  display: none;
}
.simple-form .simple-form__field {
  display: block;
  letter-spacing: 1px;
  padding: 8px 10px;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-family: "niveau-grotesk", Verdana, sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 1500px) {
  .simple-form .simple-form__field {
    font-size: 16px;
  }
}
.simple-form .simple-form__field:focus {
  border-color: #e70b13;
}
.simple-form .simple-form__field:focus ~ .simple-form__field-underline--active {
  left: 0;
}
.simple-form .simple-form__field::-webkit-input-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
.simple-form .simple-form__field:-moz-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
.simple-form .simple-form__field::-moz-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
.simple-form .simple-form__field:-ms-input-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
.simple-form .simple-form__textarea {
  border: 1px solid #000;
  height: 130px;
  background: none;
}
.simple-form .simple-form__textarea:focus {
  border-color: #e70b13;
}
.simple-form .button-container {
  padding: 30px 0 20px 0;
  text-align: center;
}
.simple-form .form-info-container {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}
.simple-form .simple-form__spinner {
  display: none;
  padding: 20px 0 0 0;
}
.simple-form .simple-form__spinner img {
  max-width: 50px;
  display: block;
  margin: 0 auto;
}

.textarea-placeholder {
  position: relative;
}
.textarea-placeholder textarea {
  position: relative;
  z-index: 200;
}
.textarea-placeholder .textarea-placeholder__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 14px;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 1500px) {
  .textarea-placeholder .textarea-placeholder__inner {
    font-size: 16px;
  }
}
.textarea-placeholder .textarea-placeholder__inner.filled {
  opacity: 0;
}
.textarea-placeholder .textarea-placeholder__subtitle {
  color: #e70b13;
  font-size: 12px;
  padding: 10px 0 0 0;
}
@media (min-width: 1500px) {
  .textarea-placeholder .textarea-placeholder__subtitle {
    font-size: 14px;
  }
}

.form {
  width: auto;
  margin: 0 auto;
  padding: 0;
}
.form fieldset {
  border: 0;
}
.form .form__field-container {
  display: block;
  margin: 0 auto;
  padding: 10px 0;
}
.form .form__field {
  display: block;
  letter-spacing: 1px;
  padding: 10px 15px;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  border: 1px solid #222;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-family: "niveau-grotesk", Verdana, sans-serif;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.form .form__field:focus {
  border-color: #000;
}
.form .form__field::-webkit-input-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
}
.form .form__field:-moz-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
}
.form .form__field::-moz-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
}
.form .form__field:-ms-input-placeholder {
  color: #000;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
}
.form .dropdown__title {
  font-weight: 400;
}
.form .dropdown {
  max-width: 100%;
}
.form .button-container {
  padding: 30px 0 0 0;
  text-align: center;
}

.single-checkbox {
  max-width: 500px;
  margin: 0 auto;
}
.single-checkbox__inner {
  padding: 0 0 0 32px;
  position: relative;
  text-align: left;
}
.single-checkbox__description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 0;
}
.single-checkbox__description p {
  padding: 3px 0;
}
.single-checkbox__description p:first-child {
  padding-top: 0;
}
.single-checkbox__description p:last-child {
  padding-bottom: 0;
}
.single-checkbox__field-container {
  position: absolute;
  top: 2px;
  left: 0;
}

.choice-field-02 {
  display: block;
}
.choice-field-02__wrapper {
  padding: 2px;
  border: 1px solid #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.choice-field-02__inner {
  width: 12px;
  height: 12px;
  background: #e70b13;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.choice-field-02 input {
  width: 0;
  height: 0;
  display: none;
}
.choice-field-02 input:checked ~ .choice-field-02__wrapper .choice-field-02__inner {
  opacity: 1;
}
.choice-field-02.error .choice-field-02__wrapper {
  border-color: #e70b13;
}

.choice-field-02--light .choice-field-02__wrapper {
  border-color: #fff;
}
.choice-field-02--light .choice-field-02__inner {
  background: #fff;
}

.choice-field {
  cursor: pointer;
}
.choice-field input {
  display: none;
}
.choice-field .choice-field__inner {
  margin: 10px 15px;
  position: relative;
  padding: 0 0 0 30px;
}
.choice-field .choice-field__inner .choice-field__field-container {
  border: 1px solid #000;
  position: absolute;
  top: 0;
  left: 0;
}
.choice-field .choice-field__inner .choice-field__field {
  width: 15px;
  height: 15px;
}
.choice-field input[type=checkbox]:checked + .choice-field__inner .choice-field__field,
.choice-field input[type=radio]:checked + .choice-field__inner .choice-field__field {
  background: #222;
}

.choice-field--radio .choice-field__field-container {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.choice-field--radio .choice-field__field {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/***** HEADER *****/
.site-header {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.site-header .site-header__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header .site-header__inner {
  padding: 100px 0 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .site-header .site-header__inner {
    padding: 0 0 50px 0;
  }
}
.site-header .site-header__inner .extended-site-title {
  position: relative;
  z-index: 300;
}
@media (min-width: 550px) {
  .site-header .site-header__inner .extended-site-title {
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px 0 0;
  }
}
@media (min-width: 550px) {
  .site-header .site-header__inner .extended-site-title {
    margin-right: 40px;
  }
}
@media (min-width: 550px) {
  .site-header .site-header__inner .huge-circle {
    display: inline-block;
    vertical-align: middle;
  }
}
.site-header .site-header__bottom {
  text-align: center;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .site-header .site-header__bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}
@media (min-width: 1300px) {
  .site-header .site-header__bottom {
    padding: 30px 0;
  }
}
@media (min-width: 1700px) {
  .site-header .site-header__bottom {
    padding: 40px 0;
  }
}
.site-header .site-header__bottom .site-header__bottom-content {
  padding: 20px 0;
  letter-spacing: 1px;
  font-size: 16px;
}

.spectacular-site-header {
  display: block;
}

.extended-site-title {
  margin: 0 auto;
  width: 250px;
  position: relative;
  padding: 45px 0;
}
@media (min-width: 768px) {
  .extended-site-title {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .extended-site-title {
    width: 420px;
    padding: 58px 0;
  }
}
@media (min-width: 1700px) {
  .extended-site-title {
    width: 461px;
  }
}

.site-title {
  display: block;
  width: 250px;
  height: 70px;
  text-indent: -10000px;
  overflow: hidden;
  background: url("../img/logo-magic-movers.svg") no-repeat top left;
  background-size: auto 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .site-title {
    width: 300px;
    height: 85px;
  }
}
@media (min-width: 992px) {
  .site-title {
    width: 420px;
    height: 118px;
  }
}
@media (min-width: 1700px) {
  .site-title {
    width: 461px;
    height: 130px;
  }
}

.site-title--light {
  background-image: url("../img/logo-magic-movers-light.svg");
}

.site-title--small {
  width: 150px;
  height: 42px;
}
@media (min-width: 550px) {
  .site-title--small {
    width: 181px;
    height: 51px;
  }
}

.site-title-container {
  display: inline-block;
  border-bottom: 2px solid #fff;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
}

.site-subtitle {
  text-align: right;
  font-size: 12px;
  line-height: 17px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 10px 0 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .site-subtitle {
    font-size: 16px;
    line-height: 21px;
    padding: 14px 0 0 0;
  }
}
.site-subtitle .line {
  display: inline;
}
@media (min-width: 768px) {
  .site-subtitle .line {
    display: block;
  }
}

/***** MENU *****/
.horizontal-menu {
  font-size: 14px;
  font-family: "adam", Verdana, sans-serif;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .horizontal-menu {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  .horizontal-menu {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .horizontal-menu {
    font-size: 16px;
  }
}
.horizontal-menu > ul > li {
  display: block;
  text-align: center;
  padding: 8px 0;
}
@media (min-width: 900px) {
  .horizontal-menu > ul > li {
    display: inline-block;
    padding: 0 15px;
  }
}
@media (min-width: 1300px) {
  .horizontal-menu > ul > li {
    padding: 0 25px;
  }
}
.horizontal-menu > ul > li:first-child {
  padding-left: 0;
}
.horizontal-menu > ul > li:last-child {
  padding-right: 0;
}
.horizontal-menu > ul > li a {
  display: inline-block;
  position: relative;
}
.horizontal-menu > ul > li a > div {
  position: relative;
  z-index: 10;
}
.horizontal-menu > ul > li a:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: #e70b13;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 150%;
  top: 50%;
  margin: -15px 0 0 -10px;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.horizontal-menu > ul > li a:hover:before {
  opacity: 1;
  left: 0;
}

.main-menu {
  font-family: "gilroy", Verdana, sans-serif;
}
@media (max-width: 991px) {
  .main-menu > ul > li {
    padding: 0;
    text-transform: uppercase;
    margin: 5px 0;
    font-size: 20px;
  }
}
@media (max-width: 991px) and (min-width: 550px) {
  .main-menu > ul > li {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .main-menu > ul > li > a {
    padding: 6px 0;
    border: 1px solid #e70b13;
    color: #fff;
    letter-spacing: 3px;
    display: block;
    background: #e70b13;
  }
  .main-menu > ul > li > a:hover {
    background: none;
    color: #e70b13;
  }
  .main-menu > ul > li > ul {
    padding: 0;
  }
  .main-menu > ul > li > ul > li {
    text-transform: none;
    font-size: 20px;
    margin: 5px 0;
  }
  .main-menu > ul > li > ul > li:nth-child(1) a {
    background: #ef5843;
  }
  .main-menu > ul > li > ul > li:nth-child(2) a {
    background: #f27153;
  }
  .main-menu > ul > li > ul > li:nth-child(3) a {
    background: #f79779;
  }
  .main-menu > ul > li > ul > li a {
    letter-spacing: 1px;
    color: #fff;
    padding: 5px 0;
    display: block;
  }
  .main-menu > ul > li > ul > li a:hover {
    background: #e70b13;
  }
}
@media (min-width: 992px) {
  .main-menu {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (min-width: 1100px) {
  .main-menu {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .main-menu > ul > li {
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    margin: 0 10px;
  }
}
@media (min-width: 992px) and (min-width: 1100px) {
  .main-menu > ul > li {
    margin: 0 20px;
  }
}
@media (min-width: 992px) and (min-width: 1700px) {
  .main-menu > ul > li {
    margin: 0 40px;
  }
}
@media (min-width: 992px) {
  .main-menu > ul > li:hover > ul {
    height: 400%;
  }
  .main-menu > ul > li:hover > a {
    color: #fff;
  }
  .main-menu > ul > li:hover > a:before {
    top: 0;
  }
  .main-menu > ul > li > a {
    padding: 5px 20px;
    border: 1px solid #e70b13;
    display: block;
    overflow: hidden;
    position: relative;
    color: #e70b13;
    letter-spacing: 3px;
  }
}
@media (min-width: 992px) and (min-width: 1300px) {
  .main-menu > ul > li > a {
    padding: 5px 32px;
  }
}
@media (min-width: 992px) {
  .main-menu > ul > li > a:before {
    content: "";
    display: block;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e70b13;
    z-index: -1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
  }
  .main-menu > ul > li > a > div {
    position: relative;
    z-index: 5;
  }
  .main-menu > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.2s linear 0.1s;
    -moz-transition: all 0.2s linear 0.1s;
    -o-transition: all 0.2s linear 0.1s;
    transition: all 0.2s linear 0.1s;
  }
  .main-menu > ul > li > ul > li {
    font-size: 14px;
    text-transform: none;
    font-weight: 300;
    background: #fcc9b5;
  }
  .main-menu > ul > li > ul > li:nth-child(1) {
    background: #ef5843;
  }
  .main-menu > ul > li > ul > li:nth-child(2) {
    background: #f27153;
  }
  .main-menu > ul > li > ul > li:nth-child(3) {
    background: #f79779;
  }
  .main-menu > ul > li > ul > li a {
    padding: 6px 0;
    display: block;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .main-menu > ul > li > ul > li a:hover {
    background: #e70b13;
  }
}

.slide-menu {
  position: fixed;
  z-index: 4000;
  height: 100%;
  display: block;
  text-align: center;
  width: 100%;
  z-index: 8000;
  display: none;
  background: #fff;
}
@media (max-width: 991px) {
  .slide-menu {
    overflow-y: auto;
  }
}
@media (min-width: 992px) {
  .slide-menu {
    position: static;
    background: none;
    display: block;
  }
}
.slide-menu .slide-menu__inner {
  padding: 80px 0;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .slide-menu .slide-menu__inner {
    padding: 30px 0 0 0;
    opacity: 1 !important;
    max-width: 100%;
  }
}
@media (min-width: 1500px) {
  .slide-menu .slide-menu__inner {
    padding: 50px 0 0 0;
  }
}

/** fade **/
.slide-menu--fade {
  display: none;
}

.slide-menu--fade.slide-menu--top {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}

.slide-menu--fade.slide-menu--right {
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
}

.slide-menu--fade.slide-menu--left {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}

/** slide **/
.slide-menu--slide {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slide-menu--slide.slide-menu--top {
  top: -100%;
  left: 0;
  right: auto;
  bottom: auto;
}

.slide-menu--slide.slide-menu--top.slide-menu--open {
  top: 0;
}

.slide-menu--slide.slide-menu--right {
  top: 0;
  left: auto;
  right: -20%;
  bottom: auto;
}

.slide-menu--slide.slide-menu--right.slide-menu--open {
  right: 0;
}

.slide-menu--slide.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.slide-menu--slide.slide-menu--bottom.slide-menu--open {
  bottom: 0;
}

.slide-menu--slide.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.slide-menu--slide.slide-menu--left.slide-menu--open {
  left: 0;
}

/** slide-fade **/
.slide-menu--slide-fade {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0.4s;
  -moz-transition: all 0.3s linear 0.4s;
  -o-transition: all 0.3s linear 0.4s;
  transition: all 0.3s linear 0.4s;
}
.slide-menu--slide-fade .slide-menu__inner {
  opacity: 0;
  -webkit-transition: opacity 0.3s linear 0;
  -moz-transition: opacity 0.3s linear 0;
  -o-transition: opacity 0.3s linear 0;
  transition: opacity 0.3s linear 0;
}

.slide-menu--slide-fade.slide-menu--open {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.slide-menu--slide-fade.slide-menu--open .slide-menu__inner {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear 0.4s;
  -moz-transition: opacity 0.3s linear 0.4s;
  -o-transition: opacity 0.3s linear 0.4s;
  transition: opacity 0.3s linear 0.4s;
}

.slide-menu--slide-fade.slide-menu--top {
  top: -100%;
  left: 0;
  right: auto;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
  top: 0;
}

.slide-menu--slide-fade.slide-menu--right {
  top: 0;
  left: auto;
  right: -20%;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
  right: 0;
}

.slide-menu--slide-fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.slide-menu--slide-fade.slide-menu--bottom.slide-menu--open {
  bottom: 0;
}

.slide-menu--slide-fade.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--left.slide-menu--open {
  left: 0;
}

/** menu toggler **/
#main-menu-toggler {
  position: fixed;
  z-index: 9500;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (min-width: 992px) {
  #main-menu-toggler {
    display: none;
  }
}

.menu li {
  display: block;
  padding: 5px 0;
}

/***** FOOTER *****/
.site-footer {
  background: #000;
  padding: 40px 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
}
@media (min-width: 900px) {
  .site-footer {
    padding-bottom: 20px;
  }
}
@media (min-width: 1300px) {
  .site-footer {
    padding-top: 60px;
  }
}
.site-footer a {
  color: #fff;
}
.site-footer .site-footer__inner {
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-footer .site-footer__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .site-footer .site-footer__inner {
    padding: 0 60px;
  }
}
.site-footer .col-8 {
  float: none;
  width: auto;
}
@media (min-width: 900px) {
  .site-footer .col-8 {
    float: left;
    width: 66.66%;
  }
}
.site-footer .col-4 {
  float: none;
  width: auto;
  padding: 40px 0 0 0;
  text-align: center;
  font-family: "gilroy", Verdana, sans-serif;
  font-weight: 800;
}
@media (min-width: 900px) {
  .site-footer .col-4 {
    float: left;
    width: 33.33%;
    padding: 0 0 20px 0;
    text-align: right;
  }
}
@media (min-width: 900px) {
  .site-footer__info-container-inner {
    float: left;
  }
}
@media (min-width: 900px) {
  .site-footer__created-by-column {
    float: left;
  }
}
.site-footer__links-column {
  text-align: center;
  padding: 40px 0 0 0;
}
@media (min-width: 900px) {
  .site-footer__links-column {
    float: right;
    padding: 8px 0 0 64px;
  }
}
@media (min-width: 1700px) {
  .site-footer__links-column {
    padding-left: 80px;
  }
}
.site-footer__links-column a {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__links-column a:hover, .site-footer__links-column a:focus {
  color: #fff;
}

/***** SECTIONS *****/
.site-section,
.site-section__layer {
  padding: 40px 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 500px) {
  .site-section,
  .site-section__layer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .site-section,
  .site-section__layer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1500px) {
  .site-section,
  .site-section__layer {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.site-section .site-section__inner,
.site-section__layer .site-section__inner {
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-section .site-section__inner,
  .site-section__layer .site-section__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .site-section .site-section__inner,
  .site-section__layer .site-section__inner {
    padding: 0 80px;
  }
}

.site-section__layer {
  background: rgba(0, 0, 0, 0.5);
}

.site-section--medium {
  background: #e70b13;
}

.site-section--dark {
  color: #fff;
}

.site-section--nearly-light {
  background: #fafafa;
}

.site-section--complicated {
  padding: 0;
}

.horizontal-subsection {
  padding: 40px 20px;
  border: 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .horizontal-subsection {
    padding: 40px;
  }
}
.horizontal-subsection .horizontal-subsection__inner {
  max-width: 1380px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.horizontal-subsection .horizontal-subsection__inner-content:after {
  content: "";
  display: block;
  clear: both;
}
.horizontal-subsection .horizontal-subsection__header {
  padding: 10px 0 30px 0;
}
@media (min-width: 1300px) {
  .horizontal-subsection .horizontal-subsection__header {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1500px) {
  .horizontal-subsection .horizontal-subsection__header {
    width: 22%;
  }
}
@media (min-width: 1300px) {
  .horizontal-subsection .horizontal-subsection__content {
    width: 80%;
    float: left;
  }
}
@media (min-width: 1500px) {
  .horizontal-subsection .horizontal-subsection__content {
    width: 78%;
  }
}
.horizontal-subsection .horizontal-subsection__content:after {
  content: "";
  display: block;
  clear: both;
}
.horizontal-subsection .horizontal-subsection__title {
  font-family: "adam", Verdana, sans-serif;
  font-weight: 400;
  text-align: center;
}
.horizontal-subsection .horizontal-subsection__title .horizontal-subsection__title-number {
  font-size: 82px;
  line-height: 82px;
}
@media (min-width: 1300px) {
  .horizontal-subsection .horizontal-subsection__title .horizontal-subsection__title-number {
    font-size: 102px;
    line-height: 102px;
  }
}
@media (min-width: 1500px) {
  .horizontal-subsection .horizontal-subsection__title .horizontal-subsection__title-number {
    font-size: 122px;
    line-height: 122px;
  }
}
@media (min-width: 1700px) {
  .horizontal-subsection .horizontal-subsection__title .horizontal-subsection__title-number {
    font-size: 150px;
    line-height: 150px;
  }
}
.horizontal-subsection .horizontal-subsection__title .horizontal-subsection__title-inner {
  font-size: 22px;
}
@media (min-width: 1300px) {
  .horizontal-subsection .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 26px;
  }
}
@media (min-width: 1500px) {
  .horizontal-subsection .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 28px;
  }
}
@media (min-width: 1700px) {
  .horizontal-subsection .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 34px;
  }
}
.horizontal-subsection .container .col-4 {
  float: none;
  width: auto;
  display: block;
}
@media (min-width: 650px) {
  .horizontal-subsection .container .col-4 {
    float: left;
    width: 50%;
  }
  .horizontal-subsection .container .col-4:first-child {
    float: none;
    clear: both;
    width: auto;
  }
  .horizontal-subsection .container .col-4:nth-child(2) {
    padding-right: 10px;
  }
  .horizontal-subsection .container .col-4:nth-child(3) {
    padding-left: 10px;
  }
}
@media (min-width: 900px) {
  .horizontal-subsection .container .col-4 {
    float: left;
    width: 31.33%;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
  .horizontal-subsection .container .col-4:first-child {
    float: left;
    clear: none;
    width: 31.33%;
    padding-right: 2%;
  }
  .horizontal-subsection .container .col-4:nth-child(2) {
    padding-right: 1%;
    padding-left: 1%;
  }
  .horizontal-subsection .container .col-4:nth-child(3) {
    padding-left: 2%;
  }
}
@media (min-width: 1300px) {
  .horizontal-subsection .container .col-4 {
    width: 30.33%;
  }
  .horizontal-subsection .container .col-4:first-child {
    width: 30.33%;
    padding-right: 3%;
  }
  .horizontal-subsection .container .col-4:nth-child(2) {
    padding-right: 1.5%;
    padding-left: 1.5%;
  }
  .horizontal-subsection .container .col-4:nth-child(3) {
    padding-left: 3%;
  }
}
.horizontal-subsection .container .col-4.column--full-width {
  padding-right: 0 !important;
}
@media (min-width: 900px) {
  .horizontal-subsection .container .col-4.column--full-width .column__inner {
    padding-right: 2%;
  }
}
@media (min-width: 1300px) {
  .horizontal-subsection .container .col-4.column--full-width .column__inner {
    padding-right: 3%;
  }
}
.horizontal-subsection .delivery-modes:after {
  content: "";
  display: block;
  clear: both;
}
.horizontal-subsection .delivery-modes .col-4 {
  float: none;
  width: auto;
  display: block;
}
@media (min-width: 650px) {
  .horizontal-subsection .delivery-modes .col-4 {
    float: left;
    width: 33.33%;
  }
}

.horizontal-subsection--type-2-1 .container .col-8 {
  float: none;
  width: auto;
  clear: none;
}
@media (min-width: 900px) {
  .horizontal-subsection--type-2-1 .container .col-8 {
    float: left;
    width: 64.66%;
    padding-right: 2%;
  }
}
@media (min-width: 1300px) {
  .horizontal-subsection--type-2-1 .container .col-8 {
    width: 63.66%;
    padding-right: 3%;
  }
}
.horizontal-subsection--type-2-1 .container .col-6 {
  float: none;
  width: auto;
  padding: 20px 0;
}
@media (min-width: 650px) {
  .horizontal-subsection--type-2-1 .container .col-6 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 650px) {
  .horizontal-subsection--type-2-1 .container .col-4 {
    float: left;
    width: 50%;
  }
  .horizontal-subsection--type-2-1 .container .col-4:first-child {
    padding-right: 10px;
    width: 50%;
    float: left;
    clear: none;
  }
  .horizontal-subsection--type-2-1 .container .col-4:nth-child(2) {
    padding-left: 10px;
  }
  .horizontal-subsection--type-2-1 .container .col-4:last-child {
    float: none;
    clear: both;
    width: 50%;
    margin: 0 auto;
  }
}
@media (min-width: 900px) {
  .horizontal-subsection--type-2-1 .container .col-4 {
    float: left;
    width: 31.33%;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
  .horizontal-subsection--type-2-1 .container .col-4:first-child {
    padding-right: 2%;
    width: 31.33%;
  }
  .horizontal-subsection--type-2-1 .container .col-4:nth-child(2) {
    padding-right: 1%;
    padding-left: 1%;
  }
  .horizontal-subsection--type-2-1 .container .col-4:last-child {
    padding-left: 2%;
    float: left;
    clear: none;
    width: 31.33%;
  }
}
@media (min-width: 1300px) {
  .horizontal-subsection--type-2-1 .container .col-4 {
    width: 30.33%;
  }
  .horizontal-subsection--type-2-1 .container .col-4:first-child {
    width: 30.33%;
    padding-right: 3%;
  }
  .horizontal-subsection--type-2-1 .container .col-4:nth-child(2) {
    padding-right: 1.5%;
    padding-left: 1.5%;
  }
  .horizontal-subsection--type-2-1 .container .col-4:last-child {
    padding-left: 3%;
    width: 30.33%;
  }
}
.horizontal-subsection--type-2-1 .container .col-4.column--full-width {
  padding-right: 0 !important;
}
@media (min-width: 900px) {
  .horizontal-subsection--type-2-1 .container .col-4.column--full-width .column__inner {
    padding-right: 2%;
  }
}
@media (min-width: 1300px) {
  .horizontal-subsection--type-2-1 .container .col-4.column--full-width .column__inner {
    padding-right: 3%;
  }
}

.horizontal-subsection--medium {
  background: #e70b13;
  color: #fff;
}

.horizontal-subsection--elem-delivery-mode .horizontal-subsection__title .horizontal-subsection__title-inner {
  font-size: 22px;
}
@media (min-width: 1300px) {
  .horizontal-subsection--elem-delivery-mode .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 26px;
  }
}
@media (min-width: 1500px) {
  .horizontal-subsection--elem-delivery-mode .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 28px;
  }
}
@media (min-width: 1700px) {
  .horizontal-subsection--elem-delivery-mode .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 34px;
  }
}
.horizontal-subsection--elem-delivery-mode .horizontal-subsection__title .line:nth-child(1) {
  font-size: 15px;
}
@media (min-width: 1300px) {
  .horizontal-subsection--elem-delivery-mode .horizontal-subsection__title .line:nth-child(1) {
    font-size: 17px;
  }
}
@media (min-width: 1500px) {
  .horizontal-subsection--elem-delivery-mode .horizontal-subsection__title .line:nth-child(1) {
    font-size: 18px;
  }
}
@media (min-width: 1700px) {
  .horizontal-subsection--elem-delivery-mode .horizontal-subsection__title .line:nth-child(1) {
    font-size: 22px;
  }
}

.horizontal-subsection--elem-time-frame .horizontal-subsection__title .horizontal-subsection__title-inner {
  font-size: 22px;
}
@media (min-width: 1300px) {
  .horizontal-subsection--elem-time-frame .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 26px;
  }
}
@media (min-width: 1500px) {
  .horizontal-subsection--elem-time-frame .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 28px;
  }
}
@media (min-width: 1700px) {
  .horizontal-subsection--elem-time-frame .horizontal-subsection__title .horizontal-subsection__title-inner {
    font-size: 34px;
  }
}
.horizontal-subsection--elem-time-frame .horizontal-subsection__title .line:nth-child(2) {
  font-size: 15px;
}
@media (min-width: 1300px) {
  .horizontal-subsection--elem-time-frame .horizontal-subsection__title .line:nth-child(2) {
    font-size: 18px;
  }
}
@media (min-width: 1500px) {
  .horizontal-subsection--elem-time-frame .horizontal-subsection__title .line:nth-child(2) {
    font-size: 19px;
  }
}
@media (min-width: 1700px) {
  .horizontal-subsection--elem-time-frame .horizontal-subsection__title .line:nth-child(2) {
    font-size: 23px;
  }
}

.stripe-section {
  position: relative;
  padding: 50px 0;
}
@media (min-width: 1100px) {
  .stripe-section {
    padding: 70px 0;
  }
}
.stripe-section:before, .stripe-section:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #e70b13;
  position: absolute;
}
@media (min-width: 1300px) {
  .stripe-section:before, .stripe-section:after {
    height: 4px;
  }
}
.stripe-section:before {
  top: 0;
  right: 20%;
}
.stripe-section:after {
  bottom: 0;
  left: 20%;
}

.section-01 .spectacular-section__front {
  text-align: center;
}
@media (min-width: 1300px) {
  .section-01 .spectacular-section__front {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1500px) {
  .section-01 .spectacular-section__front {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1700px) {
  .section-01 .spectacular-section__front {
    padding-top: 170px;
    padding-bottom: 170px;
  }
}
.section-01 .decorative-section {
  display: block;
  text-align: center;
}
@media (min-width: 550px) {
  .section-01 .decorative-section {
    position: relative;
    max-width: 220px;
    margin: 0 auto;
    padding: 0 120px 0 50px;
  }
}
@media (min-width: 768px) {
  .section-01 .decorative-section {
    max-width: 280px;
    padding-right: 150px;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .section-01 .decorative-section {
    max-width: 380px;
  }
}
@media (min-width: 1700px) {
  .section-01 .decorative-section {
    max-width: 380px;
    padding-left: 120px;
    padding-right: 200px;
  }
}
.section-01 .decorative-section .icon-triple-arrow {
  margin: 0 auto;
}
@media (min-width: 550px) {
  .section-01 .decorative-section .icon-triple-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin: -18px 0 0 0;
  }
}
@media (min-width: 1100px) {
  .section-01 .decorative-section .icon-triple-arrow {
    margin-top: -22px;
  }
}
@media (min-width: 1700px) {
  .section-01 .decorative-section .icon-triple-arrow {
    margin-top: -26px;
  }
}
.section-01 .decorative-section .decorative-section__inner {
  text-transform: uppercase;
  font-family: "adam", Verdana, sans-serif;
  font-size: 20px;
  text-align: center;
  padding: 20px 0 0 0;
}
@media (min-width: 550px) {
  .section-01 .decorative-section .decorative-section__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .section-01 .decorative-section .decorative-section__inner {
    font-size: 22px;
    width: 150px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .section-01 .decorative-section .decorative-section__inner {
    font-size: 24px;
    width: 150px;
    line-height: 32px;
  }
}
@media (min-width: 1700px) {
  .section-01 .decorative-section .decorative-section__inner {
    font-size: 30px;
    width: 200px;
    line-height: 38px;
  }
}
.section-01 .decorative-section .huge-circle {
  margin: 30px auto;
}
@media (min-width: 550px) {
  .section-01 .decorative-section .huge-circle {
    margin: 0 auto;
  }
}
.section-01 .decorative-section .decorative-section__rectangle {
  width: 45px;
  height: 10px;
  -webkit-transform: rotate(-35deg);
  -moz-transform: rotate(-35deg);
  transform: rotate(-35deg);
}
@media (min-width: 1100px) {
  .section-01 .decorative-section .decorative-section__rectangle {
    width: 60px;
    height: 15px;
  }
}
.section-01 .decorative-section .decorative-section__circle {
  width: 20px;
  height: 20px;
}
@media (min-width: 1100px) {
  .section-01 .decorative-section .decorative-section__circle {
    width: 30px;
    height: 30px;
  }
}
.section-01 .decorative-section .decorative-section__item {
  display: none;
}
@media (min-width: 768px) {
  .section-01 .decorative-section .decorative-section__item {
    display: block;
  }
}
.section-01 .decorative-section .decorative-section__item-00 {
  top: 30px;
  left: 10px;
}
@media (min-width: 1100px) {
  .section-01 .decorative-section .decorative-section__item-00 {
    left: -20px;
    top: 20px;
  }
}
.section-01 .decorative-section .decorative-section__item-01 {
  top: 50px;
  right: -30px;
}
.section-01 .decorative-section .decorative-section__item-02 {
  opacity: 0.6;
  bottom: 10px;
  right: 48px;
}
.section-01 .decorative-section .decorative-section__item-03 {
  bottom: 23px;
  right: 40px;
}
.section-01 .spectacular-section__content {
  background: #fff;
  padding-bottom: 0 !important;
}
@media (min-width: 1300px) {
  .section-01 .spectacular-section__content {
    padding-top: 80px;
  }
}
.section-01 .spectacular-section__content .brand-logo-header {
  padding: 0 20px;
  text-align: center;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1300px) {
  .section-01 .spectacular-section__content .brand-logo-header {
    text-align: left;
    padding: 0 60px 40px 60px;
  }
}
@media (min-width: 1500px) {
  .section-01 .spectacular-section__content .brand-logo-header {
    padding-bottom: 60px;
  }
}
.section-01 .spectacular-section__content .brand-logo-header .order-form-close {
  position: absolute;
  top: 0;
  right: 20px;
  cursor: pointer;
}

.section-02 {
  background-image: url("../img/bg-03.jpg");
  background-position: center;
}
@media (min-width: 1300px) {
  .section-02 {
    background-position: top center;
  }
}
@media (min-width: 768px) {
  .section-02 .section-header {
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .section-02 .section-header {
    padding-bottom: 80px;
  }
}
.section-02 .site-section__layer {
  -moz-background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 70%);
  -webkit-background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 70%);
  -o-background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 70%);
  -ms-background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 70%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 70%);
}
@media (min-width: 992px) {
  .section-02 .irregular-section {
    padding: 0 0 250px 10%;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .section-02 .irregular-section .irregular-section__item-container {
    float: left;
    width: 33.33%;
  }
}

@media (min-width: 1100px) {
  .section-03 .site-section__content {
    max-width: 80%;
  }
}

.section-04 {
  background-image: url("../img/bg-01.jpg");
  background-position: center;
}
@media (min-width: 1300px) {
  .section-04 .site-section__layer {
    background: none;
  }
}
@media (min-width: 1300px) {
  .section-04 .section-header {
    padding-bottom: 0;
  }
}
@media (min-width: 1300px) {
  .section-04 .decorative-section .decorative-section__inner {
    margin: 0 40px 0 auto;
  }
}

.section-06 .site-section__inner {
  max-width: 1110px;
}
.section-06 .col-6 {
  width: auto;
  float: none;
}
@media (min-width: 768px) {
  .section-06 .col-6 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .section-06 .col-6:nth-child(1) {
    padding: 0 20px 0 0;
  }
}
@media (min-width: 1300px) {
  .section-06 .col-6:nth-child(1) {
    padding-right: 80px;
  }
}
@media (min-width: 768px) {
  .section-06 .col-6:nth-child(1) .decorative-section__inner {
    padding: 50px 0 0 0;
  }
}
@media (min-width: 1300px) {
  .section-06 .col-6:nth-child(1) .decorative-section__inner {
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .section-06 .col-6:nth-child(2) {
    padding: 70px 0 0 20px;
  }
}
@media (min-width: 1300px) {
  .section-06 .col-6:nth-child(2) {
    padding-left: 80px;
  }
}
@media (min-width: 768px) {
  .section-06 .col-6:nth-child(2) .decorative-section__inner {
    padding: 100px 0 0 0;
  }
}
@media (min-width: 1300px) {
  .section-06 .col-6:nth-child(2) .decorative-section__inner {
    padding-right: 40px;
  }
}
.section-06 .reference {
  padding: 0 0 40px 0;
}
.section-06 .section-header {
  padding: 50px 0 120px 0;
}
@media (min-width: 768px) {
  .section-06 .section-header {
    padding-top: 70px;
    padding-bottom: 20px;
  }
}
.section-06 .decorative-section__rectangle {
  width: 80px;
  height: 20px;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__rectangle {
    width: 120px;
    height: 30px;
  }
}
.section-06 .decorative-section__rectangle.decorative-section__item--long {
  width: 100%;
  height: 7px;
}
.section-06 .decorative-section__rectangle.decorative-section__item--large {
  width: 120px;
  height: 30px;
}
.section-06 .decorative-section__circle {
  width: 30px;
  height: 30px;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__circle {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1300px) {
  .section-06 .decorative-section__circle {
    width: 80px;
    height: 80px;
  }
}
.section-06 .decorative-section__circle.decorative-section__item--small {
  width: 50px;
  height: 50px;
}
.section-06 .decorative-section__circle.decorative-section__item--large {
  width: 50px;
  height: 50px;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__circle.decorative-section__item--large {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 768px) {
  .section-06 .decorative-section__circle.decorative-section__item--large {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1100px) {
  .section-06 .decorative-section__circle.decorative-section__item--large {
    width: 120px;
    height: 120px;
  }
}
.section-06 .decorative-section__item-00 {
  left: 20%;
  bottom: -15px;
  opacity: 0.5;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__item-00 {
    bottom: -25px;
  }
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-00 {
    top: -80px;
    left: 15%;
  }
}
@media (min-width: 1100px) {
  .section-06 .decorative-section__item-00 {
    left: 25%;
  }
}
@media (min-width: 1300px) {
  .section-06 .decorative-section__item-00 {
    left: 20%;
  }
}
.section-06 .decorative-section__item-01 {
  left: 2%;
  bottom: -28px;
  opacity: 0.3;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__item-01 {
    bottom: -44px;
  }
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-01 {
    top: -60px;
    left: 3%;
  }
}
@media (min-width: 1100px) {
  .section-06 .decorative-section__item-01 {
    left: 13%;
  }
}
@media (min-width: 1300px) {
  .section-06 .decorative-section__item-01 {
    left: 8%;
  }
}
.section-06 .decorative-section__item-02 {
  left: 10%;
  bottom: -28px;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__item-02 {
    bottom: -44px;
  }
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-02 {
    top: -60px;
    left: 8%;
  }
}
@media (min-width: 1100px) {
  .section-06 .decorative-section__item-02 {
    left: 18%;
  }
}
@media (min-width: 1300px) {
  .section-06 .decorative-section__item-02 {
    left: 13%;
  }
}
.section-06 .decorative-section__item-03 {
  top: -40px;
  right: 25%;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__item-03 {
    top: -60px;
  }
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-03 {
    top: -60px;
    right: auto;
    left: 60%;
  }
}
@media (min-width: 1300px) {
  .section-06 .decorative-section__item-03 {
    top: auto;
    left: 45%;
    bottom: -140px;
  }
}
.section-06 .decorative-section__item-05 {
  bottom: -80px;
  right: 20%;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__item-05 {
    bottom: -90px;
  }
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-05 {
    bottom: -50px;
    right: 15%;
  }
}
.section-06 .decorative-section__item-06 {
  bottom: -82px;
  right: 15%;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__item-06 {
    bottom: -92px;
  }
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-06 {
    bottom: -52px;
    right: 10%;
  }
}
.section-06 .decorative-section__item-07 {
  bottom: -84px;
  right: 10%;
}
@media (min-width: 550px) {
  .section-06 .decorative-section__item-07 {
    bottom: -94px;
  }
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-07 {
    bottom: -54px;
    right: 5%;
  }
}
.section-06 .decorative-section__item-08 {
  display: none;
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-08 {
    display: block;
    top: 0;
    left: 0;
  }
}
.section-06 .decorative-section__item-09 {
  display: none;
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-09 {
    display: block;
    top: 0;
    left: 0;
  }
}
.section-06 .decorative-section__item-10 {
  display: none;
}
@media (min-width: 768px) {
  .section-06 .decorative-section__item-10 {
    display: block;
    top: 30px;
    left: 0;
  }
}

.section-07 .col-6 {
  float: none;
  width: auto;
}
@media (min-width: 768px) {
  .section-07 .col-6 {
    float: left;
    width: 50%;
  }
}
.section-07 .col-6:nth-child(2) {
  /**padding: 80px 0 0 0;**/
}
.section-07 .distinguishing-list {
  padding: 20px 0 60px 0;
}
.section-07 .section-07__content {
  max-width: 380px;
  margin: 0 auto;
}
.section-07 .triple-section {
  display: none;
}

@media (min-width: 768px) {
  .banner__container {
    position: relative;
    padding: 0 0 0 33%;
  }
}
.banner__picture-container {
  background-size: cover;
  background-position: center;
  padding: 20px 20px 100px 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .banner__picture-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 32px;
  }
}
.banner__content-container {
  padding: 32px 20px;
}
@media (min-width: 768px) {
  .banner__content-container {
    text-align: left;
    padding: 80px 48px 60px 48px;
  }
}
@media (min-width: 1300px) {
  .banner__content-container {
    padding: 100px 60px 60px 60px;
  }
}
.banner__button-container {
  padding: 32px 0 0 0;
}
@media (min-width: 768px) {
  .banner__button-container {
    text-align: right;
    padding: 48px 0 0 0;
  }
}
@media (min-width: 1300px) {
  .banner__button-container {
    padding-top: 80px;
  }
}

.overlayer-content {
  display: none !important;
}

.loading-layer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
}

.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7000;
  background: rgba(0, 0, 0, 0.8);
  color: #000;
  overflow-y: auto;
  padding: 0;
}
.overlayer .overlayer__inner {
  margin: 40px auto;
  max-width: 1360px;
  position: relative;
  padding: 80px 60px;
  background: #f6f6f6;
}
.overlayer .overlayer__close {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 7000;
  display: block;
  cursor: pointer;
}

.overlayer-simple {
  z-index: 9600;
}
.overlayer-simple .overlayer__inner {
  margin: 40px 20px;
  padding: 0;
}
@media (min-width: 650px) {
  .overlayer-simple .overlayer__inner {
    margin: 40px;
  }
}
@media (min-width: 900px) {
  .overlayer-simple .overlayer__inner {
    max-width: 780px;
    margin: 40px auto;
  }
}
.overlayer-simple .overlayer__close {
  top: 20px;
  right: 20px;
}
@media (min-width: 768px) {
  .overlayer-simple .overlayer__close {
    top: 32px;
    right: 32px;
  }
}

.overlayer-02 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}
.overlayer-02__inner {
  margin: 0 30px;
  background: #f9fff7;
  border: 2px solid #239604;
  padding: 10px 15px;
  -webkit-box-shadow: 2px 2px 34px -2px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 2px 2px 34px -2px rgba(0, 0, 0, 0.34);
  box-shadow: 2px 2px 34px -2px rgba(0, 0, 0, 0.34);
  position: relative;
}
@media (min-width: 650px) {
  .overlayer-02__inner {
    padding: 10px 40px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.overlayer-02__close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #f6f6f6;
  padding: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #c4c4c4;
}

.pop-up {
  padding: 10px 0;
}
@media (min-width: 650px) {
  .pop-up {
    padding: 20px 0;
  }
}

/***** ICONS *****/
.jwg-container {
  text-align: center;
  padding: 50px 0 0 0;
  font-size: 12px;
}
@media (min-width: 900px) {
  .jwg-container {
    text-align: left;
    padding: 0;
  }
}
.jwg-container .jwg-container__description {
  opacity: 0.5;
}
@media (min-width: 900px) {
  .jwg-container .jwg-container__description {
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px 0 0;
  }
}
@media (min-width: 900px) {
  .jwg-container .jwg {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
}

.jwg {
  display: block;
  width: 130px;
  height: 33px;
  text-indent: -10000px;
  overflow: hidden;
  background: url("../img/logo-jwg.svg") no-repeat top left;
  background-size: 100% auto;
  margin: 10px auto 0 auto;
  opacity: 0.5;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.jwg:hover {
  opacity: 1;
}

.menu-toggler {
  padding: 15px 10px;
  background: #fff;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.menu-toggler:hover .icon-hamburger .icon-hamburger__hover-item {
  left: 0;
}

/* icon hamburger */
.icon-hamburger {
  display: block;
  width: 27px;
  height: 17px;
  position: relative;
  overflow: hidden;
}
.icon-hamburger > div {
  position: absolute;
  left: 0;
  height: 3px;
  background: #e70b13;
  width: 100%;
  -webkit-border-radius: 1.5px;
  -moz-border-radius: 1.5px;
  border-radius: 1.5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.icon-hamburger > div:nth-child(1),
.icon-hamburger > div:nth-child(4) {
  top: 0;
}
.icon-hamburger > div:nth-child(2),
.icon-hamburger > div:nth-child(5) {
  top: 7px;
  background: rgba(255, 54, 8, 0.6);
}
.icon-hamburger > div:nth-child(3),
.icon-hamburger > div:nth-child(6) {
  top: 14px;
  background: rgba(255, 54, 8, 0.3);
}
.icon-hamburger > div:nth-child(5) {
  background: #e70b13;
  -webkit-transition: all 0.2s linear 0.1s;
  -moz-transition: all 0.2s linear 0.1s;
  -o-transition: all 0.2s linear 0.1s;
  transition: all 0.2s linear 0.1s;
}
.icon-hamburger > div:nth-child(6) {
  background: #e70b13;
  -webkit-transition: all 0.2s linear 0.2s;
  -moz-transition: all 0.2s linear 0.2s;
  -o-transition: all 0.2s linear 0.2s;
  transition: all 0.2s linear 0.2s;
}
.icon-hamburger .icon-hamburger__hover-item {
  opacity: 1;
  left: -150%;
}

.icon-hamburger.open {
  overflow: visible;
}
.icon-hamburger.open > div:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  background: #e70b13;
}
.icon-hamburger.open > div:nth-child(2) {
  opacity: 0;
  left: -100%;
  background: #e70b13;
}
.icon-hamburger.open > div:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background: #e70b13;
}
.icon-hamburger.open .icon-hamburger__hover-item {
  opacity: 0;
}

.icon-hamburger--medium > div {
  background: #e70b13;
}

.icon-hamburger--light > div {
  background: #fff;
}

.icon-hamburger--large {
  width: 32px;
  height: 20px;
}
.icon-hamburger--large > div {
  height: 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.icon-hamburger--large > div:nth-child(1) {
  top: 0;
}
.icon-hamburger--large > div:nth-child(2) {
  top: 8px;
}
.icon-hamburger--large > div:nth-child(3) {
  top: 16px;
}

.icon-hamburger--small {
  width: 20px;
  height: 12px;
}
.icon-hamburger--small > div {
  height: 2px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.icon-hamburger--small > div:nth-child(1) {
  top: 0;
}
.icon-hamburger--small > div:nth-child(2) {
  top: 5px;
}
.icon-hamburger--small > div:nth-child(3) {
  top: 10px;
}

/* icon accept */
.icon-accept-container {
  padding: 20px 0 0 0;
}

.icon-accept {
  display: block;
  margin: 0 auto;
  height: 0;
  width: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.icon-accept-container--accepted .icon-accept {
  width: 70px;
  height: 70px;
}
@media (min-width: 1300px) {
  .icon-accept-container--accepted .icon-accept {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1700px) {
  .icon-accept-container--accepted .icon-accept {
    width: 120px;
    height: 120px;
  }
}

.icon-flag {
  opacity: 0.8;
}

/* icon cross */
.icon-cross {
  width: 21px;
  height: 21px;
  position: relative;
  overflow: hidden;
}
.icon-cross > div {
  position: absolute;
  background: #000;
  display: block;
}
.icon-cross > div:nth-child(1) {
  width: 100%;
  left: 0;
  top: 50%;
  height: 3px;
  margin: -1.5px 0 0 0;
}
.icon-cross > div:nth-child(2) {
  width: 3px;
  top: 0;
  left: 50%;
  margin: 0 0 0 -1.5px;
  height: 100%;
}

.icon-cross--light > div {
  background: #fff;
}

.icon-cross--later-dark > div {
  background: #fff;
}
@media (min-width: 768px) {
  .icon-cross--later-dark > div {
    background: #000;
  }
}

.icon-cross--medium > div {
  background: #e70b13;
}

.icon-cross--large {
  width: 26px;
  height: 26px;
}
.icon-cross--large > div:nth-child(1) {
  height: 4px;
  margin: -2px 0 0 0;
}
.icon-cross--large > div:nth-child(2) {
  width: 4px;
  margin: 0 0 0 -2px;
}

.icon-cross--small {
  width: 16px;
  height: 16px;
}
.icon-cross--small > div:nth-child(1) {
  height: 2px;
  margin: -1px 0 0 0;
}
.icon-cross--small > div:nth-child(2) {
  width: 2px;
  margin: 0 0 0 -1px;
}

.icon-cross--rotated {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* icon arrow */
.icon-arrow {
  position: relative;
  width: 14px;
  height: 14px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.icon-arrow--left {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 3px;
}

.icon-arrow--up {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 3px;
}

.icon-arrow--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -3px;
}

.icon-arrow--down {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -3px;
}

.icon-arrow--small {
  width: 10px;
  height: 10px;
  border-width: 2px;
}

.icon-arrow--left.icon-arrow--small {
  left: 2px;
}

.icon-arrow--up.icon-arrow--small {
  top: 2px;
}

.icon-arrow--right.icon-arrow--small {
  left: -2px;
}

.icon-arrow--down.icon-arrow--small {
  top: -2px;
}

.icon-arrow--large {
  width: 18px;
  height: 18px;
  border-width: 3px;
}

/* icon triangular icon */
.icon-triangular-arrow-left {
  border-right: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-left--small {
  border-right-width: 10px;
  border-top-width: 6px;
  border-bottom-width: 6px;
}

.icon-triangular-arrow-left--large {
  border-right-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px;
}

.icon-triangular-arrow-up {
  border-bottom: 12px solid #000;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-up--small {
  border-bottom-width: 10px;
  border-right-width: 6px;
  border-left-width: 6px;
}

.icon-triangular-arrow-up--large {
  border-bottom-width: 14px;
  border-right-width: 8px;
  border-left-width: 8px;
}

.icon-triangular-arrow-right {
  border-left: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-right--small {
  border-left-width: 10px;
  border-top-width: 6px;
  border-bottom-width: 6px;
}

.icon-triangular-arrow-right--large {
  border-left-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px;
}

.icon-triangular-arrow-down {
  border-top: 12px solid #000;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-down--small {
  border-top-width: 10px;
  border-right-width: 6px;
  border-left-width: 6px;
}

.icon-triangular-arrow-down--large {
  border-top-width: 14px;
  border-right-width: 8px;
  border-left-width: 8px;
}

.icon-triple-arrow {
  width: 18px;
}
@media (min-width: 1100px) {
  .icon-triple-arrow {
    width: 22px;
  }
}
@media (min-width: 1700px) {
  .icon-triple-arrow {
    width: 26px;
  }
}
.icon-triple-arrow > div {
  width: 16px;
  height: 16px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  position: relative;
  margin: -3px 0 0 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 1100px) {
  .icon-triple-arrow > div {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1700px) {
  .icon-triple-arrow > div {
    width: 24px;
    height: 24px;
  }
}

/***** BUTTONS ******/
.button-container {
  text-align: center;
  clear: both;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.more-buttons {
  padding-top: 20px;
}

.button {
  clear: both;
  display: inline-block;
  margin: 0 0 0 -5px;
  border: 0;
  cursor: pointer;
  font-weight: 400;
  padding: 8px 40px;
  font-size: 14px;
  font-family: "adam", Verdana, sans-serif;
  letter-spacing: 1px;
  border: 1px solid #000;
  color: #000;
  text-transform: uppercase;
  background: none;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear 0.2s;
  -moz-transition: all 0.2s linear 0.2s;
  -o-transition: all 0.2s linear 0.2s;
  transition: all 0.2s linear 0.2s;
}
.button:before {
  content: "";
  display: block;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button:hover {
  color: #fff;
}
.button:hover:before {
  top: 0;
}
.button .button__inner {
  position: relative;
  z-index: 10;
}

.button--light {
  border-color: #fff;
  color: #fff;
}
.button--light:before {
  background: #fff;
}
.button--light:hover {
  color: #000;
}

.simple-button {
  display: inline-block;
  font-size: 14px;
}
.simple-button .simple-button__inner {
  display: block;
}

.simple-button--bottom-icon .simple-button__icon {
  display: block;
  margin: 5px auto 0 auto;
}

.simple-button--top-icon .simple-button__icon {
  display: block;
  margin: 0 auto 5px auto;
}

.spectacular-button {
  background: none;
  border: 0;
  font-family: "adam", Verdana, sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .spectacular-button {
    font-size: 20px;
  }
}
.spectacular-button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 7px;
  left: -7px;
  background: rgba(255, 54, 8, 0.6);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.spectacular-button:hover:before {
  top: -7px;
  left: 7px;
}
.spectacular-button .spectacular-button__inner {
  padding: 7px 30px;
  background: #e70b13;
  position: relative;
  z-index: 10;
}

.spectacular-button--small {
  font-size: 14px;
}

.spectacular-button--light {
  color: #000;
}
.spectacular-button--light:before {
  background: #c4c4c4;
}
.spectacular-button--light .spectacular-button__inner {
  background: #fff;
}

.filled-button {
  display: inline-block;
  background: #fff;
  border: 0;
  padding: 7px 30px;
  color: #000;
  font-family: "adam", Verdana, sans-serif;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.2s linear 0.2s;
  -moz-transition: all 0.2s linear 0.2s;
  -o-transition: all 0.2s linear 0.2s;
  transition: all 0.2s linear 0.2s;
}
.filled-button:before {
  content: "";
  display: block;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.filled-button .filled-button__inner {
  position: relative;
  z-index: 10;
}
.filled-button:hover, .filled-button:focus {
  color: #fff;
}
.filled-button:hover:before, .filled-button:focus:before {
  top: 0;
}

.filled-button--dark {
  background: #000;
  color: #fff;
}
.filled-button--dark:before {
  background: #e70b13;
}
.next-step-button-container {
  padding: 40px 0 0 0;
  text-align: right;
}
@media (min-width: 900px) {
  .next-step-button-container {
    text-align: right;
  }
}
