:root {
  --color-accent: rgba(42, 157, 244, 1);
  --color-nav: rgba(45, 50, 59, 1);
  --color-white: #ffffff;
  --color-banner-bg: rgba(39, 39, 39, 1);
  --container-width: 1732px;
  --font-family: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-nav);
  background-color: rgba(226, 230, 229, 1);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left:auto;
  margin-right:auto;
}

#page{
  width:100%;
  overflow:hidden;
}

/* Header */
.site-header {
  position: relative;
  z-index: 102;
  padding-block: 28px 24px;
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(226, 230, 229, 0.97);
  box-shadow: 0 8px 32px rgba(45, 50, 59, 0.08);
  animation: siteHeaderSlideIn 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes siteHeaderSlideIn {
  from {
    top: -120px;
  }

  to {
    top: 0;
  }
}

#services,
#portfolio,
#leadership,
#faq,
#contact {
  scroll-margin-top: 96px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 48px;
  width: auto;
}

.site-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__cta {
  flex-shrink: 0;
}

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 110;
}

.site-header__burger-line {
  display: block;
  width: 26px;
  height: 2px;
  margin-left: auto;
  background: var(--color-nav);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

.site-header.is-menu-open .site-header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-menu-open .site-header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.is-menu-open {
  overflow: hidden;
}

.site-header__menu a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-nav);
  transition: color 0.2s ease;
}

.site-header__menu a:hover,
.site-header__menu a.is-active {
  color: var(--color-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 999px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn__icon {
  flex-shrink: 0;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: rgba(42, 157, 244, 0.88);
}

.btn--outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-white);
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Hero Banner */
.hero {
  padding-bottom: 60px;
}

.hero .container{
  max-width: 1880px;
}

.hero__banner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:var(--color-banner-bg)  url('../images/banner-bg.png') no-repeat fixed 0 0 / contain;
  background-size: 100% auto;
}

.hero__banner:after{
  width:832px;
  height:827px;
  position: absolute;
  bottom:-500px;
  right:200px;
  background: url('../images/banner-bg2.svg') no-repeat 100% 100%;
  content:'';
  transition:ease 500ms all;
}

.hero__banner.loaded:after{
  bottom:0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 828px;
  padding: 72px 64px 64px;
}

.hero__content {
  max-width: 1080px;
  align-self: center;
  padding-top: 20px;
}

.hero__title {
  font-size: 80px;
  line-height: 120%;
  font-weight: 500;
  margin:0;
  color:#fff;
}

.hero__title span{
  color: var(--color-accent);
}

.hero__title strong{
  display: block;
  text-align: right;
  font-weight: 500;
  text-transform: uppercase;
  margin:40px 372px 0 0;
}


.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 75px;
  left: 65px;
}

.hero__badge {
 position: absolute;
 top:72px;
 right:40px;
}

.hero__badge img {
  width: auto;
  height: 340px;
}

/* Who We Are */
.who {
  padding: 80px 0 100px;
  border:solid rgba(138, 143, 153, 1);
  border-width: 1px 0 1px 0;
  margin:0 0 60px;
}

.who__head {
 display: flex;
 justify-content: space-between;
 margin:0 0 70px;
}

.who__label {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 500;
  line-height: 120%;
  color: var(--color-accent);
}

.who__title {
  margin: 0;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
  color: var(--color-nav);
}

.who__head-content{
  width: 45%;
}

.who__intro {
  margin: 85px 0 0;
  font-size: 32px;
  width: 45%;
  line-height: 140%;
  color: var(--color-nav);
}

