body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

#wpadminbar {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 924px;
}

h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 48px;
  }
}

p {
  font-size: 20px;
  line-height: 1.2;
}
p.section-text {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  p {
    font-size: 24px;
  }
  p.section-text {
    margin-bottom: 64px;
  }
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #000000;
  border-radius: 50em;
  color: #ffffff;
  padding: 20px 52px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 200ms ease-out;
}
.button:not(:disabled):hover, .button:not(:disabled):active, .button:not(:disabled):focus {
  background-color: #FF8484;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.overlay {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100vh - 100%);
  background-color: rgba(22, 22, 22, 0.07);
}
.overlay.overlay--show {
  display: block;
}

.stop-scroll {
  position: fixed;
}

section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 16px;
}
@media (min-width: 1024px) {
  section {
    padding: 60px 72px;
  }
}

.header {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 16px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .header {
    padding: 60px 72px;
  }
}
@media (min-width: 1024px) {
  .header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.header .header__links-list {
  display: flex;
  gap: 16px;
  position: fixed;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  max-height: 0;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  flex-direction: column;
}
@media (min-width: 768px) {
  .header .header__links-list {
    display: flex;
    overflow: unset;
    gap: 0;
    flex-direction: row;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    max-height: unset;
    background-color: transparent;
  }
}
.header .header__links-list.mobile-menu-open {
  max-height: calc(100vh - 72px);
  padding-bottom: 24px;
  overflow: auto;
}
.header .header__link-item a, .header .header__link-item button {
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  padding: 8px 16px;
  transition: color 400ms ease-out;
  background-color: transparent;
}
@media (min-width: 768px) {
  .header .header__link-item a, .header .header__link-item button {
    font-size: 20px;
  }
}
.header .header__link-item button {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header .header__link-item button svg {
  transition: all 200ms ease-out;
  color: #000000;
}
@media (min-width: 768px) {
  .header .header__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header__link-item a:hover, .header .header__link-item a:active, .header .header__link-item a:focus,
  .header .header__link-item button:hover, .header .header__link-item button:active, .header .header__link-item button:focus {
    color: #FF8484;
  }
  .header .header__link-item:hover .header__services-dropdown {
    max-height: 500px;
  }
  .header .header__link-item:hover button svg {
    fill: #FF8484;
    transform: rotate(180deg);
  }
}
.header .header__services-dropdown {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  max-height: 0;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .header .header__services-dropdown {
    position: absolute;
    width: 280px;
  }
}
.header .header__services-dropdown li {
  border-bottom: 1px solid #F2F2F2;
  display: flex;
}
.header .header__services-dropdown a {
  display: block;
  color: #161616;
  font-weight: 500;
  font-size: 20px;
  padding: 16px;
}
@media (min-width: 768px) {
  .header .header__services-dropdown a {
    line-height: 1;
    width: fit-content;
    font-weight: 700;
  }
}
.header .service-button--active svg {
  transform: rotate(180deg);
}
.header .service-button--active + .header__services-dropdown {
  max-height: 500px;
}
.header .menu-button {
  display: flex;
  gap: 16px;
  align-items: center;
  background-color: transparent;
}
@media (min-width: 768px) {
  .header .menu-button {
    display: none;
  }
}
.header .menu-button .menu-button__icon {
  position: relative;
  height: 12px;
  width: 16px;
}
.header .menu-button .menu-button__icon::after,
.header .menu-button .menu-button__icon::before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 50em;
  background-color: #000000;
  left: 0;
  right: 0;
  transition: all 200ms ease-out;
}
.header .menu-button .menu-button__icon::before {
  bottom: 0;
}
.header .menu-button span {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.header .menu-button.menu-button--active .menu-button__icon::before {
  transform: rotate(-45deg);
  transform-origin: 1px 0;
}
.header .menu-button.menu-button--active .menu-button__icon::after {
  transform: rotate(45deg);
  transform-origin: 2px 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  max-width: 664px;
  margin: 0 auto 24px;
}
.contact-form .input-wrapper, .contact-form .textarea-wrapper {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #F2F2F2;
  border-radius: 5px;
  align-items: center;
}
.contact-form .input-wrapper input, .contact-form .input-wrapper textarea, .contact-form .textarea-wrapper input, .contact-form .textarea-wrapper textarea {
  outline: none;
  background-color: transparent;
  flex-grow: 1;
  color: #000000;
  font-size: 20px;
}
.contact-form .input-wrapper .wpcf7-not-valid-tip, .contact-form .textarea-wrapper .wpcf7-not-valid-tip {
  max-width: 92px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #FF8484;
}
.contact-form .wpcf7-response-output {
  display: none !important;
}
@media (min-width: 768px) {
  .contact-form .input-wrapper .wpcf7-not-valid-tip, .contact-form .textarea-wrapper .wpcf7-not-valid-tip {
    font-size: 18px;
    max-width: unset;
  }
}
.contact-form .validation-marker {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #C2C2C2;
}
.contact-form .textarea-wrapper .validation-marker, .contact-form .textarea-wrapper .wpcf7-not-valid-tip {
  align-self: flex-start;
}
.contact-form .validation-marker.success {
  border: none;
  background-color: #9AF3BE;
}
.contact-form .wpcf7-not-valid ~ .validation-marker {
  border: none;
  background-color: #FF8484;
  order: 1;
}
.contact-form textarea {
  height: 108px;
  resize: none;
}
.contact-form .common-button {
  align-self: center;
}
.contact-form .input-file {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form .input-file::before {
  content: url(../images/attach-icon.svg);
}
.contact-form .input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.contact-us-note {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}
.contact-us-note a {
  font-weight: 700;
  transition: color 0.2s ease-out;
}
.contact-us-note a:hover, .contact-us-note a:focus, .contact-us-note a:active {
  color: #FF8484;
}

.footer {
  padding: 40px 16px;
  background-color: #000000;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 36px 36px 0 0;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .footer {
    padding: 60px 72px;
  }
}
.footer .footer__content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer .footer__content {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: max-content 1fr;
    grid-auto-flow: column;
    justify-content: space-between;
  }
}
.footer .footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 24px;
  justify-self: start;
}
.footer .footer__logo img {
  height: 32px;
}
@media (min-width: 768px) {
  .footer .footer__logo img {
    height: 40px;
  }
}
.footer .footer__logo span {
  color: #ffffff;
  font-weight: 700;
  font-size: 26px;
}
.footer .footer__links-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer .footer__links-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row: 1/3;
    column-gap: 40px;
  }
}
@media (min-width: 1024px) {
  .footer .footer__links-list {
    column-gap: 72px;
  }
}
.footer .footer__links-list a {
  display: block;
  padding-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-decoration: none;
  transition: color 200ms ease-out;
}
.footer .footer__links-list a:hover, .footer .footer__links-list a:active, .footer .footer__links-list a:focus {
  color: #FF8484;
}
@media (min-width: 768px) {
  .footer .footer__links-list a {
    font-size: 24px;
  }
}
.footer p {
  font-weight: 500;
  line-height: 1.3;
  color: #AFAFAF;
}
.footer p.footer__text {
  font-size: 18px;
  margin-bottom: 44px;
  max-width: 372px;
}
.footer p.footer__copyright {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  font-size: 20px;
}
@media (min-width: 768px) {
  .footer p {
    font-size: 24px;
  }
}

.cases {
  max-width: 100%;
  padding: 88px 16px;
}
.cases__inner {
  max-width: 1296px;
  margin: 0 auto;
}
.cases__inner h2 {
  margin-bottom: 56px;
}
.cases__list {
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .cases {
    padding: 88px 60px;
  }
  .cases__inner h2 {
    margin-bottom: 72px;
  }
  .cases__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 72px;
  }
}
.cases__list li.case-item {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .cases__list li.case-item {
    margin-bottom: 0;
  }
}

.cases__list li.case-item .case-item__img-wrapper {
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 16px;
  height: 60vw;
}
@media (min-width: 768px) {
  .cases__list li.case-item .case-item__img-wrapper {
    height: 20vw;
    margin-bottom: 32px;
  }
}
.cases__list li.case-item .case-item__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-out;
}
.cases__list li.case-item h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 8px;
  transition: color 200ms ease-out;
  color: #161616;
}
.cases__list li.case-item p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
.cases__list li.case-item img {
  transform: scale(1.1);
}
.cases__list .button {
  max-width: 250px;
}

.home__main-screen {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 0;
}
@media (min-width: 1024px) {
  .home__main-screen {
    display: grid;
    grid-template-columns: 50% 45%;
    column-gap: 5%;
    row-gap: 100px;
  }
}
.home__main-screen .home__main-screen-title {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.1;
  margin-bottom: 32px;
}
.home__main-screen .home__main-screen-text {
  font-size: 24px;
  max-width: 636px;
}
@media (min-width: 1024px) {
  .home__main-screen .home__main-screen-text {
    font-size: 32px;
  }
}
.home__main-screen svg {
  max-width: 100%;
  height: fit-content;
  align-self: start;
}
@media (min-width: 1024px) {
  .home__main-screen svg {
    grid-column: 2/3;
    grid-row: 1/3;
    align-self: end;
    justify-self: end;
  }
}
.home__main-screen .button {
  max-width: 320px;
}

