@font-face {
  font-family: 'Proxima Nova';
  src: local('ProximaNova-Light'),
        url('assets/fonts/ProximaNova/ProximaNova-Light.woff2');
  font-weight: 300;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: local('Proxima Nova Regular'), local('ProximaNova-Regular'),
        url('assets/fonts/ProximaNova/ProximaNova-Regular.woff2');
  font-weight: 400;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: local('Proxima Nova Bold'), local('ProximaNova-Bold'),
        url('assets/fonts/ProximaNova/ProximaNova-Bold.woff2');
  font-weight: 700;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: local('Oswald Medium'), local('Oswald-Medium'),
        url('assets/fonts/Oswald/Oswald-Medium.woff2');
  font-weight: 500;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: local('Oswald SemiBold'), local('Oswald-SemiBold'),
        url('assets/fonts/Oswald/Oswald-SemiBold.woff2');
  font-weight: 600;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: local('Oswald Bold'), local('Oswald-Bold'),
        url('assets/fonts/Oswald/Oswald-Bold.woff2');
  font-weight: 700;
  font-style: normal;
	font-display: swap;
}

/* === general === */
body {
  background: #fff;
}
main {
  padding-top: 100px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Proxima Nova', sans-serif;
  font-style: normal;
  line-height: normal;
  color: #333;
}
.container {
  margin: 0 auto;
  max-width: 100%;
  width: 1220px;
  height: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
h1,h2,h3,h4 {
  font-family: 'Oswald';
  font-weight: 600;
  color: #333333;
}
.color-w {
  color:#fff;
}
h1 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 48px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 24px;
  font-weight: 500;
}
h4 {
  font-size: 20px;
  font-weight: 700;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 16px;
  box-sizing: content-box;
  border-radius: 10px;
  background: #FFB200;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
  transition: 0.4s;
}
.btn:hover {
  cursor: pointer;
  background: #4c76ff;
}
p {
  color: #555;
  font-size: 16px;
}
.h2--title {
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.h2--title::before {
  content: "";
  display: block;
  width: 30px;
  min-width: 30px;
  height: 40px;
  background: url("assets/imgs/h2-title-before.svg") no-repeat center center/cover;
}
/* === header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100px;
  background: #FFF;
  box-shadow: 0 2px 2px 0 rgba(0, 9, 37, 0.10);
}
.header__box {
  display: flex;
  height: 100%;
}
.header__item {
  padding: 10px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 100%;
  border-left: 1px solid #DDEBF8;
}
.header__logo {
  margin-right: 38px;
  width: 248px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  gap: 9.83px;
  user-select: none;
}
.header__logo__p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 300;
}
.header__menu {
  position: relative;
}
.header__menu:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background: #FFB200;
}
.header__menu__ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: fit-content;
  height: fit-content;
  padding: 9px 0 0;
  border-radius: 0 0 10px 10px;
  border: 2px solid rgba(0, 9, 37, 0.05);
  background: #FFF;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  overflow: hidden;
}

.header__menu__ul__a {
  display: block;
  width: 100%;
  padding: 15px 40px 15px 20px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
}
.header__menu__ul__a:hover,
.header__menu__ul__a.active {
  background: #4C76FF;
  color: #FFF;
}
.header__menu__btn {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
}
.header__menu__btn__svg {
  transform: rotate(0deg);
  transition: 0.5s;
}
.header__menu:hover {
  cursor: pointer;
}
.header__menu:hover .header__menu__ul {
  opacity: 1;
  visibility: visible;
}
.header__menu:hover .header__menu__btn__svg {
  transform: rotate(90deg);
}
.header__socials {
  gap: 10px;
  padding: 0 37px;
}
.header__about {
  padding: 0 35px;
}
.header__about__a {
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}
.header__about__a:hover {
  color: #4C76FF;
}
.header__item__btn {
  margin-left: auto;
}
.search {
  width: 100%;
  height: 50px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.search form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.search--btn {
  width: 200px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-left: 25px;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 48px; /* 266.667% */
  text-transform: uppercase;
  border: none;
  background: #4C76FF;
}
.search--btn:hover {
  cursor: pointer;
}
.search--input {
  display: block;
  width: calc(100% - 200px);
  height: 100%;
  background: #fff;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 300;
  line-height: 48px; /* 300% */
  border: none;
}
/* === hero === */

