body {
  font-family: 'Prompt';
  font-weight: 400;
  color: #6A7075;
  width: 100%;
  background-color: #f4f4fA;
}

body::-webkit-scrollbar {
  width: 18px;
  height: 18px;
}

/* body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
} */

body::-webkit-scrollbar-thumb {
  background-color: #165BA9;
  outline: 1px solid slategrey;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h2 {
  font-weight: 600;
  font-size: 31px;
  line-height: 45px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.4s ease;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

section {
  overflow: hidden;
}

.desktop-hide {
  display: none;
}

.hidden-anim {
  opacity: 0;
}


.container {
  max-width: 1180px;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  z-index: 100;
}

.header.sticky {
  background: white;
}

.header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  transition: 0.3s;
}

.sticky .header_content {
  height: 90px;
}

.menu-header ul {
  display: flex;
  align-items: center;
}

.menu-header ul li {
  padding: 0 40px;
  border-right: 1px solid rgba(22, 91, 169, 0.2);
}

.menu-header ul li:nth-child(1) {
  border-left: 1px solid rgba(22, 91, 169, 0.2);
}

.menu-header ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  transition: 0.3s;
}

.menu-header ul li a:hover {
  color: #165BA9;
}

.lang_w_btn {
  display: flex;
  align-items: center;
  gap: 45px;
}

.lang-switcher ul {
  display: flex;
  align-items: center;
}

.lang-switcher ul li {
  line-height: 13px;
}

.lang-item-pl {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #6A7075;
}

.lang-switcher ul li.current-lang {
  color: #165BA9;
  font-weight: 600;
}

.btn_main {
  height: 62px;
  background: #165BA9;
  border: 1px solid #165BA9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px 0 40px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  transform: skewX(-9deg);
  transition: 0.3s;
}

.btn_main span {
  transform: skewX(9deg);
}

.btn_main:hover {
  border: 1px solid #165BA9;
  color: #165BA9;
  background-color: white;
}

.top-section {
  background-image: url(/wp-content/uploads/2023/05/topbanner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 57vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-section__content {
  margin-bottom: 80px;
  position: relative;
}

.slogan {
  font-weight: 400;
  font-size: 80px;
  line-height: 121px;
  text-transform: uppercase;
  color: #6A7075;

  scale: 1.2;
  transition: 1.5s;
  transform: translateY(20px) perspective(700px) rotateX(35deg);
}

.slogan.show-elements {
  transform: translateY(0px) perspective(700px) rotateX(0deg);
  opacity: 1;
  scale: 1;
}

.slogan-subtitle {
  font-weight: 300;
  font-size: 30px;
  line-height: 45px;
  color: #6A7075;
  display: block;

  scale: 1.2;
  transition: 1.5s;
  transform: translateY(20px) perspective(700px) rotateX(35deg);
}

.slogan-subtitle.show-elements {
  transition-delay: 0.4s;
  transform: translateY(0px) perspective(700px) rotateX(0deg);
  opacity: 1;
  scale: 1;
}

.scroll_down {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: -160px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  opacity: 0.5;
  transition: 0.8s;
}

.scroll_down:hover {
  opacity: 0.8;
  transform: translate(0, 5px);
}

.parts {
  margin: 65px 0 90px;
}

.title_parts {
  scale: 1.2;
  transition: 1.5s;
  transform: translateY(20px) perspective(700px) rotateX(35deg);
}

.title_parts.show-elements {
  transition-delay: 0.8s;
  transform: translateY(0px) perspective(700px) rotateX(0deg);
  opacity: 1;
  scale: 1;
}

.parts_items {
  display: flex;
}

.parts_item {

  flex-basis: 14.2%;

  padding: 0 15px;
  transition: 0.3s;
}

.parts_item_anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 165px;
  scale: 1.2;
  transition: 1s;
  transform: translateX(-20px) perspective(700px) rotateY(35deg);
}

.parts_item_anim.show-elements {
  transition-delay: 1s;
  transform: translateX(0px) perspective(700px) rotateY(0deg);
  opacity: 1;
  scale: 1;
}

.parts_item:nth-child(2) .parts_item_anim.show-elements {
  transition-delay: 1.2s;
}

.parts_item:nth-child(3) .parts_item_anim.show-elements {
  transition-delay: 1.4s;
}

.parts_item:nth-child(4) .parts_item_anim.show-elements {
  transition-delay: 1.6s;
}

.parts_item:nth-child(5) .parts_item_anim.show-elements {
  transition-delay: 1.8s;
}

.parts_item:nth-child(6) .parts_item_anim.show-elements {
  transition-delay: 2s;
}

.parts_item:nth-child(7) .parts_item_anim.show-elements {
  transition-delay: 2.2s;
}

.parts_item:hover {
  background-color: #165BA9;
}

.parts_item span {
  text-align: center;
  font-size: 14px;
  flex-basis: 32%;
  text-transform: uppercase;
}

.parts_item_img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 68%;
}

