@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;
  line-height: 1.3;
}

section {
  margin-bottom: 100px;
}

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

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

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

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

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;
}

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:before {
  border-color: #e58d35;
}

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

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

input {
  background-color: #fff;
  font-size: 15px;
  border-radius: 10px;
  padding: 18px 20px;
  border: none;
  transition: 0.3s;
  color: #282b38;
}
input:focus-visible {
  outline: none;
}
input:hover {
  box-shadow: 0px 0px 4px 2px rgba(229, 141, 53, 0.6666666667);
}
input:focus {
  box-shadow: 0px 0px 4px 2px rgba(137, 194, 73, 0.6666666667);
}
input:active {
  box-shadow: 0px 0px 5px 3px #89c249;
}
input[type=file] {
  display: none;
}
input[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='8px%2c 10px ' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% - 1px) calc(100% - 1px);
  margin-bottom: 2px;
}
input[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 {
  color: #cbcbcb;
}

label {
  cursor: pointer;
  margin-bottom: 6px;
}

.bg-accent {
  position: relative;
  padding: 90px 0 100px;
}
.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;
  background-color: #e58d35;
  color: #fff;
  border-color: #e58d35;
  border-radius: 90px;
  padding: 12px 27px;
}
.btn:hover {
  background-color: transparent;
  border-color: #e58d35;
}
.btn.btn-sm {
  padding: 12px 18px;
}
.btn.btn-lg {
  font-size: 16px;
  padding: 19px 21px 19px 33px;
}
.btn.btn-lg img {
  margin-left: 48px;
}
.btn.btn-secondary {
  background-color: transparent;
}
.btn.btn-secondary:hover {
  background-color: #e58d35;
}
.btn.btn-primary {
  background-color: #e58d35;
}
.btn.btn-primary:hover {
  background-color: #e58d35;
}

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

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 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;
}

.nice-select {
  color: #282b38;
  height: 55px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 52px;
}
.nice-select .list {
  margin-bottom: 0;
}
.nice-select:after {
  display: block;
}

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

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

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

.template-carousel {
  position: relative;
}
.template-carousel .card {
  margin: 0 auto;
}

.delivery .template-carousel .swiper .swiper-pagination {
  position: static;
  margin-top: 32px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  background-color: transparent;
  opacity: 1;
  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-bottom, 13px);
}

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

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

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

.logo {
  max-width: 172px;
}

.navbar {
  padding: 25px 0 40px;
  white-space: nowrap;
}

.navbar-nav {
  max-width: 619px;
  padding: 5px 0 0 0;
  width: 100%;
  justify-content: space-between;
}

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

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

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

.hamburger--spring .hamburger-inner {
  top: 3px;
}

.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;
}

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

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

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

.calculation .template-title {
  padding-bottom: 52px;
}
.calculation .container {
  position: relative;
}

.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__img-box {
  width: 113px;
  height: 113px;
  border: 1px solid #6c7188;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.advantage__img-box:before {
  content: "";
  position: absolute;
  inset: 10px;
  background-color: #89c249;
  border-radius: 50%;
  z-index: -1;
}

.advantage__title {
  font-weight: 400;
  font-size: 18px;
}

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

.card_services {
  min-height: 482px;
}

.card .card-title {
  text-align: left;
}

.services .template-carousel .swiper .swiper-pagination {
  position: static;
  margin-top: 32px;
}

.card {
  border-radius: 20px;
  background-color: #363a4d;
  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 {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.card .card__price {
  margin-bottom: 22px;
  font-size: 22px;
  text-align: center;
}
.card .card__price span:first-child {
  color: #a3a3a3;
}
.card .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;
}

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

.company .template-title h2:after {
  background-color: #89c249;
}
.company .container {
  display: flex;
  gap: 35px;
}
.company .container .company-description {
  max-width: 555px;
  font-size: 18px;
  padding-left: 12px;
}
.company .container .company-img {
  width: 100%;
}

@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) {
  .swiper-banner .swiper-slide .container {
    padding: 132px 72px 73px;
  }
}
@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) {
  .logo {
    max-width: 126px;
  }
  .navbar {
    padding: 17px 0 15px;
  }
  .navbar-collapse {
    background-color: #363a4d;
    margin: 0 -12px;
    padding: 0px 40px;
    text-align: center;
    transform: translate(0, 12px);
  }
  .navbar-nav {
    padding: 37px 0 34px;
  }
  .navbar-nav + .btn {
    margin-bottom: 60px;
    width: 100%;
    font-size: 16px;
    max-width: 295px;
    padding: 21px 27px;
  }
  .nav-link {
    color: #fff;
    font-size: 24px;
    line-height: 222%;
  }
  .nav-link:hover {
    color: #e58d35;
  }
  .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;
    border-color: #e58d35;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .bg-accent::before {
    border-radius: 0;
    inset: 0;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .swiper-banner .swiper-slide {
    display: flex;
    text-align: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
  }
  .swiper-banner .swiper-slide::before {
    content: "";
    position: absolute;
    background-color: rgba(4, 9, 17, 0.6);
    z-index: -1;
    inset: 0;
  }
  .swiper-banner .swiper-slide .container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .banner-title {
    font-size: 36px;
  }
  .banner-description {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .calculation-img {
    display: none;
  }
  .input-box_checkbox:first-child {
    margin-top: 6px;
  }
  .template-title h2 {
    font-size: 24px;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bottom, 8px);
  }
  .advantage__title {
    min-width: 218px;
    margin-bottom: 0 auto 40px;
  }
  .nice-select:after {
    display: none;
  }
  .company .container {
    align-items: center;
    flex-direction: column;
  }
  .company .container .company-description {
    width: 100%;
  }
  .company .container .template-title h2:after {
    left: calc(50% - 48px);
  }
  .company .container .template-title h2 {
    text-align: center;
  }
  .company .container .company-img {
    max-width: 450px;
  }
}
@media screen and (max-width: 767.98px) {
  .calculation-form {
    padding: 52px 30px 34px;
  }
  .calculation-form .btn.btn-lg {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .form-row {
    flex-direction: column;
    margin-bottom: 22px;
  }
  .form-column {
    width: 100%;
  }
  .company .container .company-description {
    width: 100%;
    font-size: 16px;
  }
  .company .container .company-img {
    max-width: 326px;
  }
}
/*# sourceMappingURL=style.css.map */
