/* margin and padding */
.pt-40 {
  padding-top: 40px;
}

/* media */
@media (min-width: 992px) {
  .mt-20 {
    margin-top: -20px;
  }
}

@media (max-width: 575px) {
  .pt-40 {
    padding-top: 0;
  }
}
/* end margin and padding */
.hidden,
.hidden > * {
  display: none;
}

/*bg*/
.bg_black {
  background-color: var(--color-black);
}

.bg_beige {
  background-color: var(--color-beige);
}
/*end bg*/

svg path,
svg circle {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.custom_offset > *:last-child {
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}

sup {
  font-size: 70%;
  line-height: 1;
  position: relative;
  vertical-align: top;
}

.upper {
  text-transform: uppercase;
}

.no-padd {
  padding: 0;
}

.section {
  position: relative;
}

.section.full-height {
  height: 100vh;
}

/* media */
@media (max-width: 991px) {
  .p_12 {
    padding: 0 12px;
  }
}

/*animation*/
@media (min-width: 1200px) {
  .item-animation .animate-item {
    opacity: 0;
    transform: translateY(5vw);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .site-ready .item-animation .animate-item.animated {
    opacity: 1;
    transform: translateY(0);
  }
}
/*end animation*/

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* FORM ELEMENTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--color-black);
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--color-black);
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--color-black);
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--color-black);
  opacity: 1;
}

input,
textarea,
select {
  border-radius: 0;
  background: none;
  border: none;
  margin: 0;
  width: 100%;
  padding: 0;
}

textarea {
  display: block;
  resize: none;
  overflow: auto;
}

select::-ms-expand {
  display: none;
}

.input-field-wrapper {
  position: relative;
}

.input-placeholder {
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 20px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-black);
  overflow: hidden;
  white-space: nowrap;
  backface-visibility: hidden;
  transform: translateY(-50%);
  transition: var(--transition);
  pointer-events: none;
}

.input-field-wrapper.focus .input-placeholder,
.input-field-wrapper.value .input-placeholder {
  z-index: 5;
  font-size: 16px;
  line-height: 24px;
  top: 0;
  left: 10px;
  transform: translateY(-50%);
  padding: 0 10px;
  background-color: var(--color-white);
}

.input {
  background-color: #fff;
  color: var(--color-black);
  font-size: 20px;
  font-weight: 400;
  height: 56px;
  border: 1px solid #dfdfdf;
  line-height: 56px;
  padding: 0 20px;
  transition: var(--transition);
  text-overflow: ellipsis;
}

.input:focus {
  border-color: var(--color-yellow);
}

textarea.input {
  height: 176px;
  padding: 12px 20px;
  line-height: 30px;
}

.input-field-wrapper.invalid .input {
  border: 1px solid var(--color-red);
}

.input-field-wrapper.invalid .input-placeholder {
  color: var(--color-red);
}

.form .row > div:not(:last-child) {
  margin-bottom: 30px;
}

.checkbox-entry {
  display: inline-block;
  cursor: pointer;
  margin: 0;
  padding: 0;
  min-width: 30px;
  min-height: 22px;
}

.checkbox-entry input {
  display: none;
}

.checkbox-entry span {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  padding-left: 44px;
  display: block;
  color: var(--color-text);
  transition: var(--transition);
}

.checkbox-entry span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-red);
  transition: var(--transition);
  backface-visibility: hidden;
}

.checkbox-entry span:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--color-red);
  z-index: 1;
  transform: scale(0);
  backface-visibility: hidden;
  transition: var(--transition);
}

.checkbox-entry input:checked + span:after {
  opacity: 1;
  transform: scale(1);
}

/* media */
@media (max-width: 1560px) {
  .checkbox-entry span {
    padding-left: 32px;
  }
}