.who__cards {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.who-card{
  width: 22%;
}

.who-card:nth-child(3){
  width:45%;
}
.who-card__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.who-card__num {
  display: block;
  margin-bottom: 8px;
  font-size: 160px;
  font-weight: 400;
  line-height: 100%;
  color: var(--color-accent);
}

.who-card__heading {
  display: block;
  max-width: 320px;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  color: var(--color-nav);
}

.who-card__heading--accent {
  max-width: 100%;
  color: var(--color-accent);
  font-size:60px;
  line-height: 120%;
  font-weight: 500;
}

.who-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 32px;
  border-radius: 50%;
  color: var(--color-accent);
  animation: whoCardArrowPulse 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes whoCardArrowPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

.who-card__arrow.is-open {
  animation: none;
  opacity: 1;
  transform: rotate(-90deg);
}

.who-card__body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.who-card__inner {
  padding-top: 32px;
}

.who-card__body p {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 120%;
}

.who-card__body p strong{
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.4px;
}

.who-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.who-card__body li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 2px;
}

.who-card__body li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

/* Services */
.services {
  padding: 120px 0 100px;
  background: var(--color-banner-bg);
  color: var(--color-white);
  max-width: 1880px;
  margin:0 auto;
  border-radius:20px;
}

.services__head {
  padding-bottom: 120px;
  margin-bottom: 0;
 
  display: flex;
  justify-content: flex-start;
}

.services__arrow {
  display: block;
  margin-bottom: 24px;
  color: var(--color-white);
  width: 13%;
  margin-top: 50px;
}

.services__title {
  margin: 25px 0 0;
  max-width: 70%;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
}

.services__list {
  display: flex;
  flex-wrap: wrap;
}

.service-card {
  width: 49.5%;
  padding: 120px 0;
  border-right: 1px solid rgba(138, 143, 153, 0.4);
  border-bottom: 1px solid rgba(138, 143, 153, 0.4);
  border-top: 1px solid rgba(138, 143, 153, 0.4);
  margin:0 0 -1px;
}

.service-card:nth-child(2n) {
  border-right: 0;
  margin-right: 0;
  padding-left: 2.5%;
}

.service-card:nth-child(n+3) {
  border-bottom: 0;
}

.service-card__head {
  display: flex;
  align-items: flex-start;
}

.service-card__icon {
  width: 27%;
  flex-shrink: 0;
}

.service-card__icon svg,
.service-card__icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.service-card__info {
  width: 68%;
  flex-shrink: 0;
  padding-right: 120px;
}

