@font-face {
  font-family: "Nordique Pro";
  src: url(../fonts/NordiquePro-Regular.otf);
  font-weight: 400;
}
@font-face {
  font-family: "Nordique Pro";
  src: url(../fonts/NordiquePro-Semibold.otf);
  font-weight: 600;
}
@font-face {
  font-family: "Nordique Pro";
  src: url(../fonts/Nordique\ Pro\ Bold.otf);
  font-weight: 700;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol,
li {
  list-style: none;
  line-height: 150%;
}

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

html,
body {
  height: 100%;
  font-family: "Nordique Pro", sans-serif;
  line-height: 150%;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  line-height: 150%;
  overflow: hidden;
}

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

main {
  flex: 1 1 auto;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 40px 0px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 615px) {
  .header {
    padding: 20px 0px;
  }
  .header._stiky {
    padding: 21px 0px;
  }
}
.header._stiky {
  padding: 14px 0px;
  background: #00B3C6;
	position: fixed;
}
.header._stiky .header__btn, .header._stiky .header__btn-mob {
  padding: 5px 48px;
}
.header._stiky .header__nav-li a:hover {
  color: #333;
  border-bottom: 2px solid #333;
}

.header._stiky .nav-li.active {
  color: #333;
  border-bottom: 2px solid #333;
}
.nav-li.active {
  color: #00B3C6;
}


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

.header__logo {
  width: 245px;
  height: 45px;
  z-index: 11;
}
@media (max-width: 615px) {
  .header__logo {
    width: 180px;
    height: 33px;
  }
}

@media (max-width: 965px) {
  .header__nav {
    transition: all 0.3s ease 0s;
    left: -100%;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
    background: #00B3C6;
  }
  .header__nav._active {
    left: 0;
  }
}
@media (max-width: 965px) and (max-width: 965px) {
  .header__nav {
    justify-content: space-around;
    padding-top: 75px;
    padding-right: 15px;
  }
}

.header__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 420px;
}
@media (max-width: 965px) {
  .header__nav-link {
    display: block;
    width: auto;
  }
  .header__nav-link > *:not(:last-child) {
    margin-bottom: 30px;
  }
}

.header__nav-li a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.header__nav-li a:hover {
  color: #00B3C6;
}
@media (max-width: 965px) {
  .header__nav-li a {
    font-size: 24px;
  }
}

.header__btn, .header__btn-mob {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  justify-content: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  border: 2px solid #FFFFFF;
  transition: all 0.3s ease 0s;
  padding: 13px 48px;
}
.header__btn:hover, .header__btn-mob:hover {
  background-color: #fff;
  color: #00B3C6;
}
@media (max-width: 965px) {
  .header__btn, .header__btn-mob {
    display: none;
  }
}

.header__btn-mob {
  display: none;
}
@media (max-width: 965px) {
  .header__btn-mob {
    display: block;
    width: 234px;
  }
}
@media (max-width: 480px) {
  .header__btn-mob {
    width: 100%;
  }
}

.burger-menu {
  display: none;
}
@media (max-width: 965px) {
  .burger-menu {
    display: block;
    width: 50px;
    height: 33px;
    cursor: pointer;
    position: relative;
    z-index: 11;
  }
}

.burger-menu span,
.burger-menu::after,
.burger-menu::before {
  position: absolute;
  width: 100%;
  height: 6%;
  background-color: #fff;
  transition: all 0.3s ease 0s;
}

.burger-menu::after,
.burger-menu::before {
  content: "";
}

.burger-menu::after {
  bottom: 15%;
}

.burger-menu::before {
  top: 15%;
}

.burger-menu span {
  top: 50%;
  transform: scale(1) translateY(-50%);
}

.burger-menu._active span {
  transform: scale(0) translateY(-50%);
}

.burger-menu._active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
  background-color: #fff;
}

.burger-menu._active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0px, 50%);
  background-color: #fff;
}


.start {
  background: url(../images/main-bg.jpg) no-repeat;
  background-size: 100% 100%;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 965px) {
  .start {
    background-size: cover;
  }
}

.start__text {
  font-weight: 600;
  font-size: 96px;
  line-height: 100%;
  margin-bottom: 25px;
  color: #fff;
}
@media (max-width: 480px) {
  .start__text {
    font-size: 68px;
  }
}

.start__subtext {
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  color: #fff;
  max-width: 466px;
}
@media (max-width: 480px) {
  .start__subtext {
    font-size: 32px;
  }
}

