/*
Theme Name: CustomTheme
Theme URI: https://wordpress.org/themes/CustomTheme/
Author: the Rost team
Author URI: http://rost.com.ua/
Description: CustomTheme brings your site to life with immersive featured images and subtle animations. Our default theme works great in many languages, for any abilities, and on any device.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: CustomTheme
Tags: custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
@font-face {
  font-family: "ProximaNova";
  src: url("./assets/fonts/ProximaNova-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("./assets/fonts/ProximaNova-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("./assets/fonts/ProximaNova-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("./assets/fonts/ProximaNova-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "ProximaNova";
  background-color: #282b38;
  color: #fff;
  font-size: 16px;
}

section {
  margin-bottom: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  line-height: 1.26;
  font-size: 56px;
}

h2 {
  line-height: 1.245;
  font-size: 36px;
}

h3 {
  line-height: 1.245;
  font-size: 22px;
}

h4 {
  font-size: 20px;
  line-height: 1.355;
}

h5 {
  font-size: 18px;
  line-height: 1.245;
}

h6 {
  font-size: 17px;
  line-height: 1.26;
}

select {
  display: none;
}

label {
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
  letter-spacing: 0.1px;
}

input,
textarea {
  background-color: #fff;
  color: #282b38;
  font-size: 15px;
  border-radius: 10px;
  padding: 17px 20px;
  border: none;
  transition: 0.3s;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}
input:hover,
textarea:hover {
  outline: none;
  box-shadow: 0px 0px 4px 2px rgba(229, 141, 53, 0.6666666667);
}
input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0px 0px 4px 2px rgba(137, 194, 73, 0.6666666667);
}
input:active,
textarea:active {
  outline: none;
  box-shadow: 0px 0px 5px 3px #89c249;
}
input[type=file],
textarea[type=file] {
  display: none;
}
input[type=file] + label,
textarea[type=file] + label {
  text-align: center;
  padding: 12px 12px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23fff' stroke-width='2' stroke-dasharray='3px%2c 6px' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: calc(100% - 1px) calc(100% - 1px);
  background-position: center;
  margin-bottom: 2px;
}
input[type=file] + label:hover,
textarea[type=file] + label:hover {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%2389C249' stroke-width='2' stroke-dasharray='3px%2c 6px' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
input::placeholder,
textarea::placeholder {
  color: #cbcbcb;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label:hover {
  color: #e58d35;
}
input[type=checkbox] + label:hover::before {
  border-color: #e58d35;
}

input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #282b38;
  border-radius: 4px;
}

input[type=checkbox]:checked + label::before {
  content: "";
  background: url(./assets/img/checked.svg) center no-repeat #fff;
}

textarea {
  min-height: 55px;
  height: 70px;
  max-height: 160px;
}

.bg-accent {
  position: relative;
  padding: 55px 0 60px;
}
.bg-accent .container {
  max-width: 1364px;
  padding-left: 100px;
  padding-right: 100px;
}
.bg-accent::before {
  content: "";
  position: absolute;
  inset: 0 50px;
  background-color: #363a4d;
  max-width: 1820px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  z-index: -1;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.btn {
  font-size: 15px;
  border-radius: 90px;
  background-color: #e58d35;
  color: #fff;
  border: 1px solid #e58d35;
  padding: 12px 27px;
}
.btn:hover, .btn:focus, .btn:active {
  background-color: transparent;
  color: #fff;
  border-color: #89c249;
}
.btn:focus, .btn:active {
  box-shadow: none;
  border-color: #89c249;
}
.btn.btn-s {
  padding: 12px 18px;
}
.btn.btn-l {
  font-size: 16px;
  padding: 19px 21px 19px 33px;
}
.btn.btn-l img {
  margin-left: 48px;
}
.btn.btn-secondary {
  background-color: transparent;
  border: 1px solid #e58d35;
}
.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary:focus {
  background-color: #e58d35;
}

.hamburger-box {
  width: 27px;
  height: 25px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
  width: 27px;
  height: 2px;
}

.hamburger--vortex .hamburger-inner {
  top: 13px;
  bottom: 2px;
}

.template-title {
  text-align: center;
  position: relative;
  padding-bottom: 70px;
}
.template-title h2 {
  text-transform: uppercase;
  margin-bottom: 7px;
}
.template-title h2::after {
  content: "";
  position: absolute;
  bottom: 54px;
  left: 50%;
  width: 85px;
  height: 2px;
  background-color: #e58d35;
  transform: translateX(-50%);
}
.template-title h3 {
  font-weight: 400;
  font-size: 24px;
}
.template-title.template-title-case-2 {
  text-align: left;
}
.template-title.template-title-case-2 h2:after {
  left: 0;
  transform: none;
}
.template-title.template-title-case-3 {
  max-width: 626px;
  text-align: left;
}
.template-title.template-title-case-3 h2:after {
  display: inline-block;
  position: static;
  transform: none;
  margin: 0 0 8px 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-bottom: 34px;
}
.form-row:last-of-type {
  margin-bottom: 24px;
}

.form-column {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-box {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.input-box_checkbox {
  padding-left: 33px;
  padding-top: 2px;
  margin-bottom: -9px;
}
.input-box_checkbox:first-child {
  margin-top: 20px;
}

.file-name {
  margin-bottom: 13px;
}

.nice-select {
  color: #282b38;
  height: 55px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 52px;
}
.nice-select::after {
  border-bottom: none;
  border-right: none;
  height: 15px;
  right: 15px;
  width: 15px;
  background: url(./assets/img/select-arrow.svg) center -2px/15px no-repeat;
  transform: rotate(0);
  margin-top: -9px;
}
.nice-select .list {
  margin-bottom: 0;
}

.nice-select.open::after {
  transform: rotate(-180deg);
  margin-top: -14px;
  right: 20px;
}

.nice-select-dropdown {
  width: 100%;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #e58d35;
}

.template-carousel {
  position: relative;
}
.template-carousel .card {
  margin: 0 auto;
}
.template-carousel .swiper-pagination {
  position: static;
  margin-top: 32px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  opacity: 1;
  background-color: transparent;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 13px);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  position: static;
  margin-top: 0;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #89c249;
}

.swiper-arrow-container {
  --padding: 20px;
  height: 0px;
  position: absolute;
  top: calc(50% - 23px);
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 var(--padding);
  max-width: calc(1522px + var(--padding) * 2);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 183px);
}

.logo {
  max-width: 172px;
}

.navbar {
  padding: 27px 0 37px;
  white-space: nowrap;
}

.navbar-nav {
  max-width: 619px;
  padding: 5px 0 0 0;
}

.nav-link {
  color: #fff;
}
.nav-link:hover {
  color: #e58d35;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 7px;
}
.hamburger:focus {
  box-shadow: none;
}

.swiper-banner {
  max-width: 1820px;
}
.swiper-banner .swiper-slide {
  min-height: 700px;
  background-color: #363a4d;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.swiper-banner .swiper-slide .container {
  padding-top: 163px;
  padding-bottom: 73px;
}
.swiper-banner .swiper-banner-arrow {
  --padding: 20px;
  height: 0px;
  position: absolute;
  top: calc(50% - 23px);
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 var(--padding);
  max-width: calc(1522px + var(--padding) * 2);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
.swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  top: calc(100% - 59px);
}

.banner-tittle {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 515px;
  margin-bottom: 10px;
  line-height: 1.26;
}

.banner-description {
  max-width: 340px;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 37px;
  line-height: 1.35;
}

.calculation .template-title {
  padding-bottom: 52px;
}
.calculation .container {
  position: relative;
}
.calculation .template-title h2::after {
  background-color: #89c249;
}

.calculation-form {
  max-width: 626px;
  background: #363a4d;
  border-radius: 20px;
  padding: 50px 50px 60px;
  font-size: 15px;
}

.calculation-img {
  position: absolute;
  bottom: -100px;
  left: 610px;
}

.advantages .swiper-pagination {
  position: static;
}

.advantage {
  text-align: center;
}
.advantage .advantage__img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 1px solid #6c7188;
  border-radius: 50%;
  width: 113px;
  height: 113px;
  position: relative;
}
.advantage .advantage__img-box:before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background-color: #89c249;
  z-index: -1;
  box-shadow: 0 4px 13px 0 rgba(30, 35, 66, 0.11);
}
.advantage .advantage__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  text-align: center;
}

.advantages .swiper-horizontal > .swiper-pagination-bullets,
.advantages .swiper-pagination-bullets.swiper-pagination-horizontal {
  top: calc(100% - 59px);
}

.delivery .template-title h2::after {
  background-color: #89c249;
}

.card {
  background-color: #363a4d;
  border-radius: 20px;
  width: 360px;
  border: none;
}
.card__img-box {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.card-body {
  padding: 27px 20px;
}
.card-title {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: center;
}
.card__options-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 0;
  margin-bottom: 8px;
}
.card__options-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.card__price {
  margin-bottom: 22px;
  font-size: 22px;
  text-align: center;
}
.card__price span:first-child {
  color: #a3a3a3;
}
.card__price strong {
  font-size: 45px;
  line-height: 125%;
}
.card__btn-row {
  display: flex;
  gap: 14px;
}
.card__btn-row .btn {
  width: 50%;
}
.card.card_services {
  position: relative;
}
.card.card_services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 5, 17, 0.91) 0%, rgba(88, 88, 88, 0) 100%);
  border-radius: 20px;
}
.card.card_services .card-body {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 1;
}

.card_services {
  min-height: 482px;
}
.card_services .card-title {
  text-align: left;
}

.about .template-title h2::after {
  background-color: #89c249;
}
.about .container {
  display: flex;
  gap: 35px;
}
.about .about_text {
  padding: 41px;
  max-width: 555px;
}
.about .about_text__description {
  font-weight: 300;
  font-size: 18px;
  line-height: 170%;
  color: #fff;
}

.questions__row {
  display: flex;
  gap: 34px;
}

.questions-form {
  background-color: #363a4d;
  border-radius: 20px;
  padding: 38px 40px;
  min-width: 390px;
}
.questions-form .input-box {
  margin-bottom: 14px;
}
.questions-form .input-box:last-of-type {
  margin-bottom: 26px;
}

.questions-form__title {
  font-size: 24px;
  margin-bottom: 8px;
}

.questions-form__subtitle {
  font-size: 17px;
  margin-bottom: 23px;
  font-weight: 300;
}

.questions .accordion {
  width: 100%;
}
.questions .accordion .accordion-item {
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid #3a444e;
  margin-bottom: 16px;
}
.questions .accordion .accordion-item .accordion-button {
  border-radius: 10px;
  background-color: transparent;
  color: #fff;
  box-shadow: none;
  font-weight: 800;
  padding: 22px 19px 22px 34px;
}
.questions .accordion .accordion-item .accordion-button::after {
  width: 26px;
  height: 26px;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='27' viewBox='0 0 27 27' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.421875 13.4995C0.421875 6.2749 6.27539 0.421387 13.5 0.421387C20.7246 0.421387 26.5781 6.2749 26.5781 13.4995C26.5781 20.7241 20.7246 26.5776 13.5 26.5776C6.27539 26.5776 0.421875 20.7241 0.421875 13.4995ZM13.5 24.8901C19.7596 24.8901 24.8906 19.8224 24.8906 13.4995C24.8906 7.23994 19.8229 2.10889 13.5 2.10889C7.24043 2.10889 2.10938 7.17666 2.10938 13.4995C2.10938 19.7591 7.17715 24.8901 13.5 24.8901ZM14.1592 20.0122L20.2289 13.9478C20.4768 13.6999 20.4768 13.2991 20.2289 13.0513L14.1592 6.98682C13.9113 6.73897 13.5105 6.73897 13.2627 6.98682L12.8988 7.35068C12.651 7.59854 12.651 8.00986 12.9094 8.25244L17.4182 12.603H7.38281C7.03477 12.603 6.75 12.8878 6.75 13.2358V13.7632C6.75 14.1112 7.03477 14.396 7.38281 14.396H17.4182L12.9041 18.7466C12.651 18.9944 12.6457 19.4005 12.8936 19.6483L13.2574 20.0122C13.5105 20.2601 13.9113 20.2601 14.1592 20.0122Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.questions .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='27' viewBox='0 0 27 27' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.421875 13.4995C0.421875 6.2749 6.27539 0.421387 13.5 0.421387C20.7246 0.421387 26.5781 6.2749 26.5781 13.4995C26.5781 20.7241 20.7246 26.5776 13.5 26.5776C6.27539 26.5776 0.421875 20.7241 0.421875 13.4995ZM13.5 24.8901C19.7596 24.8901 24.8906 19.8224 24.8906 13.4995C24.8906 7.23994 19.8229 2.10889 13.5 2.10889C7.24043 2.10889 2.10938 7.17666 2.10938 13.4995C2.10938 19.7591 7.17715 24.8901 13.5 24.8901ZM14.1592 20.0122L20.2289 13.9478C20.4768 13.6999 20.4768 13.2991 20.2289 13.0513L14.1592 6.98682C13.9113 6.73897 13.5105 6.73897 13.2627 6.98682L12.8988 7.35068C12.651 7.59854 12.651 8.00986 12.9094 8.25244L17.4182 12.603H7.38281C7.03477 12.603 6.75 12.8878 6.75 13.2358V13.7632C6.75 14.1112 7.03477 14.396 7.38281 14.396H17.4182L12.9041 18.7466C12.651 18.9944 12.6457 19.4005 12.8936 19.6483L13.2574 20.0122C13.5105 20.2601 13.9113 20.2601 14.1592 20.0122Z' fill='%23E58D35'/%3E%3C/svg%3E");
  transform: rotate(-90deg);
}
.questions .accordion .accordion-body {
  padding: 22px 34px 34px;
}

.partnership .template-title h2::after {
  background-color: #89c249;
}

.partnership__content {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.partnership__content-item {
  width: calc(50% - 28px);
  font-size: 17px;
  font-weight: 300;
  line-height: 157%;
}
.partnership__content-item p {
  margin-bottom: 28px;
}
.partnership__content-item p:last-child {
  margin-bottom: 0;
}
.partnership__content-item img {
  height: auto;
  max-width: 100%;
}

nav {
  display: flex;
  gap: 105px;
}

address {
  max-width: 263px;
  margin-right: 90px;
}
address img {
  margin-bottom: 29px;
}

.footer-line {
  background-color: #e58d35;
  width: 1140px;
  height: 2px;
  margin-bottom: 40px;
}

.footer-row {
  display: flex;
}

.contacts {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 163%;
  font-weight: 400;
}
.contacts a {
  text-decoration: none;
  color: #fff;
}

.footer-icon {
  width: 34px;
  height: 33px;
  display: inline-flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.cargo-transportation {
  font-weight: 700;
  font-size: 20px;
}
.cargo-transportation p {
  color: #85899c;
  font-size: 16px;
}
.cargo-transportation a {
  text-decoration: none;
}

@media (min-width: 992px) {
  .swiper-banner {
    width: calc(100% - 24px);
  }
  .swiper-banner .swiper-slide {
    border-radius: 20px;
  }
  .advantages .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px 24px;
  }
}
@media screen and (max-width: 1399.98px) {
  .navbar-nav {
    max-width: 540px;
  }
  .swiper-banner .swiper-slide .container {
    padding: 163px 72px 73px;
  }
  .template-carousel {
    margin: 0 auto;
    max-width: 750px;
  }
}
@media screen and (max-width: 1199.98px) {
  .navbar-nav {
    max-width: 540px;
  }
  .calculation-img {
    width: 35vw;
  }
  .bg-accent:before {
    inset: 0 12px;
  }
}
@media screen and (max-width: 991.98px) {
  section {
    margin-bottom: 60px;
  }
  .logo {
    max-width: 126px;
  }
  h2 {
    font-size: 24px;
  }
  .navbar {
    padding: 16px 0 15px;
  }
  .navbar .container {
    padding: 0;
  }
  .navbar-collapse {
    background: #363a4d;
    margin: 0 -12px;
    padding: 0 40px;
    text-align: center;
    transform: translate(0, 12px);
  }
  .navbar-collapse .btn {
    margin-bottom: 60px;
    width: 100%;
    max-width: 295px;
    font-size: 16px;
    padding: 21px 27px;
  }
  .navbar-nav {
    padding: 37px 0 34px;
  }
  .nav-link {
    font-size: 24px;
    line-height: 222%;
  }
  .bg-accent::before {
    border-radius: 0;
    inset: 0;
  }
  .bg-accent .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .template-title.template-title-case-3 {
    text-align: center;
    max-width: 100%;
    padding-bottom: 70px;
  }
  .template-title.template-title-case-3 h2::after {
    content: "";
    position: absolute;
    width: 85px;
    height: 2px;
    background-color: #e58d35;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .swiper-banner .swiper-slide {
    display: flex;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - var(--header-height));
  }
  .swiper-banner .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(4, 9, 17, 0.6);
    z-index: -1;
  }
  .swiper-banner .swiper-slide .container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner-tittle {
    font-size: 32px;
  }
  .banner-description {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .calculation-img {
    display: none;
  }
  .input-box_checkbox:first-child {
    margin-top: 6px;
  }
  .advantage .advantage__title {
    max-width: 218px;
    margin: 0 auto 40px;
  }
  .about .container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .questions__row {
    flex-direction: column;
    gap: 28px;
  }
  .questions-form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
  }
  .partnership__content {
    gap: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .partnership__content .partnership__content-item {
    width: 100%;
    font-size: 14px;
  }
  .partnership__content .order-mobile-negative {
    order: -1;
  }
  address {
    margin-left: auto;
    margin-right: auto;
  }
  nav {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .calculation-form {
    padding: 52px 30px 34px;
  }
  .calculation-form .btn.btn-l {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .form-row {
    flex-direction: column;
    margin-bottom: 22px;
  }
  .form-column {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */
