.container {
  max-width: 1430px;
  margin: auto;
  padding: 0 20px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.hero {
  position: relative;
  z-index: 1;
  background-image: url("../imgs/hero-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 900px;
  padding-top: 110px;
  padding-bottom: 60px;
}
@media (max-width: 1500px) {
  .hero {
    height: auto;
  }
}
@media (max-width: 600px) {
  .hero {
    height: auto;
    padding-bottom: 80px;
    padding-top: 50px;
  }
}
.hero:after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url("../imgs/kto-sme-right.svg");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: right top;
  z-index: -1;
}
@media (max-width: 1499px) {
  .hero:after {
    width: 200px;
    height: 200px;
    background-size: contain;
  }
}
@media (max-width: 1199px) {
  .hero:after {
    width: 160px;
    height: 160px;
    background-size: contain;
  }
}
@media (max-width: 600px) {
  .hero:after {
    width: 60px;
    height: 60px;
    background-size: contain;
  }
}
.hero:before {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  background-image: url("../imgs/kto-sme-left.svg");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: left bottom;
  z-index: -1;
}
@media (max-width: 1499px) {
  .hero:before {
    width: 200px;
    height: 200px;
    background-size: contain;
  }
}
@media (max-width: 1199px) {
  .hero:before {
    width: 160px;
    height: 160px;
    background-size: contain;
  }
}
@media (max-width: 600px) {
  .hero:before {
    width: 60px;
    height: 60px;
    background-size: contain;
  }
}
.hero-box {
  padding-top: 150px;
}
@media (max-width: 600px) {
  .hero-box {
    padding-top: 100px;
  }
}
.hero-title {
  color: white;
  font-size: 130px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
  padding-bottom: 8px;
}
@media (max-width: 1500px) {
  .hero-title {
    font-size: 90px;
  }
}
@media (max-width: 1199px) {
  .hero-title {
    font-size: 80px;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 48px;
  }
}
.hero-subtitle {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  font-size: 24px;
  border-radius: 25px;
  background: #4D4DEF;
  padding: 8px 20px;
  display: inline-block;
}
@media (max-width: 1199px) {
  .hero-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .hero-subtitle {
    font-size: 16px;
  }
}
.hero-inner {
  display: flex;
  gap: 128px;
  padding-top: 70px;
}
@media (max-width: 1199px) {
  .hero-inner {
    gap: 50px;
  }
}
@media (max-width: 949px) {
  .hero-inner {
    display: grid;
  }
}
.hero-inner__title {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 32px;
}
@media (max-width: 600px) {
  .hero-inner__title {
    font-size: 16px;
    padding-bottom: 16px;
  }
}
.hero-item {
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .hero-item {
    padding: 15px;
  }
}
.hero-item__name {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  padding-bottom: 20px;
  color: white;
}
@media (max-width: 600px) {
  .hero-item__name {
    font-size: 14px;
  }
}
.hero-item__count {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  padding-bottom: 20px;
  color: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-item__count {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .hero-item__count {
    font-size: 21px;
  }
}
.hero-item__text {
  color: white;
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .hero-item__text {
    font-size: 12px;
  }
}
.hero-item__wrap {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .hero-item__wrap {
    gap: 16px;
  }
}
.hero-item__wrap--first .hero-item {
  background: #2c2e84;
  border: 2px solid #4D4DEF;
}
.hero-item__wrap--first .hero-item:first-child {
  background: linear-gradient(90deg, rgb(46, 48, 136) 0%, rgb(45, 47, 135) 42%, rgb(45, 47, 135) 100%) !important;
}
.hero-item__wrap--first .hero-item:first-child:after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/circle-blue-1.svg);
  background-repeat: no-repeat;
  height: 100%;
  width: 220px;
  z-index: 0;
  background-size: contain;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 0;
  margin: auto;
  left: 0;
  background-position: center;
}
@media (max-width: 1199px) {
  .hero-item__wrap--first .hero-item:first-child:after {
    width: 160px;
  }
}
@media (max-width: 600px) {
  .hero-item__wrap--first .hero-item:first-child:after {
    width: 120px;
  }
}
.hero-item__wrap--first .hero-item:nth-child(2) {
  background: linear-gradient(90deg, rgb(46, 48, 136) 0%, rgb(63, 71, 192) 42%, rgb(48, 51, 145) 100%) !important;
}
.hero-item__wrap--first .hero-item:nth-child(2):after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/circle-blue-2.svg);
  background-repeat: no-repeat;
  height: 100%;
  width: 180px;
  z-index: 0;
  background-size: contain;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 0;
  margin: auto;
  left: 0;
  background-position: center;
}
@media (max-width: 1199px) {
  .hero-item__wrap--first .hero-item:nth-child(2):after {
    width: 160px;
  }
}
@media (max-width: 600px) {
  .hero-item__wrap--first .hero-item:nth-child(2):after {
    width: 100px;
  }
}
.hero-item__wrap--second .hero-item {
  background: #FF5454;
  border: 2px solid #ec615a;
}
.hero-item__wrap--second .hero-item:first-child {
  background: linear-gradient(90deg, rgb(124, 56, 67) 0%, rgb(128, 62, 80) 42%, rgb(126, 59, 73) 100%) !important;
}
.hero-item__wrap--second .hero-item:first-child:after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/circle-red-1.svg);
  background-repeat: no-repeat;
  height: 100%;
  width: 220px;
  z-index: 0;
  background-size: contain;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 0;
  margin: auto;
  left: 0;
  background-position: center;
}
@media (max-width: 1199px) {
  .hero-item__wrap--second .hero-item:first-child:after {
    width: 160px;
  }
}
@media (max-width: 600px) {
  .hero-item__wrap--second .hero-item:first-child:after {
    width: 120px;
  }
}
.hero-item__wrap--second .hero-item:nth-child(2) {
  background: linear-gradient(90deg, rgb(128, 62, 78) 0%, rgb(132, 67, 90) 42%, rgb(128, 61, 78) 100%) !important;
}
.hero-item__wrap--second .hero-item:nth-child(2):after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/circle-red-2.svg);
  background-repeat: no-repeat;
  height: 100%;
  width: 135px;
  z-index: 0;
  background-size: contain;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 0;
  margin: auto;
  left: 0;
  background-position: center;
}
@media (max-width: 1199px) {
  .hero-item__wrap--second .hero-item:nth-child(2):after {
    width: 120px;
  }
}

