* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  max-width: 1440px;
}

.red {
  color: #d30001;
}

.yellow {
  color: #f8ce63;
}

.highlighted {
  color: #1a2257;
  background-color: #f8ce63;
  border-radius: 30px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-flex;
  height: 50px;
}

.highlighted-h1 {
  color: #1a2257;
  background-color: #f8ce63;
  border-radius: 30px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  display: inline-flex;
  height: 50px;
}

.card {
  border-radius: 2px;
  border: 1px solid #e4e6f3;
  background: white;
  box-shadow: 0px 4px 40px 0px rgba(165, 166, 180, 0.15);
}

button,
.button {
  appearance: none;
  border: none;
  background-color: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
  font-size: 20px;
  line-height: 140%;
}

button:hover,
.button:hover {
  background-color: white;
  color: #5c8abb;
}

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

section {
  padding: 0 125px;
}

h1 {
  color: inherit;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}

h2 {
  color: inherit;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}

p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}

@media only screen and (max-width: 1200px) {
  section {
    padding: 30px 90px;
  }
}
@media only screen and (max-width: 900px) {
  .highlighted {
    height: 40px;
  }
  section {
    padding: 0 63px;
  }
  h1 {
    font-size: 32px;
    line-height: 110%;
  }
  h2 {
    font-size: 32px;
    line-height: 110%;
  }
}
@media only screen and (max-width: 685px) {
  .highlighted {
    height: 30px;
  }
  section {
    padding: 0 20px;
  }
  h2 {
    font-size: 24px;
    line-height: 120%;
  }
}
.background {
  background: linear-gradient(#406994 65%, transparent 35%);
}

.background_1 {
  background-image: url("/assets/images/backgrounds/bg_1_desktop.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.background_2 {
  background-image: url("/assets/images/backgrounds/bg_2_desktop.svg");
  background-position-y: 100px;
  background-repeat: no-repeat;
}

.background_3 {
  background-image: url("/assets/images/backgrounds/bg_3_desktop.svg");
  background-position-y: 350px;
  background-repeat: no-repeat;
  background-size: cover;
}

.background_4 {
  background-image: url("/assets/images/backgrounds/bg_4_desktop.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 80px;
}

.background_5 {
  background-image: url("/assets/images/backgrounds/bg_5_desktop.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 180px;
}

.background_6 {
  padding-top: 0px;
}

@media only screen and (max-width: 1200px) {
  .background_4 {
    background-size: cover;
  }
  .background_6 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 900px) {
  .background_1:has(.header.open) {
    background-image: none;
  }
  .background_1 {
    background-position-x: left;
    background-size: 120%;
  }
  .background_2 {
    background-image: url("/assets/images/backgrounds/bg_2_tablet.svg");
    background-position-x: right;
  }
  .background_3 {
    background-image: url("/assets/images/backgrounds/bg_3_tablet.svg");
  }
  .background_4 {
    background-image: url("/assets/images/backgrounds/bg_4_tablet.svg");
    background-position-y: -35px;
  }
  .background_5 {
    background-image: url("/assets/images/backgrounds/bg_5_tablet.svg");
    padding-top: 57px;
  }
}
@media only screen and (max-width: 685px) {
  .background_1 {
    background-image: url("/assets/images/backgrounds/bg_1_mobile.svg");
    background-size: cover;
  }
  .background_2 {
    background-image: url("/assets/images/backgrounds/bg_2_mobile.svg");
    background-position: top;
    background-size: cover;
  }
  .background_3 {
    background-image: url("/assets/images/backgrounds/bg_3_mobile.svg");
    padding-top: 15px;
    background-position-y: -100px;
  }
  .background_4 {
    background-image: url("/assets/images/backgrounds/bg_4_mobile.svg");
    margin-top: -50px;
  }
  .background_5 {
    background-image: url("/assets/images/backgrounds/bg_5_mobile.svg");
    padding-top: 28px;
    background-position-y: -75px;
    margin-top: -50px;
  }
  .background_6 {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .background_1 {
    background-image: url("/assets/images/backgrounds/bg_1_mobile.svg");
    background-size: cover;
  }
  .background_4 {
    margin-top: 0;
    padding-top: 0;
  }
  .background_5 {
    background-position-y: -50px;
    margin-top: 0;
  }
  .background_6 {
    padding-top: 0;
  }
}
body:has(.header.open) {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  height: 100px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: white;
  background-color: #406994;
  z-index: 999;
}
.header__mobile-menu {
  display: none;
  cursor: pointer;
}
.header__logo {
  display: flex;
}
.header__logo > img {
  height: 45px;
}
.header__wrapper {
  display: flex;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__menu__close {
  display: none;
  cursor: pointer;
  width: 24px;
  justify-content: center;
  align-items: center;
}
.header__menu__item {
  cursor: pointer;
  font-weight: 500;
  position: relative;
}
.header__menu__item::after {
  position: absolute;
  content: "";
  background-color: white;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  transition: width 0.2s ease-in-out;
}
.header__menu__item:hover::after {
  width: 100%;
}
.header__button {
  font-weight: 700;
  padding: 0 50px;
  height: 48px;
  background-color: #406994;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  color: #f8ce63;
  border: 1px solid #f8ce63;
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.15));
  font-size: 14px;
}

@media only screen and (max-width: 900px) {
  .header {
    padding: 15px 24px;
    height: 74px;
  }
  .header__logo > img {
    width: 93px;
  }
  .header__menu {
    font-size: 12px;
  }
  .header__button {
    padding: 0 10px;
    height: 40px;
    font-size: 12px;
  }
  .header.open {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 685px) {
  .header {
    padding: 15px 20px 15px 10px;
    column-gap: 10px;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    grid-template-rows: auto;
  }
  .header__logo {
    order: 2;
    margin-right: auto;
  }
  .header__mobile-menu {
    display: flex;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    gap: 5px;
  }
  .header__mobile-menu:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .header__menu {
    order: 1;
  }
  .header__menu__open {
    display: flex;
    padding: 2px;
  }
  .header__menu__close {
    display: none;
  }
  .header__wrapper {
    display: none;
  }
  .header.open {
    overflow: hidden;
    grid-template-rows: 60px 1fr;
    height: 100%;
    padding-top: 7px;
  }
  .header.open .header__wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    justify-content: flex-start;
    background-color: #406994;
    align-items: center;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 100px;
    width: 100%;
    height: 100%;
    z-index: 9;
    box-shadow: 0px 4px 5px -5px black inset;
  }
  .header.open .header__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .header.open .header__menu__item {
    font-size: 32px;
    height: 50px;
    line-height: 35px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header.open .header__menu__open {
    display: none;
  }
  .header.open .header__menu__close {
    display: flex;
  }
  .header__button {
    order: 3;
  }
}
.call-to-action {
  color: white;
  padding-top: 134px;
  padding-right: 0px;
  padding-bottom: 190px;
}
.call-to-action__content {
  max-width: 700px;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.call-to-action__content__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  max-width: 420px;
}
.call-to-action__content__button {
  margin-top: 20px;
  font-weight: 600;
  background: white;
  opacity: 1;
  height: 72px;
  max-width: 385px;
  width: 100%;
  color: #5c8abb;
  position: relative;
}
.call-to-action__content__button__text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  right: 0;
}
.call-to-action__content__button-shadow {
  height: 72px;
  width: 80%;
  opacity: 0.2;
  background: white;
  transform: rotate(-4deg);
  margin-top: 3%;
  margin-left: 8%;
}

@media only screen and (max-width: 1200px) {
  .call-to-action__content__description {
    max-width: 336px;
  }
  .call-to-action__content__button {
    max-width: 264px;
  }
}
@media only screen and (max-width: 900px) {
  .call-to-action {
    padding-top: 109px;
    padding-bottom: 150px;
  }
  .call-to-action__content {
    max-width: 500px;
  }
  .call-to-action__content__button {
    font-size: 14px;
  }
}
@media only screen and (max-width: 685px) {
  .call-to-action {
    padding-top: 92px;
    padding-bottom: 395px;
    padding-right: 20px;
  }
  .call-to-action__content {
    max-width: none;
  }
  .call-to-action__content__title {
    padding: 0px 30px;
  }
  .call-to-action__content__description {
    max-width: 100%;
    padding: 0px 30px;
  }
  .call-to-action__content__button {
    font-size: 20px;
    width: 100%;
    max-width: none;
    margin-bottom: 275px;
  }
}
@media only screen and (max-width: 580px) {
  .call-to-action {
    padding-bottom: 300px;
  }
}
@media only screen and (max-width: 480px) {
  .call-to-action {
    padding-bottom: 490px;
  }
  .call-to-action__content__button {
    margin-bottom: 0px;
  }
}
.about {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5px;
  color: #1a2257;
  padding-top: 140px;
  margin-top: -100px !important;
  padding-bottom: 0px;
  margin-top: 0;
}
.about__content {
  padding-top: 140px;
}
.about__content__title {
  padding-bottom: 56px;
}
.about__content__topic {
  padding-bottom: 32px;
}
.about__content__topic__title {
  padding-bottom: 16px;
}
.about__quote {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 63px;
}
.about__quote__content {
  padding-top: 8px;
}
.about__quote__content__image {
  justify-self: center;
  padding-top: 20px;
  margin-left: -6%;
}
.about__quote__content__image > img {
  width: 100%;
}
.about__mobile-image {
  display: none;
}

@media only screen and (max-width: 900px) {
  .about {
    padding-top: 95px;
    margin-top: -20px !important;
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
  }
  .about__quote {
    gap: 24px;
  }
  .about__quote__content__text {
    padding-left: 0;
  }
  .about__quote__content__image {
    display: none;
  }
  .about__content {
    padding-top: 0;
    padding-left: 80px;
  }
  .about__content__topic:last-of-type {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 685px) {
  .about {
    padding: 40px 0 0 0;
    margin-top: 0 !important;
    gap: 0;
  }
  .about__quote {
    padding: 0 30px;
    grid-template-rows: 46px 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__content {
    padding: 40px 30px 0 30px;
  }
  .about__content__title {
    padding-bottom: 24px;
  }
  .about__content__topic {
    padding-bottom: 24px;
  }
  .about__mobile-image {
    display: flex;
    justify-self: center;
  }
  .about__mobile-image > img {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .about {
    margin-top: -50px !important;
  }
}
.quick-info {
  color: #1a2257;
  padding-top: 50px;
}
.quick-info__card__content {
  padding: 60px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.quick-info__card__content__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quick-info__card__content__main__title {
  line-height: 130%;
  margin-bottom: 24px;
}
.quick-info__card__content__main__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  max-width: 420px;
}
.quick-info__card__content__items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.quick-info__card__content__items__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
}
.quick-info__card__content__items__item__number {
  background: white;
  border: 1px solid #E4E6F3;
  box-shadow: 0px 4px 39px #FAF1EF;
  border-radius: 48px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  font-weight: 700;
  font-size: 14px;
}
.quick-info__card__content__items__item__text {
  padding-top: 12px;
}

@media only screen and (max-width: 900px) {
  .quick-info {
    padding-top: 88px;
  }
  .quick-info__card__content {
    gap: 19px;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 685px) {
  .quick-info {
    padding-top: 0;
  }
  .quick-info__card__content {
    padding: 48px 36px;
    gap: 12px;
  }
  .quick-info__card__content__main__title {
    padding-bottom: 12px;
  }
}
.python {
  color: #1a2257;
  padding-top: 140px;
  margin-top: -20px;
}
.python__title {
  margin-bottom: 40px;
}
.python__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 25px;
}
.python__grid__card {
  padding: 40px 30px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}
.python__grid__card__icon {
  display: flex;
  align-items: start;
  justify-content: end;
  margin-right: -24px !important;
  margin-top: -36px !important;
}
.python__grid__card__content__title {
  padding-bottom: 8px;
}
.python__subtitle {
  margin-top: 20px;
  padding: 24px 0;
}
.python__companies {
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.python__companies__company {
  display: flex;
  align-items: center;
}
.python__companies__company__image {
  width: 100%;
  object-fit: contain;
}
.python__companies__divider {
  width: 2px;
  height: 16px;
  background-color: #e4e6f3;
}
.python__companies__divider:last-of-type {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .python {
    margin-top: -70px;
  }
}
@media only screen and (max-width: 900px) {
  .python {
    padding-top: 110px;
    margin-top: 0;
  }
  .python__title {
    margin-bottom: 24px;
  }
  .python__grid {
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: auto;
  }
  .python__grid__card {
    padding: 40px 40px;
    gap: 32px;
  }
  .python__companies {
    gap: 24px;
  }
}
@media only screen and (max-width: 685px) {
  .python {
    margin-top: -20px;
  }
  .python__subtitle {
    margin-top: 44px;
    padding: 12px 0;
    font-size: 24px;
    text-align: center;
  }
  .python__companies {
    gap: 12px;
    margin: 0 -20px;
  }
}
@media only screen and (max-width: 480px) {
  .python {
    margin-top: -50px;
  }
}
.fifty-developers {
  color: #1a2257;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 69px;
  padding-top: 200px;
}
.fifty-developers__image {
  margin: -25% -8% 0 -8%;
}
.fifty-developers__image > img {
  width: 100%;
}
.fifty-developers__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fifty-developers__content__title {
  max-width: 572px;
}
.fifty-developers__content__text {
  max-width: 510px;
}
.fifty-developers__content__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.fifty-developers__content__tags__tag {
  display: inline-flex;
  padding: 8px 20px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 2px 2px 2px 16px;
  border: 1px solid #E4E6F3;
  background: #F9FBFF;
}
.fifty-developers__content__tags__tag__image {
  display: flex;
  align-items: start;
  justify-content: end;
}

@media only screen and (max-width: 1200px) {
  .fifty-developers {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 900px) {
  .fifty-developers {
    padding-top: 0;
    margin-top: -20px;
    gap: 40px;
  }
  .fifty-developers__image {
    margin: -15% -8% 0 -8%;
  }
  .fifty-developers__content {
    gap: 12px;
  }
  .fifty-developers__content__subtitle {
    padding-top: 12px;
  }
  .fifty-developers__content__tags {
    gap: 10px;
  }
  .fifty-developers__content__tags__tag {
    padding: 8px 24px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 685px) {
  .fifty-developers {
    gap: 50px;
    display: flex;
    flex-direction: column;
    padding-top: 75px;
  }
  .fifty-developers__image {
    margin: -6% -4% 0 -4%;
  }
  .fifty-developers__content {
    padding: 0 20px;
  }
  .fifty-developers__content__title {
    max-width: none;
  }
  .fifty-developers__content__text {
    max-width: none;
  }
  .fifty-developers__content__subtitle {
    padding: 24px 0 12px 0;
    font-size: 20px;
  }
  .highlighted-h1 {
    display: inline;
    padding: 0 8px;
    margin-left: -10px;
    margin-right: 8px;
  }
}
@media only screen and (max-width: 480px) {
  .highlighted-h1 {
    margin-left: -15px;
  }
}
.contributions {
  color: #1a2257;
  padding-top: 140px;
  padding-bottom: 20px;
}
.contributions__title {
  padding-bottom: 26px;
}
.contributions__tabs {
  border-bottom: 1px solid rgba(142, 156, 173, 0.1882352941);
  display: flex;
  gap: 16px;
}
.contributions__tabs .tab {
  padding-bottom: 13px;
  min-width: 65px;
  font-size: 14px;
  font-weight: 600;
  color: #1a2257;
}
.contributions__tabs .tab:hover {
  border-bottom: 2px solid rgba(142, 156, 173, 0.1882352941);
}
.contributions__tabs .tab.active {
  border-bottom: 2px solid #1a2257;
}
.contributions__tabs button:hover {
  background: transparent;
}
.contributions__cards {
  display: none;
  gap: 16px;
  overflow: auto;
  padding: 35px 0;
}
.contributions__cards.active {
  display: flex;
}
.contributions__cards__card {
  padding: 16px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 285px;
  height: 350px;
  position: relative;
}
.contributions__cards__card__image {
  height: 183px;
  width: 100%;
}
.contributions__cards__card__image > img {
  width: 100%;
  height: 100%;
}
.contributions__cards__card__image .blog {
  object-fit: cover;
}
.contributions__cards__card__image .open-source {
  object-fit: contain;
}
.contributions__cards__card__date {
  font-size: 11px;
  color: #8e9cad;
}
.contributions__cards__card__title {
  font-weight: 700;
}

@media only screen and (max-width: 1200px) {
  .contributions {
    margin-top: -60px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 900px) {
  .contributions {
    padding-top: 100px;
    margin-top: -20px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 685px) {
  .contributions {
    padding-bottom: 0;
  }
  .contributions__cards {
    padding: 18px 20px;
    margin: 0 -20px;
  }
  .contributions__cards__card {
    width: 335px;
    height: 369px;
  }
  .contributions__cards__card__image {
    height: 202px;
  }
}
.offer {
  color: white;
  padding-top: 140px;
  padding-bottom: 265px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.offer__content__title {
  padding-top: 70px;
  padding-bottom: 40px;
}
.offer__content__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.offer__content__rows__row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
}
.offer__content__rows__row__icon {
  display: flex;
  align-items: start;
  justify-content: end;
}
.offer__content__rows__row__text__title {
  padding-top: 4px;
  padding-bottom: 8px;
}
.offer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 170px);
  grid-template-rows: repeat(auto-fit, 170px);
  gap: 12px;
  justify-content: right;
}
.offer__grid__card {
  width: 170px;
  height: 170px;
  color: #1a2257;
  background: white;
  border-radius: 2px;
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.offer__grid__card__icon {
  height: 69px;
  width: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer__grid__card__text {
  font-size: 12px;
}

@media only screen and (max-width: 1200px) {
  .offer {
    display: flex;
    flex-direction: column;
  }
  .offer__grid {
    justify-content: center;
  }
}
@media only screen and (max-width: 900px) {
  .empty {
    display: none;
  }
  .offer {
    margin-top: -80px;
    padding-bottom: 100px;
  }
  .offer__content {
    padding-top: 0;
  }
  .offer__content__title {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 685px) {
  .offer {
    gap: 52px;
    margin-top: 0;
    padding-bottom: 100px;
  }
  .offer__content__title {
    padding-top: 0;
    padding-bottom: 24px;
  }
  .offer__grid {
    grid-template-columns: repeat(auto-fit, 136px);
    grid-template-rows: repeat(auto-fit, 136px);
    gap: 7px;
  }
  .offer__grid__card {
    width: 136px;
    height: 136px;
    padding: 30px 6px 6px 6px;
    gap: 5px;
  }
  .offer__grid__card__icon {
    height: 56px;
    width: 56px;
  }
  .offer__grid__card__title {
    font-size: 16px;
  }
}
.services {
  color: #1a2257;
  padding-top: 50px;
}
.services__title {
  padding-top: 70px;
  padding-bottom: 40px;
}
.services__card__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(386.5px, 1fr));
}
.services__card__content__rectangle {
  width: 9px;
  height: 38px;
  flex-shrink: 0;
  position: relative;
  background-color: #F8CE63;
  margin-bottom: -38px;
  margin-left: -32px;
}
.services__card__content__paragraph {
  margin-top: 32px;
}
.services__card__content__qa {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
}
.services__card__content__qa__image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.services__card__content__qa__title {
  font-size: 20px;
  line-height: 130%;
  margin: 24px 0px 0px;
}
.services__card__content__qa__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.services__card__content__design {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(#F2F4FC, rgba(242, 244, 252, 0));
}
.services__card__content__design__image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.services__card__content__design__title {
  font-size: 20px;
  line-height: 130%;
  margin: 24px 0px 0px;
}
.services__card__content__design__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

@media only screen and (max-width: 1200px) {
  .services {
    padding-top: 88px;
  }
  .services__card__content__qa__title {
    margin: 24px 0px 0px;
  }
  .services__card__content__design__title {
    margin: 24px 0px 0px;
  }
}
@media only screen and (max-width: 900px) {
  .services {
    padding-top: 88px;
  }
  .services__card__content__rectangle {
    margin-left: -72px;
  }
  .services__card__content__qa {
    padding: 32px 72px;
  }
  .services__card__content__design {
    padding: 32px 72px;
  }
}
@media only screen and (max-width: 685px) {
  .services {
    padding-top: 0;
  }
  .services__card__content__qa__title {
    padding: 12px 0px;
  }
  .services__card__content__design__title {
    padding: 12px 0px;
  }
}
.testimonials {
  color: #1a2257;
  padding-top: 140px;
  margin-top: -20px;
}
.testimonials__content {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 70px;
}
.testimonials__content__text__title {
  padding-bottom: 24px;
}
.testimonials__content__image {
  margin-top: -30%;
}
.testimonials__content__image > img {
  width: 100%;
}
.testimonials__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonials__cards__card {
  padding: 56px 56px 45px 56px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 32px;
}
.testimonials__cards__card__icon {
  display: flex;
  align-items: start;
  justify-content: end;
}
.testimonials__cards__card__content__quote {
  padding-top: 16px;
}
.testimonials__cards__card__content__author {
  padding-top: 16px;
  font-size: 16px;
  line-height: 120%;
}
.testimonials__cards__card__content__author__name {
  font-weight: 700;
}

@media only screen and (max-width: 1200px) {
  .testimonials {
    margin-top: -100px;
    padding-bottom: 0;
  }
  .testimonials__content__image {
    margin-top: 0;
  }
}
@media only screen and (max-width: 900px) {
  .testimonials {
    margin-top: -50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 100px;
  }
  .testimonials__content {
    padding-top: 15px;
  }
}
@media only screen and (max-width: 685px) {
  .testimonials {
    gap: 32px;
  }
  .testimonials__content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
  }
  .testimonials__cards {
    gap: 16px;
  }
  .testimonials__cards__card {
    grid-template-columns: 1fr;
    grid-template-rows: 34px 1fr;
    gap: 15px;
    padding: 32px;
  }
  .testimonials__cards__card__icon {
    justify-content: start;
  }
  .testimonials__cards__card__icon > img {
    height: 34px;
  }
  .testimonials__cards__card__content__quote {
    padding-top: 0;
  }
}
.contact {
  padding-top: 140px;
  margin-top: -40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  color: white;
  padding-bottom: 100px;
}
.contact__left-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}
.contact__left-column__title {
  max-width: 320px;
}
.contact__left-column__contacts-group {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.contact__left-column__contacts-group__contact__address {
  font-weight: 700;
  padding-bottom: 24px;
}
.contact__left-column__email {
  padding: 16px 0;
}
.contact__left-column__email__text {
  font-weight: 700;
}
.contact__left-column__socials {
  display: flex;
  gap: 12px;
}
.contact__left-column__socials__social {
  border-radius: 40px;
  border: 1px solid rgba(142, 156, 173, 0.1882352941);
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
}
.contact__left-column__socials__social__icon {
  display: flex;
}
.contact__form {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.contact__form__input-group {
  margin-bottom: 35px;
  max-width: 620px;
  width: 100%;
}
.contact__form__input-group label {
  display: card;
  color: #8e9cad;
  font-size: 14px;
  line-height: 160%;
}
.contact__form__input-group > input:focus, .contact__form__input-group > textarea:focus {
  border-bottom-color: #8e9cad;
}
.contact__form__input-group__input, .contact__form__input-group__textarea {
  outline: none;
  appearance: none;
  border: none;
  background-color: transparent;
  width: 100%;
  border-bottom: 1px solid rgba(142, 156, 173, 0.1882352941);
  color: white;
}
.contact__form__input-group__input__error, .contact__form__input-group__textarea__error {
  display: none;
}
.contact__form__input-group__input.error, .contact__form__input-group__textarea.error {
  border-bottom-color: #d30001 !important;
}
.contact__form__input-group__input.error + div, .contact__form__input-group__textarea.error + div {
  display: flex !important;
  font-size: 12px;
  margin-top: 5px;
  justify-content: flex-end;
  color: #d30001;
}
.contact__form__input-group__input {
  height: 30px;
}
.contact__form__input-group__textarea {
  height: 150px;
}
.contact__form__send {
  font-weight: 700;
  padding: 0 50px;
  width: 298px;
  height: 72px;
  color: #1a2257;
  background-color: white;
  font-weight: 600;
  border-radius: 2px 2px 2px 24px;
}
.contact__form__send:disabled, .contact__form__send:disabled:hover {
  opacity: 0.7;
  color: white;
  background-color: #d30001;
  cursor: not-allowed;
}
.contact__form__send:hover {
  opacity: 0.7;
  color: white;
  background-color: #1a2257;
}

@media only screen and (max-width: 1200px) {
  .contact {
    margin-top: -80px;
  }
  .contact__left-column__contacts-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .contact__form {
    padding-top: 94px;
  }
}
@media only screen and (max-width: 900px) {
  .contact {
    margin-top: -40px;
    gap: 37px;
    grid-template-columns: 1fr 1.7fr;
    padding-bottom: 80px;
  }
  .contact__left-column__socials {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 685px) {
  .contact {
    margin-top: 70px;
    padding: 100px 70px 32px;
    display: flex;
    flex-direction: column;
    gap: 58px;
  }
  .contact__left-column {
    gap: 20px;
  }
  .contact__left-column__contacts-group {
    gap: 20px;
  }
  .contact__left-column__contacts-group__contact__address {
    padding-bottom: 20px;
  }
  .contact__form {
    padding-top: 0;
  }
  .contact__form__send {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .contact {
    margin-top: -20px;
  }
}
.footer {
  color: white;
  font-size: 14px;
  line-height: 160%;
  opacity: 0.5;
}
.footer__divider {
  border-top: 1px solid white;
}
.footer__content {
  padding: 50px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer__content__links {
  display: flex;
  gap: 24px;
}
.footer__content__links__link:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 685px) {
  .footer__content {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    gap: 48px;
  }
  .footer__content__disclaimer {
    opacity: 0.5;
  }
}
#cookie-notice {
  padding: 20px 40px 20px 40px;
  display: none;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  min-height: 84px;
  max-width: 1440px;
  margin: 0 auto;
  background: #e4e6f3;
}
#cookie-notice img {
  width: 40px;
  height: 40px;
}
#cookie-notice span {
  font-size: 14px;
  color: #1a2257;
  margin: auto 20px;
}
#cookie-notice a {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 12px 30px 12px 30px;
  width: 160px;
  font-size: 14px;
  font-weight: 600;
  background-color: white;
  color: #1a2257;
}

@media (max-width: 767px) {
  #cookie-notice span {
    margin: auto 10px;
  }
}
@media (max-width: 481px) {
  #cookie-notice {
    flex-direction: column;
  }
  #cookie-notice span {
    margin: 20px auto;
  }
}

/*# sourceMappingURL=style.css.map */