.start__btn {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #00B3C6;
  border: 2px solid transparent;
  transition: all 0.3s ease 0s;
  padding: 13px 48px;
  width: 230px;
  background-color: #fff;
}
.start__btn:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
@media (max-width: 480px) {
  .start__btn {
    width: 100%;
    display: flex;
  }
}

.mission {
  background-color: #00B3C6;
}

.mission__wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 100%;
  gap: 70px;
  padding: 90px 0px 40px 0px;
}
@media (max-width: 1260px) {
  .mission__wrap {
    gap: 40px;
  }
}
@media (max-width: 1225px) {
  .mission__wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 690px) {
  .mission__wrap {
    padding: 40px 0px 20px 0px;
    gap: 20px;
  }
}

.mission__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.arrow__dec {
  width: 307px;
}
@media (max-width: 1225px) {
  .arrow__dec {
    width: calc(150px + 157 * (100vw - 375px) / 850);
  }
}
@media (max-width: 530px) {
  .arrow__dec {
    display: none;
  }
}

.arrow__mob {
  display: none;
}
@media (max-width: 530px) {
  .arrow__mob {
    display: block;
    width: 22px;
    transform: rotate(90deg);
  }
}

.mission__text {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: #fff;
}

.mission__subtext {
  max-width: 660px;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
}
@media (max-width: 1205px) {
  .mission__subtext {
    max-width: 100%;
  }
}
@media (max-width: 530px) {
  .mission__subtext {
    font-size: 18px;
  }
}

.solutions {
  padding: 100px 0px 80px 0px;
}
@media (max-width: 690px) {
  .solutions {
    padding: 40px 0px 20px 0px;
  }
}

.solution__headtext {
	 max-width: 1265px;
  margin: 0 auto;
  padding: 0 15px;
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  color: #00B0D0;
  margin-bottom: 55px;
}
@media (max-width: 690px) {
  .solution__headtext {
    margin-bottom: 20px;
    font-size: 30px;
  }
}

.solution__tabs-list {
	text-align:center;
	 width: 100vw;
  margin: 0 auto;
  padding: 0 15px;
/*   display: flex;
  align-items: center;
  justify-content: space-between; */
}
@media (max-width: 1000px) {
  .solution__tabs-list {
    overflow-x: scroll;
/*     width: 1000px; */
  }
}

.solution__tabs-wrap {
  overflow: scroll;
  padding-bottom: 10px;
  margin-bottom: 50px;

}
@media (max-width: 1000px) {
  .solution__tabs-wrap {
    cursor: move;
    margin-bottom: 30px;
  }
}

.solution__tab {
  display:inline;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: #171630;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  margin-right:60px;
}
.solution__tab:last-child {
	margin-right:0px;
}
@media (max-width: 1440px) {
	.solution__tab {
		  margin-right: calc(15px + (60 - 15) * (100vw - 320px) / (1440 - 320));;
	}
}
.solution__tab:hover {
  text-shadow: 0 0 0.65px #333, 0 0 0.65px #333;
  border-bottom: 2px solid #00B0D0;
}

.solution__tabs-list {
		 max-width: 1265px;
  margin: 0 auto;
  padding: 0 15px;
}
.solution__content-item {
		 max-width: 1265px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid #00B3C6;
  padding-bottom: 25px;
  padding-top: 60px;
}
.solution__content-item:first-child {
  padding-top: 50px;
}
@media (max-width: 1000px) {
  .solution__content-item {
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
  }
}
.solution__content-item:last-child {
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media (max-width: 480px) {
  .solution__content-item {
    padding-top: 50px;
  }
  .solution__content-item:first-child {
    padding-top: 50px;
  }
}

.item__number {
  position: relative;
  opacity: 0.6;
  font-weight: 700;
  font-size: 196px;
  line-height: 100%;
  color: #fff;
  text-shadow: 0 -2px 0 #00B0D0, 0 -2px 0 #00B0D0, 0 2px 0 #00B0D0, 0 2px 0 #00B0D0, -2px 0 0 #00B0D0, 2px 0 0 #00B0D0, -2px 0 0 #00B0D0, 2px 0 0 #00B0D0, -1px -2px 0 #00B0D0, 1px -2px 0 #00B0D0, -1px 2px 0 #00B0D0, 1px 2px 0 #00B0D0, -2px -1px 0 #00B0D0, 2px -1px 0 #00B0D0, -2px 1px 0 #00B0D0, 2px 1px 0 #00B0D0, -2px -2px 0 #00B0D0, 2px -2px 0 #00B0D0, -2px 2px 0 #00B0D0, 2px 2px 0 #00B0D0, -2px -2px 0 #00B0D0, 2px -2px 0 #00B0D0, -2px 2px 0 #00B0D0, 2px 2px 0 #00B0D0;
}
.item__number::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #00B0D0;
  bottom: 30px;
}
@media (max-width: 1024px) {
  .item__number::after {
    bottom: 20px;
  }
}
@media (max-width: 480px) {
  .item__number::after {
    width: 20px;
    height: 20px;
    bottom: 15px;
  }
}
@media (max-width: 1024px) {
  .item__number {
    font-size: 140px;
  }
}
@media (max-width: 480px) {
  .item__number {
    font-size: 100px;
  }
}