section.hero {
 
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: auto;
  height: 100%;
  object-fit: cover;
}
.hero__box {
  padding-top: 70px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.hero__content {
  width: 530px;
  max-width: 100%;
}
.hero__calc {
  max-width: 100%;
  width: 580px;
}
.hero h1 {
  margin-bottom: 33px;
  color: #fff;
}
.hero__items {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}
.hero__item {
  width: 250px;
  height: 100px;
  display: flex;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.hero__item__icon {
  width: 90px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4C76FF;
}
.hero__item__text {
  width: 160px;
  padding: 7px 0 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  background: #fff;
}
.hero__item__text span {
  display: block;
  color: #4C76FF;
  font-family: 'Oswald';
  font-size: 45px;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}
.hero--h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.hero__ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 50px;
}
.hero__li {
  position: relative;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}
.hero__li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 3px;
  left: -50px;
  background: url("assets/imgs/hero-li-before.svg") no-repeat center center/cover;
}
.hero__search {
  margin-top: 50px;
}
.hero__line {
  margin-top: 46px;
  width: 100%;
  height: 100px;
  position: relative;
}
.hero__line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.9;
  background: #294192;
}
.hero__line__box {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
.hero__line--btn {
  width: 280px;
  height: 42px;
  box-sizing: border-box;
}
.hero__line--h3 {
  width: calc(100% - 320px);
  max-width: 820px;
  color: #FFF;
}
.under-hero {
  padding-top: 61px;
  padding-bottom: 66px;
}
.under-hero__nav {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.under-hero__nav--item {
  height: 40px;
  width: fit-content;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 10px;
  background: #EDF6FF;
  color: #333;
  transition: 0.4s;
}
.under-hero__nav--item.active,
.under-hero__nav--item:hover {
  color: #fff;
  background: #4C76FF;
  cursor: pointer;
}
.calculator {
  background: #fff;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 28px 30px 35px 30px;
}
.calculator::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  top: -1px;
  left: 0;
  background: #FFB200;
}
.calculator--img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.calculator--h3 {
  position: relative;
  z-index: 2;
  color: #333;
  font-size: 32px;
  font-weight: 600;
}
.calculator--p {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  color: #777;
}
.calculator__box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.calculator__box label,
.calculator__box br,
.calculator__box label span,
.calculator__box label.label-small small {
  display: none;
}
.calculator__box label.label-small,
.calculator__box label.label-small span {
  display: block;
}
.calculator__input-inner {
  width: calc(50% - 10px);
  position: relative;
}
.calculator__input-inner input,
.calculator__input-inner select,
.calculator__input-inner textarea {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #EDF6FF;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
}
.calculator__input-inner textarea {
  height: 90px;
  resize: none;
}
.calculator__input-inner textarea {
  padding-top: 8px;
}
.calculator__input-start input,
.calculator__input-finish input,
.calculator__input-weight input{
  padding-left: 46px;
  border-radius: 10px;
  background: #EDF6FF;
  
  color: #333;
  font-size: 16px;
  line-height: 48px; /* 300% */
  position: relative; 
  z-index: 1;
}
.calculator__input-start::before,
.calculator__input-finish::before {
  content: "";
  display: block;
  width: 16px;
  height: 45px;
  position: absolute;
  top: calc(50% - 27px);
  left: 20px;
  z-index: 2;
}
.calculator__input-start::before {
  background: url("assets/imgs/calculator__input-finish.svg");
}
.calculator__input-finish::before {
  background: url("assets/imgs/calculator__input-name.svg");
}
.calculator__input-weight::before {
  content: "";
  display: block;
  width: 18px;
  height: 20px;
  position: absolute;
  top: calc(50% - 12px);
  left: 20px;
  background: url("assets/imgs/calculator__input-weight.svg");
  z-index: 2;
}
.wpcf7-submit {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  color: #FFF;
  text-align: center;
  font-family: "Proxima Nova";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 266.667% */
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  border-radius: 10px;
  background: #4C76FF;
}
.wpcf7-submit:hover {
  cursor: pointer;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 0;
}
.calculator br {
  display: none;
}
.wpcf7-spinner {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 12px);
  margin: 0;
}
/* === adaptive === */

