:root {
  --black-color: #3C3C3C;
  --dark-color: #000;
  --white-color: #ffffff;
  --red-color: #C95721;
  --light-color: #E6DED1;
  --lighting-color: #F4F3ED;
  --main-font-family: 'Montserrat', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* This used to work for the parent element of button divs */
/* But it does not work with newer browsers, the below doesn't hide the play button parent div */

*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::-webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works! */

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}

html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-size: 24px;
  line-height: 34px;
  background-color: var(--white-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--black-color);

  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.chromeperfectpixel-layer {
  overflow: hidden !important;
}

a {
  -webkit-tap-highlight-color: transparent;
}
a[href^=tel],
a[href^="mailto:"] {
  color: var(--red-color);
}

h1 {
  font-weight: 200;
  letter-spacing: -3px;
  line-height: 1;
  margin: 0 0 42px;
}
h2, .h2 {font-size: 19px;text-transform: uppercase;font-weight: 800;margin: 0;}
h3, .h3 {font-size: 46px;font-weight: 400;margin: 0;}
h4, .h4 {font-weight: 400;}
p {
  margin: 0 0 16px;
}

.gwa-btn {
  cursor: pointer;
  text-decoration: none;
  padding: 22px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 800;
}
.gwa-btn_white {
  background: var(--white-color);
  color: var(--black-color);
}
.gwa-btn_white:hover {
  background: var(--dark-color);
  color: var(--white-color);
}
.gwa-btn_black {
  background: var(--black-color);
  color: var(--white-color);
}
.gwa-btn_black:hover {
  background: var(--dark-color);
}

.gwa-container {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

.gwa-header {
  background: var(--red-color);
  overflow: hidden;
}
.gwa-header .gwa-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
  background-color: var(--red-color);
}
.gwa-header .gwa-container > div {
  background: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}
.gwa-header__top {
  padding: 6px 0 0;
  display: flex;
  justify-content: space-between;
}
.gwa-header__logo {}
.gwa-header__logo a {
  color: var(--black-color);
  text-decoration: none;
  font-size: 96px;
}
.gwa-header__logo .gwa-icon {}
.gwa-header__nav {
  margin: -4px 0 0;
}
.gwa-header__nav ul {}
.gwa-header__nav ul li {
  list-style: none;
  padding: 0;
  margin: 0 0 7px;
}
.gwa-header__nav ul li a {
  color: var(--black-color);
  text-decoration: none;
  font-size: 20px;
}
.gwa-header__nav ul li a:hover {
  color: var(--red-color);
}
.gwa-header__link {}
.gwa-header__link .gwa-btn {
  font-size: 28px;
  padding: 19px;
}
.gwa-header__link .gwa-icon {}
.gwa-header__bottom {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}
.gwa-header__bottom h1 {
  font-size: 110px;
}
.gwa-header__banner {
  position: relative;
  overflow: hidden;
  margin: -30px;
}
.gwa-header__banner source,
.gwa-header__banner img {
  width: 100%;
}
.gwa-header__banner_back {
  filter: url("#goovey");
  margin: -30px;
  display: block;
}
.gwa-header__banner_back source,
.gwa-header__banner_back img {
}
.gwa-header__banner_top {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
}
.gwa-header__banner_top source,
.gwa-header__banner_top img {
}

.gwa-about {
  padding: 118px 0;
}
.gwa-about .gwa-container {
  max-width: 1518px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 24% auto;
  gap: 16px;
}
.gwa-about h2 {
  color: var(--red-color);
}
.gwa-about h3 {
  margin: 70px 0 46px;
}
.gwa-about h4 {}
.gwa-about p {}
.gwa-about__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.gwa-about__item {
  background: var(--light-color);
  border-radius: 16px;
  padding: 27px 27px 113px;
  min-height: 100px;
  position: relative;
}
.gwa-about__item .gwa-icon {
  color: var(--red-color);
  position: absolute;
  bottom: 24px;
  left: 31px;
  font-size: 53px;
}