.info-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .info-list {
    flex-direction: row;
    justify-content: space-between;
  }
}
.info-list li {
  margin-bottom: 48px;
}
.info-list li .info-list__number {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
}
@media (min-width: 768px) {
  .info-list li .info-list__number {
    font-size: 48px;
  }
}
.info-list li p {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
}

.home__approach .diagram {
  display: grid;
  gap: 8px;
  grid-template-rows: 64px 160px 160px 160px 92px;
  grid-template-columns: 3fr 2fr 3fr 2fr;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 72px auto;
}
@media (min-width: 1024px) {
  .home__approach .diagram {
    grid-template-rows: 100px 100px 50px 150px;
    grid-template-columns: 7fr 200px 6fr 7fr;
    gap: 20px;
    max-width: unset;
  }
}
.home__approach .diagram li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
}
.home__approach .diagram .diagram__consulting {
  background-color: #EEEEEE;
  grid-column: 1/4;
  grid-row: 1/2;
  border-radius: 0 10px 10px 10px;
}
@media (min-width: 1024px) {
  .home__approach .diagram .diagram__consulting {
    grid-column: 1/2;
  }
}
.home__approach .diagram .diagram__discover {
  background-color: #BDFAA8;
  border-radius: 50%;
  grid-column: 3/5;
  grid-row: 2/3;
  width: 164px;
  height: 164px;
  transform: rotate(13deg);
}
@media (min-width: 1024px) {
  .home__approach .diagram .diagram__discover {
    transform: none;
    grid-column: 1/2;
    grid-row: 2/5;
    width: 200px;
    height: 200px;
    justify-self: end;
  }
}
.home__approach .diagram .diagram__analytics {
  font-size: 24px;
  background-color: #85D3FF;
  grid-column: 1/3;
  grid-row: 2/4;
}
@media (min-width: 1024px) {
  .home__approach .diagram .diagram__analytics {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.home__approach .diagram .diagram__design {
  background-color: #FF8484;
  grid-column: 3/5;
  grid-row: 3/4;
}
@media (min-width: 1024px) {
  .home__approach .diagram .diagram__design {
    grid-column: 2/3;
    grid-row: 3/5;
  }
}
.home__approach .diagram .diagram__development {
  background-color: #FFDC60;
  grid-column: 1/5;
  grid-row: 4/5;
}
@media (min-width: 1024px) {
  .home__approach .diagram .diagram__development {
    grid-column: 3/4;
    grid-row: 1/5;
  }
}
.home__approach .diagram .diagram__testing {
  position: relative;
  bottom: 20px;
  left: 20px;
  background-color: #FFBB77;
  grid-row: 5/6;
  grid-column: 1/2;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  justify-self: end;
  transform: rotate(-10deg);
}
@media (min-width: 1024px) {
  .home__approach .diagram .diagram__testing {
    position: static;
    justify-self: start;
    transform: none;
    grid-column: 4/5;
    grid-row: 2/4;
    width: 180px;
    height: 180px;
  }
}
.home__approach .diagram .diagram__support {
  background-color: #DDC2FF;
  grid-column: 2/5;
  grid-row: 5/6;
  border-radius: 10px 10px 0px 10px;
}
@media (min-width: 1024px) {
  .home__approach .diagram .diagram__support {
    grid-column: 4/5;
    grid-row: 4/5;
  }
}
.home__approach .button {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.home__services .services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .home__services .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home__services .services__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 116px;
  background-color: #F2F2F2;
  border-radius: 10px;
  text-decoration: none;
  padding: 16px;
}
.home__services .services__list a h4 {
  font-weight: 500;
  font-size: 24px;
}
.home__services .services__list a svg {
  transition: all 200ms ease-out;
  flex-shrink: 0;
}
.home__services .services__list a:hover svg, .home__services .services__list a:hover svg, .home__services .services__list a:focus svg {
  transform: scale(1.2);
}
.home__services .services__list a:hover svg *[fill="#FFDC60"], .home__services .services__list a:hover svg *[fill="#FFDC60"], .home__services .services__list a:focus svg *[fill="#FFDC60"] {
  fill: #FFBB77;
}
.home__services .services__list a:hover svg *[fill="#FFBB77"], .home__services .services__list a:hover svg *[fill="#FFBB77"], .home__services .services__list a:focus svg *[fill="#FFBB77"] {
  fill: #FFDC60;
}

.contact-us .section-title {
  text-align: center;
}
.contact-us .section-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 845px;
}

.service {
  width: 100%;
  margin: 0 auto;
}
.service .service__main-screen {
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  background-color: #F9F9F9;
  background-repeat: no-repeat;
  min-height: 570px;
  background-position: right bottom;
  background-size: auto 50%;
}
.service .service__main-screen--inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 16px;
}
.service .service__main-screen .button {
  max-width: 320px;
}
.service .service__main-screen img {
  position: relative;
  top: 40px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .service .service__main-screen {
    background-position: right;
    background-size: contain;
    min-height: 612px;
  }
  .service .service__main-screen--inner {
    padding: 60px 72px;
  }
  .service .service__main-screen img {
    left: 10%;
    max-width: 50%;
    padding: 0;
  }
}
.service h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.1;
  margin-bottom: 32px;
}
.service__section > * {
  max-width: 900px !important;
  margin-left: 0 !important;
}
.service__content section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.service__content p {
  margin-bottom: 24px;
  line-height: 36px;
}
.service__content h4 {
  font-size: 24px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .service__content h4 {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.service__sublist {
  max-width: 440px;
}
@media (min-width: 640px) {
  .service__sublist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: unset;
  }
}
@media (min-width: 1200px) {
  .service__sublist {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service__content .service__features {
  max-width: 1000px;
  margin-left: 0;
  margin-right: auto;
}
.service__content .service__features ul {
  margin-bottom: 56px;
  display: grid;
  gap: 32px;
}
@media (min-width: 640px) {
  .service__content .service__features ul {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 72px;
  }
}
.service__content .service__features ul li {
  color: #000000;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  gap: 24px;
}
@media (min-width: 1024px) {
  .service__content .service__features ul li {
    font-size: 24px;
  }
}
.service__content .service__features ul li::before {
  color: #ffffff;
  content: url("../../assets/images/check-icon.svg");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FF8484;
  border-radius: 5px;
}
.service__cases {
  background-color: #F9F9F9;
}

.service__key-features h2 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}
.service__key-features .wp-block-columns {
  gap: 40px;
}
.service__key-features p {
  font-size: 20px;
  line-height: 30px;
  color: #666666;
}
.service__key-features h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #161616;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .service__key-features h2 {
    margin-bottom: 46px;
    font-size: 44px;
    line-height: 59px;
  }
  .service__key-features .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .service__key-features p {
    font-size: 24px;
    line-height: 36px;
    
  }
  .service__key-features h4 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .service__key-features .wp-block-columns {
    gap: 91px;
  }
}