.mob-header-open,
.mob-header-close {
  display: none;
}
@media (min-width: 1600px){
  .hero__bg {
    width: 100%;
  }
}
@media (max-width: 1220px){
  main {
    padding-top: 60px;
  }
  .header {
    height: 60px;
  }
  .header__logo {
    margin-right: auto;
    padding-right: 10px;
    width: 200px;
  }
  .header__logo__p {
    gap: 3px;
    font-size: 12px;
  }
  .header__logo__svg-2 {
    width: 120px;
  }
  .header__item__btn {
    margin-left: auto;
    font-size: 14px;
    padding: 10px 12px;
  }
}
@media(max-width: 1180px){
  main {
    padding-top: 0;
  }
   .container {
    padding: 0 15px;
  }
  h1 {
    margin-bottom: 30px;
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
    line-height: 100%;
  }
  h3,
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
    line-height: 140%;
  }
  .btn {
    font-size: 16px;
  }
  .btn-2 {
    font-size: 14px;
    padding: 15px 20px;
  }
  .h2--title {
    gap: 10px;
  }
  .h2--title::before {
    width: 20px;
    height: 30px;
    min-width: 20px;
  }
  .mob-header-open {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 8;
    top: 10px;
    left: 10px;
    border-radius: 10px;
    background: #4C76FF;  
  }
  .mob-header-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
  }
  .header {
    height: 100vh;
    width: 350px;
    overflow-y: auto;
    left: -360px;
    transition: 0.5s;
    min-height: 100vh;
  }
  .header .container {
    height: auto;
    min-height: 100%;
    padding: 0;
  }
  .header.active {
    left: 0;
  }
  .header__logo {
    width: 100%;
    padding: 30px;
    height: auto;
  }
  .header__logo__p {
    gap: 9px;
    font-size: 14px;
  }
  .header__logo__svg-2 {
    width: 150px;
  }
  .header__box {
    flex-direction: column;
    gap: 0;
    min-height: 100vh;
  }
  .header__about {
    margin-bottom: auto;
  }
  .header__item {
    padding: 16px 30px;
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }
  .header__menu:before {
    background: #DDEBF8;
    height: 1px;
  }
  .header__menu__btn {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 39px;
    text-transform: uppercase;
  }
  .header__menu:hover .header__menu__btn__svg,
  .header__menu .header__menu__btn__svg {
    transform: rotate(-90deg);
  }
  .header__menu__btn.active .header__menu__btn__svg {
    transform: rotate(90deg);
  }
  .header__menu {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    transition: 0.8s;
    height: 65px;
    overflow: hidden;
  }
  .header__menu__ul {
    opacity: 1;
    visibility: visible;
    position: static;
    width: 100%;
    border: none;
    padding: 0;
    overflow: visible;
  }
  .header__menu__ul__a {
    padding: 12px 30px 12px 30px;
  }
  .header__socials {
    order: 2;
  }
  .header__about {
    border-top: 1px solid #DDEBF8;
    border-bottom: 1px solid #DDEBF8;
    
  }
  .header__about__a {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    line-height: 39px; /* 216.667% */
    text-transform: uppercase;
  }
  .header__item__btn {
    margin-left: 0;
    font-size: 18px;
    padding: 14px 16px;
  }
  .hero__box {
    flex-direction: column;
  }
  .hero__items {
    flex-direction: column;
  }
  .hero__line {
    padding: 20px 0;
    height: auto;
  }
  .hero__line__box {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .hero__line--h3 {
    width: 100%;
    text-align: center;
  }
  .hero__search {
    margin-top: 40px;
    height: auto;
  }
  .search form {
    flex-direction: column;
  }
  .search--input {
    width: 100%;
    height: 50px;
  }
  .search--btn {
    width: 100%;
  }
}
@media(max-width: 480px){
  .header {
    width: 100%;
    left: -100%;
  }
  .h2--title {
    align-items: center;
  }
  .calculator {
    padding: 20px 15px 25px 15px;
  }
  .calculator--img {
    display: none;
  }
  .calculator__input-inner {
    width: 100%;
  }
}