.service-card__title {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

.service-card__desc {
  margin: 0;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  font-weight: 400;
}

.service-card__body {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.service-card__body li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  background: url('../images/l-item.svg') no-repeat 0 2px;
  color:rgba(139, 147, 169, 1);
  font-size: 16px;
}



.service-card.is-open .service-card__body {
  display: block;
}

/* Placeholder */
.img-placeholder {
  display: inline-block;
  max-width: 180px;
}

/* Projects */
.projects {
  padding: 120px 0;
  overflow: hidden;
}

.projects__head {
  display: flex;
  align-items: flex-start;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(138, 143, 153, 0.4);
}

.projects__arrow {
  width: 13%;
  flex-shrink: 0;
  margin-top: 50px;
  color: var(--color-nav);
}

.projects__title {
  width: 70%;
  margin: 25px 0 0;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
}

.projects__list {
  display: flex;
  flex-direction: column;
}

.project {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
 
}

.project__label {
  width: 37px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(138, 143, 153, 1);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.project__content {
  width: 88%;
  padding: 80px 0 30px 0;
  border-bottom: 1px solid rgba(138, 143, 153, 0.4);
}

.project__logo {
  width: 140px;
  height: 48px;
  margin-bottom: 32px;
}

.project__title {
  margin: 0 0 25px;
  font-size: 44px;
  font-weight: 600;
  line-height: 120%;
  color:rgba(14, 17, 22, 1);
}

.project__desc {
  margin: 0 0 40px;
  max-width: 85%;
  font-size: 24px;
  line-height: 120%;
}

.project__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project__link {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 font-size: 20px;
 font-weight: 600;
 text-decoration: underline;
}

.project__link:hover{text-decoration: none;}


.project__link .project__link-icon{
  margin-left: 72px;
}

.project__foot .project__link-icon svg{
  height: 38px;
  width: auto;
}

.project__tags {
  font-size: 20px;
  line-height: 26px;
  color: var(--color-accent);
}

.projects__footer {
  padding-top: 0;
  float: right;
  width: 88%;
}

.projects__footer p {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 600;
}

.projects__footer a {
  color: var(--color-accent);
}

.projects__portfolio {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: rgba(25, 28, 37, 1) !important;
}

/*
.projects__portfolio:hover .img-placeholder.project__link-icon{text-decoration: none;transform:rotate(-44deg);}
*/

.projects__portfolio .project__link-icon{margin-left: 60px;}

/* Photo placer */
.photo-placer {
  display: block;
  background: rgba(138, 143, 153, 0.35);
}

/* Team */
.team {
  padding: 0;
  border-top: 1px solid rgba(138, 143, 153, 0.4);
  border-bottom: 1px solid rgba(138, 143, 153, 0.4);
  margin-bottom:200px;
}

.team__inner {
  display: flex;
  align-items: stretch;
}

.team__content {
  width: 45.5%;
  flex-shrink: 0;
  padding-right: 6%;
  padding-top: 100px;
  padding-bottom: 100px;
  border-right: 1px solid rgba(138, 143, 153, 0.4);
  position:relative;
}

.team__text{
  position:absolute;
  bottom:75px;
  left:0;
  max-width: 85%;
}

.team__title {
  margin: 0 0 40px;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
}

.team__text {
  margin: 0;
  font-size: 24px;
  line-height: 140%;
}

.team__aside {
  width: 58%;
  flex-shrink: 0;
  padding-left: 6%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.team-slide {
  display: flex !important;
  gap: 40px;
}

.team-slide__photo {
  width: 44.5%;
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.team-slide__info {
  flex: 1;
  position:relative;
}

.team-slide__label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent);
  text-transform: uppercase;
}

.team-slide__label strong{
  max-width:75%;
  font-weight: 500;
}

.team-slide__label span {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: var(--color-accent);
}

.team-slide__name {
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 120%;
  max-width: 270px;
  position: absolute;
  bottom:0;
  left:0;
}

.team__controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.team-slider-nav {
  width: 43.5%;
}

.team-slider-nav .slick-slide {
  padding: 0;
  cursor: pointer;
  margin:0 2px;
}

.team-slider-nav .slick-slide:first-child {
  padding-left: 0;
}

.team-thumb {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0;
  object-fit: cover; 
  object-position: 50% 50%;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.slick-current .team-thumb{border-radius:50%;}

.team-slider-for .slick-list,
.team-slider-nav .slick-list {
  cursor: grab;
}

.team-slider-for .slick-list:active,
.team-slider-nav .slick-list:active {
  cursor: grabbing;
}


.team__next {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-nav);
  cursor: pointer;
}

.team-slider-for .slick-slide {
  outline: none;
}

.team__next.is-disabled{opacity:0;}

/* FAQ */
.faq {
  padding: 120px 0;
  background: var(--color-banner-bg);
  color: var(--color-white);
  max-width: 1880px;
  margin: 0 auto 120px;
  border-radius: 20px;
}

.faq__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.faq__head {
  width: 40%;
  flex-shrink: 0;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
}

.faq__arrow {
  display: block;
  margin-top: 15px;
  color: var(--color-white);
}

.faq__title {
  margin: 0;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
  max-width: 420px;
}

.faq__title span {
  display: block;
  color: var(--color-accent);
}

.faq__list {
  width: 45.5%;
  flex-shrink: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(138, 143, 153, 0.4);
}

.faq-item:last-child{
  border-bottom: 0;
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 36px 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item__q {
  color: var(--color-accent);
}

.faq-item__question {
  flex: 1;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
}

.faq-item__chevron {
  flex-shrink: 0;
  margin-left: 24px;
  color: var(--color-white);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq-item__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq-item__inner {
  padding-bottom: 32px;
}

.faq-item__answer {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 160%;
  color: var(--color-white);
}

.faq-item__a {
  font-weight: 600;
  color: var(--color-white);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

/* Contact */
.contact {
  padding: 0;
  margin-bottom: 120px;
}

.contact .container{
  border-bottom: 1px solid rgba(138, 143, 153, 0.4);
}

.contact__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(138, 143, 153, 0.4);
}

.contact__title {
  margin: 0;
  max-width: 756px;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
}

.contact__title span {
  color: var(--color-accent);
}

.contact__arrow {
  flex-shrink: 0;
  margin-top: 30px;
  color: var(--color-nav);
}

.contact__body {
  display: flex;
  align-items: stretch;
}

.contact__text {
  width: 50%;
  display: flex;
  align-items: flex-end;
  padding: 80px 5% 80px 0;
  border-right: 1px solid rgba(138, 143, 153, 0.4);
}

.contact__text p {
  margin: 0;
  font-size: 32px;
  line-height: 140%;
}

.contact__aside {
  width: 50%;
  padding: 40px 0 80px 4%;
  position: relative;
}

.contact__aside .contact__label{
  position: absolute;
  right:0;
  top:-50px;
  padding: 10px 10px 10px 45px;
  background: rgba(226, 230, 229, 1);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
  color: var(--color-nav);
}

.contact__form {
  min-height: 480px;
}

.contact__form .gform_wrapper {
  margin: 0;
  --gform-theme-border-radius: 12px;
  --gform-theme-color-primary: #2d323b;
  --gform-theme-color-primary-contrast: #fff;
  --gform-theme-control-border-color: rgba(45, 50, 59, 0.35);
  --gform-theme-control-label-color-primary: #2d323b;
}

.contact__form .gform_heading,
.contact__form .gform_description {
  display: none;
}

.contact__form .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 28px;
}

.contact__form .gfield {
  margin: 0;
  grid-column: 1 / -1 !important;
}

.contact__form #field_1_1,
.contact__form #field_1_3,
.contact__form #field_1_6,
.contact__form #field_1_7,
.contact__form .gfield:nth-child(1),
.contact__form .gfield:nth-child(2),
.contact__form .gfield:nth-child(5),
.contact__form .gfield:nth-child(6) {
  grid-column: span 1 !important;
}

.contact__form .gfield_label {
  display: block;
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-nav);
}

.contact__form .gfield_required {
  display: none;
}

.contact__form .ginput_container input.large,
.contact__form .ginput_container select.large,
.contact__form .ginput_container textarea.large {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(45, 50, 59, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-nav);
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact__form .ginput_container input.large:focus,
.contact__form .ginput_container select.large:focus,
.contact__form .ginput_container textarea.large:focus {
  outline: none;
  border-color: var(--color-nav);
  background: rgba(255, 255, 255, 0.7);
}

.contact__form .gfield_error .ginput_container input.large,
.contact__form .gfield_error .ginput_container select.large,
.contact__form .gfield_error .ginput_container textarea.large {
  border-color: #e53935;
}

.contact__form .gfield_error .ginput_container input.large:focus,
.contact__form .gfield_error .ginput_container select.large:focus,
.contact__form .gfield_error .ginput_container textarea.large:focus {
  border-color: #e53935;
}

.contact__form .validation_message,
.contact__form .gfield_validation_message {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: #e53935;
}

.contact__form .ginput_container textarea.large {
  min-height: 220px;
  resize: vertical;
}

.contact__form .ginput_container_select {
  position: relative;
}

.contact__form .ginput_container_select select.large {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.contact__form .ginput_container_select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 6px;
  pointer-events: none;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='%232D323B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.contact__form .gform_footer {
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact__form .gform-loader,
.contact__form img.gform_ajax_spinner {
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  vertical-align: middle;
}

.contact__form .gform-loader {
  border: 2px solid rgba(45, 50, 59, 0.15);
  border-left-color: var(--color-nav);
  border-radius: 50%;
  animation: prozoriGformLoader 0.8s linear infinite;
}

.contact__form img.gform_ajax_spinner {
  object-fit: contain;
}

@keyframes prozoriGformLoader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact__form .gform_button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--color-nav);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.contact__form .gform_button.button::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.contact__form .gform_button.button:hover {
  background: rgba(45, 50, 59, 0.88);
}

.contact__form .gform_validation_errors {
  margin-bottom: 24px;
  text-align: center;
}

.contact__form .gform_submission_error.hide_summary,
.contact__form .gform_validation_errors .gform_submission_error.hide_summary {
  font-weight: 400;
  color: #e53935;
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* Footer */
.footer {
  padding: 0 0 40px;
}

.footer__box {
  display: flex;
 
  justify-content: space-between;
  max-width: 1880px;
  min-height: 371px;
  margin: 0 auto;
  padding: 45px 80px 35px 200px;
  background: var(--color-banner-bg);
  border-radius: 20px;
  color: var(--color-white);
}

.footer__mark {
  width: 8%;
  flex-shrink: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(138, 143, 153, 0.4);
}

.footer__arrow {
  display: block;
  color: var(--color-white);
}

.footer__arrow svg{
  transform: rotate(90deg);
}

.footer__col {
  width: 26%;
  flex-shrink: 0;
  padding-top: 70px;
}

.footer__title {
  margin: 0 0 28px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 140%;
}

.footer__list li:last-child {
  margin-bottom: 0;
}

.footer__list img {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
}

.footer__list a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__list a:hover{
  text-decoration: none;
}

.service-card__icon svg{max-width:88px;height:auto;}

/* Responsive */

@media all and (max-width:1919px){
  .hero .container{
    max-width: var(--container-width);
  }
  .services,.faq,.footer{max-width:1732px;}
  .services .container{
    padding-left:40px;
    padding-right:40px;
  }
}

@media all and (max-width:1800px){
  .container,.hero .container{
    box-sizing: border-box;
    padding:0 40px;
  }
  .services,.faq,.footer{
    margin-left:40px;
    margin-right:40px;
  }
  
}

@media all and (max-width:1620px){
  .hero__title{
    font-size: 60px;
    max-width: 900px;
  }
  .hero__badge img{
    height:270px;
  }
  .service-card__info{padding-right:40px;}
  .service-card__icon{width:20%}
  .services__head{padding-bottom:80px;}
  .services{padding-top:80px;}
  .team-thumb{
    width:50px;
    height:50px;
  }

  .team__text{
    position:static;
  }
  .faq__title{max-width:65%}
}  


@media all and (max-width:1260px){
  .hero__title{
    font-size: 40px;
    max-width: 710px;
  }
  .hero__badge img{
    height:200px;
  }
  .hero__title strong{margin-right:360px;}
  .hero__inner{min-height:600px;}
  .who__label{
    font-size: 30px;
  }
  .who__title,.projects__title,.services__title,.team__title,.faq__title,.contact__title{
    font-size: 48px;
  }
  .who__intro{
    font-size: 28px;
    margin-top:68px;
  }
  .who-card__num{
    font-size:80px;
  }
  .who-card__heading--accent{
    font-size:46px;
  }
  .services{padding-top:40px;}
  .service-card{padding:60px 0;}
  .services__head{padding-bottom:60px;}
  .service-card__icon svg{max-width:48px;height:auto;}
  .projects{padding:60px 0;}
  .projects__arrow{margin-top:35px;}
  .projects__head{padding-bottom:35px;}
  .project__label{font-size:50px;}
  .projects__footer{padding-top:60px;}
  .faq__title{
    max-width: 220px;
  }
  .project__content{
    padding:60px 0 30px;
  }
  .services__arrow{width:10%}
  .team__text,.contact__text p{font-size:20px;}
  .footer__box{padding-left:75px;}
  .footer__mark{width:62px;}
  .site-header__menu{gap:35px;}
  .team__content{width:40.5%;padding-right:1%}
  .team-slide__name{
    font-size:32px;
  }
  .team-slide__label{font-size:20px;}
  .team{margin-bottom:60px;}
  .team__content,.team__aside{padding-bottom:40px;padding-top:40px;}
  .faq{padding-top:60px;padding-bottom:40px;margin-bottom:60px;}
  .faq__list{margin-top:-25px;}
  .faq-item__question,.faq-item__answer{
    font-size:24px;
    line-height:120%;
  }
  .contact{
    padding:0;
    margin-bottom:60px;
  }
}


@media all and (max-width:980px){
  .who-card__heading--accent{
    font-size:38px;
  }
  .team-slide__name{
    font-size:24px;
  }
  .team-slide__label{
    font-size:16px;
  }
  .contact__text{
    align-items:flex-start;
  }
  .contact__aside,.contact__text{
    padding-bottom:30px;
  }
  .contact__form{
    min-height:0;
  }
}


@media all and (max-width:960px){
  .hero__inner{
    padding-top:30px;
    padding-right:30px;
  }
  .hero__badge{right:20px;top:40px;}
  .hero__inner{padding-top:40px;min-height:490px;padding-left:30px;}
  .site-header__burger{
    display: flex;
  }
  .site-header__nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 100px 24px 48px;
    background: rgba(226, 230, 229, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .site-header.is-menu-open .site-header__nav{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header__menu{
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .site-header__menu a{
    font-size: 18px;
  }
  .site-header__cta{
    margin-top: 16px;
  }
  .hero__badge img{height:160px;}
  .hero__title{max-width:350px}
  .hero__title strong{margin-right:0;margin-top:10px;}
  .hero__actions{left:32px;}
  .faq__inner{
    flex-wrap:wrap;
  }
  .faq__inner{
    display:block;
  }
  .faq__title{
    width: 100%;
    max-width: 90%;
  }
  .faq__head{width:100%;padding-right:0;}
  .faq__list{
    width:100%;
  }
  .faq__head{
    margin-bottom:40px;
  }
  .footer__mark{
    display:none;
  }
  .footer__box{
    padding-left:40px;
    padding-right:40px;
  }
}

@media all and (max-width:767px){
  .hero__badge{top:20px;} 
  .hero__badge img{height:65px;}
  .hero__title{font-size:28px;}
  .hero__actions{
    display:block;
    width:calc(100% - 64px);
  }
  .hero__inner,.services .container{
    padding-left:20px;
    padding-right:20px;
  }
  .hero__actions .btn{
    display:block;
    text-align:center;
    margin:0 0 20px;
    line-height:normal;
  }
  .hero__title strong{max-width:50%}
  .container, .hero .container{
    padding: 0 20px;
  }
  .who__head{
    display:block;
  }
  .who__head-content{
    width: 100%;
  }
  .who__intro{
    width: 100%;
    margin-top:35px;
  }
  .who__cards{
    flex-wrap: wrap;
  }
  .who-card{
    width: 48.5%;
    margin-bottom:45px;
  }
  .who-card:nth-child(3){
    width:100%;
  }
  .who{padding-bottom:25px;padding-top:60px;}
  .services, .faq, .footer{
    margin-left:20px;
    margin-right:20px;
  }
  .who__title, .projects__title, .services__title, .team__title, .faq__title, .contact__title{
    font-size:32px;
  }
  .who__intro{
    font-size:24px;
  }
  .services{padding-top:20px;}
  .service-card{
    width:100%;
    border-left:0;
    border-right:0;
  }
  .service-card__info{
    padding-right:0;
  }
  .service-card__icon{width:15%}
  .service-card__info{width:80%}
  .services{padding-bottom:20px;}
  .service-card__head{justify-content:space-between;padding-bottom:35px;}
  .who-card__heading--accent{
    font-size:32px;
  }
  .services__head{
    justify-content:space-between;
  }
  .services__title{
    max-width:85%;
    font-size:30px;
  }
  .service-card__title{
    font-size:26px;
  }
  .services__arrow{margin-top:35px;}
  
  .project__content{
    width:100%;
    padding-top: 20px;
  }
  .project__title{
    font-size:30px;
  }
  .project__logo{margin-bottom:10px;}
  .project__foot{
    flex-direction:column;
  }
  .project{
    display:block;
  }
  .project__label{
    width:100%;
    writing-mode: initial;
    transform: rotate(0deg);
    display:block;
    padding-bottom:20px;
    padding-top:40px;
    font-size:34px;
  }
  .project__desc{max-width:100%;}
  .project__foot{align-items:flex-start;}
  .project__link{order:2}
  .project__tags{margin-bottom:35px;}
  .projects__footer{float:none;width:100%;padding-top:25px;}
  .team__inner{
    display:block;
  }
  .team__content{
    width:100%;
    padding-right:0;
    border-right:0;
  }
  .team__text{max-width:100%;}
  .team__aside{
    width:100%;
    padding-left:0;
  }
  .team-slider-nav{
    width:75%;
  }
  .team__aside{
    padding-top:20px;
  }
  .contact__arrow{margin-top:0;}
  .contact__text{
    padding-top:30px;
  }
  .footer__col{
    padding-top:20px;
  }
  .footer__title{font-size:18px;}
  .footer__col{
    width:32%;
  }
  .faq-item__question, .faq-item__answer{
    font-size:20px;
  }
  .faq__title{
    width:auto;
    max-width:100%;
  }
  .faq__head{
    justify-content:flex-start;
  }
  .faq__arrow{width:13%;margin-right:15px;}
  .footer__box{
    padding-left:20px;
    padding-right:20px;
  }
  .btn .btn__icon{
    margin-left:5px;
    position:relative;
    top:2px;
  }
  .contact__arrow svg,.faq__arrow svg,.services__arrow svg,.projects__arrow svg{
    width:20px;
    height:auto;
  }
  .project__foot .project__link-icon svg,.projects__portfolio .project__link-icon svg{
    height:28px;
  }
  .project__link .project__link-icon,.projects__portfolio .project__link-icon{margin-left:25px;}
  .hero__banner{
    background-size: auto 100%;
  }
  .hero__banner::after {
    background-size: auto 15%;
    right: -40px;
  }
}


@media all and (max-width:600px){
  .team-slider-for .slick-slide{
    display:block !important;
  }
  .team-slide__photo{
    height:auto;
    width:100%;
    margin-bottom:30px;
  }

  .contact__form .gform_fields {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .contact__form .gfield,
  .contact__form #field_1_1,
  .contact__form #field_1_3,
  .contact__form #field_1_6,
  .contact__form #field_1_7,
  .contact__form .gfield:nth-child(1),
  .contact__form .gfield:nth-child(2),
  .contact__form .gfield:nth-child(5),
  .contact__form .gfield:nth-child(6) {
    grid-column: 1 / -1;
  }

  .contact__form .ginput_container textarea.large {
    min-height: 180px;
  }
    
  .team-slide__name{
    position:static;
  }
  .footer__box{
    display:block;
  }
  .footer__col{
    width:100%;
    margin:0 0 25px;
  }
  .footer__title{
    margin-bottom:10px;
  }
  .contact__body{
    display:block;
  }
  .contact__text,.contact__aside{
    width:100%;
    padding-right:0;
    border-right:0;
    padding-left:0;
  }
  .contact__aside .contact__label{
    display:none;
  }
  .contact__head{padding-bottom:25px;}
}