.gwa-team {
  padding: 0 0 117px;
}
.gwa-team .gwa-container {
  max-width: 1518px;
  padding: 0 16px;
}
.gwa-team__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.gwa-team__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.gwa-team__item_about {
  padding: 50px 30px;
  background: var(--red-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 34px;
}
.gwa-team__item_about .h3 {
  color: var(--white-color);
  text-transform: none;
}
.gwa-team__text {}
.gwa-team__text p {
  color: var(--white-color);
  margin: 0 0 34px;
}
.gwa-team__text .btn {}
.gwa-team__item h4 {
  position: absolute;
  color: var(--red-color);
  padding-left: 16px;
  font-weight: 800;
  font-size: 20px;
  transform: rotate(-90deg);
  bottom: 167px;
  left: -115px;
  width: 300px;
}
.gwa-team__item h4:before {
  content: '';
  background: var(--red-color);
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  border-radius: 50%;
}
.gwa-team__item img {
  width: 100%;
}
.gwa-team__item_animate {
  filter: url("#goovey");
}
.gwa-team__item_animate img {
  margin: -30px;
  width: calc(100% + 60px);
}

.gwa-cpa {
  background: var(--light-color);
  padding: 119px 0;
}
.gwa-cpa .gwa-container {
  max-width: 1820px;
  padding: 0 20px;
}
.gwa-cpa h2 {
  color: var(--red-color);
  margin: 0 0 35px;
}
.gwa-cpa__list {display: grid;grid-template-columns: 1fr 1fr 1fr;gap: 10px;margin: 0 0 40px;}
.gwa-cpa__item {
  background: var(--lighting-color);
  border-radius: 16px;
  padding: 47px 37px 37px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 362px;
}
.gwa-cpa__item h3 {}
.gwa-cpa__item .gwa-icon {
  position: absolute;
  right: 42px;
  top: 42px;
  color: var(--red-color);
  font-size: 64px;
}
.gwa-cpa__item p {
  margin: 0;
}
.gwa-cpa .btn {}

.gwa-traffic {
  background: var(--red-color);
}
.gwa-traffic .gwa-container {
  padding: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.gwa-traffic__image {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}
.gwa-traffic__image picture {
  filter: url("#goovey");
  display: block;
}
.gwa-traffic__image picture source,
.gwa-traffic__image picture img {
  display: block;
  margin: -30px;
  width: calc(100% + 100px);
}
.gwa-traffic__content {
  background: var(--light-color);
  border-radius: 16px;
  padding: 46px 37px 37px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gwa-traffic__top {}
.gwa-traffic__top .h3 {
  text-transform: none;
  margin: 0 0 46px;
}
.gwa-traffic__list {
  max-width: 92%;
}
.gwa-traffic__list li {
  list-style: none;
  background: var(--lighting-color);
  display: inline-block;
  vertical-align: top;
  border-radius: 16px;
  padding: 12px 19px 10px 40px;
  color: var(--red-color);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 19px;
  margin: 0 5px 10px 0;
  position: relative;
}
.gwa-traffic__list li:before {
  content: '';
  background: var(--red-color);
  width: 10px;
  height: 10px;
  position: absolute;
  left: 20px;
  top: calc(50% - 5px);
  border-radius: 50%;
}
.gwa-traffic__bottom {
  border-top: 1px solid #C8C4BE;
  padding-top: 13px;
}
.gwa-traffic__bottom p {
  margin: 16px 0 0;
}

.gwa-about__list2 {margin: 43px 0;}
.gwa-about__item2 {
  background: var(--lighting-color);
  border-radius: 16px;
  padding: 46px 37px 39px;
  margin: 0 0 10px;
}
.gwa-about__item2 h3 {
  margin: 0 0 25px;
}
.gwa-about__item2 p {
  opacity: .5;
  margin: 0 0 64px;
}
.gwa-about__item2_title {
  display: grid;
  grid-template-columns: auto 200px;
  align-items: flex-end;
}
.gwa-about__item2_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gwa-about__item2_top h4 {
  color: var(--red-color);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0 0 13px;
  max-width: 80%;
}
.gwa-about__item2_top ul {
  max-width: 80%;
}
.gwa-about__item2_top ul li {
  list-style: none;
  margin: 0 0 8px;
  padding: 0 0 0 22px;
  position: relative;
}
.gwa-about__item2_top ul li:before {
  content: '';
  background: var(--red-color);
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 12px;
  border-radius: 50%;
}
.gwa-about__item2_bottom {
  background: #E6DED1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
}
.gwa-about__item2_logo {line-height: 0;}
.gwa-about__item2_logo img {}
.w-100 {
  width: 100%;
}


.gwa-footer {
  background: var(--red-color);
  padding: 16px 0;
}
.gwa-footer .gwa-container {
  max-width: 1851px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.gwa-footer-1 {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 700px;
}
.gwa-footer-2 {
  border-radius: 16px;
  background: var(--light-color);
  padding: 46px 37px 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gwa-footer-3 {
  border-radius: 16px;
  background: var(--lighting-color);
  overflow: hidden;
  padding: 60px 37px 0;
}
.gwa-footer__image {
  /*display: flex;*/
  /*height: 100%;*/
  width: 100%;
  height: 100%;
}
.gwa-footer__image picture {
  /*display: flex;*/
  /*height: 100%;*/
}
.gwa-footer__image picture source,
.gwa-footer__image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gwa-footer__logo {
  position: absolute;
  text-decoration: none;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 148px;
}
.gwa-footer__info {}
.gwa-footer__info h2 {
  text-transform: none;
  font-size: 45px;
  font-weight: normal;
  margin: 0 0 50px;
}
.gwa-footer__info p {}
.gwa-footer__contacts {
  display: grid;
  grid-template-columns: auto 177px;
  gap: 10px;
  align-items: flex-end;
}
.gwa-footer__col1 {}
.gwa-footer__title1 {
  display: block;
  text-transform: uppercase;
  font-weight: 800;
}
.gwa-footer__title2 {
  display: block;
  font-size: 16px;
}
.gwa-footer__mail {
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
}
.gwa-footer__links {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  align-items: center;
  padding: 23px 0 0;
}
.gwa-footer__links .gwa-btn {
  font-weight: 800;
  font-size: 16px;
}
.gwa-footer__links .gwa-btn .gwa-icon {
  font-size: 27px;
  margin-right: 8px;
}
.gwa-footer__copy {
  padding: 0 31px;
  opacity: .5;
}
.gwa-footer__col2 {}
.gwa-footer__col2 img {
  max-width: 100%;
  border-radius: 16px;
}

.form__contacts {}
.form {}
.form__group {
  position: relative;
  margin: 0 0 49px;
  border: none;
  padding: 0;
}
.form__group .form__field::placeholder {
  font-size: 0;
}
.form__group_required {
  padding: 0;
  border: none;
}
.form__label {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  position: absolute;
  transition: ease .3s;
  top: 50%;
  transform: translate(0,-50%);
  left: 0;
  right: 0;
  line-height: 1.5;
  cursor: text;
  background: var(--lighting-color);
  color: rgba(0, 0, 0, 0.4);
}
.form__group_active .form__label {
  font-size: 17px;
  top: -9px;
}
.form__field {
  border: none;
  border-bottom: 2px solid rgba(229, 229, 229, 1);
  display: block;
  width: 100%;
  min-height: 0;
  padding: 2px 0 6px 0;
  line-height: 1;
  font-size: 25px;
  outline: none !important;
  color: var(--black-color);
  margin: 0;
  background: var(--lighting-color);
  font-family: 'Mulish', sans-serif;
}
.form__field_input {}
.form__field_select {}
.form__field_textarea {
  height: 55px;
  resize: none;
  white-space: nowrap;
  padding-top: 9px;
}
.form__group_required .form__label span {
  color: red;
  font-size: 12px;
  margin-left: 6px;
  position: absolute;
  top: calc(50% - 6px);
}
.form__checkbox {
  cursor: pointer;
  margin-left: 0;
  display: block;
  padding-left: 37px;
  position: relative;
  margin-top: -20px;
  display: flex;
  align-items: center;
  margin-bottom: -14px;
}
.form__checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form__checkbox>span {
  align-items: center;
  user-select: none;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 0 0 8px;
}
.form__checkbox>span a {
  color: #000;
}
.form__checkbox>span a:hover {
  text-decoration:none;
}
.form__checkbox>span::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #1f1f1f;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  position: absolute;
  left: 0;
  top: 0px;
}
.form__checkbox>input:not(:disabled):not(:checked)+span:hover::before {
  border-color: #1f1f1f;
}
.form__checkbox>input:focus:not(:checked)+span::before {
  border-color: #1f1f1f;
}
.form__checkbox>input:checked+span::before {
  border-color: #1f1f1f;
  background-image: url(../images/check.png);
  background-size: 90%;
}
.form__checkbox>input:disabled+span::before {
  border-color: #ссс;
}



.gwa-footer__var2 {
  overflow: hidden;
}
.gwa-footer__var2 .gwa-container {
  max-width: 100%;
  grid-template-columns: 1fr 1fr;
}
.gwa-footer__var2 .gwa-footer-3 {
  padding: 30px 37px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 735px;
}
.gwa-footer__var2 .gwa-footer-3 h2 {
  text-transform: none;
  font-weight: normal;
  font-size: 45px;
  line-height: 1.5;
}
.gwa-footer__var2 .gwa-footer-3 .form__group_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gwa-header__banner_back__var2 {
  background: url("../images/top.jpg") 50% 50% no-repeat;
  background-size: contain;
}

.gwa-header__link-var2 {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.gwa-header__link-var2 .gwa-btn {
  font-size: 19px;
  padding: 8px 21px;
  gap: 10px;
  min-height: 50px;
}
.gwa-header__link-var2 .gwa-btn_white:hover svg path {
  stroke: #fff;
}


.gwa-logotypes {
  background: #E6DED1;
  padding: 64px 0;
  overflow: hidden;
}
.gwa-logotypes .gwa-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7%;
}
.gwa-logotypes__item {}


.gwa-categorys {
  padding: 0 30px 30px;
  background: #E6DED1;
  overflow: hidden;
}
.gwa-categorys .gwa-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gwa-categorys .gwa-traffic__content {
  background: #F4F3ED;
}
.gwa-categorys .gwa-traffic__top {
  margin-bottom: 40px;
}
.gwa-categorys .gwa-traffic__top .h3 {
  margin-bottom: 25px;
}
.gwa-categorys .gwa-traffic__bottom {
  border: none;
  padding: 0;
}
.gwa-categorys .gwa-about__list {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gwa-categorys .gwa-about__item {
  background: #F4F3ED;
  min-height: 210px;
  padding-bottom: 60px;
}
.gwa-categorys .gwa-about__item h4 {}
.gwa-categorys .gwa-about__item svg {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 0);
  margin-left: calc(50% - 40px);
}
.gwa-categorys .gwa-traffic__list li {
  background: #E6DED1;
}

.gwa-opinion {
  background: #E6DED1;
  padding: 80px 30px;
  overflow: hidden;
}
.gwa-opinion .gwa-container {}
.gwa-opinion .h2 {
  color: var(--red-color);
  margin: 0 0 35px;
}
.gwa-opinion__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}
.gwa-opinion__item {
  background: #F4F3ED;
  border-radius: 15px;
  padding: 37px 37px 100px;
  position: relative;
}
.gwa-opinion__item:first-child {
  grid-column: 1;
  grid-row: 1 / span 3;
}
.gwa-opinion__item p {}
.gwa-opinion__item:first-child p {
  font-size: 32px;
  line-height: 1.4;
}
.gwa-opinion__avatar {
  position: absolute;
  bottom: 32px;
  left: 37px;
  padding: 0 0 0 80px;
}
.gwa-opinion__avatar img {
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: -15px;
}
.gwa-opinion__avatar h3 {
  font-size: 24px;
  line-height: 0.5;
}
.gwa-opinion__avatar strong {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--red-color);
}

.logo-strip,
.logo-strip2,
.logo-strip3 {
  overflow: hidden;
  padding: 10px 0;
}
.logo-track {
  display: flex;
  animation: scroll 60s linear infinite;
}
.logo-item,
.logo-item2,
.logo-item3 {
  flex: 0 0 auto;
  width: 50px;
  height: 45px;
  margin: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4F3ED;
  border-radius: 10px;
}
.logo-item img,
.logo-item2 img,
.logo-item3 img {
  max-width: 100px;
  max-height: 25px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-track2 {
  display: flex;
  animation: scroll2 70s linear infinite;
}
@keyframes scroll2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.logo-track3 {
  display: flex;
  padding-left: 160px;
  animation: scroll3 80s linear infinite;
}
@keyframes scroll3 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



.cit-overlay__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  overflow: auto;
}
.cit-overlay {
  background: rgba(22, 16, 21, 0.60);
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
}
.cit-popup {
  border-radius: 16px;
  background: #161015;
  box-shadow: 0px 31.52727px 68.61818px 0px rgba(161, 72, 147, 0.40);
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  z-index: 100;
  max-width: 368px;
  width: 75%;
  padding: 36px;
  transform: translate(-50%,0);
  z-index: 1002;
  margin: 50px 0;
  font-size: 16px;
  line-height: 22px;
}
.cit-popup__signun {
}
.cit-popup__header {
  position: relative;
  margin: 0 0 13px;
  color: #fff;
}
.cit-popup__header-title {
  font-size: 42px;
  line-height: 1.2;
}
.cit-popup__header-close {
  position: absolute;
  right: -18px;
  top: -18px;
}
.cit-popup__header-close svg {}
.cit-popup__text {
  margin: 0 0 25px;
  color: #fff;
}
.cit-popup__form {
  color: #fff;
}
.cit-popup__form form {}
.cit-popup__form-line {
  border: none;
  padding: 0;
  margin: 0 0 10px;
  color: #fff;
}
.cit-popup__form-title {
  color: #796B77;

  /* new_d/16_regular */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  display: block;
  margin-bottom: 2px;
}
.cit-popup__form-input,
.cit-popup__form-input:focus,
.cit-popup__form-input:active,
.cit-popup__form-input:visited,
.cit-popup__form-input:target {
  display: block;
  border-radius: 8px;
  border: 1px solid #544551;
  background: #332831 !important;
  color: #FFF;
  font-family: 'Source Sans 3',sans-serif;
  padding: 0 14px;
  height: 46px;
  line-height: 46px;
  font-size: 20px;
  width: 100%;
}
.cit-popup__form-line-pass {
  border: none;
  padding: 0;
  margin: 0;
  padding-top: 15px;
  display: none;
}
.cit-popup__form-line-pass ul {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}
.cit-popup__form-line-btn {
  border: none;
  padding: 0;
  margin: 0;
  padding-top: 15px;
}
input.cit-popup__form-btn {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  cursor: pointer;
}
.cit-popup__error {
  display: none;
  position: absolute;
  border-radius: 0px 0px 16px 16px;
  background: #F65734;
  left: 0;
  right: 0;
  bottom: -30px;
  text-align: center;
  padding: 12px 8px;
}
.cit-popup__thanks {
  display: none;
}