.info {
  background: #EDEFF3;
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 900px) {
  .info {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .info {
    text-align: left;
    padding: 48px 0;
  }
}
.info-box {
  max-width: 944px;
  margin: auto;
}
.info-title {
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  font-size: 24px;
  padding-bottom: 24px;
}
@media (max-width: 600px) {
  .info-title {
    padding-bottom: 16px;
    font-size: 16px;
    text-align: center;
  }
}
.info-img {
  padding-bottom: 90px;
  max-width: 700px;
  margin: auto;
}
@media (max-width: 600px) {
  .info-img {
    padding-bottom: 48px;
  }
}
.info-img img {
  width: 100%;
}
.info-bold {
  font-weight: 900;
  font-size: 24px;
  color: #1C1C1C;
  margin: 0;
  padding-bottom: 48px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .info-bold {
    font-size: 16px;
    padding-bottom: 24px;
  }
}
.info-text {
  margin: 0;
  color: #707178;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 600px) {
  .info-text {
    font-size: 13px;
  }
}

.feature {
  padding: 64px 0;
  position: relative;
}
@media (max-width: 600px) {
  .feature {
    padding: 48px 0;
  }
}
.feature:after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url("../imgs/kto-sme-left.svg");
  background-repeat: no-repeat;
  height: 180px;
  width: 180px;
  z-index: -1;
  transform: rotate(180deg);
}
@media (max-width: 1500px) {
  .feature:after {
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 500px) {
  .feature:after {
    display: none;
  }
}
.feature:before {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  background-image: url("../imgs/kto-sme-right.svg");
  background-repeat: no-repeat;
  height: 180px;
  width: 180px;
  z-index: -1;
  transform: rotate(-180deg);
}
@media (max-width: 1500px) {
  .feature:before {
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 500px) {
  .feature:before {
    display: none;
  }
}
.feature-item {
  text-align: center;
}
@media (max-width: 600px) {
  .feature-item {
    border-bottom: 2px solid rgba(112, 113, 120, 0.1019607843);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .feature-item:last-child {
    border: none;
  }
}
.feature-item__img {
  padding-bottom: 44px;
  max-width: 80%;
  margin: auto;
}
@media (max-width: 600px) {
  .feature-item__img {
    max-width: 200px;
    padding-bottom: 32px;
  }
}
.feature-item__img img {
  width: 100%;
}
.feature-item__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .feature-item__text p {
    font-size: 13px;
  }
}
.feature-item__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .feature-item__wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .feature-item__wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.offer {
  padding: 140px 0;
  background: #EDEFF3;
  text-align: center;
}
@media (max-width: 600px) {
  .offer {
    padding: 48px 0;
  }
}
.offer h2 {
  text-transform: uppercase;
  color: #1C1C1C;
  font-size: 64px;
  margin: 0;
  padding-bottom: 40px;
  font-weight: 900;
}
@media (max-width: 600px) {
  .offer h2 {
    padding-bottom: 24px;
    font-size: 36px;
  }
}
.offer-subtitle {
  margin: 0;
  font-size: 24px;
  color: #707178;
  font-weight: 400;
}
@media (max-width: 600px) {
  .offer-subtitle {
    font-size: 16px;
  }
}
.offer-item {
  box-shadow: 0px 18px 36px rgba(0, 0, 0, 0.1019607843);
  border-radius: 16px;
  background: white;
  display: flex;
  flex-direction: column;
}
.offer-item__bottom {
  margin-top: auto;
}
.offer-item__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.offer-item__content-single {
  border-bottom: 2px solid rgba(235, 235, 237, 0.9294117647);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.offer-item__content-single:last-child {
  border: none;
}
.offer-item__content-single h6 {
  margin: 0;
  color: #1C1C1C;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 16px;
}
@media (max-width: 600px) {
  .offer-item__content-single h6 {
    font-size: 13px;
  }
}
.offer-item__content-single p {
  color: #707178;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 600px) {
  .offer-item__content-single p {
    font-size: 13px;
  }
}
.offer-item:first-child .offer-item__head {
  background: #707178;
}
.offer-item:first-child .offer-item__head p {
  color: white;
}
.offer-item:first-child .offer-item__head p:after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/single-star.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  z-index: 1;
  bottom: 0;
  margin: auto;
  background-size: contain;
}
.offer-item:first-child .offer-item__head p:before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/single-star.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  z-index: 1;
  bottom: 0;
  margin: auto;
  background-size: contain;
}
.offer-item:first-child .offer-item__price {
  color: #707178;
}
.offer-item:first-child .offer-item__btn a {
  background: #707178;
}
.offer-item:nth-child(2) .offer-item__head {
  background: #4D4DEF;
}
.offer-item:nth-child(2) .offer-item__head p {
  color: white;
}
.offer-item:nth-child(2) .offer-item__head p:after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/double-star.png);
  background-repeat: no-repeat;
  height: 15px;
  width: 30px;
  z-index: 1;
  bottom: 0;
  margin: auto;
  background-size: contain;
}
.offer-item:nth-child(2) .offer-item__head p:before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/double-star.png);
  background-repeat: no-repeat;
  height: 15px;
  width: 30px;
  z-index: 1;
  bottom: 0;
  margin: auto;
  background-size: contain;
}
.offer-item:nth-child(2) .offer-item__price {
  color: #4D4DEF;
}
.offer-item:nth-child(2) .offer-item__btn a {
  background: #4D4DEF;
}
.offer-item:nth-child(3) .offer-item__head {
  background: #FF5454;
}
.offer-item:nth-child(3) .offer-item__head p {
  color: white;
}
.offer-item:nth-child(3) .offer-item__head p:after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/tripple-star.png);
  background-repeat: no-repeat;
  height: 15px;
  width: 45px;
  z-index: 1;
  bottom: 0;
  margin: auto;
  background-size: contain;
}
.offer-item:nth-child(3) .offer-item__head p:before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  background-image: url(../imgs/tripple-star.png);
  background-repeat: no-repeat;
  height: 15px;
  width: 45px;
  z-index: 1;
  bottom: 0;
  margin: auto;
  background-size: contain;
}
.offer-item:nth-child(3) .offer-item__price {
  color: #FF5454;
}
.offer-item:nth-child(3) .offer-item__btn a {
  background: #FF5454;
}
.offer-item__price {
  font-weight: 900;
  font-size: 24px;
  margin: 0;
  padding-bottom: 24px;
}
@media (max-width: 600px) {
  .offer-item__price {
    font-size: 20px;
  }
}
.offer-item__btn {
  display: flex;
  justify-content: center;
}
.offer-item__btn a {
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 24px;
  color: white;
  width: 100%;
  transition: linear 0.2s all;
}
@media (max-width: 600px) {
  .offer-item__btn a {
    font-size: 14px;
  }
}
.offer-item__btn a:hover {
  background: #1C1C1C !important;
  transition: linear 0.2s all;
}
.offer-item__head {
  padding: 18px 24px;
  border-radius: 16px 16px 0 0;
  position: relative;
}
.offer-item__head p {
  font-weight: 900;
  font-size: 24px;
  margin: 0;
  position: relative;
}
@media (max-width: 600px) {
  .offer-item__head p {
    font-size: 16px;
  }
}
.offer-item__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 96px;
  gap: 32px;
}
@media (max-width: 900px) {
  .offer-item__wrap {
    grid-template-columns: 1fr 1fr;
    padding-top: 65px;
  }
}
@media (max-width: 600px) {
  .offer-item__wrap {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
}

.about {
  position: relative;
  padding: 120px 0;
  z-index: 1;
  text-align: center;
  background-image: url("../imgs/kto-sme-img.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .about {
    padding: 48px 0;
  }
}
.about:after {
  position: absolute;
  right: 0;
  content: "";
  top: 0;
  background-image: url("../imgs/kto-sme-right.svg");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: right top;
  z-index: -1;
}
@media (max-width: 1499px) {
  .about:after {
    width: 200px;
    height: 200px;
    background-size: contain;
  }
}
@media (max-width: 799px) {
  .about:after {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 600px) {
  .about:after {
    width: 60px;
    height: 60px;
  }
}
.about:before {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  background-image: url("../imgs/kto-sme-left.svg");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: left bottom;
  z-index: -1;
}
@media (max-width: 1499px) {
  .about:before {
    width: 200px;
    height: 200px;
    background-size: contain;
  }
}
@media (max-width: 799px) {
  .about:before {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 600px) {
  .about:before {
    width: 60px;
    height: 60px;
  }
}
.about h2 {
  font-size: 64px;
  text-transform: uppercase;
  padding-bottom: 96px;
  margin: 0;
  color: white;
}
@media (max-width: 600px) {
  .about h2 {
    padding-bottom: 24px;
    font-size: 36px;
    text-align: left;
  }
}
.about p {
  font-size: 16px;
  margin: 0;
  line-height: 2;
  max-width: 944px;
  margin: auto;
  color: white;
}
@media (max-width: 600px) {
  .about p {
    font-size: 13px;
    text-align: left;
  }
}

.contact {
  background: #EDEFF3;
  padding: 140px 0;
  text-align: center;
}
@media (max-width: 600px) {
  .contact {
    padding: 48px 0;
    border-bottom: 2px solid #dcdde1;
  }
}
.contact h2 {
  text-transform: uppercase;
  color: #1C1C1C;
  font-size: 64px;
  margin: 0;
  padding-bottom: 40px;
  font-weight: 900;
}
@media (max-width: 600px) {
  .contact h2 {
    padding-bottom: 24px;
    font-size: 36px;
    text-align: left;
  }
}
.contact-subtitle {
  margin: 0;
  font-size: 24px;
  color: #707178;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 600px) {
  .contact-subtitle {
    font-size: 16px;
    text-align: left;
  }
}
.contact__form {
  padding-top: 80px;
  max-width: 700px;
  margin: auto;
  box-sizing: border-box;
  display: flex;
}
@media (max-width: 600px) {
  .contact__form {
    padding-top: 40px;
  }
}
.contact__form span.wpcf7-not-valid-tip {
  font-size: 14px;
  text-align: left;
  margin-left: 10px;
  margin-top: 5px;
}
.contact__form-check p {
  color: #707178;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__form-check p a {
  color: #707178;
}
.contact__form-input {
  width: 100%;
  box-sizing: border-box;
}
.contact__form-input input {
  padding: 14px 24px;
  border-radius: 24px;
  font-size: 16px;
  outline: none;
  border: 1px solid #CBCCD2;
  box-sizing: border-box;
  width: 100%;
}
.contact__form-input input::-moz-placeholder {
  color: #CBCCD2;
}
.contact__form-input input::placeholder {
  color: #CBCCD2;
}
.contact__form-input textarea {
  padding: 14px 24px;
  border-radius: 24px;
  border: 1px solid #CBCCD2;
  font-size: 16px;
  outline: none;
  width: 100%;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
.contact__form-input textarea::-moz-placeholder {
  color: #CBCCD2;
}
.contact__form-input textarea::placeholder {
  color: #CBCCD2;
}
.contact__form-input select {
  padding: 14px 24px;
  border-radius: 24px;
  border: 1px solid #CBCCD2;
  font-size: 16px;
  outline: none;
  width: 100%;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #757575;
  position: relative;
  background: white;
}
.contact__form-input--select {
  position: relative;
}
.contact__form-input--select .wpcf7-form-control-wrap:after {
  position: absolute;
  content: "";
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 10px;
  background: no-repeat;
  background-image: url(../imgs/arrow-down.svg);
  background-size: contain;
}
.contact__form-input-text {
  color: #1C1C1C;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 14px;
}
@media (max-width: 600px) {
  .contact__form-input-text {
    font-size: 12px;
  }
}
.contact__form-input-wrap {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 600px) {
  .contact__form-input-wrap {
    display: grid;
    gap: 0;
  }
}
.contact__form-btn {
  padding-top: 40px;
}
.contact__form-btn p {
  margin: 0;
  display: grid;
  justify-content: center;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit {
  background: #4D4DEF;
  color: white;
  border: 0;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 75px;
  transition: linear 0.2s all;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
@media (max-width: 600px) {
  input.wpcf7-form-control.has-spinner.wpcf7-submit {
    font-size: 14px;
  }
}
input.wpcf7-form-control.has-spinner.wpcf7-submit:hover {
  background: #1C1C1C;
  transition: linear 0.2s all;
}

button[disabled], html input[disabled] {
  opacity: 0.35;
}

input[type=checkbox] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin: 0;
  margin-right: 7px;
}

span.wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed !important;
}

.support {
  padding-top: 100px;
  color: #1C1C1C;
}
@media (max-width: 600px) {
  .support {
    padding-top: 60px;
  }
}
.support-content {
  color: #1C1C1C;
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  .support-content {
    padding-bottom: 50px;
  }
}
.support-content p {
  line-height: 1.5;
}
.support-content p a {
  font-weight: bold;
  text-decoration: none;
  color: #4d4def;
}
.support-content li {
  line-height: 1.5;
}

.footer {
  padding-bottom: 35px;
  background: #EDEFF3;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 35px;
  border-top: 2px solid #e5e7eb;
}
@media (max-width: 800px) {
  .footer-inner {
    display: block;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    border: none;
  }
}
@media (max-width: 800px) {
  .footer-item {
    text-align: center;
  }
  .footer-item--center {
    width: 100%;
  }
}
.footer-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 38px;
}
@media (max-width: 800px) {
  .footer-item ul {
    justify-content: center;
    padding-top: 32px;
  }
}
@media (max-width: 350px) {
  .footer-item ul {
    display: block;
  }
}
@media (max-width: 350px) {
  .footer-item ul li {
    margin-bottom: 10px;
  }
}
.footer-item ul li a {
  text-decoration: none;
  color: #707178;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .footer-item ul li a {
    font-size: 11px;
  }
}
.footer .copyright {
  color: #CBCCD2;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 800px) {
  .footer .copyright {
    text-align: center;
    padding-top: 32px;
  }
}
@media (max-width: 800px) and (max-width: 600px) {
  .footer .copyright {
    font-size: 11px;
  }
}

.header {
  padding: 15px 0;
  background-color: #FFFFFF;
  width: 100%;
  z-index: 100;
  top: 0;
  transition: linear 0.2s all;
  position: fixed;
}
@media (max-width: 1000px) {
  .header {
    padding: 10px 0;
  }
}
@media (max-width: 1000px) {
  .header:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    background: white;
    height: auto;
    width: 74px;
  }
}
.header.scrolled {
  padding: 10px 0;
  transition: linear 0.2s all;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}
.header.scrolled .header-main__logo img {
  height: 50px;
  transition: linear 0.2s all;
}
@media (max-width: 1000px) {
  .header.scrolled .header-main__logo img {
    height: 33px;
  }
}
.header-mobile {
  display: none;
  position: relative;
}
@media (max-width: 1000px) {
  .header-mobile {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
  }
}
.header-mobile__icon {
  text-align: right;
}
.header-mobile ul#primary-menu {
  display: grid;
  position: absolute;
}
@media (max-width: 1000px) {
  .header-mobile ul#primary-menu {
    transform: translateX(-100%);
    transition: cubic-bezier(0.43, 0.76, 1, 1) 0.2s all;
    opacity: 0;
    height: 100vh;
    width: 100%;
  }
}
.header-mobile .header-main__logo img {
  height: 33px;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .header-main {
    display: none;
  }
}
.header-main__logo a {
  display: block;
}
.header-main__logo a img {
  height: 80px;
  width: 100%;
  transition: linear 0.2s all;
}
.header-main__menu ul {
  display: flex;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-main__menu ul li a {
  text-decoration: none;
  color: #1C1C1C;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
}
.header-main__menu ul li a.active {
  color: #FF5454;
  border-bottom: 2px solid;
  transition: linear 0.2s all;
}

.toggled-view .header:before {
  background: #FF5454;
  transition: linear 0.2s all;
}

.toggled-view .menu-toggle .menu__btn-bar {
  background: white;
  transition: linear 0.2s all;
}

.menu-toggle {
  display: none;
  outline: none;
  left: 0px;
  cursor: pointer;
  position: absolute;
  width: 35px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
}
@media (max-width: 1199px) {
  .menu-toggle {
    display: block;
  }
}
.menu-toggle .menu__btn-bar {
  width: 35px;
  height: 2px;
  background: #1c1c1c;
  position: absolute;
  border-radius: 15px;
  right: 0;
}
.menu-toggle .menu__btn-bar:nth-child(1) {
  top: 3px;
}
.menu-toggle .menu__btn-bar:nth-child(3) {
  bottom: 0px;
}

.toggled-view {
  overflow: hidden;
}

.toggled-view .header ul#primary-menu {
  display: grid;
  place-content: center;
  place-items: center;
  position: fixed;
  width: 100%;
  left: 0;
  background: #FF5454;
  height: 100vh;
  top: 57px;
  transform: translateX(0px);
  opacity: 1;
  padding-bottom: 57px;
}
.toggled-view .header ul#primary-menu a {
  color: white;
}/*# sourceMappingURL=style.css.map */