.privacy-policy__content  {
  margin: 40px 16px 80px;
}
@media (min-width: 1024px) {
  .privacy-policy__content {
    margin: 64px 72px 120px;
    max-width: 850px;
  }
}
.privacy-policy__header {
  background-color: #F9F9F9;
  padding: 40px 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.privacy-policy__header h1 {
  font-size: clamp(64px, 10vw, 96px);
  line-height: 1;
  color: #161616;
}
@media (min-width: 1024px) {
  .privacy-policy__header {
    padding: 80px 72px;
  }
}
.privacy-policy p {
  margin-bottom: 36px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #666666;
}
.privacy-policy h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 24px;
  text-align: left;
  color: #161616;
}

.about-us__banner {
  background: center bottom 30%/cover url(../images/about-us/ducks-banner-mobile.png) no-repeat;
  height: 654px;
}
@media (min-width: 480px) {
  .about-us__banner {
    background: center/cover url(../images/about-us/ducks-banner-tablet.png) no-repeat;
    height: 600px;
  }
}
@media (min-width: 900px) {
  .about-us__banner {
    background: right/cover url(../images/about-us/ducks-banner-desktop.png) no-repeat;
    height: 516px;
  }
}
@media (min-width: 1400px) {
  .about-us__banner {
    height: 680px;
  }
}
.about-us__banner .about-us__banner-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 16px;
}
@media (min-width: 1024px) {
  .about-us__banner .about-us__banner-content {
    padding: 60px 72px;
  }
}
.about-us__banner .about-us__banner-content h1 {
  color: #FFD900;
  font-size: clamp(48px, 6vw, 96px);
}
.about-us__banner .about-us__banner-content p {
  color: #F2F2F2;
  font-size: clamp(22px, 2vw, 32px);
}

