/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

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

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

* {
  font-family: "Montserrat", "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
}

html, body {
  background: radial-gradient(114.37% 114.53%, #FFF 0%, rgba(228, 231, 233, 0.5) 100%);
}

.btn-orange {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 266px;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(90deg, #17C2ED 0%, #1C7DD7 100%);
}
.btn-orange span {
  color: white;
  font-size: 20px;
}

.btn-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 336px;
  height: 80px;
  border-radius: 27px;
  background: linear-gradient(90deg, #17C2ED 0%, #1C7DD7 100%);
}
.btn-blue span {
  color: white;
  font-size: 20px;
}

.section-title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 20px;
  color: #17C1ED;
}

.section-undertitle {
  color: #101729;
  font-size: 55px;
  font-weight: 600;
  line-height: 90%;
  text-align: center;
  margin-bottom: 50px;
}

.open {
  display: flex !important;
}

.block-scroll {
  overflow: hidden;
}

.header__logo .logo {
  font-weight: 500;
  font-size: 32px;
  color: #101729;
  line-height: 28px;
  margin-right: 30px;
  white-space: nowrap;
}
@media (max-width: 530px) {
  .header__logo .logo {
    font-size: 26px;
  }
}
.header > .wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .header > .wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 1010px) {
  .header > .wrapper {
    justify-content: space-between;
  }
}
@media (max-width: 800px) {
  .header > .wrapper {
    margin-bottom: 60px;
  }
}

.header__nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.header__nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav-items_item a {
  font-size: 18px;
  color: #4F4F4F;
  margin-right: 30px;
}
.header__nav-items_item select {
  color: #4F4F4F;
  font-size: 16px;
  margin-right: 20px;
}
.header__nav-items_item select option {
  font-size: 16px;
}
.header__nav-items_item:last-child {
  margin-right: 0;
}

.burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}
.burger span {
  height: 2px;
  width: 100%;
  transform: scale(1);
  background-color: #101729;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #101729;
  transition: all 0.3s ease 0s;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger.active span {
  transform: scale(0);
}
.burger.active::before {
  background-color: #fff;
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger.active::after {
  background-color: #fff;
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

@media (max-width: 1010px) {
  .burger {
    display: flex;
  }
  .header__nav {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 50;
    overflow-y: auto;
    padding: 50px 40px;
    background-color: #101729;
    animation: burgerAnimation 0.4s;
  }
  .header__nav li {
    margin-bottom: 20px;
  }
  .header__nav li a {
    font-size: 24px;
    color: #fff;
  }
}
@media (max-width: 1010px) and (max-width: 460px) {
  .header__nav li a {
    font-size: 20px;
  }
}
@media (max-width: 1010px) {
  .header__nav-items {
    flex-direction: column;
    align-items: center;
  }
  .header__nav-items_item select {
    font-size: 24px;
    padding-left: 0;
    color: #fff;
  }
}
@media (max-width: 1010px) and (max-width: 460px) {
  .header__nav-items_item select {
    font-size: 20px;
  }
}
@media (max-width: 1010px) {
  .header__nav-items .btn-orange {
    width: auto;
    height: auto;
    padding: 20px 60px;
  }
  .change_langSEL {
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #fff;
  }
  .change_langSEL option {
    background-color: #101729;
    font-size: 16px;
  }
}
@keyframes burgerAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mainbg {
  padding-top: 36px;
  background: no-repeat top url("../img/background.svg");
  background-size: 100%;
  padding-bottom: 100px;
  margin-bottom: 80px;
}
@media (max-width: 630px) {
  .mainbg {
    background-color: #121D39;
  }
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main__text {
  max-width: 654px;
}
.main__text-h1 {
  font-weight: 700;
  font-size: 64px;
  color: #101729;
  line-height: 92.5%;
  margin-bottom: 50px;
}
.main__text-h1 span {
  line-height: 92.5%;
  font-weight: 700;
  font-size: 64px;
  color: linear-gradient(90deg, #17C2ED 0%, #1C7DD7 100%);
}
.main__text-p {
  max-width: 491px;
  color: #4F4F4F;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .main {
    padding: 0 30px;
  }
  .main__text {
    max-width: 60%;
  }
  .main__text-h1 {
    font-size: 58px;
    margin-bottom: 30px;
  }
  .main__text-h1 span {
    font-size: 58px;
  }
  .main__pic {
    width: 80%;
  }
}
@media (max-width: 1010px) {
  .main__text {
    max-width: 60%;
  }
  .main__text-h1 {
    font-size: 45px;
    margin-bottom: 30px;
  }
  .main__text-h1 span {
    font-size: 45px;
  }
  .main__text p {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .main__text-h1 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .main__text-h1 span {
    font-size: 40px;
  }
  .main__text-p {
    font-size: 20px;
  }
  .main__text .btn-blue {
    width: 250px;
    height: 60px;
  }
  .main__text .btn-blue span {
    font-size: 16px;
  }
}
@media (max-width: 730px) {
  .main__text-h1 {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .main__text-h1 span {
    font-size: 35px;
  }
  .main__text p {
    font-size: 16px;
  }
}
@media (max-width: 630px) {
  .main__text-h1 {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .main__text-h1 span {
    font-size: 38px;
  }
  .main__text-p {
    font-size: 16px;
  }
}
@media (max-width: 630px) {
  .main__text {
    max-width: 100%;
    text-align: center;
  }
  .main__text-h1 {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .main__text-h1 span {
    font-size: 38px;
  }
  .main__text-p {
    font-size: 20px;
  }
  .main__text .btn-blue {
    margin: 0 auto;
  }
  .main__pic {
    display: none;
  }
}

.solutions {
  margin-bottom: 120px;
}
.solutions__cards_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.solutions__cards_item img {
  margin-bottom: 25px;
}
.solutions__cards_item__text {
  max-width: 571px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solutions__cards_item__text_title {
  font-size: 50px;
  color: #101729;
  font-weight: 500;
  margin-bottom: 10px;
}
.solutions__cards_item__text_text {
  font-size: 24px;
  line-height: 128%;
  color: #858A94;
  margin-bottom: 30px;
}
.solutions__cards_item__text a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 83px;
  border-radius: 27px;
  background: linear-gradient(90deg, #17C2ED 0%, #1C7DD7 100%);
  font-size: 20px;
  letter-spacing: -0.2px;
  color: #fff;
}
.solutions__cards_item:nth-child(2) {
  border-radius: 60px;
  background-color: #E7F1FC;
  padding: 30px;
}
@media (max-width: 1200px) {
  .solutions {
    padding: 0 30px;
  }
  .solutions__cards {
    justify-content: space-evenly;
  }
  .solutions__cards_item img {
    max-width: 450px;
  }
  .solutions__cards_item__text_title {
    font-size: 28px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .solutions__cards_item__text_text {
    font-size: 18px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 900px) {
  .solutions__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .solutions__title span {
    font-size: 20px;
  }
  .solutions__text {
    font-size: 46px;
  }
  .solutions__cards_item img {
    max-width: 300px;
  }
  .solutions__cards_item_title {
    font-size: 24px;
  }
  .solutions__cards_item_text {
    font-size: 14px;
  }
}
@media (max-width: 695px) {
  .solutions {
    margin-bottom: 60px;
  }
  .solutions__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .solutions__text {
    font-size: 38px;
  }
  .solutions__cards_item img {
    width: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .solutions__cards_item_title {
    font-size: 20px;
  }
  .solutions__cards_item_text {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .solutions__cards_item {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .solutions__cards_item__text a {
    padding: 10px 0;
    width: 100%;
  }
}

.capabilities {
  margin-bottom: 80px;
}
.capabilities__cards-item {
  display: flex;
  margin-bottom: 80px;
  justify-content: space-between;
}
.capabilities__cards-item_text {
  max-height: 362px;
  margin-left: 70px;
  padding: 40px 30px 60px 60px;
  border-radius: 40px;
  border: 1px solid #E3E6E9;
}
.capabilities__cards-item_text h3 {
  color: #101729;
  font-size: 40px;
  font-weight: 500;
  line-height: 90%;
  margin-bottom: 40px;
}
.capabilities__cards-item_text p {
  font-size: 22px;
  color: #858A94;
  line-height: 128%;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.capabilities__cards-item_text:nth-child(odd) {
  margin-right: 70px;
  margin-left: 0;
}
.capabilities__cards-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 83px;
  border-radius: 27px;
  background: linear-gradient(90deg, #17C2ED 0%, #1C7DD7 100%);
  font-size: 20px;
  letter-spacing: -0.2px;
  color: #fff;
}
.capabilities__cards-item img {
  -o-object-fit: none;
     object-fit: none;
}
@media (max-width: 1200px) {
  .capabilities {
    padding: 0 30px;
  }
  .capabilities__cards-item_text {
    max-height: 600px;
  }
  .capabilities__cards-item_text h3 {
    font-size: 44px;
    margin-bottom: 30px;
  }
  .capabilities__cards-item_text p {
    font-size: 20px;
  }
  .capabilities__cards-item a {
    padding: 28px 20px;
    width: 100%;
    font-size: 20px;
  }
}
@media (max-width: 970px) {
  .capabilities .section-undertitle {
    font-size: 30px;
  }
  .capabilities__cards-item_text {
    margin-left: 30px;
  }
  .capabilities__cards-item_text:nth-child(odd) {
    margin-right: 30px;
  }
  .capabilities__cards-item img {
    width: 80%;
  }
}
@media (max-width: 790px) {
  .capabilities__cards-item {
    padding: 0;
    margin-bottom: 0;
  }
  .capabilities__cards-item_text {
    margin: 0;
  }
  .capabilities__cards-item_text:nth-child(odd) {
    margin-right: 0;
  }
  .capabilities__cards-item img {
    display: none;
  }
}
@media (max-width: 680px) {
  .capabilities__title {
    font-size: 38px;
  }
  .capabilities__text {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .capabilities__cards {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .capabilities__cards-item {
    height: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .capabilities__cards-item_text {
    padding: 20px;
  }
  .capabilities__cards-item_text h3 {
    font-size: 28px;
  }
  .capabilities__cards-item_text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .capabilities__cards-item a {
    font-size: 14px;
  }
}

.reasons-bg {
  background-color: #E7F1FC;
}

.reasons {
  padding: 80px 0;
}
.reasons__title {
  color: #17C1ED;
}
.reasons__undertitle {
  color: #101729;
}
.reasons__items {
  margin-top: 80px;
}
.reasons__items-item {
  margin-bottom: 30px;
}
.reasons__items-item h3 {
  font-weight: 500;
  text-align: center;
  color: #101729;
  margin-bottom: 12px;
}
.reasons__items-item p {
  text-align: center;
  color: #858A94;
}
@media (max-width: 1200px) {
  .reasons {
    padding: 80px 30px;
  }
}
@media (max-width: 800px) {
  .reasons__undertitle {
    font-size: 46px;
    margin-bottom: 20px;
  }
  .reasons__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .reasons__items {
    margin-top: 40px;
  }
  .reasons__items-item p {
    font-size: 20px;
  }
}
@media (max-width: 630px) {
  .reasons__undertitle {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .reasons__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .reasons__items {
    margin-top: 40px;
  }
  .reasons__items-item h3 {
    font-size: 20px;
  }
  .reasons__items-item p {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .about-title {
    font-size: 30px;
    padding: 0 15px;
  }
}
@media (max-width: 1200px) {
  .about-undertitle {
    font-size: 58px;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .about-undertitle {
    font-size: 46px;
    margin-bottom: 20px;
  }
}
@media (max-width: 630px) {
  .about-undertitle {
    font-size: 42px;
  }
}
.about__text {
  text-align: justify;
  margin-bottom: 60px;
  color: #4F4F4F;
}
@media (max-width: 1200px) {
  .about__text {
    padding: 0 30px;
  }
}
@media (max-width: 800px) {
  .about__text {
    font-size: 20px;
  }
}

.company-address {
  background-color: #E7F1FC;
  padding: 80px 0;
  margin-bottom: 80px;
}
.company-address h2, .company-address address {
  text-align: center;
  color: #101729;
}
@media (max-width: 1200px) {
  .company-address h2, .company-address address {
    padding: 0 30px;
  }
}
@media (max-width: 1200px) {
  .company-address h2 {
    font-size: 58px;
  }
}
@media (max-width: 800px) {
  .company-address h2 {
    font-size: 46px;
    margin-bottom: 20px;
  }
}
@media (max-width: 630px) {
  .company-address h2 {
    font-size: 42px;
  }
}
@media (max-width: 1200px) {
  .company-address address {
    padding: 0 30px;
  }
}
@media (max-width: 800px) {
  .company-address address {
    font-size: 20px;
  }
}

.productsDemo-title {
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .productsDemo-title {
    font-size: 30px;
  }
}

.productsDemo-undertitle {
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .productsDemo-undertitle {
    font-size: 58px;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .productsDemo-undertitle {
    font-size: 46px;
    margin-bottom: 20px;
  }
}
@media (max-width: 630px) {
  .productsDemo-undertitle {
    font-size: 42px;
  }
}

.productsDemo__items-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  align-items: center;
}
.productsDemo__items-item__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.productsDemo__items-item__text-wrapper {
  max-width: 600px;
}
.productsDemo__items-item__text-wrapper h3 {
  font-size: 64px;
  font-weight: 500;
  line-height: 121%;
  color: #101729;
  margin-bottom: 20px;
}
.productsDemo__items-item__text-wrapper p {
  line-height: 128%;
  color: #858A94;
  margin-bottom: 30px;
}
.productsDemo__items-item__text:nth-child(even) {
  text-align: right;
}
.productsDemo__items-item__text:nth-child(even) a {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1200px) {
  .productsDemo__items {
    padding: 0 30px;
  }
  .productsDemo__items-item__text-wrapper {
    width: 100%;
  }
  .productsDemo__items-item__text-wrapper h3 {
    font-size: 58px;
  }
  .productsDemo__items-item__text-wrapper p {
    margin-bottom: 20px;
  }
}
@media (max-width: 1050px) {
  .productsDemo__items-item__text-wrapper {
    width: 100%;
  }
  .productsDemo__items-item__text-wrapper h3 {
    font-size: 50px;
  }
  .productsDemo__items-item__text-wrapper p {
    font-size: 16px;
  }
}
@media (max-width: 930px) {
  .productsDemo__items-item__text-wrapper h3 {
    font-size: 42px;
  }
  .productsDemo__items-item__img {
    width: 50%;
  }
}
@media (max-width: 800px) {
  .productsDemo__items-item__text-wrapper {
    width: 100%;
  }
  .productsDemo__items-item__text-wrapper h3 {
    font-size: 38px;
  }
  .productsDemo__items-item__text .btn-blue {
    width: 250px;
  }
  .productsDemo__items-item__img {
    width: 70%;
  }
}
@media (max-width: 800px) {
  .productsDemo__items-item {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }
  .productsDemo__items-item__text-wrapper {
    text-align: center;
  }
  .productsDemo__items-item__text-wrapper h3 {
    margin-top: 20px;
    font-size: 42px;
  }
  .productsDemo__items-item__text-wrapper p {
    font-size: 20px;
  }
  .productsDemo__items-item__text .btn-blue {
    margin: 0 auto;
    width: 250px;
  }
  .productsDemo__items-item__text:nth-child(even) {
    text-align: center;
  }
  .productsDemo__items-item__text:nth-child(even) a {
    margin: 0 auto;
    text-align: center;
  }
  .productsDemo__items-item:nth-child(even) {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .productsDemo__items-item {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }
  .productsDemo__items-item__text-wrapper h3 {
    font-size: 38px;
  }
  .productsDemo__items-item__img {
    width: 100%;
  }
}

.products__title {
  text-align: left;
  color: #101729;
  font-size: 72px;
}
.products__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 120px;
}
.products__cards-item {
  max-width: 360px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 5px 10px 50px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 40px;
}
.products__cards-item__text {
  padding: 25px 45px 40px;
}
.products__cards-item__text_title {
  font-size: 20px;
  color: #101729;
  font-weight: 600;
  letter-spacing: -0.15px;
  margin-bottom: 8px;
}
.products__cards-item__text_desc {
  font-size: 16px;
  color: #858A94;
}
@media (max-width: 1200px) {
  .products {
    padding: 0 30px;
  }
  .products__cards-item {
    max-width: 300px;
  }
}
@media (max-width: 990px) {
  .products__title {
    font-size: 58px;
  }
  .products__cards {
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .products__cards-item {
    margin-right: 20px;
    margin-bottom: 40px;
  }
  .products__cards-item__text {
    padding: 17px 25px 30px;
  }
}
@media (max-width: 700px) {
  .products__cards {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .products__cards-item {
    max-width: 100%;
  }
  .products__cards-item__text {
    text-align: justify;
  }
}
@media (max-width: 658px) {
  .products__title {
    font-size: 42px;
  }
  .products__cards-item {
    margin-right: 0;
  }
}

.partnersWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.partnersSection {
  flex: 1 1 auto;
}

.partners__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  row-gap: 70px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 100px;
  margin-bottom: 70px;
}
@media (max-width: 1200px) {
  .partners {
    padding: 0 30px;
  }
  .partners p {
    font-size: 58px;
  }
}
@media (max-width: 1100px) {
  .partners__cards {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr 1fr;
  }
  .partners__cards img:nth-child(9) {
    grid-column-start: 2;
  }
  .partners__cards img:nth-child(10) {
    grid-column-start: 3;
  }
}
@media (max-width: 940px) {
  .partners__cards {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .partners__cards img:nth-child(9) {
    grid-column-start: auto;
  }
  .partners__cards img:nth-child(10) {
    grid-column-start: 2;
  }
}
@media (max-width: 800px) {
  .partners p {
    font-size: 46px;
  }
}
@media (max-width: 530px) {
  .partners p {
    font-size: 42px;
  }
  .partners__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
  .partners__cards img:nth-child(10) {
    grid-column-start: auto;
  }
}

.callToAction__title span {
  color: #1B95DF;
  font-size: 55px;
}
@media (max-width: 1200px) {
  .callToAction__title {
    padding: 0 30px;
    font-size: 58px;
  }
  .callToAction__title span {
    font-size: 58px;
  }
}
@media (max-width: 800px) {
  .callToAction__title {
    font-size: 52px;
  }
  .callToAction__title span {
    font-size: 52px;
  }
}
@media (max-width: 630px) {
  .callToAction__title {
    padding: 0;
    font-size: 42px;
  }
  .callToAction__title span {
    font-size: 42px;
  }
}
@media (max-width: 450px) {
  .callToAction__title {
    font-size: 34px;
  }
  .callToAction__title span {
    font-size: 34px;
  }
}
@media (max-width: 1200px) {
  .callToAction {
    padding: 0 30px;
  }
}

.contacts-bg {
  background-color: #E7F1FC;
  padding: 50px 0 80px 0;
}

.contacts h2, .contacts p {
  color: #101729;
  font-weight: 400;
}
.contacts .contacts-undertitle {
  margin-bottom: 10px;
  font-size: 30px;
  color: #17C1ED;
  font-weight: 500;
}
.contacts .contacts-title {
  font-size: 64px;
  font-weight: 600;
}
.contacts__text {
  text-align: center;
  margin: 0 auto;
}
.contacts__text-item {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 45px;
}
.contacts__text-item__type {
  display: flex;
  align-items: center;
}
.contacts__text-item__type p {
  margin-left: 25px;
  margin-right: 25px;
  font-weight: 600;
}
.contacts__text-item:last-child {
  margin-bottom: 0;
}
.contacts__text-item:last-child p {
  text-align: right;
}
.contacts__text-item:last-child::after {
  width: 0;
  height: 0;
}
@media (max-width: 1200px) {
  .contacts .contacts-title {
    font-size: 58px;
  }
}
@media (max-width: 800px) {
  .contacts .contacts-title {
    font-size: 52px;
  }
}
@media (max-width: 630px) {
  .contacts .contacts-title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .contacts .section-undertitle {
    padding: 0 30px;
    font-size: 20px;
  }
  .contacts__text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 520px) {
  .contacts__text {
    margin: 0 auto;
  }
  .contacts__text p {
    font-size: 16px;
  }
  .contacts__text img {
    width: 28px;
  }
}
@media (max-width: 370px) {
  .contacts .contacts-title {
    font-size: 34px;
  }
  .contacts__text p {
    font-size: 16px;
  }
  .contacts__text-item {
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
  }
  .contacts__text-item::after {
    top: 90px;
  }
  .contacts__text-item__type {
    margin-bottom: 15px;
  }
  .contacts__text-item:last-child p {
    text-align: center;
  }
}

.footer {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__address {
  font-size: 16px;
  color: #868A94;
  font-weight: 500;
}
.footer__contacts-items {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__contacts-items li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__contacts-items li img {
  margin-right: 10px;
}
.footer__contacts-items li a {
  font-weight: 500;
  font-size: 16px;
  color: #868A94;
}
.footer__contacts-items li:first-child {
  margin-right: 40px;
}
@media (max-width: 1200px) {
  .footer {
    padding: 13px 30px;
  }
}
@media (max-width: 980px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .footer__address {
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .footer .footer__contacts-items {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer__contacts-items li {
    margin: 0;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */