:root {
  --header-height-desktop: 85px;
  --font-family: 'Fixel Text';

  /*collor*/
  --white: #ffffff;
  --text-color: #32323c;
  --text-color-change: #32323c;
  --accent-color: #1a73e8;
  --accent-link: #008ddf;
  --red: #d02035;
  --blue: #1a73e8;
  --yellow: #fbbf12;
  --green: #279847;
}
.blue {
  color: var(--blue);
}
.red {
  color: var(--red);
}
.yellow {
  color: var(--yellow);
}
.green {
  color: var(--green);
}
.black {
  color: var(--text-color);
}

.email-input {
  border: none !important;
}
.0T1jZINMZQE2TM2EMkDujMNxl2WjZQO,
.0T1jZINMZQE2TM2EMkDujMNxl2WjZQO.0T1jZINMZQE2TM2EMkDujMNxl2WjZQOtheme--light{
    display: none!important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 230px;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  color: #fff;
}

img {
  width: 100%;
}

button,
button:hover,
button:active,
button:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
p,
span,
div,
li,
ul {
  margin: 0;
  padding: 0;
  line-height: normal;
}

button,
a,
input,
label,
textarea,
select {
  font-family: var(--font-family);
}

/*font*/
@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-Bold.eot');
  src: local('Fixel Text Bold'), local('../fonts/FixelText-Bold'),
    url('../fonts/FixelText-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FixelText-Bold.woff2') format('woff2'),
    url('../fonts/FixelText-Bold.woff') format('woff'),
    url('../fonts/FixelText-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-Light.eot');
  src: local('Fixel Text Light'), local('../fonts/FixelText-Light'),
    url('../fonts/FixelText-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FixelText-Light.woff2') format('woff2'),
    url('../fonts/FixelText-Light.woff') format('woff'),
    url('../fonts/FixelText-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-Regular.eot');
  src: local('Fixel Text Regular'), local('../fonts/FixelText-Regular'),
    url('../fonts/FixelText-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FixelText-Regular.woff2') format('woff2'),
    url('../fonts/FixelText-Regular.woff') format('woff'),
    url('../fonts/FixelText-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-Medium.eot');
  src: local('Fixel Text Medium'), local('../fonts/FixelText-Medium'),
    url('../fonts/FixelText-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FixelText-Medium.woff2') format('woff2'),
    url('../fonts/FixelText-Medium.woff') format('woff'),
    url('../fonts/FixelText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-SemiBold.eot');
  src: local('Fixel Text Semi Bold'), local('../fonts/FixelText-SemiBold'),
    url('../fonts/FixelText-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FixelText-SemiBold.woff2') format('woff2'),
    url('../fonts/FixelText-SemiBold.woff') format('woff'),
    url('../fonts/FixelText-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: 'Fixel Text';
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--text-color);
}

.container {
  max-width: 1330px;
  margin: 0px auto;
  padding: 0px 44px;
  width: 100%;
}

.header {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.65);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
/*active menu */

.header.active {
  background-color: #32323c;
}

.header.active .header__link {
  color: #fff;
}

.header.active .triangle path {
  fill: #fff;
}
.header.active .dropdown-menu {
  color: #32323c;
}

.header.active #currentLanguage {
  color: #fff;
}

.header.active .header__logo-img {
  filter: grayscale(1);
}

/*global*/
.white__btn,
.contact__btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 21px 7px 21px;
  border: 2px solid var(--white);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  max-width: fit-content;
  margin: 0 auto;
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(50, 50, 60, 0.35);
}

.white__btn--change {
  color: var(--text-color-change);
  border: 2px solid var(--text-color-change);
}

.white__btn-svg path {
  transition: all 0.3s ease;
}

.white__btn-svg {
  margin-left: 15px;
  stroke: var(--text-color-change);
}

.white__btn:hover {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.main .container .white__btn:hover,
.offer__btns .white__btn:hover {
    border: 2px solid transparent;
    background: aliceblue;
    transform: translateY(-3px);
}

.white__btn:hover .white__btn-svg path {
  stroke: var(--accent-color);
}

.header__body {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 85px;
  align-items: center;
  padding-right: 150px;
}

.header__list {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 6;
  justify-content: center;
}

.header__item {
  list-style: none;
}

.header__item + .header__item {
  margin: 0px 0px 0px 85px;
}

.header__link {
  color: var(--text-color);
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  z-index: 6;
}

.header__menu {
  display: flex;
  align-items: center;
  width: 100%;
}

.header__burger {
  display: none;
}

.header__logo {
  max-width: 217px;
  max-height: 63px;
}
.header__logo-img {
  width: 217px;
}

.language-selector {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.language-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  max-width: 60px;
  text-transform: uppercase;
}

.triangle {
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #6e7076;
}
.bg__link {
  max-width: 1728px;
  margin: 0 auto;
}
#currentLanguage {
  font-weight: 500;
  font-size: 16px;
}

.language-button.active .triangle {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style-type: none;
  padding: 0;
  margin: 5px 0 0 0;
  width: 140px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.dropdown-item {
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-transform: uppercase;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

/*main*/

.main {
  height: fit-content;
  max-width: 1728px;
  max-height: 706px;
  background: url(../img/main.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: local;
  position: relative;
  z-index: 0;
  padding-bottom: 85px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.main__event {
  height: fit-content;
  max-width: 1728px;
  max-height: 578px;
  background: url(../img/event-main.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: local;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  padding-bottom: 85px;
  margin-top: 85px;
  overflow: hidden;
}

.main__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7rem;
}

.main__text {
  margin-bottom: 45px;
  width: 100%;
}

.main__text--center {
  text-align: center;
  width: fit-content;
}

h1 {
  font-family: var(--font-family);
  font-size: 50px;
  font-weight: 600;
  max-width: 1028px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 129%;
}

section {
  margin: 0 auto;
  margin-bottom: 100px;
  overflow: hidden;
}

.title-h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
}

.subtitle {
  font-weight: 400;
  font-size: 24px;
  text-align: justify;
}

.main__subtitle {
  font-size: 24px;
  max-width: 498px;
  color: var(--white);
}

.main__img {
  margin-right: -20px;
  max-width: 170px;
}

.main--inner {
  display: flex;
  justify-content: start;
  align-items: center;
}
.main--inner .main__wrap,
.main--inner .main__text,
.main--inner .main__text h1 {
  padding: 0;
  margin: 0;
}
.main--inner .main__text h1 {
  padding-top: 3rem;
}

/*potential*/
.potential {
  padding-bottom: 133px;
  position: relative;
  margin-bottom: 0;
}

.potential__wrap {
  display: flex;
  justify-content: space-between;
  gap: 33px;
  padding-top: 80px;
  position: relative;
}

.potential__wrap:after {
  content: '';
  position: absolute;
  background-image: url(../img/potential/bg.svg);
  background-repeat: no-repeat;
  left: -363px;
  bottom: -80px;
  top: auto;
  right: 0;
  width: 1754px;
  height: 492px;
  z-index: -1;
}
.potential__wrap .potential__item:nth-child(2n) {
  margin-top: 78px;
}

.potential__item {
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.17);
  background: #fff;
  flex: 1;
  border-radius: 25px;
  padding: 20px;
  height: fit-content;
  transition: transform 0.3s ease;
  min-width: 290px;
}

.potential__item:hover {
  transform: translateY(-5px);
}

.potential__item-herder {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}

.potential__item-herder img {
  max-width: 54px;
}

.potential__item-title {
  font-weight: 500;
  font-size: 24px;
}

.potential__item-subtitle {
  font-weight: 400;
  font-size: 20px;
}

/*business*/
.business {
  margin-bottom: 85px;
}

.business__wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 62px;
  gap: 70px;
}

.business__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.business__item {
  max-width: 908px;
}

.business__item-content {
  display: flex;
}

.business__item-svg {
  min-width: 27px;
  display: block;
  margin-top: 11px;
}

.business__item-text {
  padding-left: 70px;
  font-weight: 400;
  font-size: 24px;
  text-align: justify;
}

.business__img {
  max-width: 278px;
}

/*program*/
.program {
}

.program__wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 8px;
  margin-top: 62px;
}

.program__item {
  max-width: 398px;
  width: 100%;
  padding: 23px 21px 45px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.17);
  border-radius: 25px;
}