.about-us__description p {
  margin-bottom: 36px;
}

.about-us__team > p {
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .about-us__team > p {
    margin-bottom: 72px;
  }
}

@media (min-width: 680px) {
  .team-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5%;
    justify-items: start;
    margin-bottom: 48px;
  }
}
.team-list .team-member {
  position: relative;
  margin-bottom: 56px;
  width: 100%;
}
.team-list .team-member .team-member__photo {
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 680px) {
  .team-list .team-member .team-member__photo {
    width: 80%;
  }
}
.team-list .team-member .team-member__duck {
  position: absolute;
  height: auto;
  right: 0;
  bottom: 30px;
  width: 40%;
}
@media (min-width: 680px) {
  .team-list .team-member .team-member__duck {
    bottom: 10%;
    width: 50%;
  }
}
.team-list .team-member .team-member__name {
  font-size: 24px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .team-list .team-member .team-member__name {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.team-list .team-member .team-member__position {
  font-size: 20px;
}
@media (min-width: 768px) {
  .team-list .team-member .team-member__position {
    font-size: 24px;
  }
}

.about-us__get-in-touch {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 16px;
}
@media (min-width: 1024px) {
  .about-us__get-in-touch {
    padding: 60px 72px;
  }
}
.about-us__get-in-touch h2 {
  color: #ffffff;
  text-align: center;
}
.about-us__get-in-touch .button {
  background-color: #ffffff;
  color: #000000;
}

/*# sourceMappingURL=main.css.map */
/* Cases Page */
.cases-page {

}
.cases-page__header {
  padding: 36px 16px;
  background-color: #F9F9F9;
  background-image: url("../../assets/images/disco_ball_mobile.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 280px;
  min-height: 576px;
}
.cases-page__header h1 {
  color: #161616;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cases-page__header p {
  color: #666666;
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 500;
}
.cases-page__items {
  padding: 48px 16px;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 72px;
}
.cases-page__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
}
.cases-page__item-img {
  flex: 0 0 auto;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 5px;
}
.cases-page__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-out;
}
.cases-page__item h3 {
  color: #161616;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.cases-page__item p {
  color: #666666;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .cases-page__header {
    padding: 80px 72px;
    min-height: 516px;
    background-size: contain;
    background-image: url("../../assets/images/disco_ball.png");
    background-position: right;
  }
  .cases-page__header h1 {
    font-size: 96px;
    line-height: 1;
    margin-bottom: 24px;
    max-width: 990px;
  }
  .cases-page__header p {
    max-width: 725px;
    font-size: 32px;
    line-height: 40px;
  }
  .cases-page__items {
    padding: 100px 72px;  
  }
}
@media (min-width: 1024px) {
  .cases-page__items {
    gap: 96px;
  }
  .cases-page__item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
  }
  .cases-page__item-img {
    width: 527px;
  }
  .cases-page__item h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .cases-page__item p {
    line-height: 24px;
    font-size: 20px;
  }

}