/*--------------------*/
/* - FONTS            */
/*--------------------*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto:wght@400;700&display=swap");

.font_2 {
  font-family: "Oswald", sans-serif;
}

/*--------------------*/
/* - CUSTOM PRELOADER */
/*--------------------*/
#loader-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--color-white);
  -webkit-animation: loader 1s linear;
  animation: loader 1s linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes loader {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
  }
}

@keyframes loader {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
  }
}

/*--------------------*/
/* - RESET */
/*--------------------*/
html {
  overflow-y: scroll;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  line-height: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  -webkit-locale: auto;
}

.clear {
  clear: both;
  overflow: hidden;
  height: 0;
  font-size: 0;
  display: block;
}

html:not(.touch-screen)::-webkit-scrollbar,
html:not(.touch-screen) ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) ::-webkit-scrollbar-track {
  background: var(--color-text);
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) ::-webkit-scrollbar-thumb {
  background: var(--color-yellow);
}

body ::-moz-selection {
  color: #fff;
  background: var(--color-yellow);
}

body ::selection {
  color: #fff;
  background: var(--color-yellow);
}

body ::-moz-selection {
  color: #fff;
  background: var(--color-yellow);
}

:focus,
:hover,
:active,
:visited {
  outline: none;
}

button {
  background: none;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  color: inherit;
  -webkit-transition: var(--transition-1);
  -o-transition: var(--transition-1);
  transition: var(--transition-1);
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

picture {
  font-size: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------*/
/* - GLOBAL SETTINGS  */
/*--------------------*/
:root {
  --color-yellow: #f2a900;
  --color-black: #000000;
  --color-text: #585858;
  --color-red: #bb0f33;
  --color-white: #fff;
  --transition: all 0.3s ease-in-out;
  --transition2: all 0.3s linear;
}

html {
  height: auto;
  -webkit-font-smoothing: antialiased;
}

html.keyboard-focus:focus {
  outline: auto;
}

html.overflow-menu {
  overflow: hidden;
}

body {
  height: auto;
  overflow: hidden;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text);
}

#content-block {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

.overflow-hidden {
  overflow: hidden;
}

html.overflow-hidden body {
  overflow: hidden;
}

.swiper-slide:not(:first-child) {
  display: block;
}

.swiper-container {
  opacity: 0;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.swiper-container.swiper-initialized {
  opacity: 1;
}

.container {
  padding: 0 24px;
}

/*spacer*/
.spacer {
  clear: both;
}

.spacer-xxl {
  height: 220px;
}

.spacer-xl {
  height: 200px;
}

.spacer-lg {
  height: 180px;
}

.spacer-md {
  height: 160px;
}

.spacer-sm {
  height: 140px;
}

.spacer-s {
  height: 100px;
}

/*media*/
@media (max-width: 1560px) {
  .spacer-xxl {
    height: 160px;
  }

  .spacer-xl {
    height: 140px;
  }

  .spacer-lg {
    height: 120px;
  }

  .spacer-md {
    height: 100px;
  }

  .spacer-sm {
    height: 100px;
  }

  .spacer-s {
    height: 80px;
  }
}

@media (max-width: 1199px) {
  .spacer {
    height: 80px;
  }
}

/*end spacer*/

/*image styles*/
.img_wrapp {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
}

.img_wrapp img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
}

.img_wrapp2 {
  position: relative;
  align-self: flex-start;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_wrapp2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

/* media */
@media (min-width: 992px) {
  .scale:hover img {
    transform: scale(1.02);
  }
}

/*end image styles*/

/* typography */
b,
strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: inherit;
  transition: var(--transition);
}

a:link,
a:visited,
a:active,
a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

iframe {
  border: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

picture {
  font-size: 0;
}

img {
  position: relative;
  max-width: 100%;
  height: auto;
  transition: var(--transition2);
  backface-visibility: hidden;
}

img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ededed;
  background-image: url(../img/default-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.text.text-xl {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.5;
  font-weight: 700;
}

.text * {
  margin-bottom: 30px;
}

.text :last-child,
.text.no-margin * {
  margin-bottom: 0;
}

.text img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text ul li,
.text ol li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 16px;
}

.text ul li ul,
.text ol li ol {
  margin-top: 16px;
}

.text ul li:before {
  content: "";
  position: absolute;
  border-radius: 100%;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--color-text);
}

.text ol {
  counter-reset: number;
}

.text ol li {
  padding-left: 24px;
}

.text ol li:before {
  font-weight: inherit;
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
}

.text ul li:last-child,
.text ol li:last-child {
  margin-bottom: 0;
}

.text ul li span,
.text ol li span {
  font-weight: 700;
}

.text.simple-page a:not(.btn) {
  position: relative;
  color: var(--color-red);
  cursor: pointer;
  white-space: pre-wrap;
  font-weight: 700;
}

.text.simple-page a:not(.btn)::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-red);
  transition: var(--transition);
  backface-visibility: hidden;
}