.parts_item:hover span {
  color: white;
}

.parts_item:hover img {
  filter: grayscale(100%) brightness(1000%);
}

.text_image_item {
  display: flex;
  align-items: center;
}

.text_image_item:nth-child(even) {
  flex-direction: row-reverse;
}

.text_image_txt p {
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
  color: #6A7075;
  margin-bottom: 20px;
}

.btn_main_t_i {
  max-width: 180px;
  padding: 0;
}

.text_image_txt {
  width: 50%;
  padding-left: calc((100vw - 1180px) / 2 + 15px);
  padding-right: 80px;
  transition: 1s;
  transform: translate(0, 60px);
}

.text_image_item:nth-child(even) .text_image_txt {
  padding-right: calc((100vw - 1180px) / 2 + 15px);
  padding-left: 80px;
}

.text_image_img {
  width: 50%;
}

.text_image_img img {
  width: 100%;
}

.middle_form {
  margin: 90px 0 75px;
  position: relative;
  background: #212149;
  padding: 90px 0;
  overflow: hidden;
  isolation: isolate;
}

.middle_form video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.middle_form:after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: black;
  opacity: 0.5;
  z-index: -1;
}

/* .middle_form:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1250px;
  height: 786px;
  background: radial-gradient(50% 50% at 50% 50%, #D9D9D9 0%, rgba(217, 217, 217, 0) 100%);
  opacity: 0.2;
  pointer-events: none;
} */

.middle_form_b_img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.middle_form_content {
  display: flex;
  align-items: center;
}

.middle_form_text {
  padding-right: 84px;
  flex-basis: 43%;
}

.middle_form_title {
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 36px;
}

.middle_form_item {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 27px;
}

.middle_form_item:last-child {
  margin-bottom: 0;
}