@media (max-width: 1199px) {
  .input {
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    padding: 0 16px;
  }

  .input-placeholder {
    font-size: 16px;
    line-height: 24px;
  }

  .input-field-wrapper.focus .input-placeholder,
  .input-field-wrapper.value .input-placeholder {
    font-size: 14px;
    line-height: 22px;
    padding: 0 6px;
  }

  .form .row > div:not(:last-child) {
    margin-bottom: 26px;
  }

  textarea.input {
    height: 120px;
    padding: 12px 16px;
    line-height: 24px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* END ELEMENTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*simple page*/
.simple_section {
  margin-top: 100px;
}

.simple-page.size-2 {
  max-width: 912px;
  margin: 0 auto;
}

.simple-page {
  position: relative;
  display: block;
  width: 100%;
}

.simple-page p {
  color: var(--color-text);
}

.simple-page > * {
  margin-bottom: 30px;
}

.simple-page > :last-child {
  margin-bottom: 0;
}

.simple-page h1,
.simple-page h2,
.simple-page h3,
.simple-page h4,
.simple-page h5,
.simple-page h6 {
  margin-bottom: 10px;
}

.simple-page h1 span,
.simple-page h2 span,
.simple-page h3 span,
.simple-page h4 span,
.simple-page h5 span,
.simple-page h6 span {
  color: var(--color-yellow);
}

.simple-page figure {
  margin: 46px 0;
}

.simple-page blockquote {
  margin-bottom: 46px;
}

.simple-page figure > img {
  margin-bottom: 10px;
}

.simple-page figure figcaption {
  font-size: 16px;
  line-height: 24px;
}

.simple-page iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 500px;
  max-height: calc(56.25vw - 30px);
  border: 0;
}

.simple-page picture {
  position: relative;
  display: block;
}

.simple-page img {
  position: relative;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.simple-page table {
  border-collapse: collapse;
  border: 1px solid var(--color-text);
  table-layout: fixed;
  width: 100%;
}

.simple-page table tr {
  border-bottom: 1px solid var(--color-text);
  margin: 0;
}

.simple-page table th {
  font-weight: 700;
  border-bottom: 1px solid var(--color-text);
}

.simple-page table th,
.simple-page table td {
  vertical-align: middle;
  text-align: left;
  padding: 10px 20px;
  height: 50px;
}

.simple-page table td {
  border-right: 1px solid var(--color-text);
}

.simple-page table td:first-child {
  width: 40%;
}

.simple-page table td a {
  white-space: normal;
  font-weight: 700;
}

.simple-page table td span {
  font-weight: 700;
}

/* media */
@media (max-width: 1560px) {
  .simple_section {
    margin-top: 60px;
  }
}

@media (max-width: 1199px) {
  .simple-page figure {
    margin: 30px 0;
  }

  .simple-page table th,
  .simple-page table td {
    padding: 5px 10px;
    height: 40px;
  }
}
/*end simple page*/

/*swiper*/
.swiper-entry,
.swiper-control-wrapper {
  position: relative;
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  opacity: 0;
}

.swiper-entry.overflow-visible .swiper-container {
  overflow: visible;
}

.swiper-container:not(.swiper-no-swiping) .swiper-wrapper {
  cursor: url(../img/drag.png) 16 9, ew-resize;
}

.swiper-button-lock + .swiper-button-lock + .swiper-container .swiper-wrapper,
.swiper-controls-hide
  .swiper-container:not(.swiper-no-swiping)
  .swiper-wrapper {
  cursor: default;
}

.swiper-controls-hide .swiper_controls {
  margin: 0 !important;
  padding: 0 !important;
}

.swiper-wrapper.swiper-wrapper-margin {
  margin-bottom: 40px;
}

.swiper-slide {
  background-size: cover;
  background-position: center center;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.arr_prev,
.arr_next {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  height: 38px;
  width: 38px;
  background: transparent;
  border: 0;
  z-index: 2;
  outline: none;
  color: transparent;
  border: 1px solid var(--color-red);
  border-radius: 100%;
  transition: var(--transition);
  backface-visibility: hidden;
}

.arr_prev i,
.arr_next i {
  display: inline-block;
  position: absolute;
  height: 24px;
  width: 24px;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  overflow: hidden;
}

.arr_prev i::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 2px;
  transition: var(--transition);
  backface-visibility: hidden;
}

.arr_next i::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-left: -2px;
  transition: var(--transition);
  backface-visibility: hidden;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: none;
}

.swiper-entry.hide-arrow .swiper-button-prev,
.swiper-entry.hide-arrow .swiper-button-next {
  display: none;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled i::before,
.swiper-button-next.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled i::before {
  border-color: var(--color-text);
}

.swiper-scrollbar-drag {
  background: var(--color-red);
  border-radius: 0;
  height: 2px;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.swiper-horizontal > .swiper-scrollbar {
  position: relative;
  margin-top: 30px;
  left: 0;
  height: 4px;
  background: #dfdfdf;
  border-radius: 100px;
  width: 100%;
  display: flex;
  align-items: center;
}

.swiper_controls {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  height: auto;
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateX(100%);
}

.swiper_controls.hidden {
  margin: 0 !important;
}

.custom-fraction-wrap {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.custom-fraction-wrap > * {
  font-size: 16px;
  line-height: 24px;
}

.custom-fraction-current:not(:empty):after {
  content: "/";
  font-size: inherit;
  color: inherit;
}

/* media */
@media (min-width: 992px) {
  .arr_prev:hover,
  .arr_next:hover,
  .arr_prev:hover i::before,
  .arr_next:hover i::before {
    border-color: var(--color-yellow);
  }
}

@media (max-width: 1699px) {
  .swiper_controls {
    transform: translateX(0%);
  }
}

@media (max-width: 991px) {
  .swiper_controls {
    position: relative;
    flex-direction: row;
    justify-content: center;
    margin: 0 0 40px;
    top: 0;
  }

  .arr_prev,
  .arr_next {
    width: 48px;
    height: 48px;
  }

  .arr_prev i::before,
  .arr_next i::before {
    width: 12px;
    height: 12px;
  }

  .custom-fraction-wrap {
    margin: 0 40px;
  }
}

@media (max-width: 575px) {
  .swiper-container {
    overflow: visible;
  }

  .swiper-horizontal > .swiper-scrollbar {
    margin-top: 20px;
  }
}
/*end swiper*/

/* footer */
footer {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
}

.footer_inner {
  padding: 130px 0 70px;
  background-color: var(--color-black);
  position: relative;
  z-index: 4;
}

.footer_row {
  --bs-gutter-y: 40px;
}

.footer_row .item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.footer_row .footer_logo {
  margin-bottom: 90px;
}

.footer_row .footer_logo > img {
  max-width: 282px;
}

.footer_row .copy {
  margin-bottom: 30px;
}

.footer_row .copy,
.footer_row .link {
  font-size: 14px;
  line-height: 21px;
  max-width: 188px;
  color: var(--color-white);
}

.footer_row .link {
  text-decoration: underline;
  text-decoration-color: transparent;
}

.footer_row .title {
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.footer_row .title.social_title {
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer_row .list {
  font-size: 0;
}

.footer_row .list > li {
  width: auto;
}

.footer_row .list > li:not(:last-child) {
  margin-bottom: 4px;
}

.footer_row .list a {
  font-size: 20px;
  line-height: 1.5;
}

.footer_row .social {
  margin-bottom: 54px;
}

.footer_row .title.form-title {
  margin-bottom: 24px;
  color: var(--color-white);
}

.newsletter {
  margin-bottom: 50px;
}

.newsletter .input {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  padding: 0 144px 0 20px;
}

.newsletter .input-placeholder {
  color: var(--color-white);
}

.newsletter .input-field-wrapper.focus .input-placeholder,
.newsletter .input-field-wrapper.value .input-placeholder {
  background-color: var(--color-black);
}

.newsletter .form_group {
  position: relative;
  font-size: 0;
  max-width: 372px;
}

.newsletter .form_group > * {
  display: inline-block;
  vertical-align: middle;
}

.newsletter .input-field-wrapper {
  width: 100%;
}

.newsletter .input-field-wrapper.value .input {
  background: inherit;
}

.newsletter .input-field-wrapper.focus:not(.invalid)::before {
  border-color: #ffffff;
}

.newsletter .form_group .btn {
  min-width: 132px;
  position: absolute;
  right: 0;
}

/* media */
@media (min-width: 992px) {
  .footer_links .links:hover,
  .footer_links_big .links:hover {
    color: var(--color-yellow);
  }

  .footer_row .link:hover {
    text-decoration-color: currentColor;
  }

  .footer_row .list a:hover {
    color: var(--color-yellow);
  }
}

@media (max-width: 1560px) {
  .footer_inner {
    padding: 80px 0 60px;
  }

  .footer_row .footer_logo {
    margin-bottom: 60px;
  }

  .newsletter .input {
    padding: 0 112px 0 20px;
  }

  .newsletter .form_group .btn {
    min-width: 110px;
  }
}

@media (max-width: 1199px) {
  .newsletter .input {
    padding: 0 130px 0 16px;
  }

  .form-title {
    margin-bottom: 12px;
  }

  footer .right_side {
    display: flex;
    flex-direction: column;
  }

  .newsletter {
    margin: 0 0 48px;
  }
}

@media (max-width: 991px) {
  .footer_row .footer_logo > img {
    max-width: 178px;
  }

  .footer_row .footer_logo {
    margin-bottom: 30px;
  }

  .footer_row .social {
    margin-bottom: 48px;
  }

  .footer_inner {
    padding: 90px 0;
  }

  .footer_row .title.form-title,
  .footer_row .title.social_title {
    margin-bottom: 12px;
  }
}

@media (max-width: 575px) {
  .newsletter .form_group {
    max-width: 100%;
  }
}
/* end footer */

/*social*/
.social {
  font-size: 0;
}

.social > li {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid rgba(205, 205, 205, 0.5);
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition);
  backface-visibility: hidden;
}

.social.type2 > li {
  border-color: rgba(0, 0, 0, 0.5);
}

.social > li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.social > li img,
.social > li svg {
  max-width: 80%;
  max-height: 80%;
}

.social > li:not(:last-child) {
  margin-right: 20px;
}

/*media*/
@media (min-width: 992px) {
  /*hover*/
  .social > li:hover {
    border-color: var(--color-yellow);
  }
  .social > li:hover path {
    fill: var(--color-yellow);
  }
}
/*end social*/

/*accordion*/
.accordion {
  position: relative;
  z-index: 1;
}

.accordion-title {
  position: relative;
  padding: 0 86px 26px 0;
  transition: var(--transition);
  backface-visibility: hidden;
  cursor: pointer;
  color: var(--color-black);
}

.accordion-title.active {
  padding-bottom: 14px;
  color: var(--color-red);
}

.accordion-item {
  border-bottom: 1px solid #dfdfdf;
}

.accordion-inner {
  display: none;
}

.accordion-title i {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-black);
  border-radius: 100%;
  transition: var(--transition);
  backface-visibility: hidden;
}

.accordion-title i::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  margin-top: -2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: var(--transition);
  backface-visibility: hidden;
}

.accordion-title.active i {
  border-color: var(--color-red);
}

.accordion-title.active i::after {
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-top: 2px;
  border-color: var(--color-red);
}

.accordion-item {
  margin: 0 0 22px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-inner {
  padding: 0 86px 34px 0;
}

.faq .faq_title {
  margin-bottom: 28px;
  max-width: 80%;
}

@media (min-width: 992px) {
  .accordion-title:hover {
    color: var(--color-red);
  }

  .accordion-title:hover i {
    border-color: var(--color-red);
  }

  .accordion-title:hover i::after {
    border-color: var(--color-red);
  }
}

@media (max-width: 1560px) {
  .faq .faq_title {
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  .faq::before {
    width: 120px;
    height: 120px;
    background-position: right top;
    left: auto;
    right: 0;
  }
  .faq::after {
    content: none;
  }
}

@media (max-width: 991px) {
  .accordion-inner {
    padding: 0 0 34px 0;
  }

  .accordion-title i {
    top: calc(50% - 13px);
    transform: translateY(-50%);
  }

  .accordion-title.active i {
    top: calc(50% - 4px);
  }

  .accordion-title.active {
    padding-bottom: 8px;
  }
}
/*end accordion */

/*AUTOCOMPLETE*/
.pac-container {
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pac-container .pac-item {
  margin: 0;
  padding: 0 8px;
  border-top: 0;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pac-container .pac-item:nth-child(1) {
  border-top: none;
}

.pac-icon-marker {
  display: none !important;
}

.pac-item-query {
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pac-container.pac-logo:after {
  content: none;
}
/*END AUTOCOMPLETE*/

/*404*/
.not-found {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 220px 0;
  margin: 0;
  position: relative;
}

.not-found:not(.thank_you)::before {
  content: "";
  width: 250px;
  height: 250px;
  background-image: url("../img/ellipse-not-1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.not-found:not(.thank_you)::after {
  content: "";
  width: 108px;
  height: 280px;
  background-image: url("../img/ellipse-not-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-40%);
}

.not-found.thank_you .content-block {
  max-width: 912px;
}

.not-found.thank_you .content-block::before {
  content: "";
  width: 198px;
  height: 186px;
  background-image: url("../img/lightning-thank-l.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-100%, 20%);
  z-index: -1;
}

.not-found.thank_you .content-block::after {
  content: "";
  width: 138px;
  height: 196px;
  background-image: url("../img/lightning-thank-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: -30px;
  top: 0;
  transform: translate(100%, -50%);
  z-index: -1;
}

.not-found .content-block {
  position: relative;
  max-width: 1036px;
  margin: 0 auto;
}

.thank_you .content-block::after {
  width: 14vw;
  max-width: 264px;
  height: 14vw;
  max-height: 264px;
  background-image: url("../img/thank-you.webp");
  background-position: right bottom;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}

.not-found .content-block > *:not(:last-child) {
  margin-bottom: 32px;
}

.not-found .content-block .text {
  margin-bottom: 52px;
}

.not-found .btn {
  min-width: 168px;
}

/*media*/
@media (max-width: 1560px) {
  .not-found {
    padding: 100px 0;
  }
}

@media (max-width: 1199px) {
  .thank_you .content-block::after {
    content: none;
  }

  .not-found.thank_you .content-block::before {
    content: none;
  }

  .not-found:not(.thank_you)::before {
    content: none;
  }

  .not-found.thank_you .content-block::after {
    width: 90px;
    height: 90px;
    right: 0;
    top: auto;
    bottom: 0;
    transform: translate(0%, 100%);
  }
}

@media (max-width: 991px) {
  .not-found .content-block .text {
    margin-bottom: 30px;
  }

  .not-found .title {
    font-size: 28px;
  }

  .not-found .content-block > *:not(:last-child) {
    margin-bottom: 30px;
  }

  .not-found:not(.thank_you)::after {
    width: 94px;
    height: 174px;
    background-image: url("../img/ellipse-not-3.svg");
    left: auto;
    right: 0;
    transform: translateY(50%);
  }
}
/*end 404*/

/* popular  */
.banner + .mt-140 {
  margin-top: 140px;
}

.popular {
  position: relative;
}

.popular.type-2 {
  margin-top: 180px;
}

.popular .inner {
  margin: 50px 0;
}

.content_box {
  max-width: 756px;
}

.content_box .btn {
  min-width: 250px;
}

.content_box .title {
  margin-bottom: 30px;
}

.content_box .text {
  margin-bottom: 40px;
}

.products_slider {
  max-width: 568px;
  position: relative;
}

.popular.type-2 .products_slider {
  max-width: 756px;
}

.popular.type-2 .products_slider .img_wrapp {
  padding-bottom: 70.99337748344371%;
}

.popular.type-2 .content_box {
  max-width: 668px;
  position: relative;
}

.popular.type-2 .content_box::after {
  content: "";
  width: 156px;
  height: 96px;
  background-image: url("../img/bird-about.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 30px;
  bottom: -26px;
  transform: translateY(100%);
  z-index: -1;
}

.popular.type-2 .content_box .btn {
  min-width: 342px;
}

.products_slider::before {
  content: "";
  width: 300px;
  height: 300px;
  background-image: url("../img/ellipse.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 18%;
  transform: translateY(-28%);
  z-index: -1;
}

.popular.type-2 .products_slider::before {
  right: auto;
  left: 10%;
}

.products_slider::after {
  content: "";
  width: 300px;
  height: 300px;
  background-image: url("../img/ellipse.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(10%, 10%);
  z-index: -1;
}

.popular.type-2 .products_slider::after {
  right: 10%;
  transform: translate(10%, 25%);
}

.products_slider .decor {
  width: 176px;
  height: 130px;
  background-image: url("../img/lightning-red.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(22%, -50%);
}

.popular.type-2 .products_slider .decor {
  transform: translate(22%, -100%);
}

/* media */
@media (max-width: 1699px) {
  .products_slider {
    padding-right: 50px;
  }

  .popular.type-2 .products_slider::after {
    right: 18%;
  }
}

@media (max-width: 1560px) {
  .banner + .mt-140 {
    margin-top: 90px;
  }

  .products_slider::before,
  .products_slider::after {
    width: 200px;
    height: 200px;
  }

  .products_slider::before {
    transform: translateY(-22%);
  }

  .products_slider::after {
    right: 40px;
    transform: translate(0%, 10%);
  }

  .products_slider .decor {
    width: 120px;
    height: 90px;
    transform: translate(2%, -10%);
  }

  .popular.type-2 .content_box::after {
    width: 120px;
    height: 90px;
  }
}

@media (max-width: 1199px) {
  .popular .inner {
    margin: 0;
  }

  .content_box .title {
    margin-bottom: 22px;
  }

  .products_slider::before,
  .products_slider::after {
    width: 140px;
    height: 140px;
  }

  .products_slider .decor {
    width: 90px;
    height: 70px;
    transform: translate(4%, -10%);
  }

  .popular.type-2 .content_box::after {
    width: 80px;
    height: 50px;
    bottom: -38px;
    right: 36px;
  }

  .popular.type-2 {
    margin-top: 80px;
  }
}

@media (max-width: 991px) {
  .popular .inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .products_slider {
    margin: 0 auto 18px;
    padding-right: 0;
  }

  .products_slider::before {
    content: none;
  }

  .popular.type-2 .products_slider .decor {
    display: none;
  }

  .products_slider::after {
    width: 46vw;
    height: 46vw;
    max-width: 192px;
    max-height: 192px;
    right: 0;
    transform: translate(50%, 0%);
  }

  .popular.type-2 .products_slider::after {
    right: 0;
    transform: translate(50%, 50%);
    width: 170px;
    height: 170px;
  }

  .products_slider .decor {
    width: 78px;
    height: 78px;
    background-image: url("../img/lightning-red2.svg");
    top: 0;
    left: 0;
    right: auto;
    transform: translate(-70%, 0%);
  }

  .banner + .mt-140 {
    margin-top: 40px;
  }

  .popular.type-2 .products_slider .img_wrapp {
    padding-bottom: 50.54644808743169%;
  }
}

@media (max-width: 575px) {
  .products_slider {
    max-width: 80%;
  }

  .products_slider .swiper-container {
    overflow: hidden;
  }

  .popular.type-2 .content_box .btn {
    min-width: 100%;
  }
}
/* end popular */

/* img mask */
.bg_yellow-light {
  background: rgba(242, 169, 0, 0.1);
}
/* end img mask */

/* left right */
.left_right-section::before {
  content: "";
  width: 158px;
  height: 150px;
  background-image: url("../img/lightning-red3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.left_right-section.type-2::before {
  content: none;
}

.left_right-section::after {
  content: "";
  width: 214px;
  height: 232px;
  background-image: url("../img/ellipse2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.left_right-section.type-2::after {
  width: 320px;
  height: 320px;
  background-image: url("../img/elipse-story-1.svg");
}

.left_right.offset2 {
  padding: 72px 0;
}

.left_right.type-2 {
  padding: 100px 0;
}

.left_right .left_side {
  max-width: 686px;
  height: 100%;
  position: relative;
  z-index: 3;
}

.left_right.type-2 .left_side {
  max-width: 754px;
  height: auto;
}

.left_right.type-2 .left_side::after {
  content: "";
  width: 282px;
  height: 242px;
  background-image: url("../img/elipse-story-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 24%;
  bottom: 0;
  transform: translateY(50%);
  z-index: -1;
}

.left_right.type-2 .img_wrapp {
  height: auto;
  padding-bottom: 70.99337748344371%;
}

.left_right .img_wrapp {
  padding-bottom: 112.809%;
  height: 100%;
}

.left_right .content_box {
  position: relative;
  margin-left: auto;
  padding: 30px 0;
}

.left_right .content_box::after {
  content: "";
  width: 156px;
  height: 96px;
  background-image: url("../img/bird-red.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: -1;
}

.left_right.type-2 .content_box::after {
  content: none;
}

.left_right .text {
  margin-bottom: 56px;
}

.left_right .content_box .btn {
  min-width: 268px;
}

/* media */
@media (max-width: 1560px) {
  .left_right-section::before {
    width: 80px;
    height: 80px;
    left: 0;
  }

  .left_right-section::after {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 1199px) {
  .left_right .title {
    margin-bottom: 18px;
  }

  .left_right .text {
    margin-bottom: 30px;
  }

  .left_right .content_box .btn {
    min-width: 250px;
  }
}

@media (max-width: 991px) {
  .left_right-section .left_right {
    padding: 100px 0;
  }

  .left_right.offset2 {
    padding: 90px 0;
  }

  .left_right .left_side {
    max-width: 100%;
    margin: 0;
  }

  .left_right .img_wrapp {
    height: auto;
    padding-bottom: 68.306%;
  }

  .left_right-section::before {
    width: 146px;
    height: 146px;
    background-image: url("../img/ellipse.svg");
    left: -36px;
    top: 22px;
    transform: translateY(0%);
  }

  .left_right-section::after {
    content: none;
  }

  .left_right .content_box::after {
    background-image: url("../img/bird-red2.svg");
    width: 92px;
    height: 56px;
    transform: translateY(100%);
  }

  .left_right .content_box {
    padding: 30px 0 0;
  }

  .left_right.type-2 .left_side::after {
    content: none;
  }

  .left_right-section.type-2::before {
    content: "";
  }
}
/* end left right */

/* news */
.news_categories {
  position: relative;
  margin-bottom: 80px;
}

.news_categories::after {
  width: 14vw;
  max-width: 262px;
  height: 14vw;
  max-height: 262px;
  background-image: url("../img/categories-decor.webp");
  background-position: right center;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}

.categories_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.categories_box .right_side {
  flex: 0 0 372px;
  margin-left: 12px;
}

.categories_box .left_side {
  display: flex;
  align-items: center;
}

.categories_box .left_side .title {
  margin-right: 36px;
}

.categories_wr {
  line-height: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: -24px;
}

.categories_wr > * {
  margin-bottom: 24px;
}

.categories_wr > *:not(:last-child) {
  margin-right: 38px;
}

.search_form {
  position: relative;
  max-width: 372px;
  margin-left: auto;
}

.search_form .search-button,
.search_form .close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  transition: var(--transition);
  backface-visibility: hidden;
}

.search_form .close-button,
.search_form.active .search-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.search_form.active .close-button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search_form #search {
  padding: 0 60px 0 24px;
  border-color: var(--color-text);
}

/* media */
@media (min-width: 992px) {
  .search_form .search-button:hover path {
    stroke: var(--color-black);
  }

  .search_form .close-button:hover path {
    fill: var(--color-black);
  }
}

@media (max-width: 1560px) {
  .categories_box .right_side {
    flex: 0 0 310px;
  }

  .categories_wr > *:not(:last-child) {
    margin-right: 16px;
  }
}

@media (max-width: 991px) {
  .categories_box .left_side {
    flex-direction: column;
    align-items: flex-start;
  }

  .categories_box .left_side .title {
    margin: 0 0 16px 0;
  }

  .news_categories::after {
    width: 88px;
    height: 88px;
    background-image: url("../img/categories-decor-2.webp");
    transform: translateY(-92%);
  }

  .search_form #search {
    padding: 0 52px 0 16px;
  }

  .search_form .search-button,
  .search_form .close-button {
    right: 16px;
  }
}

@media (max-width: 767px) {
  .categories_box {
    flex-direction: column;
  }

  .categories_box > * {
    flex: 0 0 100%;
    width: 100%;
  }

  .search_form {
    max-width: 100%;
    margin-top: 10px;
  }

  .categories_wr {
    margin-bottom: 0;
  }

  .categories_wr > * {
    margin-bottom: 20px;
  }

  .categories_wr > *:not(:last-child) {
    margin-right: 10px;
  }

  .categories_box .right_side {
    margin-left: 0;
    flex: 0;
  }
}

@media (max-width: 575px) {
  .categories_wr > * {
    width: 100%;
  }

  .categories_wr > *:not(:last-child) {
    margin-right: 0;
  }
}
/* end news */

/* posts wrapp */
.post_s::before {
  content: "";
  width: 212px;
  height: 426px;
  background-image: url("../img/posts-ellipse-big.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 8%;
  z-index: -1;
}

.post_s.empty_post::before {
  content: none;
}

.post_s::after {
  content: "";
  width: 190px;
  height: 282px;
  background-image: url("../img/posts-ellipse-sm.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 45%;
  z-index: -1;
}

.post_s.empty_post::after {
  content: "";
  width: 134px;
  height: 302px;
  background-image: url("../img/ellipse-newsroom.svg");
  top: auto;
  bottom: 0;
  transform: translateY(50%);
}

.posts_decor {
  margin-bottom: 50px;
}

.posts_title {
  position: relative;
  padding: 0 30px;
  display: inline-block;
  vertical-align: middle;
}

.posts_title::before {
  content: "";
  width: 24px;
  height: 48px;
  background-image: url("../img/lightning-post.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  margin-top: 2px;
}

.posts_title::after {
  content: "";
  width: 24px;
  height: 48px;
  background-image: url("../img/lightning-post.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  margin-top: 2px;
}

.posts_row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.posts_row .item {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.posts_row .item::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #dfdfdf;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.posts_row .top_side {
  position: relative;
}

.posts_row .tags {
  font-size: 0;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  pointer-events: none;
}

.posts_row .tags > span {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
  padding: 6px 20px 6px 20px;
  display: inline-block;
  vertical-align: middle;
}

.posts_row .tags > span:not(:last-child) {
  margin-right: 10px;
}

.posts_row .img_wrapp {
  padding-bottom: 49.41373534338358%;
  z-index: 2;
}

.posts_row .bottom_side {
  background-color: var(--color-white);
  padding: 40px 40px 46px;
}

.posts_row .bottom_side .date {
  color: var(--color-yellow);
  font-weight: 700;
}

.posts_row .bottom_side > * {
  margin-bottom: 6px;
}

.posts_row .bottom_side .title {
  margin-bottom: 12px;
  color: var(--color-black);
}

/* media */
@media (min-width: 992px) {
  .posts_row .bottom_side a:not(.btn):hover {
    color: var(--color-yellow);
  }
}

@media (max-width: 1199px) {
  .posts_decor {
    margin-bottom: 40px;
  }

  .posts_title {
    padding: 0 16px;
  }

  .posts_title::before,
  .posts_title::after {
    width: 14px;
    height: 28px;
  }

  .posts_row .tags > span {
    font-size: 14px;
    line-height: 1.3;
    padding: 6px 10px;
  }

  .posts_row .bottom_side {
    padding: 16px 16px 24px;
  }

  .posts_row .bottom_side .title {
    margin-bottom: 12px;
  }

  .posts_row {
    --bs-gutter-y: 24px;
  }

  .posts_row .bottom_side > *,
  .posts_row .bottom_side .title {
    margin-bottom: 8px;
  }

  .posts_row .tags {
    top: 10px;
    left: 10px;
  }
}

@media (max-width: 991px) {
  .post_s::before,
  .post_s::after {
    content: none;
  }

  .post_s.empty_post::after {
    width: 90px;
    height: 204px;
  }
}

@media (max-width: 575px) {
  .posts_row .img_wrapp {
    padding-bottom: 50.54644808743169%;
  }

  .posts_row .bottom_side .date {
    font-size: 14px;
  }
}
/* end posts wrapp */

/* page title */
.page_title {
  margin-bottom: 40px;
}

/* media */
@media (max-width: 1560px) {
  .page_title {
    margin-bottom: 30px;
  }
}
/* end page title */

/* post */
.post {
  position: relative;
}

.back_btn {
  display: inline-block;
  position: absolute;
  left: 24px;
  top: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text);
  padding-left: 22px;
}

.back_btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-text);
  border-left: 2px solid var(--color-text);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: var(--transition);
  backface-visibility: hidden;
}

.post_banner {
  margin-bottom: 52px;
}

.post_banner .banner-align {
  height: 250px;
  padding: 0 0 38.91050583657588% 0;
}

.post_desc {
  max-width: 912px;
  margin: 0 auto 26px;
}

.post_desc .tags_wr {
  font-size: 0;
  margin-bottom: 28px;
}

.post_desc .tags_wr > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 6px 0;
  font-weight: 700;
}

.post_desc .tags_wr .date {
  color: var(--color-yellow);
}

.post_desc .tags_wr .tag {
  color: var(--color-text);
}

.post_desc .tags_wr > li:last-child {
  margin-right: 0;
}

/* media */
@media (min-width: 992px) {
  .back_btn:hover {
    color: var(--color-yellow);
  }

  .back_btn:hover:before {
    border-color: var(--color-yellow);
  }
}

@media (max-width: 1560px) {
  .back_btn {
    left: 12px;
  }

  .post_banner {
    max-width: 960px;
    margin: 0 auto 52px;
  }

  .post_desc .tags_wr {
    margin-bottom: 16px;
  }
}

@media (max-width: 1199px) {
  .back_btn {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 22px !important;
    margin-bottom: 22px;
  }

  .post_banner {
    margin: 0;
  }
}

@media (max-width: 575px) {
  .post_banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .post_banner .mask {
    border-radius: 0;
  }
}
/* end post */

/* custom pagination */
.custom-pagination .arr.disabled {
  pointer-events: none;
  border-color: var(--color-text);
}

.custom-pagination .arr.disabled i::before {
  border-color: var(--color-text);
}

.custom-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
}

.custom-pagination li:not(:last-child) {
  margin-right: 38px;
}

.custom-pagination li > a,
.custom-pagination li.dott {
  font-size: 16px;
  line-height: 24px;
}

.custom-pagination li {
  position: relative;
  line-height: 1;
}

.custom-pagination li.active {
  color: var(--color-red);
}

.custom-pagination .arr {
  width: 48px;
  height: 48px;
}

/* media */
@media (min-width: 992px) {
  .custom-pagination li:not(.active) a:hover {
    color: var(--color-yellow);
  }
}

@media (max-width: 1560px) {
  .custom-pagination ul {
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .custom-pagination ul {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .custom-pagination li:nth-child(3),
  .custom-pagination li:nth-child(4),
  .custom-pagination li:nth-child(5),
  .custom-pagination li:nth-child(7) {
    display: none;
  }

  .custom-pagination li > a,
  .custom-pagination li.dott {
    font-size: 22px;
    line-height: 34px;
  }

  .custom-pagination li.active a {
    color: var(--color-yellow);
  }

  .custom-pagination li.active::after {
    content: none;
  }

  .custom-pagination li:not(:last-child) {
    margin-right: 30px;
  }
}
/* end custom pagination */

/* custom banner */
.custom_banner {
  padding: 114px 0;
  height: 700px;
}

.custom_banner.type2 {
  padding: 100px 0;
  height: 460px;
}

.custom_banner::before {
  content: "";
  width: 586px;
  height: 100%;
  background-image: url("../img/hand_green.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  bottom: -48%;
  z-index: 1;
  pointer-events: none;
}

.custom_banner.type2::before {
  content: none;
}

.custom_banner .bg {
  background-size: contain !important;
  background-position: left top !important;
  background-repeat: repeat !important;
  background-blend-mode: multiply;
}

.custom_banner .inner {
  max-width: 1398px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.custom_banner.type2 .inner {
  max-width: 892px;
}

.custom_banner .inner .pre_title {
  margin-bottom: 16px;
}

.custom_banner .inner .title {
  margin-bottom: 44px;
}

.custom_banner .inner .single_btn {
  min-width: 238px;
}

/* media */
@media (max-width: 1560px) {
  .custom_banner {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .custom_banner,
  .custom_banner.type2 {
    height: auto;
  }

  .custom_banner::before {
    content: none;
  }

  .custom_banner .inner .title {
    margin-bottom: 36px;
  }
}
/* end custom banner */

/* about block */
.banner + .about_section {
  margin-top: 160px;
}

.about_section::before {
  content: "";
  width: 190px;
  height: 282px;
  background-image: url("../img/ellipse-gift.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: -160px;
  right: 0;
  z-index: -1;
}

.about_inner {
  position: relative;
}

.about_inner::before {
  content: "";
  width: 156px;
  height: 96px;
  background-image: url("../img/bird-about.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20%, -100%);
  z-index: -1;
}

.about.type-2 .about_inner::before {
  content: none;
}

.about.type-2 .about_inner .right_side {
  position: relative;
}

.about.type-2 .about_inner .right_side::before {
  content: "";
  width: 156px;
  height: 96px;
  background-image: url("../img/bird-about.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  bottom: -40px;
  right: 40px;
  transform: translateY(100%);
  z-index: -1;
}

.about_inner::after {
  width: 11.146vw;
  max-width: 214px;
  height: 11.146vw;
  max-height: 214px;
  background-image: url("../img/about-decor2.webp");
  background-position: center;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  z-index: -2;
}

.about_row {
  --bs-gutter-x: 100px;
  --bs-gutter-y: 28px;
}

.about_img {
  position: relative;
  max-width: 754px;
}

.about_img::before {
  content: "";
  width: 128px;
  height: 110px;
  background-image: url("../img/lightning-about-1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  bottom: 24%;
  left: 0;
  transform: translateX(-100%);
  z-index: -1;
}

.about_img::after {
  content: "";
  width: 184px;
  height: 200px;
  background-image: url("../img/lightning-about-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 100%);
  z-index: -1;
}

.about_img .img_wrapp {
  padding-bottom: 70.99337748344371%;
}

.about .top_side {
  max-width: 688px;
  margin-bottom: 30px;
}

.about .top_side .title {
  margin-bottom: 14px;
}

.benefits {
  --bs-gutter-y: 30px;
}

.benefits .item {
  height: 100%;
  max-width: 300px;
}

.benefits .icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.benefits .title {
  margin-bottom: 4px;
  color: var(--color-black);
}

/* media */
@media (max-width: 1560px) {
  .banner + .about_section {
    margin-top: 100px;
  }

  .about_section::before {
    width: 140px;
    height: 208px;
  }

  .about.type-2 .about_inner .right_side::before {
    width: 100px;
    height: 62px;
  }

  .about_section::before {
    top: -100px;
  }

  .about_row {
    --bs-gutter-x: 60px;
  }

  .bg-white-main {
    padding: 150px 0;
  }

  .about .top_side {
    margin-bottom: 28px;
  }

  .benefits .icon {
    margin-bottom: 8px;
  }

  .about_inner::before {
    transform: translate(20%, -50%);
  }

  .about_img::before {
    width: 80px;
    height: 90px;
  }

  .about_img::after {
    width: 120px;
    height: 140px;
  }
}

@media (max-width: 1199px) {
  .banner + .about_section {
    margin-top: 80px;
  }

  .about_section::before {
    top: -80px;
  }

  .about_row {
    --bs-gutter-x: 1.5rem;
  }

  .bg-white-main {
    padding: 90px 0;
    position: relative;
  }

  .bg-white-main::before {
    border-radius: 0;
  }

  .benefits .item {
    max-width: 100%;
  }

  .about_inner::before {
    width: 90px;
    height: 56px;
  }

  .about.type-2 .about_inner::before {
    content: none;
  }
}

@media (max-width: 991px) {
  .about.type-2 .about_inner .right_side::before {
    content: none;
  }
  .about_inner::before {
    right: auto;
    top: 20px;
    left: 32px;
    transform: translate(0%, -100%);
  }

  .about_inner::after {
    content: "";
    width: 56px;
    height: 80px;
    background-image: url("../img/lightning-about-mobile.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(100%);
    z-index: -1;
  }

  .about_img::before,
  .about_img::after {
    content: none;
  }

  .about .top_side .title {
    margin-bottom: 8px;
  }

  .about_section::before {
    content: none;
  }

  .about.type-2 .about_inner::before {
    content: "";
    width: 52px;
    height: 48px;
    background-image: url("../img/lightning-gift.svg");
    top: 20px;
    transform: translate(0%, -100%);
    right: 0;
    left: auto;
  }
}
/* end about block */

/* mission */
.banner-align.mission {
  height: 452px;
}

.mission::before {
  content: "";
  width: 234px;
  height: 470px;
  background-image: url("../img/lightning-miss-1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 130px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.mission::after {
  content: "";
  width: 234px;
  height: 470px;
  background-image: url("../img/lightning-miss-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 130px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.mission_content {
  position: relative;
  text-align: center;
  max-width: 912px;
  margin: 0 auto;
}

.mission.type-2 .mission_content {
  max-width: 1226px;
}

.mission_content .title {
  margin-bottom: 36px;
}

.mission.type-2 .title {
  margin-bottom: 54px;
}

.mission.type-2 .btn_box {
  font-size: 0;
}

.mission.type-2 .btn_box > .btn:first-child {
  margin-right: 10px;
}

.mission.type-2 .btn_box .btn {
  min-width: 250px;
}

/* media */
@media (max-width: 1560px) {
  .mission::before {
    left: 30px;
  }

  .mission::after {
    right: 30px;
  }

  .mission.type-2 .title {
    margin-bottom: 40px;
  }
}

@media (max-width: 1199px) {
  .banner-align.mission {
    height: 400px;
  }
  .mission_content .title {
    margin-bottom: 20px;
    font-size: 34px;
  }
  .mission_content .desc {
    text-transform: unset;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
  }

  .mission.type-2 .btn_box {
    display: inline-flex;
    flex-direction: column;
  }

  .mission.type-2 .btn_box > .btn:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .mission.type-2 .btn_box .btn {
    min-width: 200px;
  }
}

@media (max-width: 991px) {
  .mission::after {
    content: none;
  }

  .mission::before {
    width: 210px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .mission.type-2 .title {
    font-size: 22px;
  }
}

/* end mission */

/* media */
@media (max-width: 1799px) {
  .left_content::before {
    left: 12px;
    width: 140px;
  }
}

@media (max-width: 1560px) {
  .left_content::before {
    bottom: 100px;
  }

  .left_content {
    padding: 100px 0;
  }
}

@media (max-width: 1199px) {
  .left_content::before,
  .left_content::after {
    content: none;
  }
}

@media (max-width: 991px) {
  .left_content-row {
    --bs-gutter-y: 46px;
  }

  .left_content-row .img_side {
    margin: 0 auto;
  }

  .left_content {
    padding: 60px 0 100px;
  }
}
/* end left content */

/* contact */
.contact {
  position: relative;
}

.contact:not(.type2)::before {
  content: "";
  width: 260px;
  height: 426px;
  background-image: url("../img/contact-ell-big.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  left: 0;
  z-index: -1;
}

.contact.type2::before {
  content: "";
  width: 210px;
  height: 210px;
  background-image: url("../img/elipse-inquire.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.contact:not(.type2)::after {
  content: "";
  width: 158px;
  height: 300px;
  background-image: url("../img/contact-ell-sm.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: -1;
}

.contact_row {
  --bs-gutter-y: 72px;
}

.contact .left_side {
  max-width: 416px;
  position: relative;
}

.contact:not(.type2) .left_side::after {
  content: "";
  width: 192px;
  height: 192px;
  background-image: url("../img/contact-lightning.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 100%);
  z-index: -1;
}

.contact .left_side .title {
  margin-bottom: 40px;
  color: var(--color-red);
}

.contact .left_side .links {
  margin-bottom: 80px;
}

.contact .left_side .links > li:not(:last-child) {
  margin-bottom: 22px;
}

.contact .left_side .links a {
  overflow-wrap: break-word;
}

.contact_form {
  max-width: 754px;
  position: relative;
}

.contact:not(.type2) .contact_form::after {
  content: "";
  width: 156px;
  height: 95px;
  background-image: url("../img/bird-about.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 20%;
  bottom: -40px;
  transform: translateY(100%);
  z-index: -1;
}

.contact_form .form_title {
  text-align: center;
  display: none;
  color: var(--color-red);
  margin-bottom: 30px;
}

.contact_form button {
  min-width: 208px;
}

.contact.type2 .left_side {
  position: relative;
  height: 100%;
}

/* media */
@media (min-width: 992px) {
  .contact .left_side .links a:hover {
    color: var(--color-yellow);
  }
}

@media (max-width: 1560px) {
  .contact .left_side .links {
    margin-bottom: 60px;
  }
  .contact .left_side .title {
    margin-bottom: 30px;
  }

  .contact:not(.type2)::before {
    width: 200px;
    height: 300px;
  }

  .contact:not(.type2)::after {
    width: 120px;
    height: 200px;
  }

  .contact:not(.type2) .contact_form::after {
    bottom: 0;
  }
}

@media (max-width: 1199px) {
  .contact .left_side .links > li:not(:last-child) {
    margin-bottom: 10px;
  }

  .contact .left_side .links {
    margin-bottom: 38px;
  }

  .contact.type2::after {
    content: none;
  }

  .contact:not(.type2) .left_side::after {
    width: 140px;
    height: 140px;
    transform: translate(0%, 100%);
  }

  .contact:not(.type2) .contact_form::after {
    content: none;
  }
}

@media (max-width: 991px) {
  .contact:not(.type2) .left_side::after {
    width: 90px;
    height: 56px;
    background-image: url("../img/contact-bird.svg");
    right: 0;
    bottom: auto;
    top: 0;
    transform: translate(0%, -20%);
  }
  .contact_form .form_title {
    display: block;
  }

  .contact .left_side .title {
    display: none;
  }

  .contact.type2 .left_side::after {
    width: 170px;
    height: 170px;
    background-image: url("../img/inquire-3.webp");
    background-position: top right;
    right: 0;
    bottom: auto;
    top: 0;
    transform: translate(0%, -50%);
  }

  .contact.type2::before {
    width: 56px;
    height: 192px;
    background-image: url("../img/elipse-inquire-mobile.svg");
    bottom: 0;
    left: auto;
    right: 0;
    transform: translateY(-80%);
  }

  .contact:not(.type2) .left_side .title {
    display: none;
  }

  .contact:not(.type2)::before {
    content: "";
    width: 178px;
    height: 256px;
    background-image: url("../img/contact-ell-mobile.svg");
    transform: translateY(50%);
    left: auto;
    right: 0;
  }

  .contact:not(.type2)::after {
    content: none;
  }
}
/* end contact */

/* map */
.map_top {
  max-width: 598px;
  margin: 70px auto 70px;
}

.map-popup-text {
  display: none;
}

.map-popup.active .map-popup-text {
  display: block;
}

#searchTextField::placeholder {
  font-size: 0;
}

.map_top .input {
  padding-right: 58px;
}

.map_top .search-btn {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

#map-locations {
  height: 800px;
}

.info-map-box {
  padding: 0;
  position: relative;
}

.map-locations-wrapper .info-map-box {
  cursor: pointer;
  padding: 22px 12px 50px;
}

.info-map-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.info-map-box-title {
  margin-bottom: 10px;
}

.info-map-box-text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 26px;
  font-family: "Libre Franklin", sans-serif;
}

.hours {
  column-count: 2;
  margin-bottom: -4px;
}

.hours > li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-bottom: 4px;
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.si-close-button {
  background: transparent;
  width: 60px;
  height: 60px;
  color: var(--color-black);
  font-size: 40px;
  line-height: 40px;
  opacity: 1;
  transition: var(--transition);
  backface-visibility: hidden;
}

.si-has-border .si-content-wrapper {
  border: 0;
  box-shadow: none;
  border-radius: 4px;
}

.si-content-wrapper {
  padding: 60px 56px;
  max-width: 566px;
  border-radius: 26px !important;
}

.si-close-button:hover {
  opacity: 1 !important;
}

.info-map-box .btn {
  min-width: 152px;
  margin-top: 36px;
}

.si-has-border .si-pointer-bg-top {
  border-width: 40px !important;
}

.si-shadow-frame {
  box-shadow: none !important;
}

/*media*/
@media (min-width: 992px) {
  .si-close-button:hover {
    color: var(--color-yellow);
  }
}

@media (max-width: 1560px) {
  #map-locations {
    height: 500px;
  }

  .si-content-wrapper {
    padding: 40px 30px;
  }

  .info-map-box-text {
    margin-bottom: 10px;
  }

  .map_top {
    margin: 40px auto 40px;
  }
}

@media (max-width: 1199px) {
  .map_top .search-btn {
    right: 16px;
  }
}

@media (max-width: 991px) {
  #map-locations {
    height: 400px;
  }
}

@media (max-width: 575px) {
  .hours {
    column-count: 1;
  }
}
/* end map */

/* rewards */
.rewards_benefits {
  position: relative;
  padding: 70px 0;
  background: rgba(242, 169, 0, 0.1);
}

.rewards_row {
  --bs-gutter-y: 38px;
}

.rewards_top {
  position: relative;
  margin-bottom: 60px;
}

.rewards_top::before {
  content: "";
  width: 158px;
  height: 150px;
  background-image: url("../img/bird-red.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: -80px;
  bottom: 0;
  transform: translateX(-100%);
  z-index: -1;
}

.rewards_top .item {
  height: 100%;
  max-width: 354px;
  margin: 0 auto;
}

.rewards_top .icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
}

.rewards_top .title {
  color: var(--color-black);
  margin-bottom: 8px;
}

.rewards_bottom .text {
  max-width: 1226px;
  margin: 0 auto;
}

/* media */
@media (max-width: 1560px) {
  .rewards_top::before {
    left: 0;
  }
}

@media (max-width: 1199px) {
  .rewards_benefits::after,
  .rewards_top::before {
    content: none;
  }

  .rewards_benefits {
    padding: 60px 0;
  }

  .rewards_top {
    margin-bottom: 50px;
  }
}
/* end rewards */

/* promotions */
.promotions {
  position: relative;
}

.promotions::before {
  content: "";
  width: 212px;
  height: 426px;
  background-image: url("../img/ellipse-prom-1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.promotions::after {
  content: "";
  width: 118px;
  height: 282px;
  background-image: url("../img/ellipse-prom-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 14%;
  z-index: -1;
}

.promotions_title {
  margin-bottom: 50px;
}

.promotions_row {
  position: relative;
}

.promotions_row::before {
  content: "";
  width: 140px;
  height: 164px;
  background-image: url("../img/lightning-prom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 52%;
  left: -100px;
  transform: translateX(-100%);
  z-index: -1;
}

.promotions_row::after {
  content: "";
  width: 240px;
  height: 148px;
  background-image: url("../img/bird-prom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -100%);
  z-index: -1;
}

.promotions_row .item {
  height: 100%;
  overflow: hidden;
}

.promotions_row .img_wrapp {
  padding-bottom: 60.301%;
}

.promotions_row .bottom_side {
  background: #ffffff;
  backdrop-filter: blur(5px);
  padding: 28px 40px 40px;
}

.promotions_row .text.date {
  color: var(--color-yellow);
  margin-bottom: 6px;
}

.promotions_row .text {
  margin-bottom: 24px;
}

.promotions_row .btn {
  min-width: 176px;
}

/* media */
@media (min-width: 992px) {
  .promotions_row .title a:hover {
    color: var(--color-yellow);
  }
}

@media (max-width: 1560px) {
  .promotions_title {
    margin-bottom: 40px;
  }

  .promotions_row .bottom_side {
    padding: 16px 16px 26px;
  }

  .promotions_row .date,
  .promotions_row .title {
    margin-bottom: 10px;
  }

  .promotions_row .text {
    margin-bottom: 20px;
  }

  .promotions_row::before {
    left: 0;
  }

  .promotions_row::after {
    width: 150px;
    height: 90px;
  }
}

@media (max-width: 1199px) {
  .promotions::after,
  .promotions_row::before,
  .promotions_row::after {
    content: none;
  }

  .promotions::before {
    width: 92px;
    height: 56px;
    background-image: url("../img/bird-red2.svg");
    left: auto;
    right: 24px;
    transform: translateY(-100%);
  }
}

@media (max-width: 991px) {
  .promotions_title {
    margin-bottom: 26px;
  }

  .promotions_row {
    --bs-gutter-y: 30px;
  }
}
/* end promotions */

/*concept*/
.concept {
  padding: 100px 0 0;
  position: relative;
}

.concept::after {
  content: "";
  width: 45vw;
  height: 258px;
  background-image: url("../img/concept_orange.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  display: block;
  margin-top: -100px;
}

.concept_row {
  --bs-gutter-y: 50px;
}

.concept_row .left_side {
  max-width: 598px;
  padding-bottom: 120px;
}

.concept_row .left_side .pre_title {
  margin-bottom: 22px;
}

.concept_row .left_side .title {
  margin-bottom: 28px;
}

.concept_row .left_side .text {
  margin-bottom: 38px;
}

.concept_row .left_side .btn {
  min-width: 268px;
}

.concept_slider {
  max-width: 100%;
}

.concept_slider .img_wrapp {
  padding-bottom: 100%;
}

.concept_slider .swiper_controls {
  justify-content: flex-end;
  margin-bottom: 10%;
  transform: translate(100%, 0%);
}

/*media*/
@media (min-width: 1811px) {
  .concept_slider .swiper_controls {
    top: auto;
    bottom: 10%;
    transform: translate(100%, 0%);
  }
}

@media (min-width: 1200px) and (max-width: 1810px) {
  .concept_slider .swiper_controls {
    transform: translate(0%, 0%);
  }
}

@media (max-width: 1560px) {
  .concept {
    padding: 60px 0 0;
  }
}

@media (max-width: 991px) {
  .concept {
    padding: 44px 0 0;
  }

  .concept::after {
    content: none;
  }

  .concept_row .left_side {
    padding-bottom: 0;
  }

  .concept_slider .swiper_controls {
    justify-content: center;
    margin-bottom: 0;
    transform: translate(0%, 0%);
  }

  .concept_slider {
    margin: 0;
  }

  .concept_row .left_side .title {
    margin-bottom: 22px;
  }

  .concept_row .left_side .text {
    margin-bottom: 30px;
  }
}
/*end concept*/

/*team*/
.team {
  padding: 130px 0 80px;
}

.team .bottom_side {
  max-width: 984px;
  margin: 0 auto;
}

.team .top_side {
  max-width: 1100px;
  margin: 0 auto 50px;
  position: relative;
}

.team .top_side::after {
  content: "";
  width: 248px;
  height: 226px;
  background-image: url("../img/pepper.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 24px;
  bottom: 0;
  transform: translate(100%, 50%);
  pointer-events: none;
}

.team .top_side .title {
  margin-bottom: 26px;
}

.team_row {
  --bs-gutter-y: 60px;
}

.team_row .item {
  height: 100%;
  max-width: 306px;
  margin: 0 auto;
}

.team_row .img_wrapp {
  margin-bottom: 28px;
}

/*media*/
@media (max-width: 1560px) {
  .team .top_side::after {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 1199px) {
  .team .top_side::after {
    content: none;
  }

  .team {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .team_row .img_wrapp {
    margin-bottom: 24px;
  }
}
/*end team*/

/*models*/
.models .models_title {
  margin-bottom: 44px;
  max-width: 80%;
}

.models_slider .swiper_controls {
  position: relative;
  margin-top: 54px;
}

.models_slider .swiper-container {
  overflow: visible;
}

.models_slider .swiper-wrapper {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.models_slider .item {
  height: 600px;
  overflow: hidden;
}

.models_slider .custom_banner::before {
  content: none;
}

.models_slider .inner-content {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 778px;
  padding: 20px 54px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0% 100%);
  backdrop-filter: blur(10px);
}

.models_slider .inner-content .inner {
  max-width: 474px;
}

.models_slider .inner-content .title {
  margin-bottom: 24px;
}

.models_slider .inner-content .text {
  margin-bottom: 34px;
}

.models_slider .inner-content .btn {
  min-width: 210px;
}

.models_slider .img_box {
  position: relative;
  height: 100%;
}

.models_slider .img_box::after {
  content: "";
  width: 314px;
  height: 100%;
  background-image: url("../img/lightning-models.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 835px;
  top: 0;
  transform: translateX(-100%);
  z-index: 5;
}

.models_slider .img_box .img_wrapp {
  height: 100%;
  padding: 0;
}

/*media*/
@media (max-width: 1560px) {
  .models_slider .inner-content {
    padding: 20px 30px;
  }

  .models_slider .inner-content .title {
    margin-bottom: 14px;
  }

  .models_slider .inner-content .text {
    margin-bottom: 20px;
  }

  .models_slider .swiper_controls {
    margin-top: 30px;
  }
}

@media (max-width: 1199px) {
  .models .models_title {
    margin-bottom: 28px;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .models_slider .swiper_controls {
    margin: 20px 0 0;
  }

  .models_slider .item {
    height: auto;
  }

  .models_slider .inner-content {
    position: relative;
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    padding: 40px 20px;
  }

  .models_slider .img_box .img_wrapp {
    height: auto;
    padding-bottom: 74.375%;
  }

  .models_slider .img_box::after {
    content: none;
  }

  .models_slider .inner-content .btn {
    min-width: 100%;
  }

  .models_slider .inner-content .inner {
    max-width: 100%;
  }
}
/*end models*/

/*menus*/

.menus_categories {
  position: relative;
  z-index: 5;
  padding: 34px 0;
  background-color: var(--color-red);
  margin: 0;
}

.categories-menu .category-title {
  display: none;
}

.categories-list {
  font-size: 0;
  margin-bottom: -12px;
  text-align: center;
}

.menus_categories .categories-list {
  text-align: left;
}

.categories-list li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 68px;
  margin-bottom: 12px;
}

.categories-list li:last-child {
  margin-right: 0;
}

.categories-list a {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-white);
}

.categories_row {
  --bs-gutter-y: 34px;
}

.categories {
  font-size: 0;
  margin-bottom: -12px;
}

.categories > li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 80px;
  margin-bottom: 12px;
}

.categories > li:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.categories > li a {
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;
}

#sandwiches::before {
  content: "";
  width: 104px;
  height: 282px;
  background-image: url("../img/elipse-sandwiches.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

#salads::before {
  content: "";
  width: 112px;
  height: 180px;
  background-image: url("../img/lightning-salad.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 24px;
  bottom: 0;
  transform: translateY(-100%);
  z-index: -1;
}

#chicken::before {
  content: "";
  width: 142px;
  height: 282px;
  background-image: url("../img/ellipse-chicken.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(-20%);
  z-index: -1;
}

#tacos::before {
  content: "";
  width: 112px;
  height: 180px;
  background-image: url("../img/lightning-tacos.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 24px;
  bottom: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

#sides::before {
  content: "";
  width: 124px;
  height: 192px;
  background-image: url("../img/lightning-sides.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(-20%);
  z-index: -1;
}

#desserts::before {
  content: "";
  width: 202px;
  height: 202px;
  background-image: url("../img/ellipse-desserts.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 32px;
  top: 50%;
  z-index: -1;
}

.product_box {
  display: flex;
  margin: 0 -15px -30px;
}

.product_box > * {
  margin: 0 15px;
  margin-bottom: 30px;
}

.product_box .aside {
  max-width: 100%;
  width: 22.724%;
}

.product_box .main {
  width: 100%;
}

.product_row {
  --bs-gutter-x: 34px;
  --bs-gutter-y: 34px;
}

.product_row .item {
  height: 100%;
  margin: 0 auto;
  border: 1px solid #dfdfdf;
}

.product_row .item .img_side {
  margin-bottom: 30px;
}

.product_row .item .img_wrapp {
  padding-bottom: 60.10362694300518%;
}

.product_row .bottom_side {
  padding: 0 20px 52px;
  max-width: 486px;
}

.product_row .item .title {
  margin-bottom: 12px;
}

.menus_decor {
  position: relative;
}

.drinks_wr {
  --bs-gutter-y: 26px;
}

.drinks .links_wr {
  font-size: 0;
}

.drinks .links_wr.type-2 {
  max-width: 598px;
}

.drinks .links_wr > li a {
  color: var(--color-black);
}

.drinks .links_wr > li:not(:last-child) {
  margin-bottom: 18px;
}

.drinks .img_box {
  position: relative;
  max-width: 756px;
  margin-left: auto;
}

.drinks .img_inner {
  padding-bottom: 52.98013245033113%;
}

.drinks.type-2 .img_box {
  max-width: 598px;
}

.drinks.type-2 .img_inner {
  padding-bottom: 66.88963210702341%;
}

.product_title.mobile {
  display: none;
}

.block-change-image .img_inner .img_side {
  opacity: 0;
  -webkit-transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.block-change-image .img_inner .img_side.default-img,
.block-change-image .img_inner .img_side.active {
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}

/*media*/
@media (min-width: 992px) {
  .product_row .item .title a:hover,
  .drinks .links_wr > li a:hover {
    color: var(--color-red);
  }

  .categories-list a:hover {
    color: var(--color-yellow);
  }
}

@media (max-width: 1560px) {
  .categories-list li {
    margin-right: 30px;
  }

  #desserts::before {
    left: 24px;
  }
}

@media (max-width: 1199px) {
  .product_row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 24px;
  }

  .product_row .item .title {
    margin-bottom: 8px;
  }

  .drinks .img_side::after {
    content: none;
  }
}

@media (max-width: 991px) {
  #sandwiches::before,
  #salads::before,
  #chicken::before,
  #tacos::before,
  #sides::before,
  #desserts::before {
    content: none;
  }

  .drinks .ul-two-column {
    column-count: 1;
  }

  .menus_categories {
    padding: 12px 0;
    text-align: center;
  }

  .menus_categories .categories-list {
    text-align: center;
  }

  .categories-menu .category-title {
    text-align: center;
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-white);
  }

  .categories-menu .category-title span {
    position: relative;
    padding-right: 38px;
  }

  .categories-menu .category-title span::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    position: absolute;
    right: 2px;
    top: 50%;
    margin-top: -2px;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition);
    backface-visibility: hidden;
  }

  .categories-menu .category-title.active span::after {
    transform: translateY(-50%) rotate(-135deg);
    margin-top: 3px;
  }

  .categories-list {
    background-color: var(--color-red);
    padding: 20px 24px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    z-index: 1;
    transition: 0.25s;
    transform-origin: top center;
    transform: scaleY(0);
    z-index: 5;
    margin-bottom: -20px;
  }

  .categories-list li {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .categories-list li:last-child {
    margin-bottom: 0;
  }

  .categories-menu.active .categories-list {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }

  .menus_decor::before {
    content: none;
  }

  .categories > li {
    margin-right: 32px;
  }

  .categories {
    display: flex;
    overflow-y: auto;
  }

  .drinks .links_wr > li:not(:last-child) {
    margin-bottom: 8px;
  }

  .banner-align.type-menu {
    height: auto;
  }

  .custom_banner.type-menu .title {
    margin-bottom: 16px;
  }

  .product_row .bottom_side {
    padding: 0 20px 26px;
  }

  .product_row .item .img_side {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .product_box {
    flex-direction: column;
  }

  .product_box .aside {
    width: auto;
  }

  .product_box .main {
    width: auto;
  }

  .product_box .aside.mobile {
    display: none;
  }

  .product_title.mobile {
    display: block;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .product_title {
    text-align: center;
    font-size: 34px;
  }

  .product_row .item .title {
    font-size: 22px;
  }

  .product_row .bottom_side {
    text-align: center;
  }

  .product_row .item .img_wrapp {
    padding-bottom: 50.54644808743169%;
  }
}
/*end menus*/

/* new banner */
.new_banner {
  position: relative;
  backdrop-filter: blur(5px);
  padding: 160px 0;
}

.new_banner .content {
  position: relative;
  max-width: 912px;
  margin: 0 auto;
}

.new_banner .content::before {
  width: 10vw;
  max-width: 170px;
  height: 10vw;
  max-height: 170px;
  background-image: url("../img/new-1.webp");
  background-position: center;
  left: 0;
  bottom: 0;
  transform: translate(-100%, 50%);
}

.new_banner .content::after {
  width: 8vw;
  max-width: 126px;
  height: 8vw;
  max-height: 126px;
  background-image: url("../img/new-2.webp");
  background-position: center;
  right: 0;
  top: 0;
  transform: translate(100%, -50%);
}

.new_banner .content > * {
  margin-bottom: 28px;
}

.new_banner .content .desc {
  color: rgba(49, 47, 46, 0.7);
}

/* media */
@media (max-width: 1560px) {
  .new_banner {
    padding: 120px 0;
  }
}

@media (max-width: 991px) {
  .new_banner {
    padding: 90px 0;
  }

  .new_banner .content::before {
    width: 80px;
    height: 80px;
    left: auto;
    right: 0;
    bottom: -90px;
    transform: translate(0%, 0%);
  }

  .new_banner .content::after {
    width: 80px;
    height: 80px;
    right: auto;
    left: 0;
    top: -90px;
    transform: translate(0%, 0%);
  }
}
/* end new banner */

/* restaurant */
.restaurant {
  position: relative;
}

.restaurant::before {
  content: "";
  width: 180px;
  height: 426px;
  background-image: url("../img/ellipse-restaurant.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: -1;
}

.restaurant_inner {
  max-width: 912px;
  margin: 0 auto;
}

.restaurant_inner .title {
  margin-bottom: 20px;
}

.restaurant_inner .text {
  margin-bottom: 50px;
}

.restaurant_inner .bottom_side {
  position: relative;
  max-width: 596px;
  margin: 0 auto;
}

.restaurant_inner .bottom_side::before {
  content: "";
  width: 92px;
  height: 100px;
  background-image: url("../img/lightning-restaurant-1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: -100px;
  bottom: 0;
  transform: translate(-100%, 50%);
  z-index: -1;
}

.restaurant_inner .bottom_side::after {
  content: "";
  width: 170px;
  height: 130px;
  background-image: url("../img/lightning-restaurant-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: -190px;
  top: 0;
  transform: translate(100%, 0%);
  z-index: -1;
}

.restaurant_inner .bottom_side .row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 32px;
}

.restaurant_inner .bottom_side .item {
  max-width: 282px;
}

/* media */
@media (max-width: 1560px) {
  .restaurant_inner .bottom_side::after {
    right: -100px;
  }
}

@media (max-width: 1199px) {
  .restaurant_inner .bottom_side::before {
    width: 36px;
    height: 70px;
    left: 0;
  }

  .restaurant_inner .bottom_side::after {
    width: 48px;
    height: 90px;
    right: 0;
  }
}

@media (max-width: 991px) {
  .restaurant::before {
    content: none;
  }

  .restaurant_inner .title {
    margin-bottom: 16px;
  }

  .restaurant_inner .bottom_side .row {
    --bs-gutter-y: 20px;
  }
}

@media (max-width: 767px) {
  .restaurant_inner .bottom_side .item {
    margin: 0 auto;
  }

  .restaurant_inner .bottom_side::before {
    bottom: auto;
    top: 0;
    left: -24px;
    transform: translate(0%, 0%);
  }

  .restaurant_inner .bottom_side::after {
    right: -24px;
    top: auto;
    bottom: 0;
    transform: translate(0%, 50%);
  }
}
/* restaurant */

/* Spicy Bowl */
.spicy_top {
  max-width: 912px;
  margin: 0 auto 58px;
}
.spicy_top .title {
  margin-bottom: 30px;
}

.spicy_bowl {
  position: relative;
  min-height: 626px;
  padding: 70px 0;
  display: flex;
  align-items: center;
}

.spicy_bowl .item {
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.spicy_bowl div[class^="col"]:nth-child(even) .item {
  margin-left: auto;
}

.spicy_bowl .item .img_wrapp {
  padding-bottom: 66.52173913043478%;
  margin-bottom: 40px;
}

.spicy_bowl .item .title {
  margin-bottom: 20px;
}

.spicy_bowl .row {
  --bs-gutter-y: 40px;
}

.spicy_bowl .decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 40vw;
  height: 100%;
  background: url("../img/patern.png") center/cover no-repeat, var(--color-red);
  z-index: 1;
}

.spicy_bowl .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%);
}

.spicy_bowl .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;
}

.spicy_signature {
  margin-top: 30px;
}

.spicy_signature ul {
  display: inline-block;
}

/* media */
@media (max-width: 1560px) {
  .spicy_bowl {
    min-height: 500px;
    padding: 40px 0;
  }
  .spicy_bowl .decor::before {
    clip-path: polygon(0 0, 100% 0, 29% 100%, 0% 100%);
  }

  .spicy_bowl .item {
    max-width: 380px;
  }

  .spicy_bowl .item .img_wrapp {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .spicy_top {
    margin: 0 auto 40px;
  }
  .spicy_top .title {
    margin-bottom: 26px;
  }

  .spicy_bowl .item {
    max-width: 290px;
  }

  .spicy_bowl .item .img_wrapp {
    margin-bottom: 20px;
  }

  .spicy_bowl .item .title {
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .spicy_bowl .decor {
    display: none;
  }

  .spicy_bowl {
    background: url("../img/patern.png") center/cover no-repeat,
      var(--color-red) !important;
  }

  .spicy_bowl .item {
    max-width: 290px;
    width: 70vw;
  }

  .spicy_bowl .item .img_wrapp {
    max-width: 212px;
    height: 184px;
    padding-bottom: 0;
  }

  .spicy_bowl .item::after {
    content: "";
    width: 72px;
    height: 136px;
    background-image: url("../img/lightning-spicy.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    z-index: -1;
  }

  .spicy_bowl div[class^="col"]:nth-child(even) .item {
    text-align: right;
  }

  .spicy_bowl div[class^="col"]:nth-child(even) .item,
  .spicy_bowl div[class^="col"]:nth-child(even) .img_wrapp {
    margin-left: auto;
  }

  .spicy_bowl div[class^="col"]:nth-child(even) .item::after {
    left: 0;
    right: auto;
    transform: translate(-100%, -50%);
  }
}

/* banner type white */
.banner-align.type-white {
  height: 670px;
}

.banner-align.type-white::before {
  content: "";
  width: 120px;
  height: 282px;
  background-image: url("../img/ellipse-bg-white-1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.banner-align.type-white::after {
  content: "";
  width: 284px;
  height: 284px;
  background-image: url("../img/ellipse-bg-white-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-20%);
  z-index: -1;
}

.banner-align.type-white .inner {
  position: relative;
  max-width: 912px;
  margin: 0 auto;
}

.banner-align.type-white .inner::after {
  content: "";
  width: 174px;
  height: 130px;
  background-image: url("../img/lightning-bg-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-100%, 100%);
  z-index: -1;
}

.banner-align.type-white .inner .title {
  margin-bottom: 46px;
}

@media (max-width: 1560px) {
  .banner-align.type-white {
    height: 500px;
  }
}

@media (max-width: 1199px) {
  .banner-align.type-white .inner .title {
    margin-bottom: 34px;
  }

  .banner-align.type-white::before,
  .banner-align.type-white::after,
  .banner-align.type-white .inner::after {
    content: none;
  }

  .banner-align.type-white {
    height: auto;
    padding: 70px 0;
  }
}