.ul-two-column {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

blockquote {
  position: relative;
  display: block;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-text);
  padding: 36px 0 36px 0;
}

blockquote::before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background: url("../img/patern-blockq.png") center/cover no-repeat,
    var(--color-red);
  position: absolute;
  left: -40px;
  top: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.04em;
  color: var(--color-black);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

h1,
.h1 {
  font-size: clamp(34px, 4vw, 74px);
  line-height: 1.2;
}

h2,
.h2 {
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.2;
}

h3,
.h3 {
  font-size: clamp(22px, 3.2vw, 44px);
}

h4,
.h4 {
  font-size: clamp(22px, 2vw, 34px);
}

h5,
.h5 {
  font-size: clamp(18px, 1.4vw, 22px);
}

h6,
.h6 {
  font-size: 18px;
}

.subtitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.text-truncate {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-line-1 {
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-2 {
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-3 {
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-4 {
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-5 {
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-6 {
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-8 {
  overflow: hidden;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

/* media */
@media (min-width: 992px) {
  .text.simple-page a:hover::after {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .hide-md {
    display: none !important;
  }

  .text {
    font-size: 16px;
  }

  .text ul li:before {
    top: 9px;
  }

  blockquote {
    position: relative;
    display: block;
    font-size: clamp(18px, 1.4vw, 24px);
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-text);
    padding: 30px 0 30px 24px;
  }

  blockquote::before {
    left: 0;
  }
}

@media (max-width: 991px) {
  .hide-sm {
    display: none !important;
  }

  .text * {
    margin-bottom: 26px;
  }

  blockquote {
    font-size: 18px;
  }

  h1,
  .h1,
  h2,
  .h2 {
    line-height: 1.3;
  }

  h4,
  .h4 {
    line-height: 1.5;
  }

  .text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  br {
    display: none;
  }

  .ul-two-column {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .text-line-1,
  .text-line-2,
  .text-line-3,
  .text-line-4,
  .text-line-5 {
    -webkit-line-clamp: inherit;
  }
}

/* end typography */

/* container styles */
@media (min-width: 1200px) {
  .container {
    max-width: 1590px;
  }
}

@media (min-width: 1200px) and (max-width: 1810px) {
  .container {
    max-width: 1662px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* end container styles */

/* colors */
.color_red {
  color: var(--color-red);
}

.color_text {
  color: var(--color-text);
}

.color_black {
  color: var(--color-black);
}

.color_white {
  color: var(--color-white);
}

/* end colors */

/* button styles */
.btn {
  display: inline-block;
  vertical-align: bottom;
  text-align: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--color-yellow);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  font-size: 20px;
  min-width: 176px;
  padding: 11px 26px;
  letter-spacing: 0.0092em;
  border: 2px solid var(--color-yellow);
  border-radius: 0;
  transition: var(--transition);
  backface-visibility: hidden;
  overflow: hidden;
}

.btn.color2 {
  background: var(--color-orange);
}

.btn.color3 {
  background: transparent;
}

.btn.color4 {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-block {
  display: block;
  width: 100%;
}

/* media */
@media (min-width: 992px) {
  .btn:hover {
    background: var(--color-red);
    border-color: var(--color-red);
  }

  .btn.color3:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
  }

  .btn.color4:hover {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
  }
}

@media (max-width: 1199px) {
  .btn {
    padding: 7px 26px;
  }
}

@media (max-width: 575px) {
  .btn i {
    display: none;
  }
}

/* end button styles */

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 136px;
  z-index: 20;
  backface-visibility: hidden;
  transition: var(--transition);
  background-color: var(--color-white);
  box-shadow: 0px 8px 30px rgba(15, 15, 15, 0.15);
  padding: 20px 0;
  display: flex;
  align-items: center;
}

header + *:not(.no-margin) {
  margin-top: 136px;
}

.header.scrolled {
  height: 100px;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header #logo {
  display: inline-block;
  line-height: 0;
}

.header.scrolled #logo img {
  max-width: 200px;
}

.header #logo img {
  max-width: 252px;
  max-height: 62px;
}

header .social,
header .btn_mobile {
  display: none;
}

.toggle-block {
  text-align: center;
  padding: 0 16px;
}

.nav-wrapp ul {
  font-size: 0;
}

.nav-wrapp > ul:first-of-type > li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 60px;
}

.nav-wrapp ul li:last-child {
  margin: 0 !important;
}

.nav-wrapp > ul a:not(.btn) {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-black);
}

.nav-wrapp > ul:first-of-type > li.active a:not(.btn) {
  color: var(--color-red);
}

.second_menu {
  position: relative;
}

.second_menu i {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  transition: var(--transition);
  cursor: pointer;
}

.second_menu i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -2px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: var(--transition);
  backface-visibility: hidden;
}

.second_menu.active i::after {
  border-color: var(--color-red);
}

.second_menu_list {
  text-align: left;
  position: absolute;
  z-index: 10;
  bottom: -16px;
  left: -46px;
  transform: translateY(100%);
  padding: 36px 46px;
  min-width: 202px;
  min-height: 204px;
  background: var(--color-white);
  box-shadow: 0px 8px 30px rgba(15, 15, 15, 0.15);
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transition: var(--transition);
}

.second_menu_list > li:not(:last-child) {
  margin-bottom: 16px;
}

.second_menu_list a {
  color: var(--color-text) !important;
}

.mobile-button {
  position: relative;
  display: none;
  width: 54px;
  height: 54px;
  z-index: 101;
  transition: var(--transition);
  background-color: var(--color-yellow);
}

.mobile-button span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 3px;
  margin-top: -1.5px;
  margin-left: -11px;
  background: var(--color-white);
  transition: var(--transition);
}

.mobile-button:before,
.mobile-button:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 3px;
  margin-left: -11px;
  background: var(--color-white);
  margin-top: 6.5px;
  transition: var(--transition);
}

.mobile-button:before {
  margin-top: -9.5px;
}

.mobile-button.active:before,
.mobile-button.active:after {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.mobile-button.active:after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.mobile-button.active span {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
  opacity: 0;
}

/* media */
@media (min-width: 992px) {
  #logo:hover img {
    opacity: 0.8 !important;
  }

  .nav-wrapp ul li:hover > a:not(.btn) {
    color: var(--color-red);
  }

  .second_menu_list a:hover {
    color: var(--color-red) !important;
  }

  .second_menu:hover .second_menu_list {
    opacity: 1;
    visibility: visible;
  }

  .second_menu:hover i::after {
    transform: translate(-50%, -50%) rotate(225deg);
    margin-top: 2px;
    border-color: var(--color-red);
  }
}

@media (max-width: 1560px) {
  header + *:not(.no-margin) {
    margin-top: 100px;
  }

  .header {
    height: 100px;
    padding: 12px 0;
  }

  .header #logo img {
    max-width: 200px;
  }

  .header.scrolled {
    height: 80px;
  }

  .header.scrolled #logo img {
    max-width: 170px;
  }

  .nav-wrapp > ul > li {
    margin-right: 32px;
  }

  .nav-wrapp > ul:first-of-type > li {
    margin-right: 40px;
  }
}