.middle_form_item span {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.middle_form_num_btn {
  border: 10px solid #165BA9;
  flex-basis: 57%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 60px 0;
}

.middle_form_num_btn .phone {
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  color: #FFFFFF;
}

.toForm {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #FFFFFF;
  transform: skewX(-9deg);
  height: 62px;
  width: 100%;
  max-width: 520px;
  transition: 0.3s;
}

.toForm:hover {
  border: 2px solid white;
  background-color: white;
}

.toForm span {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  transform: skewX(0);
  transition: 0.3s;
}

.toForm:hover span {
  color: #165BA9;
}

.text_image_bottom .text_image_item {
  flex-direction: row-reverse;
}

.text_image_bottom .text_image_item:nth-child(even) {
  flex-direction: row;
}

.text_image_bottom .text_image_txt {
  padding-right: calc((100vw - 1180px) / 2 + 15px);
  padding-left: 80px;
}

.text_image_bottom .text_image_item:nth-child(even) .text_image_txt {
  padding-left: calc((100vw - 1180px) / 2 + 15px);
  padding-right: 40px;
}

.text_image_bottom {
  padding-bottom: 90px;
}

.text_image_txt.show-elements {
  transition-delay: 0.4s;
  transform: translate(0, 0);
  opacity: 1;
  scale: 1;
}

.delivery {
  background-color: white;
  padding: 90px 0;
}

.delivery_pretitle {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: #165BA9;
  display: block;
  margin-bottom: 50px;
}

.delivery_content {
  display: flex;
}

.delivery_content_side {
  flex-basis: 50%;
  transition: 1s;
}

.delivery_content_left {
  transform: translate(-50px, 0);
}

.delivery_content_left.show-elements {
  transition-delay: 0.3s;
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.delivery_content_right {
  transform: translate(50px, 0);
}

.delivery_content_right.show-elements {
  transition-delay: 0.3s;
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.delivery_content_left span {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 400;
  font-size: 86px;
  line-height: 45px;
  text-transform: uppercase;
  color: #165BA9;
  margin-bottom: 35px;
}

.delivery_content_left span:last-child {
  margin-bottom: 0;
}

.delivery_content_right {
  align-self: flex-end;
}

.delivery_content_right p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #165BA9;
  padding-left: 80px;
}

.contacts {
  margin: 90px 0;
}

.contacts_wrapper {
  display: flex;
}

.contacts_text {
  flex-basis: 44%;
}

.contacts_form {
  flex-basis: 56%;
}

.contacts_text h2 {
  margin-bottom: 40px;
}

.contact_block_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #6A7075;
  display: block;
  margin-bottom: 10px;
}

.contact_block {
  margin-bottom: 40px;
}

.contact_block:last-child {
  margin-bottom: 0;
}

.contact_block p,
.contact_block a {
  font-weight: 300;
  font-size: 26px;
  line-height: 39px;
  color: #6A7075;
}

.contacts_form .wpcf7 {
  width: 100%;
  max-width: 660px;
  background: #165BA9;
  padding: 60px 76px 68px 76px;
  position: relative;
  overflow: hidden;
}

.contacts_form .wpcf7:after {
  content: '';
  position: absolute;
  right: -50px;
  top: -53px;
  display: block;
  background-color: #f4f4fA;
  width: 120px;
  height: 100px;
  rotate: 41deg;
}

.form_title p {
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.contacts_form .wpcf7-form-control-wrap input {
  background-color: transparent;
  border: none;
  padding: 20px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  border-bottom: 1px solid #c9c9c9;
  border-radius: 0;
}

.contacts_form .wpcf7-form-control-wrap input:focus-visible {
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid white;
}

.contacts_form .wpcf7-form-control-wrap input:focus {
  border: unset;
  outline: unset;
  background-color: transparent;
  box-shadow: unset;
  border-bottom: 1px solid white;
}

.contacts_form .wpcf7-form-control-wrap input::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
}

.contacts_form .wpcf7-submit {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  height: 62px;
  width: 100%;
  background: transparent;
  /* border: 2px solid #FFFFFF; */
  border-radius: 0;
  outline: none;
  box-shadow: none;
  border: unset;
  transition: 0.3s;
  position: relative;
  z-index: 10;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: white !important;
  color: white;
}

.wpcf7-not-valid-tip {
  color: white;
}

.wpcf7 form.invalid .wpcf7-response-output {
  color: white;
}

.contacts_form .wpcf7-submit:hover {
  color: #165BA9;
}

.submit_btn {
  margin-top: 50px;
  position: relative;
}

.submit_btn::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 2px solid #FFFFFF;
  pointer-events: none;
  transform: skewX(-9deg);
  transition: 0.3s;
}

.submit_btn:hover:before {
  background-color: white;
}

.wpcf7-spinner {
  display: none;
}

.footer {
  background-color: white;
  padding-top: 90px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-contacts-wrapper {
  text-align: end;
}

.footer_titles {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #6A7075;
  display: block;
  margin-bottom: 30px;
}

.footer-menu-side ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
  row-gap: 20px;
}

.footer-menu-side ul li a {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #6A7075;
  transition: 0.3s;
}

.footer-menu-side ul li a:hover {
  color: #165BA9;
}

.footer-bottom {
  border-top: 1px solid #165BA9;
  padding: 40px 0;

}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-contacts-item p,
.footer-contacts-item a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6A7075;
}

.footer-contacts-item:not(:last-child) {
  margin-bottom: 20px;
}

.footer-contacts-item a.footer_phone {
  font-weight: 600;
}

.footer-bottom-content span a {
  color: #165BA9;
}

.mobile-menu {
  display: none;
}

.lang-switcher-mobile {
  display: none;
}

.burger-block {
  display: none;
}