.program__img {
  max-height: 47px;
}

.program__title {
  text-align: center;
  font-size: 19px;
  font-weight: 400;
  line-height: 136%;
  color: #32323c;
}

/*offer*/
.offer {
  background-image: url(../img/offer.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  border-radius: 25px;
  margin-bottom: 117px;
  padding: 84px 0 85px 0;
}

.offer__btns {
  display: flex;
  justify-content: space-between;
}

.offer__title {
  font-weight: 600;
  font-size: 50px;
  color: var(--white);
  margin-bottom: 57px;
	max-width:795px;
	line-height:129%;
}

.offer__btns .white__btn {
  margin: 0;
}

/*enhance*/
.enhance {
  padding-bottom: 115px;
  max-width: 2000px;
  margin: 0 auto;
  position: relative;
}

.enhance__bg {
  position: relative;
}

.enhance__bg:after {
  content: '';
  position: absolute;
  background-image: url(../img/enhance/bg.svg);
  background-repeat: no-repeat;
  left: -58px;
  bottom: -38px;
  top: auto;
  right: 0;
  width: 1357px;
  height: 684px;
  z-index: -1;
}

.enhance__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px 78px;
  justify-content: center;
  align-items: start;
  margin: 0 auto;
  padding-top: 60px;
  max-width: 1116px;
}

/**/
/* Swiper Styles */
.enhance .container .swiper-container {
  width: 100%;
  overflow: hidden;
  padding-top: 60px;
  display: none;
  /* Скрыть на больших экранах */
}
.enhance .container .swiper-container .swiper-wrapper {
  padding-bottom: 40px;
}

.enhance .container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  box-sizing: border-box;
  border-radius: 14px;
}

/* Enhance Item */
.enhance__item {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 28px 34px 0px 34px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  transition: transform 0.3s ease;
  min-height: 270px;
  width: 100%;
  max-width: 320px;
}

.enhance__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 215px;
  margin-bottom: 15px;
}

/* Swiper Pagination */
.enhance .container .swiper-pagination {
  text-align: center;
  position: relative;
  bottom: 0px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  opacity: 0.5;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.enhance__nav {
  bottom: 20px;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}

/**/
.enhance__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 215px;
  margin-bottom: 15px;
}

.enhance__item-header img {
  width: 80px;
}

.enhance__item-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  max-width: 115px;
}

.enhance__item-subtitle {
  font-size: 20px;
  color: var(--text-color);
  text-align: left;
  line-height: 130%;
  max-width: 234px;
}

/*team*/

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .swiper-slide .blog__img {
  object-fit: fill;
} */

.team {
  padding: 40px 0;
  overflow-x: hidden;
  background-image: url(../img/team/bg.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;

  max-width: 2000px;
  margin: 0 auto;
  width: 100%;
}

/*  .team__swiper .swiper .swiper-wrapper .swiper-slide {
    min-width:387px;
  } */

.team__swiper {
  overflow-x: hidden;

  background-size: contain;
  margin-left: calc(-100vw / 2 + 50%);
  width: 100vw;
  box-sizing: content-box;
  padding-left: 125px;
  display: none;
}

.team__swiper {
  margin-left: 0;
  padding: 0;
  width: 100%;
  background-size: none;
}

.team__tabs {
  margin-top: 25px;
  margin-bottom: 62px;
}

.team__tabs-item {
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  color: var(--text-color);
  font-weight: 500;
}

.team__tabs-item {
  padding: 0 15px;
  position: relative;
}

.team__tabs-item:first-child {
  padding: 0 15px 0 0;
}

.team__tabs-item:not(:first-child):before {
  content: '|';
  position: absolute;
  left: 0;
  color: var(--text-color);
}

.team__tabs-item.active {
  color: var(--accent-color);
}

.team__swiper.active {
  display: block;
}

.team__swiper .swiper-pagination {
  max-width: 1250px;
  margin: 0 auto;
}

.team__swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  padding: 5px 0 80px 0;
}

.team__swiper .swiper-slide {
  display: flex;
  justify-content: left;
  align-items: center;
  box-sizing: border-box;
  min-height: 302px;
  max-width: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 25px 35px 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.swiper__container {
  display: flex;
  justify-content: center;
  position: relative;
}

.team__nav {
  position: absolute;
  bottom: 20px;
  /*   transform: translateX(-50%); */
  display: flex;
  align-items: center;
  z-index: 1;
}
.enhance__nav {
  position: relative;
  transform: translateX(0);
}

.team__member img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin-bottom: 23px;
}

.team__name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.team__position {
  font-size: 18px;
  margin-bottom: 5px;
  text-align: left;
}

.team__email {
  display: block;
  font-size: 18px;
  text-align: left;
  color: var(--accent-color);
  text-decoration: none;
  cursor: pointer;
}

.swiper-pagination {
  position: relative;
  bottom: -25px;
  text-align: center;
}

.team__nav .swiper-pagination,
.team__nav .swiper-button-prev,
.team__nav .swiper-button-next {
  position: relative;
  margin: 0;
  max-height: 20px;
}

.team__nav .swiper-pagination {
  padding-top: 8px;
  margin: 0px 24px;
}

.enhance__nav .swiper-pagination {
  padding-top: 0;
}

.team__nav .swiper-pagination-bullet {
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 12px)
  );
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 12px)
  );
  background-color: transparent;
  position: relative;
  opacity: 1;
}

.team__nav .swiper-pagination-bullet:after {
  content: '';
  border: 2px solid var(--accent-color);
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-20%, -20%);
  border-radius: 50%;
}

.team__nav .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.team__nav
  .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, 12px) !important;
}

.team__nav {
  display: flex;
  align-items: center;
  max-width: fit-content;
  margin: 0 auto;
}

/*contact*/

.contact {
  background-image: url(../img/contact.png);
  object-fit: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 25px;
  max-width: 1250px;
}

.contact__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 107px 0;
  width: 100%;
  margin-top: 87px;
}

.contact__left {
  max-width: 616px;
}

.contact__title {
  font-size: 32px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 13px;
}

.contact__subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 128%;
  color: var(--white);
}

.contact__btn {
  background-color: #e23a2e;
  border-color: #e23a2e;
  font-size: 25px;
  font-weight: 400;
  width: 100%;
}

.contact__btn:hover {
  border-color: var(--white);
}
.submit__wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  max-width: fit-content;
  margin: 15px auto;
  border-radius: 10px;
}
.wpcf7-response-output {
  max-width: fit-content;
  margin: 0 auto !important;
}

/*footer*/
.footer {
  background-image: url(../img/footer.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center;
  padding: 70px 0px 10px 0;
  height: 100%;
  max-height: 300px;
}
.footer .container {
  height: 100%;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer__wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.footer__copy-text,
.footer__copy-text a {
  color: #a8a7a7;
  text-align: center;
  font-size: 13px;
}
.footer__copy-text a {
  text-decoration: underline;
  text-decoration-thickness: 0.8px;
  text-underline-offset: 4px; 
  transition:all 0.3s ease;
}

.footer__copy-text a:hover {
  color: var(--blue);
}

.footer__logo {
  max-width: 200px;
}

.footer__logo-link {
  display: block;
}

.footer__menu {
  display: flex;
  max-width: 355px;
  width: 100%;
  justify-content: center;
  gap: 54px;
}

.footer__link {
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  list-style: none;
}

.footer__link:hover {
  filter: contrast(0.5);
}

.footer__subscribe {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 276px;
}

.footer__subscribe-text {
  font-weight: 500;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 9px;
  padding-left: 10px;
}

.footer .wpcf7-response-output {
  color: #fff !important;
}

.footer__social {
  display: flex;
  max-width: 140px;
  width: 100%;
  justify-content: end;
  align-items: center;
  gap: 25px;
}

.foter__social {
  text-decoration: none;
}

.foter__social-img {
  display: block;
  cursor: pointer;
  max-height: 33px;
  transition: all 0.3s ease;
}

.foter__social-img:hover {
  filter: contrast(0.5);
}

/*footer form*/
.email-form {
  display: flex;
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 30px;
  overflow: hidden;
  background-color: transparent;
}

.email-input {
  flex-grow: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 17px;
  color: #ffffff;
  background-color: transparent;
  max-width: 222px;
}

.email-input::placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.email-submit {
  padding: 5px 20px 5px 10px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;	
  color:#fff;
  font-size: 21px;
  transition:all 0.3s ease;
}
.email-submit:hover {
	 transform: translateX(5px);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
  transition: transform 0.3s;
}

.email-submit:hover .arrow-icon {
  transform: translateX(2px);
}

.email-submit:active .arrow-icon {
  transform: translateX(4px);
}

/*form*/
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 928px;
  margin: 0 auto;
}

.form-left,
.form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
label {
  font-size: 24px;
  color: var(--text-color);
  font-weight: 300;
}

.form input[type='text'],
.form input[type='email'],
.form input[type='url'],
.form input[type='tel'],
.form textarea,
.form select {
  width: 100%;
  padding: 20px;
  font-size: 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  background-color: #f2f2f2;
  transition: border-color 0.3s ease;
  font-weight: 400;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='tel']:focus,
textarea:focus,
selecta:focus {
  border-color: var(--text-color);
  outline: none;
}

.form select {
  color: #757575;
}
.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}

.select_forms::-ms-expand {
  display: none;
}

.arrow {
  position: relative;
}
.arrow:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0px;
  transform: translateY(12%);
  width: 50px;
  height: 50px;
  background: url(../img/arrow-form.svg);
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
  min-height: 400px;
}

.input__form-group {
  display: none;
}
.form__p {
  font-size: 24px;
  font-weight: 600;
}

/* .wpcf7-list-item-label {
  display: none;
} */

/* input:user-invalid {
  border-color: #d02035 !important;
} */

.checkbox-label.invalid {
  color: #d02035;
}

.checkbox-label {
  color: initial;
  transition: color 0.3s ease;
}

.checkbox__politic {
  position:relative;
  display: inline-block;
  width: fit-content;
  font-size: 18px;
  font-weight:400;
}


.underline {
  color: var(--text-color);
  text-decoration: underline;
  white-space: nowrap;
}

.arrow .wpcf7-not-valid-tip {
	position:absolute;
}

.checkbox__politic .wpcf7-not-valid-tip {
	white-space: nowrap;
    position:absolute;
	font-size:16px;
}
.underline:hover {
  color:var(--accent-color);	
}
.checkbox-group label,
.checkbox-group label a {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
}
.checkbox-group label a {
  text-decoration: underline;
  text-decoration-thickness: 0.8px;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}
.checkbox-group label a:hover {
  color: var(--blue);
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

input[type='checkbox'] {
  width: 25px;
  height: 25px;
}

.submit-btn {
  padding: 12px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.main--inner {
  min-height: 532px;
  background: url(../img/bg-contact.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.main--inner .main__wrap {
  justify-content: center;
}

.main__wrap {
  justify-content: space-between;
  align-items: center;
  padding-top: 200px;
}
.form__btn {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
  margin: 0;
  margin-right: auto;
  padding-left: 33px;
}
.form__btn:hover {
  color: var(--white);
  border-color: var(--white);
  background-color: var(--text-color);
}

.form__btn:hover .white__btn-svg path {
  stroke: var(--white);
}
.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-checkbox,
.wpcf7-list-item,
.wpcf7-list-item label {
  display: flex;
  align-items: center;
}

/*faq*/

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 3px 0;
}
.main__text--center {
  max-width: fit-content;
}
.faq-item {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.17);
  background: var(--white);
}

.faq-question {
  gap: 5px;
  width: 100%;
  padding: 20px 16px 20px 44px;
  background-color: #fff;
  border: none;
  text-align: left;
  font-size: 32px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f1f1f1;
}

.faq-toggle {
  transition: transform 0.3s ease;
  background-color: #d1e3fa;
  border-radius: 17px;
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 10px 80px 38px 44px;
  display: none;
}

.faq-answer p {
  margin: 0;
  font-size: 24px;
  color: var(--text-color);
  line-height: 130%;
}

.faq-answer a {
  color: #007bff;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.active .faq-answer {
  display: block;
}

.active .faq-toggle .faq-arrow {
  transform: rotate(180deg);
}

.faq-arrow {
  max-width: 22px;
  width: 100%;
}

/*blog*/
#insights .container {
  padding: 0px;
  max-width: 1250px;
}
.swiper__blog {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.blog__img {
  width: 100%;
  margin-bottom: 25px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;

  min-height: 225px;
  max-height: 225px;
}

.blog__name {
  font-size: 18px;
  color: var(--text-color);
  padding: 0 15px 40px 15px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}
.swiper__blog .team__nav {
  transform: none;
}

.swiper__blog .swiper__container {
  padding-bottom: 60px;
}

.swiper__blog .swiper-wrapper > p {
  display: none;
}

.blog__item {
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.17);
  background: #fff;
  border-radius: 25px;
  height: 370px;
}

.footer {
  margin-bottom: -45px;
  position: relative;
}
.footer__form-wrap {
	position:relative;
}

.footer__recaptcha {
  position:absolute;
  left: -15px;
  scale: 0.8;
}

/*  [lang="ru-RU"] }*/
[lang='ru-RU'] .enhance__item-subtitle {
  font-size: 17px;
  max-width: 246px;
}
[lang='ru-RU'] .potential__item-subtitle {
  font-size: 17px;
}

[lang='ru-RU'] .enhance__item-title {
  font-size: 19px;
}
[lang='ru-RU'] .potential__item-title {
  font-size: 19px;
}
[lang='ru-RU'] .enhance__item {
  padding: 28px 28px 0px 34px;
}
[lang='ru-RU'] .team__swiper .swiper {
  padding-top: 4px;
}

/*  [lang="sl-SI"] }*/
[lang='sl-SI'] .white__btn,
.contact__btn {
  font-size: 21px;
}

[lang='sl-SI'] .enhance__item-subtitle {
  font-size: 19px;
  max-width: 240px;
}

/*  [lang="sr-RS"] }*/
[lang='sr-RS'] .white__btn,
.contact__btn {
  font-size: 21px;
}

[lang='sr-RS'] .enhance__item-subtitle {
  font-size: 17px;
  max-width: 240px;
}

[lang='sr-RS'] .header__item + .header__item {
  margin: 0px 0px 0px 47px;
}
/* Хорвацька */
[lang='hr'] .offer__btns a {
  font-size: 24px;
}

[lang='hr'] .enhance__item-title {
  font-size: 18px;
}

[lang='hr'].enhance__item-subtitle {
  font-size: 16px;
}

[lang='hr'] .potential__item-title {
  font-size: 18px;
}
[lang='hr'] .potential__item-subtitle {
  font-size: 17px;
}
[lang='hr'] .enhance__item {
  padding: 28px 25px 0px 25px;
}

[lang='hr'] .enhance__item-subtitle {
  font-size: 19px;
  max-width: 100%;
}

/* Privacy Policy */
.privat__wrapper {
  padding-top: 120px;
}
.privat__title {
  color: #282828;
}
.privat__inner p {
  font-size: 21px;
  margin: 10px 0;
}
.link__privat {
  color: #282828;
  text-decoration: underline;
}

/*Popup Maker*/
/* .pum-theme-415 .pum-content + .pum-close,
.pum-theme-enterprise-blue .pum-content + .pum-close {
  background-color: #4e4d50 !important;
}

.pum-container,
.pum-title,
.pum-content,
.tw-data-text,
#pum-425 {
  font-family: 'Fixel Text' !important;
}
.pum-container,
.pum-content,
.pum-content + .pum-close,
.pum-content + .pum-close:active,
.pum-content + .pum-close:focus,
.pum-content + .pum-close:hover,
.pum-overlay,
.pum-title {
  font-family: 'Fixel Text' !important;
}
.pum-theme-415 .pum-title,
.pum-theme-enterprise-blue .pum-title {
  font-family: 'Fixel Text' !important;
}

#pum-425 {
  overflow-x: hidden;
} */

/* blog */
@media (max-width: 768px) {
  .blog__item {
    min-height: 240px;
    max-width: 240px;
  }
  .blog__name {
    font-size: 12px;
    padding: 0 15px 15px 15px;
    max-width: 180px;
  }

  [lang='ru-RU'] .enhance__item-subtitle {
    font-size: 12px;
    width: 100%;
    max-width: 100%;
  }

  [lang='ru-RU'] .enhance__item-title {
    font-size: 14px;
  }

  .privat__inner p {
    font-size: 16px;
    margin: 10px 0;
  }
  .privat__wrapper {
    padding-top: 90px;
  }
}

/* hab-spot */
.hs-form-required {
  color: var(--red);
}

.hs-fieldtype-text,
.hs-fieldtype-textarea {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#hsForm_20ece42a-55db-47c7-922d-b37e1a14e983,
#hsForm_df91d540-e15e-4f7a-aa26-181859521e45 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 928px;
  margin: 0 auto;
}

.hs-richtext.hs-main-font-element h4 {
  color: var(--text-color);
	font-weight: 400;
	font-size:20px;
}

.inputs-list li {
  list-style-type:none;
}

.hs-form-booleancheckbox label {
	display:flex;
	align-items:center;
}

.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display>span {
  font-size:18px;
  margin-left:5px;
}

.legal-consent-container .hs-error-msgs label {
  font-size: 16px;
}
.actions .hs-button.primary {
	border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
	color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: transparent;
    margin: 0;
    margin-right: auto;
    padding-left: 33px;	
	font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    text-transform: uppercase;
    padding: 12px 21px 7px 21px;
    max-width: fit-content;
    transition: all 0.3s ease;
    cursor: pointer;
}

.actions .hs-button.primary:hover {
	color: var(--white);
    border-color: var(--white);
    background-color: var(--text-color);
}
.form .input select {	
	-webkit-appearance: auto; 
	-moz-appearance: auto;
	appearance: auto;
}
.hs-error-msg {
  color: #dc3232;
  font-size: 1em;
}
.form .input .error {
	border: 2px solid red;
}
.hs-main-font-element {
	color:#E74616;
	font-size:20px;
}
.submitted-message.hs-main-font-element {
	color:#32323C;
}

.hs_custom_sentence_2 {
	height:63.2px;
}

.hs_custom_sentence_2 .input,
.hs_custom_sentence_1 .input{
	height: 63px;
	max-height: 63.2px;
	overflow: hidden;
	border-radius: 10px;	
}
.hs_custom_sentence_2 .input textarea,
.hs_custom_sentence_1 .input textarea{	
    padding: 15px 20px;
	outline:none;
}

.hs_custom_sentence_2 .input textarea:focus,
.hs_custom_sentence_1 .input textarea:focus,
.hs_custom_sentence_2 .input textarea:active,
.hs_custom_sentence_1 .input textarea:active{	
	outline:none;
	border:1px solid transparent;
	    border-color: transparent;
}

.hs-form-20ece42a-55db-47c7-922d-b37e1a14e983 p::first-line {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
}

.hs-form-20ece42a-55db-47c7-922d-b37e1a14e983 p {
  font-weight: 400;
  font-size: 24px;
}

.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display>span a {
  text-decoration:underline;
  color: var(--text-color);
}


.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display>span a:hover {
  color: var(--accent-color);
}

/*  хаб спот стрілочка*/
/*HR*/
#country_selection-20ece42a-55db-47c7-922d-b37e1a14e983,
#google_ads_budget-20ece42a-55db-47c7-922d-b37e1a14e983,
#contact_vertical-20ece42a-55db-47c7-922d-b37e1a14e983,
#country_code-20ece42a-55db-47c7-922d-b37e1a14e983,
/*EN*/
#country_selection-df91d540-e15e-4f7a-aa26-181859521e45,
#google_ads_budget-df91d540-e15e-4f7a-aa26-181859521e45,
#contact_vertical-df91d540-e15e-4f7a-aa26-181859521e45 {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 50px; /* місце під стрілку */
  cursor: pointer;
  background-image: url('../img/arrow-form.svg'); 
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 50px 50px;
}


}

@media (max-width: 765px) {
    .actions .hs-button.primary {
        font-size: 12px;
        padding: 8px 14px 8px 20px;
    }
	
  .hs-richtext.hs-main-font-element h4 {
    font-size:18px;
  }
}
/* popup mek */
/* html.pum-open.pum-open-overlay.pum-open-scrollable
  body
  > :not([aria-modal='true']) {
  padding-right: 0px !important;
}
html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
  overflow: hidden; */