.item__content {
  max-width: 600px;
}
@media (max-width: 1000px) {
  .item__content {
    max-width: 100%;
  }
}
@media (max-width: 630px) {
  .item__content {
    gap: 15px;
  }
}

.item__content-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #00B0D0;
  margin-bottom: 40px;
  position: relative;
}
.item__content-name::before {
  content: "";
  background: url(../images/icon-card.svg) no-repeat;
  background-size: cover;
  position: absolute;
  width: 112px;
  height: 80px;
  left: -142px;
  top: 0;
}
@media (max-width: 1000px) {
  .item__content-name::before {
    width: 42px;
    height: 30px;
    left: 0px;
    top: -3px;
  }
}
@media (max-width: 1000px) {
  .item__content-name {
    padding-left: 55px;
  }
}

.item__content-subname {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 30px;
}
.item__content-subname:last-child {
  margin-bottom: 0px;
}
.item__content-subname span {
  font-weight: 700;
}
@media (max-width: 630px) {
  .item__content-subname {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.online::before {
  content: "";
  background: url(../images/icon-online.svg) no-repeat;
  background-size: cover;
  position: absolute;
  width: 96px;
  height: 112px;
  left: -142px;
  top: 0;
}
@media (max-width: 1000px) {
  .online::before {
    width: 42px;
    height: 49px;
    left: 0px;
    top: -10px;
  }
}

.offline::before {
  content: "";
  background: url(../images/icon-offline.svg) no-repeat;
  background-size: cover;
  position: absolute;
  width: 96px;
  height: 112px;
  left: -142px;
  top: 0;
}
@media (max-width: 1000px) {
  .offline::before {
    width: 42px;
    height: 49px;
    left: 0px;
    top: -10px;
  }
}

.terminal::before {
  content: "";
  background: url(../images/icon-terminal.svg) no-repeat;
  background-size: cover;
  position: absolute;
  width: 80px;
  height: 112px;
  left: -142px;
  top: 0;
}
@media (max-width: 1000px) {
  .terminal::before {
    width: 42px;
    height: 59px;
    left: 0px;
    top: -20px;
  }
}

.pay::before {
  content: "";
  background: url(../images/icon-pay.svg) no-repeat;
  background-size: cover;
  position: absolute;
  width: 64px;
  height: 112px;
  left: -142px;
  top: 0;
}
@media (max-width: 1000px) {
  .pay::before {
    width: 42px;
    height: 74px;
    left: 0px;
    top: -25px;
  }
}

.save::before {
  content: "";
  background: url(../images/icon-save.svg) no-repeat;
  background-size: cover;
  position: absolute;
  width: 113px;
  height: 117px;
  left: -142px;
  top: 0;
}
@media (max-width: 1000px) {
  .save::before {
    width: 42px;
    height: 42px;
    left: 0px;
    top: 2px;
  }
}


.product {
  background: url(../images/product-bg.png) no-repeat;
  background-size: cover;
  padding: 85px 0px 115px 0px;
}
@media (max-width: 690px) {
  .product {
    padding: 40px 0px 20px 0px;
  }
}

.product__headtext {
  position: relative;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: #171630;
  max-width: 537px;
  margin-bottom: 50px;
}
.product__headtext span {
  color: #fff;
}
.product__headtext::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
@media (max-width: 480px) {
  .product__headtext::after {
    top: -10px;
  }
}
/* @media (max-width: 560px) {
  .product__headtext {
    font-size: 7vw;
  }
} */
@media (max-width: 560px) {
  .product__headtext {
    font-size: 30px;
    margin-bottom: 25px;
    max-width: 340px;
  }
}

.product__subtext {
  font-weight: 600;
  font-size: 14px;
  line-height: 175%;
  color: #171630;
  margin-bottom: 50px;
  max-width: 505px;
}
@media (max-width: 480px) {
  .product__subtext {
    margin-bottom: 25px;
  }
}

.benefits {
  background: #00B3C6 url(../images/benefit-bg.png) no-repeat;
  background-size: cover;
  padding: 60px 0px 75px 0px;
}
@media (max-width: 690px) {
  .benefits {
    padding: 40px 0px 20px 0px;
  }
}

.benefits__text {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 95px;
}
@media (max-width: 980px) {
  .benefits__text {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .benefits__text {
    font-size: 30px;
    margin-bottom: 25px;
  }
}

.benefits__wrap {
  display: flex;
}
@media (max-width: 980px) {
  .benefits__wrap {
    display: block;
  }
}
@media (max-width: 480px) {
  .benefits__wrap {
    margin-bottom: 20px;
  }
}

.benefits__accordion {
  height: 690px;
  display: flex;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  max-width: 72px;
  border-right: 2px solid #FFFFFF;
}
.benefits__accordion:first-child {
  border-left: 2px solid #FFFFFF;
}
@media (max-width: 980px) {
  .benefits__accordion {
    display: block;
  }
}
.benefits__accordion.active {
  max-width: 850px;
  justify-content: center;
}
@media (max-width: 1280px) {
  .benefits__accordion.active {
    max-width: calc(50px + 800 * (100vw - 320px) / 960);
  }
}
@media (max-width: 980px) {
  .benefits__accordion.active {
    max-width: 100%;
  }
}
.benefits__accordion.active .benefits__trigger {
  opacity: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
	
}
.benefits__accordion.active .benefits__content {
  opacity: 1;
  visibility: visible;
  left: 0%;
}
@media (max-width: 980px) {
  .benefits__accordion.active .benefits__content {
    top: 0%;
    height: auto;
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .benefits__accordion {
    height: 500px;
  }
}
@media (max-width: 980px) {
  .benefits__accordion {
    height: auto;
    max-width: 100%;
    border-right: none;
    border-bottom: 2px solid #FFFFFF;
  }
  .benefits__accordion:first-child {
    border-left: none;
    border-top: 2px solid #FFFFFF;
  }
}

.benefits__trigger {
  position: relative;
  padding: 0px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease 0s;
}
.benefits__trigger::after {
  content: "";
  position: absolute;
  background: url(../images/arrow-small.png) no-repeat;
  background-size: cover;
  width: 32px;
  height: 40px;
  bottom: 0;
  opacity: 0;
  transition: all linear 0.1s;
}
@media (max-width: 1024px) {
  .benefits__trigger::after {
    width: 25px;
    height: 20px;
  }
}
@media (max-width: 980px) {
  .benefits__trigger::after {
    transform: rotate(90deg);
    left: 0;
    bottom: 40%;
    width: 20px;
    height: 15px;
  }
}
@media (max-width: 980px) {
  .benefits__trigger {
    padding: 22px 0px;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .benefits__trigger {
    padding: 15px 0px;
  }
}
.benefits__trigger:hover::after {
  opacity: 1;
}
.benefits__trigger:hover .trigger__name {
  padding-top: 50px;
}
@media (max-width: 1024px) {
  .benefits__trigger:hover .trigger__name {
    padding-top: 30px;
  }
}
@media (max-width: 980px) {
  .benefits__trigger:hover .trigger__name {
    padding-top: 0px;
  }
  .benefits__trigger:hover .trigger__name:hover {
    padding-left: 30px;
  }
}

.trigger__icon {
  width: 32px;
  height: 32px;
}

.trigger__name {
  transition: all 0.3s ease 0s;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  transform: rotate(-180deg);
}
@media (max-width: 1024px) {
  .trigger__name {
    font-size: 18px;
  }
}
@media (max-width: 980px) {
  .trigger__name {
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .trigger__name {
    font-size: 18px;
  }
}

.benefits__content {
  cursor: default;
  opacity: 0;
  visibility: hidden;
  left: -100%;
}
@media (max-width: 980px) {
  .benefits__content {
    top: -100%;
    height: 0;
    overflow: hidden;
  }
}

.content__name {
  transition: all 0.3s ease 0s;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 50px;
}
@media (max-width: 980px) {
  .content__name {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .content__name {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.benefits__content-wrap {
  max-width: 480px;
}
.benefits__content-wrap > *:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .benefits__content-wrap > *:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 1024px) {
  .benefits__content-wrap {
    margin-bottom: 25px;
  }
}

.benefits__content-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #FFFFFF;
}
.benefits__content-description span {
  font-weight: 700;
}
@media (max-width: 480px) {
  .benefits__content-description {
    font-size: 16px;
  }
}

.icon__wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 800px;
}
@media (max-width: 1280px) {
  .icon__wrap {
    width: calc(1px + 799 * (100vw - 320px) / 960);
  }
}
@media (max-width: 980px) {
  .icon__wrap {
    width: 100%;
  }
}

.content__icon {
  width: 360px;
  height: 360px;
}
@media (max-width: 1024px) {
  .content__icon {
    width: 215px;
    height: 200px;
  }
}
@media (max-width: 980px) {
  .content__icon {
    width: 160px;
    height: 140px;
  }
}
@media (max-width: 480px) {
  .content__icon {
    width: 100px;
    height: 80px;
  }
}

.section__contact {
  background-color: #171630;
  padding: 70px 0px 0px 0px;
}
@media (max-width: 480px) {
  .section__contact {
    padding: 30px 0px 0px 0px;
  }
}

.section__contact-contain {
  max-width: 1300px;
  margin: 0 auto;
}

.section__contact-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1240px) {
  .section__contact-wrap {
    display: block;
  }
}

@media (max-width: 1240px) {
  .section__about {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}
@media (max-width: 980px) {
  .section__about {
    display: block;
  }
}

.section__contact-name {
  font-size: 48px;
  font-weight: 700;
  line-height: 175%;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 580px) {
  .section__contact-name {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

.section__contact-subname {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 75px;
  max-width: 490px;
}
@media (max-width: 1240px) {
  .section__contact-subname {
    margin-bottom: 0px;
  }
}
@media (max-width: 980px) {
  .section__contact-subname {
    margin-bottom: 40px;
  }
}

.footer-logo {
  width: 160px;
  height: 30px;
  margin-bottom: 30px;
}

.limited {
  font-size: 14px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 15px;
  color: #fff;
}

@media (max-width: 1240px) {
  .block-address {
    flex: 0 0 45%;
  }
}
@media (max-width: 980px) {
  .block-address {
    flex: 1 1 100%;
  }
}

.address__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 490px;
}
@media (max-width: 480px) {
  .address__wrap {
    display: block;
  }
}

.addres {
  max-width: 245px;
  color: #fff;
}

.address__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 15px;
}
.address__text span {
  font-weight: 700;
}

.mail {
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  text-decoration: underline;
  margin-bottom: 15px;
}

.phone {
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
}
@media (max-width: 480px) {
  .phone {
    margin-bottom: 20px;
  }
}

.worktime {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 12px;
}
.worktime span {
  font-weight: 700;
}

label {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
}

.form__input__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.form__input__wrap > *:not(:last-child) {
  margin-right: 35px;
}
@media (max-width: 1240px) {
  .form__input__wrap > *:not(:last-child) {
    margin-right: 0px;
  }
}
@media (max-width: 580px) {
  .form__input__wrap {
    flex-direction: column;
  }
}

.input {
  width: 300px;
  height: 48px;
  border: none;
}
@media (max-width: 1240px) {
  .input {
    width: 47vw;
  }
}
@media (max-width: 980px) {
  .input {
    width: 46vw;
  }
}
@media (max-width: 580px) {
  .input {
    width: 92vw;
    margin-bottom: 15px;
  }
}

.input-area {
  width: 100%;
  height: 170px;
  resize: none;
  margin-bottom: 30px;
}

.form__check {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 630px) {
  .form__check {
    display: block;
  }
}
.form__check label {
  font-size: 14px;
  max-width: 340px;
}
.form__check .option {
  display: block;
  position: relative;
}
@media (max-width: 630px) {
  .form__check .option {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .form__check .option {
    margin-bottom: 10px;
  }
}
.form__check .check {
  padding-left: 30px;
}
.form__check .check__input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
}
.form__check .check__box {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-left: -30px;
  margin-top: 10px;
}
.form__check .check__input:checked + .check__box {
  background-color: #00B3C6;
  border: 4px solid #fff;
}

.input-select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

.select {
  position: relative;
}
.select::after {
  content: "";
  position: absolute;
  background: url(../image/arrow.png) no-repeat;
  background-size: cover;
  width: 22px;
  height: 12px;
  right: 10px;
  top: 42px;
  z-index: 20;
}

.form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  color: #fff;
  padding: 13px 20px;
  border: 2px solid #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
  width: 230px;
}
@media (max-width: 630px) {
  .form__btn {
    width: 100%;
  }
}

.privacy {
  text-decoration: underline;
  color: #00B3C6;
}

.section__contact-call {
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #00B3C6;
  margin-bottom: 15px;
}

.worktime__privacy {
  font-size: 14px;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #00B3C6;
}

.contact__footer-wrap {
  opacity: 0.3;
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact__footer-wrap img {
  width: 120px;
}
@media (max-width: 960px) {
  .contact__footer-wrap img {
    width: 80px;
  }
}
@media (max-width: 960px) {
  .contact__footer-wrap {
    padding: 30px 0px;
  }
}

.footer-line {
  width: 1130px;
  height: 2px;
  background-color: white;
}
@media (max-width: 1440px) {
  .footer-line {
    width: calc(150px + 880 * (100vw - 320px) / 1120);
  }
}

.footer-data {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: white;
}
@media (max-width: 960px) {
  .footer-data {
    font-size: 22px;
  }
}

.we {
  display: flex;
  justify-content: space-between;
}
.wpcf7-form-control .has-spinner  {
  display: none;
}
.check br {
  display: none;
}

input[type="checkbox"],
input[type="radio"] {
	display: none !important;
}

input[type="checkbox"] + span:before,
input[type="checkbox"] + label:before,
input[type="radio"] + span:before,
input[type="radio"] + label:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em;
	width: 1.6em;		/*Можно увеличить или уменьшить ширину*/
	height: 1.6em;		/*и высоту*/
	background-size: cover
}
input[type="checkbox"] + span:before,
input[type="checkbox"] + label:before {
border:  2px solid #fff;
	border-radius: 3px;
		width: 24px;
	height: 24px;
	margin-left: -43px;
}
input[type="radio"] + span:before,
input[type="radio"] + label:before {
	border:  2px solid #fff;
	border-radius: 3px;
}
input[type="checkbox"]:checked + span:before,
input[type="checkbox"]:checked + label:before {
	border:  6px solid #fff;
	border-radius: 3px;
  background-color: #00B3C6;
	/* content: url(http://angra.money/wp-content/uploads/2022/10/Rectangle-20.png); */
	width: 24px;
	height: 24px;

}
input[type="radio"]:checked + span:before,
input[type="radio"]:checked + label:before {
  border:  2px solid #fff;
	border-radius: 3px;
}
.we {
    display: flex;
    justify-content: space-between;
}

span.wpcf7-list-item-label {
    padding-left: 15px;
}

.form__check .check {
    padding-left: 15px;
    width: 320px;
}

@media screen and (max-width: 900px) {
	.we {
    flex-direction: column;
}
}

.form__check {
  height: 60px;
}
/* .wpcf7-response-output {
  display: none;
} */
.wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
	color: #fff;
}
.wpcf7-response-output {
	color: #fff;
}
.open {
    position: fixed;
    top: 73px;
	background:#fff;
	padding: 20px 15px;
	z-index:15;
	-webkit-box-shadow: 0px 20px 16px -5px rgba(34, 60, 80, 0.4);
-moz-box-shadow: 0px 20px 16px -5px rgba(34, 60, 80, 0.4);
box-shadow: 0px 20px 16px -5px rgba(34, 60, 80, 0.4);
	max-width: 100vw;
	 margin: 0 auto;
	 transition: opacity 0.3s ease 0s;
	opacity:1;
	text-align:center;
	  animation: ring 0.4s  linear;
}
@media screen and (max-width: 900px) {
	.open {
		 top: 60px;
	}
}
@keyframes ring {
    from {
    opacity:0;
    }
    to {
      opacity:1;
    }
}
@media screen and (max-width: 600px ) {
.mission__wrap {
    padding: 40px 0px 40px 0px !important;

}
	.product {
    padding: 40px 0px 40px 0px !important;
}
	li.solution__tab {
    border-right: 1px solid #00B3C6;
    padding-right: 10px;
    margin-right: 10px;
    line-height: 30px;
}
	.solution__tab:hover {
  
    border-bottom: none;
}
	}