@media (max-width: 992px) {

  .menu-header {
    display: none;
  }

  .mobile-menu .menu-header {
    display: block;
  }

  .lang_w_btn {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    translate: 0 -100%;
    transition: 0.4s ease;
    flex-direction: column;
    gap: 30px;
  }

  .active-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .mobile-menu .menu-header ul {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu .menu-header ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .mobile-menu .menu-header ul li a {
    font-size: 27px;
    color: #008B95;
  }

  .lang-switcher-mobile {
    margin-top: 50px;
  }

  .burger-block {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 31px;
    height: 23px;
    z-index: 101;
    margin-right: 20px;
  }

  .burger-line {
    width: 100%;
    border-top: 3px solid #165BA9;
    border-radius: 15px;
    transition: 0.4s ease;
  }

  .burger-line::after,
  .burger-line::before {
    content: '';
    position: absolute;
    width: 100%;
    border-top: 3px solid #165BA9;
    transition: 0.4s ease;
  }

  .burger-line::after {
    bottom: 0;
    transition: 0.4s ease;
  }

  .burger-line::before {
    top: 0;
    transition: 0.4s ease;
  }

  .active-burger .burger-line::after {
    opacity: 0;
    transition: 0.4s ease;
  }

  .active-burger .burger-line::before {
    top: -2px;
    rotate: -90deg;
    transition: 0.4s ease;
  }

  .active-burger .burger-line {
    rotate: 45deg;
    transition: 0.4s ease;
  }

  .menu-header ul li:nth-child(1) {
    border-left: none;
  }

  .menu-header ul li {
    border-right: none;
  }

  .parts_items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .delivery_content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .top-section__content {
    margin-bottom: 0;
    margin-top: 115px;
  }

  .scroll_down {
    bottom: -135px;
    width: 60px;
    height: 60px;
  }

  .top-section {
    align-items: flex-start;
    height: 44vh
  }

  .parts_item {
    flex-basis: 50%;
  }

  h2 {
    text-align: center;
  }

  .text_image_item {
    flex-direction: column;
    margin-bottom: 65px;
  }

  .text_image_item:last-child {
    margin-bottom: 0;
  }

  .text_image_txt {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    padding: 0 15px;
  }

  .btn_main {
    margin: 0 auto;
  }

  .text_image_img {
    width: 100%;
    height: 330px;
    overflow: hidden;
    margin-top: 20px;
  }

  .text_image_txt p {
    margin-bottom: 20px;
  }

  .text_image_item:nth-child(even) {
    flex-direction: column;
  }

  .middle_form {
    margin: 60px 0;
    padding: 60px 0;
  }

  .middle_form_content {
    flex-direction: column;
    align-items: flex-start;
  }

  .middle_form_num_btn {
    width: 100%;
    margin-top: 50px;
  }

  .middle_form_text {
    padding-right: 0;
  }

  .text_image_bottom .text_image_item {
    flex-direction: column;
  }

  .text_image_bottom .text_image_txt {
    padding: 0 15px;
  }

  .text_image_bottom .text_image_item:nth-child(even) {
    flex-direction: column;
  }

  .text_image_bottom {
    padding-bottom: 60px;
  }

  .delivery {
    padding: 60px 0;
  }

  .delivery_content_left span {
    font-size: 58px;
    margin-bottom: 13px;
  }

  .delivery_content_side span svg {
    width: 45px;
  }

  .contacts_wrapper {
    flex-direction: column;
  }

  .contacts_text {
    margin-bottom: 30px;
    width: 100%;
  }

  .contacts_form .wpcf7 {
    max-width: 100%;
  }

  .contacts {
    margin: 60px 0;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-menu-side ul {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }

  .footer-contacts-wrapper {
    text-align: center;
  }

  .footer_titles {
    margin-bottom: 15px;
  }

  .text_image_item:nth-child(even) .text_image_txt {
    padding: 0 15px;
  }

  .text_image_bottom .text_image_item:nth-child(even) .text_image_txt {
    padding: 0 15px;
  }
}

@media (max-width: 500px) {
  .slogan {
    font-size: 40px;
    line-height: 55px;
  }

  .slogan-subtitle {
    font-size: 17px;
    line-height: 27px;
  }

  h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .parts {
    margin: 35px 0;
  }

  .text_image_item {
    margin-bottom: 30px;
  }

  .middle_form {
    margin: 30px 0;
    margin-top: 0;
    padding: 45px 0;
  }

  .text_image_img {
    height: 310px;
  }

  .middle_form_item span {
    font-size: 16px;
  }

  .middle_form_num_btn .phone {
    font-size: 32px;
  }

  .toForm {
    width: 78%;
  }

  .delivery_content_left span {
    font-size: 35px;
    margin-bottom: 0px;
  }

  .delivery_content_right p {
    padding-left: 0;
  }

  .text_image_bottom {
    padding-bottom: 30px;
  }

  .delivery {
    padding: 45px 0 30px;
  }

  .contacts {
    margin: 30px 0 0;
  }

  .contact_block p,
  .contact_block a {
    font-size: 20px;
  }

  .contacts_form .wpcf7 {
    padding: 38px;
  }

  .contacts_form .wpcf7:after {
    right: -75px;
    top: -57px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
  }

  .footer {
    padding-top: 30px;
  }

  .footer-bottom {
    padding: 30px 0;
  }

  .footer-top {
    margin-bottom: 30px;
  }
}