@media (max-width: 1199px) {
  .nav-wrapp > ul:first-of-type > li {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  .heaader_right {
    display: none;
  }

  .header #logo img,
  .header.scrolled #logo img {
    max-width: 120px;
    max-height: 30px;
  }

  .header {
    height: 80px;
  }

  header + *:not(.no-margin) {
    margin-top: 80px;
  }

  header.open-menu .layer-close {
    top: 80px;
  }

  .toggle-block {
    width: 100%;
    left: 0;
    transform: translateX(100%);
    position: fixed;
    top: 80px;
    height: calc(100vh - 80px);
    height: calc((var(--vh, 1vh) * 100) - 80px);
    background: var(--color-white);
    padding: 0 0 186px;
    text-align: center;
    transition: var(--transition);
    backface-visibility: hidden;
    z-index: 101;
    overflow: hidden;
  }

  header.open-menu .toggle-block {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .toggle-block::before {
    content: "";
    width: 92px;
    height: 56px;
    background-image: url("../img/menu_decor.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    position: absolute;
    right: 22px;
    bottom: 46px;
  }

  .toggle-block::after {
    content: "";
    width: 208px;
    height: 158px;
    background-image: url("../img/menu_img.webp");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    z-index: -1;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .toggle-block > .nav-wrapp {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 60px 24px 0;
    overflow-y: auto;
  }

  .toggle-block > .nav-wrapp::before {
    content: "";
    width: 80px;
    height: 80px;
    background-image: url("../img/menu_left.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    z-index: -1;
    position: fixed;
    left: 10px;
    top: 40px;
  }

  .toggle-block > .nav-wrapp::after {
    content: "";
    width: 50px;
    height: 192px;
    background-image: url("../img/menu_right.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: -1;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-wrapp > ul:first-of-type > li {
    display: block;
    margin: 0 0 44px;
  }

  .nav-wrapp > ul:first-of-type > li > a:not(.btn) {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 34px;
    letter-spacing: -0.04em;
    line-height: 1.3;
    font-weight: 700;
  }

  .second_menu_list {
    position: relative;
    z-index: 0;
    bottom: 0;
    left: 0;
    transform: translateY(0);
    background-color: transparent;
    backdrop-filter: blur(0px);
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    min-height: 0;
    padding: 30px 0 0;
    display: none;
    border: 0;
    border-radius: 0;
    text-align: center;
  }

  .second_menu.open i::after {
    transform: translate(-50%, -50%) rotate(225deg);
    margin-top: 2px;
  }

  .second_menu.open .second_menu_list {
    margin-bottom: -20px;
  }

  .second_menu_list > li {
    display: block;
  }

  .nav-wrapp > ul:first-of-type {
    margin-bottom: 54px;
  }

  .nav-wrapp > ul li:nth-child(1) {
    transition-delay: 0.3s;
  }

  .nav-wrapp > ul li:nth-child(2) {
    transition-delay: 0.4s;
  }

  .nav-wrapp > ul li:nth-child(3) {
    transition-delay: 0.5s;
  }

  .nav-wrapp > ul li:nth-child(4) {
    transition-delay: 0.6s;
  }

  .nav-wrapp > ul li:nth-child(5) {
    transition-delay: 0.7s;
  }

  .nav-wrapp > ul li:nth-child(6) {
    transition-delay: 0.8s;
  }

  .nav-wrapp > ul li:nth-child(7) {
    transition-delay: 0.9s;
  }

  .nav-wrapp > ul li:nth-child(8) {
    transition-delay: 1s;
  }

  .nav-wrapp > ul li:nth-child(9) {
    transition-delay: 1.1s;
  }

  .nav-wrapp > ul li:nth-child(10) {
    transition-delay: 1.2s;
  }

  .nav-wrapp > ul li {
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.2s ease-in;
    backface-visibility: hidden;
  }

  .header.open-menu .nav-wrapp > ul li {
    opacity: 1;
    transform: translateY(0);
  }

  .second_menu_list > li:not(:last-child) {
    margin-bottom: 34px;
  }

  header .social,
  header .btn_mobile {
    display: block;
  }

  header .btn_mobile {
    margin-bottom: 30px;
  }

  .mobile-button {
    display: block;
  }

  .nav-wrapp > ul a:not(.btn) {
    font-size: 24px;
    font-weight: 700;
  }

  .second_menu_list a {
    color: #686462 !important;
  }
}

@media (max-width: 767px) {
  .header .btn {
    display: block;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  header {
    position: relative;
  }

  header + * {
    margin-top: 0;
  }

  .toggle-block {
    padding: 0 0 80px;
  }

  .toggle-block::after {
    height: 70px;
    background-size: contain;
  }

  .toggle-block > .nav-wrapp {
    padding: 20px 24px 0;
  }

  .nav-wrapp > ul:first-of-type > li {
    margin: 0 0 24px;
  }

  .second_menu_list > li:not(:last-child) {
    margin-bottom: 16px;
  }

  .second_menu_list {
    padding: 20px 0;
  }

  .second_menu.open .second_menu_list {
    margin-bottom: 0;
  }

  .nav-wrapp > ul:first-of-type {
    margin-bottom: 30px;
  }

  .toggle-block::before {
    bottom: 0;
  }
}

/* end header */

/*banner*/
.banner + *:not(.no_margin) {
  margin-top: 70px;
}

.banner.no_margin + *:not(.back_btn) {
  margin-top: 0 !important;
}

.bg {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.parallax-bg {
  overflow-y: hidden;
}

.parallax-bg .bg {
  position: absolute;
  width: 100%;
  height: 120%;
  top: -10%;
}

.banner {
  position: relative;
}

.h4.full {
  font-size: 32px;
}

.banner + .sec-full-width,
.banner + .select-year {
  margin-top: 0;
}

.banner + .submenu-inner-wrap {
  margin: 0 0 70px;
}

.banner-align {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  width: 10000px;
  padding: 40px 0;
  height: 350px;
  z-index: 1;
  overflow: hidden;
}

/* banner type big */
.banner-align.big {
  height: 820px;
}

.banner-align.big .box {
  position: relative;
  max-width: 910px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}

.banner-align.big .box::before {
  content: "";
  width: 108px;
  height: 94px;
  background-image: url("../img/mightybird-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  display: block;
  margin: 0 auto 80px;
}

.banner-align.big .title {
  margin-bottom: 26px;
}

.banner-align.big .text {
  margin-bottom: 46px;
}

.banner-align.big .btn {
  min-width: 390px;
}
/* end banner type big */

/* type small */
.banner-align.small {
  height: 440px;
}

.banner-align.small .opacity:before {
  background: rgba(0, 0, 0, 0.5);
}

.banner-align.small .box {
  max-width: 910px;
  margin: 0 auto;
}

.banner-align.small .box > .title {
  margin-bottom: 28px;
}

.banner-align.small .box > .text {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

.banner-align .btn_side {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.banner-align .btn_side .btn:first-child {
  margin-right: 30px;
}

.banner-align .btn_side .btn {
  min-width: 276px;
}

/* end type small */

.banner-align.size3 {
  height: 400px;
}

.banner-align.align-top {
  vertical-align: top;
}

.banner-align.custom {
  display: block;
  width: 100%;
  padding: 0;
}

.banner-align.custom .container,
.banner-align.custom .row {
  height: 100%;
}

.banner.banner-detail {
  margin-bottom: 50px;
}

.banner-content {
  position: relative;
}

.banner-content > * {
  margin-bottom: 40px;
}

.banner-content > *:last-child {
  margin-bottom: 0;
}

.banner-content.mobile {
  display: none;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 15px;
}

.home-banner .banner-content .title {
  font-weight: 300;
}

.home-banner .banner-content .title b {
  font-weight: 900;
}

.home-banner .banner-content .text {
  max-width: 420px;
}

.home-banner .only-mobile {
  display: none;
  text-align: center;
  margin-top: 15px;
}

.home-banner .swiper-pagination {
  bottom: 30px !important;
}

.banner-align .bg.mobile {
  display: none;
}

.video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  clip: rect(auto, auto, auto, auto);
  display: none;
}

.video video {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

.video-present .video {
  display: block;
  overflow: hidden;
}

/*media*/
@media (max-width: 1560px) {
  .banner-align.small {
    height: 420px;
  }

  .banner-content > * {
    margin-bottom: 30px;
  }

  .banner-align.size2 {
    height: 450px;
  }

  .banner-align.big .box::before {
    margin: 0 auto 70px;
  }

  .banner-align.big .text {
    margin-bottom: 40px;
  }

  .banner-align.big {
    height: 600px;
  }

  .banner-align.small .box > .desc {
    margin-bottom: 28px;
  }
}

@media (max-width: 1199px) {
  .banner-align.full-h {
    height: calc(100vh - 80px);
  }

  .banner-align.big .box::before {
    width: 144px;
    height: 102px;
  }

  .banner-align .btn_side .btn:first-child {
    margin-right: 20px;
  }

  .banner-align.small .box > .title {
    margin-bottom: 16px;
  }
}

@media (max-width: 991px) {
  .banner-align.big {
    height: auto;
    padding: 150px 0;
  }

  .banner + *:not(.no_margin) {
    margin-top: 60px;
  }

  .banner-align.small .box > .text {
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .banner-align.full-h,
  .banner-align.full-h2 {
    height: 50vh;
    padding: 20px 0;
  }

  .banner-align .bg:not(.mobile) {
    display: none;
  }

  .banner-align .bg.mobile,
  .home-banner .banner-align .bg.mobile {
    display: block;
  }

  .home-banner .banner-align .opacity:before {
    background: rgba(0, 0, 0, 0.2);
  }

  .banner-content > * {
    margin-bottom: 15px;
  }

  .banner-align.size2 {
    height: 300px;
  }

  .home-banner .swiper-pagination {
    bottom: auto !important;
    position: relative;
    margin-top: 15px;
  }

  .banner-align .btn_side {
    flex-direction: column;
  }

  .banner-align .btn_side .btn {
    min-width: 296px;
  }

  .banner-align .btn_side .btn:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .banner-align.big .btn {
    min-width: 180px;
  }
}

/*end banner*/

/* home banner */
.home_banner {
  position: relative;
  min-height: 626px;
  display: flex;
  align-items: center;
}

.home_banner .decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 50vw;
  height: 100%;
  background: url("../img/patern.png") center/cover no-repeat, var(--color-red);
  z-index: 1;
}

.home_banner .decor::before {
  content: "";
  width: 224px;
  height: 100%;
  background: url("../img/patern.png") center/cover no-repeat, var(--color-red);
  position: absolute;
  right: 0;
  top: 0;
  clip-path: polygon(0 0, 100% 0, 18% 100%, 0% 100%);
  z-index: -1;
  transform: translateX(100%);
}

.home_banner .decor::after {
  content: "";
  width: 328px;
  height: 100%;
  background-image: url("../img/lightning-home.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  z-index: -1;
}

.home_banner .content_inner {
  max-width: 598px;
  position: relative;
  z-index: 2;
}

.home_banner .content_inner .title {
  margin-bottom: 38px;
}

.home_banner .content_inner .text {
  margin-bottom: 46px;
}

.btn_box {
  font-size: 0;
}

.home_banner .btn:not(:last-child) {
  margin-right: 20px;
}

.home_banner .home_img {
  position: relative;
  max-width: 738px;
  margin-left: auto;
  transform: translateX(100px);
  z-index: 2;
}

.home_banner .home_img .img_wrapp {
  padding-bottom: 77.10027100271003%;
}

/* media */
@media (max-width: 1810px) {
  .home_banner .home_img {
    transform: translateX(60px);
  }
}

@media (max-width: 1560px) {
  .home_banner {
    min-height: 500px;
  }

  .home_banner .decor::before {
    clip-path: polygon(0 0, 100% 0, 29% 100%, 0% 100%);
  }
}

@media (max-width: 1199px) {
  .home_banner .content_inner .title {
    margin-bottom: 12px;
  }

  .home_banner .content_inner .text {
    margin-bottom: 26px;
  }

  .home_banner .home_img {
    transform: translateX(0px);
  }
}

@media (max-width: 991px) {
  .home_banner .decor {
    display: none;
  }

  .home_banner {
    background: var(--color-yellow) !important;
    overflow: hidden;
  }

  .home_banner .content_inner {
    position: relative;
    padding: 70px 0;
    max-width: 100%;
  }

  .home_banner .content_inner::before {
    content: "";
    width: calc((100vw + 50%) - 6px);
    height: 100%;
    background: url("../img/patern.png") center/cover no-repeat,
      var(--color-red);
    position: absolute;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    top: 0;
    z-index: -1;
  }

  .home_banner .content_inner::after {
    content: "";
    width: 246px;
    height: 100%;
    background-image: url("../img/lightning-home-mobile.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  .home_banner .btn {
    min-width: 288px;
  }

  .home_banner .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* end home banner */
