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

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

/* Links */
a,
a:link,
a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

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 {
  display: inline-block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 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;
  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;
}

* {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  width: 1344px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 1343px) {
  .container {
    width: 984px;
  }
}
@media (max-width: 983px) {
  .container {
    width: 744px;
  }
}
@media (max-width: 743px) {
  .container {
    width: 352px;
  }
}

.button {
  display: inline-block;
  width: 200px;
  height: 56px;
  background-color: #1a293c;
  padding-left: 29px;
  padding-right: 29px;
  border-radius: 5px;
  color: #fff;
  line-height: 56px;
  text-align: center;
  font-size: 18px;
  transition: 0.2s ease-in all;
}
.button:hover {
  background-color: #0f4fa1;
  color: #fff;
}
@media (max-width: 1343px) {
  .button {
    height: 44px;
    line-height: 44px;
  }
}
@media (max-width: 983px) {
  .button {
    width: 185px;
    font-size: 16px;
  }
}
@media (max-width: 743px) {
  .button {
    width: 169px;
    padding: 0 20px;
  }
}

section {
  margin-top: 100px;
}
@media (max-width: 1343px) {
  section {
    margin-top: 88px;
  }
}
@media (max-width: 983px) {
  section {
    margin-top: 72px;
  }
}
@media (max-width: 743px) {
  section {
    margin-top: 64px;
  }
}

.section-heading {
  width: 424px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
}
@media (max-width: 1343px) {
  .section-heading {
    width: 306px;
    font-size: 32px;
  }
}
@media (max-width: 983px) {
  .section-heading {
    width: 162px;
  }
}
@media (max-width: 743px) {
  .section-heading {
    font-size: 24px;
  }
}
.section-heading--full {
  width: 100%;
}
@media (max-width: 983px) {
  .services .section-heading {
    width: 255px;
  }
}

.block-heading {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1px;
}
@media (max-width: 983px) {
  .block-heading {
    font-size: 20px;
  }
}
@media (max-width: 743px) {
  .block-heading {
    font-size: 18px;
  }
}

.header {
  background-color: #ebf1f6;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #98a9bd;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 133px;
  height: 44px;
  box-shadow: 5px 5px 5px #1a293c;
}
.header__logo a {
  display: inline-block;
}

.header__contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 24px;
}
.header__contacts--button {
  display: none;
}
@media (max-width: 743px) {
  .header__contacts {
    display: none;
  }
  .header__contacts--button {
    display: block;
    width: 170px;
  }
}

.header__contacts-phone-email {
  display: flex;
  align-items: center;
  margin-right: 24px;
  font-size: 18px;
}
@media (max-width: 983px) {
  .header__contacts-phone-email {
    font-size: 16px;
  }
}
.header__contacts-phone-email a {
  color: #0a2445;
}
.header__contacts-phone-email a:hover {
  color: #0f4fa1;
  transition: 0.2s ease-in all;
}

.header__contacts-phone {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.header__contacts-phone img {
  margin-right: 4px;
}

.header__contacts-email {
  display: flex;
  align-items: center;
}
.header__contacts-email img {
  margin-right: 4px;
}

.header__contacts-socials {
  display: flex;
  height: 44px;
}
.header__contacts-socials *:not(:last-child) {
  margin-right: 8px;
}
.header__contacts-socials svg:hover .bg {
  fill: #0f4fa1;
  transition: 0.2s ease-in all;
}
.header__contacts-socials svg:hover {
  fill: #0f4fa1;
  transition: 0.2s ease-in all;
}

.header__title {
  margin-top: 48px;
  font-size: 96px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}
@media (max-width: 1343px) {
  .header__title {
    margin-top: 32px;
    font-size: 68px;
  }
}
@media (max-width: 983px) {
  .header__title {
    font-size: 52px;
  }
}
@media (max-width: 743px) {
  .header__title {
    margin-top: 24px;
    font-size: 36px;
    text-align: left;
  }
}

.header__text {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 24px;
}
.header__text a {
  transition: 0.2s ease-in all;
}
@media (max-width: 1343px) {
  .header__text {
    margin-top: 16px;
    font-size: 20px;
  }
}
@media (max-width: 983px) {
  .header__text {
    margin-top: 28px;
    font-size: 18px;
  }
}
@media (max-width: 743px) {
  .header__text {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 32px;
  }
}
@media (max-width: 743px) {
  .header__text .button {
    margin-left: 156px;
    width: 172px;
    height: 40px;
  }
}

.arrow {
  position: absolute;
  z-index: -1;
  right: 0;
  top: -68px;
}
@media (max-width: 1343px) {
  .arrow {
    display: none;
  }
}
.arrow--note {
  display: none;
}
@media (max-width: 1343px) {
  .arrow--note {
    display: block;
  }
}
@media (max-width: 983px) {
  .arrow--note {
    display: none;
  }
}
.arrow--tablet {
  display: none;
}
@media (max-width: 983px) {
  .arrow--tablet {
    display: block;
    top: -55px;
  }
}
@media (max-width: 743px) {
  .arrow--tablet {
    display: none;
  }
}
.arrow--mobile {
  display: none;
}
@media (max-width: 743px) {
  .arrow--mobile {
    display: block;
    top: -20px;
  }
}

.header__text-content {
  width: 760px;
  line-height: 1.1;
}
.header__text-content p {
  letter-spacing: -1px;
}
@media (max-width: 983px) {
  .header__text-content {
    width: 440px;
  }
}
@media (max-width: 743px) {
  .header__text-content {
    width: 260px;
  }
}

.header__content {
  margin-top: 24px;
  height: 493px;
  border-radius: 5px;
}
@media (max-width: 1343px) {
  .header__content {
    height: 359px;
  }
  .header__content img {
    height: 359px;
  }
}
@media (max-width: 983px) {
  .header__content {
    height: 359px;
  }
  .header__content img {
    height: 359px;
  }
}
@media (max-width: 743px) {
  .header__content {
    height: 290px;
    background-image: url(../images/header-background-mobile.jpg);
  }
  .header__content img {
    height: 290px;
    display: none;
  }
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 743px) {
  .about__wrapper {
    flex-direction: column;
    gap: 32px;
  }
}

.about__desc {
  width: 872px;
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 1343px) {
  .about__desc {
    width: 632px;
    font-size: 18px;
  }
}
@media (max-width: 983px) {
  .about__desc {
    width: 534px;
    font-size: 16px;
  }
}
@media (max-width: 743px) {
  .about__desc {
    width: 100%;
    letter-spacing: -1px;
  }
}

.services__title-row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 743px) {
  .services__title-row {
    flex-direction: column;
  }
}
@media (max-width: 1343px) {
  .services__title-row .services__service-name:nth-child(2) {
    padding: 10px 45px;
  }
}
@media (max-width: 743px) {
  .services__title-row .services__service-name:nth-child(2) {
    padding: 10px 0;
    text-align: center;
  }
}
@media (max-width: 983px) {
  .services__title-row .services__service-name:last-child {
    display: none;
  }
}

.services__services-name-wrapper {
  width: 872px;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 1343px) {
  .services__services-name-wrapper {
    width: 632px;
  }
}
@media (max-width: 983px) {
  .services__services-name-wrapper {
    width: 442px;
    justify-content: flex-end;
  }
}
@media (max-width: 743px) {
  .services__services-name-wrapper {
    flex-direction: column;
    width: 100%;
    margin-top: 32px;
    gap: 8px;
  }
}

.services__services-name-wrapper--full-width {
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 743px) {
  .services__services-name-wrapper--full-width {
    margin-top: 8px;
  }
}
.services__services-name-wrapper--full-width .services__service-name:first-child {
  display: none;
}
@media (max-width: 983px) {
  .services__services-name-wrapper--full-width .services__service-name:first-child {
    display: block;
    width: 302px;
    padding-left: unset;
    padding-right: unset;
    text-align: center;
  }
}
@media (max-width: 743px) {
  .services__services-name-wrapper--full-width .services__service-name:first-child {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 983px) {
  .services__services-name-wrapper--full-width .services__service-name:nth-child(2) {
    display: block;
    width: 301px;
    margin-right: auto;
    padding-left: unset;
    padding-right: unset;
    text-align: center;
  }
}
@media (max-width: 743px) {
  .services__services-name-wrapper--full-width .services__service-name:nth-child(2) {
    margin-right: unset;
    width: 100%;
  }
}
@media (max-width: 983px) {
  .services__services-name-wrapper--full-width .services__service-name:nth-child(3), .services__services-name-wrapper--full-width .services__service-name:nth-child(4) {
    padding-left: unset;
    padding-right: unset;
    text-align: center;
    margin-top: 24px;
  }
}
@media (max-width: 983px) {
  .services__services-name-wrapper--full-width .services__service-name:nth-child(3) {
    width: 335px;
  }
}
@media (max-width: 743px) {
  .services__services-name-wrapper--full-width .services__service-name:nth-child(3) {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 983px) {
  .services__services-name-wrapper--full-width .services__service-name:nth-child(4) {
    width: 268px;
  }
}
@media (max-width: 743px) {
  .services__services-name-wrapper--full-width .services__service-name:nth-child(4) {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 983px) {
  .services__services-name-wrapper--full-width {
    flex-wrap: wrap;
  }
}

.services__service-name {
  padding: 10px 24px;
  border: 2px solid #98a9bd;
  border-radius: 5px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1343px) {
  .services__service-name {
    padding: 10px 16px;
    font-size: 20px;
  }
}
@media (max-width: 983px) {
  .services__service-name {
    font-size: 18px;
  }
}
@media (max-width: 743px) {
  .services__service-name {
    padding: 10px 0;
    text-align: center;
  }
}

@media (max-width: 1343px) {
  .services__services-name-wrapper--full-width .services__service-name {
    padding: 10px 34px;
  }
}

.advantages__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 983px) {
  .advantages__wrapper {
    flex-direction: column;
    row-gap: 32px;
  }
}

.advantages__general {
  width: 424px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1343px) {
  .advantages__general {
    width: 304px;
  }
}
@media (max-width: 983px) {
  .advantages__general {
    flex-direction: row;
    width: 100%;
  }
}
@media (max-width: 743px) {
  .advantages__general {
    flex-direction: column;
    gap: 32px;
  }
}

.advantages__general > * {
  width: 348px;
}
@media (max-width: 743px) {
  .advantages__general > * {
    max-width: 100%;
  }
}

.advantages__title {
  padding-right: 25px;
}
@media (max-width: 1343px) {
  .advantages__title {
    width: 304px;
  }
}
@media (max-width: 983px) {
  .advantages__title {
    width: 348px;
    padding-right: unset;
  }
}
@media (max-width: 743px) {
  .advantages__title br {
    display: none;
  }
}

@media (max-width: 1343px) {
  .advantages__description {
    width: 304px;
  }
}
@media (max-width: 983px) {
  .advantages__description {
    width: 348px;
  }
}

.advantages__particular {
  width: 872px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1343px) {
  .advantages__particular {
    width: 632px;
  }
}
@media (max-width: 983px) {
  .advantages__particular {
    width: 720px;
  }
}
@media (max-width: 743px) {
  .advantages__particular {
    width: 100%;
    gap: 16px;
  }
}

.advantages__advantage {
  width: 424px;
  height: 251px;
  padding: 24px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #ebf1f6;
}
.advantages__advantage p {
  margin-top: 16px;
  line-height: 1.2;
}
@media (max-width: 1343px) {
  .advantages__advantage p {
    margin-top: 8px;
  }
}
@media (max-width: 1343px) {
  .advantages__advantage {
    width: 304px;
    padding: 16px;
  }
}
@media (max-width: 983px) {
  .advantages__advantage {
    width: 348px;
  }
}
@media (max-width: 743px) {
  .advantages__advantage {
    width: 100%;
    height: auto;
  }
}

.technologies__carousel {
  margin-top: 56px;
  height: 168px;
}
@media (max-width: 1343px) {
  .technologies__carousel {
    height: 135px;
    margin-top: 40px;
  }
}
@media (max-width: 983px) {
  .technologies__carousel {
    height: 157px;
  }
}
@media (max-width: 743px) {
  .technologies__carousel {
    height: 90px;
    margin-top: 32px;
  }
}

section.examples .container:first-child {
  display: block;
}
@media (max-width: 743px) {
  section.examples .container:first-child {
    display: none;
  }
}

section.examples .container:last-child {
  display: none;
}
@media (max-width: 743px) {
  section.examples .container:last-child {
    display: block;
  }
}

.examples__grid {
  margin-top: 56px;
  display: grid;
  grid-gap: 24px;
  grid-template-columns: auto auto auto;
}
@media (max-width: 1343px) {
  .examples__grid {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 743px) {
  .examples__grid {
    grid-template-columns: auto;
  }
}

.examples_example {
  border-radius: 5px;
  overflow: hidden;
  transition: 0.2s ease-in all;
}
.examples_example:hover {
  opacity: 0.9;
}

.examples__example-image {
  width: 424px;
  height: 280px;
}
@media (max-width: 1343px) {
  .examples__example-image {
    width: 468px;
    height: 308px;
  }
}
@media (max-width: 983px) {
  .examples__example-image {
    width: 348px;
    height: 229px;
  }
}
.examples__example-image a {
  display: inline-block;
  width: 100%;
}
.examples__example-image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.examples__example-title {
  padding: 8px;
  font-weight: 600;
  font-size: 18px;
  background-color: #ebf1f6;
}

.examples-carousel {
  margin-top: 32px;
}

section.price .container:first-child {
  display: block;
}
@media (max-width: 743px) {
  section.price .container:first-child {
    display: none;
  }
}

section.price .container:last-child {
  display: none;
}
@media (max-width: 743px) {
  section.price .container:last-child {
    display: block;
  }
}

.price__wrapper {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1343px) {
  .price__wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 983px) {
  .price__wrapper {
    margin-top: 32px;
  }
}

.price__offer {
  position: relative;
  width: 648px;
  height: 350px;
  background-image: url("../images/Subtract.png");
  border-radius: 5px;
  padding: 24px;
}
@media (max-width: 1343px) {
  .price__offer {
    width: 468px;
    height: 370px;
    padding: 16px;
    background-image: url("../images/Subtract-note.png");
  }
}
@media (max-width: 983px) {
  .price__offer {
    width: 720px;
    height: 289px;
    background-image: url("../images/Subtract-tablet.png");
  }
}
@media (max-width: 743px) {
  .price__offer {
    width: 100%;
    height: 429px;
    background-image: url("../images/Subtract-mobile.png");
  }
}
.price__offer a {
  position: absolute;
  right: 0;
  bottom: -6px;
  transition: 0.2s ease-in all;
}
.price__offer a svg:hover .bg {
  fill: #0f4fa1;
  transition: 0.2s ease-in all;
}

.price__offer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}
.price__offer-list {
  margin-top: 8px;
  height: 200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
.price__offer-list li {
  list-style-type: none;
}
@media (max-width: 983px) {
  .price__offer-list ul {
    width: 332px;
  }
}
@media (max-width: 743px) {
  .price__offer-list ul {
    width: 100%;
  }
}
@media (max-width: 1343px) {
  .price__offer-list {
    height: 235px;
  }
}
@media (max-width: 983px) {
  .price__offer-list {
    height: 162px;
  }
}
@media (max-width: 743px) {
  .price__offer-list {
    height: 100%;
  }
}
.price__offer-list li {
  position: relative;
  padding-left: 28px;
  width: 287px;
  margin-top: 8px;
  line-height: 1.2;
}
@media (max-width: 1343px) {
  .price__offer-list li {
    width: auto;
  }
}
@media (max-width: 743px) {
  .price__offer-list li {
    padding-left: 14px;
  }
}
.price__offer-list li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  transform: translateY(50%);
  left: 0;
}

.price__offer-price {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
}
@media (max-width: 743px) {
  .price__offer-price {
    position: absolute;
    left: 16px;
    bottom: 8px;
  }
}

.price-carousel {
  margin-top: 32px;
}

.feedback__wrapper {
  background-color: #ebf1f6;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}
@media (max-width: 983px) {
  .feedback__wrapper {
    flex-direction: column-reverse;
  }
}
@media (max-width: 983px) {
  .feedback__wrapper {
    gap: unset;
  }
}

.feedback__image {
  width: 646px;
}
@media (max-width: 1343px) {
  .feedback__image {
    width: 386px;
  }
}
@media (max-width: 743px) {
  .feedback__image {
    display: none;
  }
}
@media (max-width: 983px) {
  .feedback__image {
    width: 720px;
    height: 350px;
    overflow: hidden;
  }
}
.feedback__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 983px) {
  .feedback__image img {
    display: none;
  }
}
.feedback__image img:last-child {
  display: none;
}
@media (max-width: 983px) {
  .feedback__image img:last-child {
    display: inline-block;
  }
}

.feedback__form {
  width: 646px;
  padding: 24px;
}
@media (max-width: 1343px) {
  .feedback__form {
    width: 550px;
    padding: 16px;
  }
}
@media (max-width: 983px) {
  .feedback__form {
    width: 720px;
    padding: 24px 16px;
  }
}
@media (max-width: 743px) {
  .feedback__form {
    width: 100%;
  }
}
@media (max-width: 743px) {
  .feedback__form h2.first-stroke {
    font-size: 18px;
  }
}
.feedback__form h2.second-stroke {
  position: relative;
  letter-spacing: -4px;
  padding-left: 36px;
}
@media (max-width: 1343px) {
  .feedback__form h2.second-stroke {
    letter-spacing: -2px;
  }
}
@media (max-width: 983px) {
  .feedback__form h2.second-stroke {
    padding-left: 190px;
    letter-spacing: -1px;
  }
}
@media (max-width: 743px) {
  .feedback__form h2.second-stroke {
    font-size: 18px;
    padding-left: 36px;
    letter-spacing: -2px;
  }
}
.feedback__form h2.second-stroke::before {
  position: absolute;
  left: 0;
  top: -4px;
  content: url("../images/arrow-feedback.png");
}
@media (max-width: 1343px) {
  .feedback__form h2.second-stroke::before {
    top: 0;
  }
}
@media (max-width: 983px) {
  .feedback__form h2.second-stroke::before {
    content: url("../images/arrow-feedback-tablet.png");
  }
}
@media (max-width: 743px) {
  .feedback__form h2.second-stroke::before {
    content: url("../images/arrow-feedback-mobile.png");
  }
}

.feedback__input {
  width: 100%;
  background-color: #fff;
  margin-top: 8px;
  padding: 11px 16px;
  border-radius: 5px;
  resize: none;
}
.feedback__input:nth-child(3) {
  margin-top: 32px;
}
@media (max-width: 983px) {
  .feedback__input:nth-child(3) {
    margin-top: 24px;
  }
}

input[type=submit].button {
  width: 100%;
  margin-top: 32px;
}

.contacts {
  background-color: #ebf1f6;
  padding-top: 24px;
  padding-bottom: 56px;
}
@media (max-width: 1343px) {
  .contacts {
    padding-bottom: 24px;
  }
}

.contacts__wrapper {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1343px) {
  .contacts__wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 983px) {
  .contacts__wrapper {
    margin-top: 32px;
  }
}
@media (max-width: 743px) {
  .contacts__wrapper {
    flex-direction: column;
  }
}

.contacts__invitation {
  width: 770px;
}
@media (max-width: 1343px) {
  .contacts__invitation {
    width: 650px;
  }
}
@media (max-width: 983px) {
  .contacts__invitation {
    width: 462px;
  }
}
@media (max-width: 743px) {
  .contacts__invitation {
    width: 100%;
  }
}
.contacts__invitation span {
  font-weight: 500;
  font-size: 40px;
}
@media (max-width: 1343px) {
  .contacts__invitation span {
    font-size: 32px;
  }
}
@media (max-width: 743px) {
  .contacts__invitation span {
    font-size: 20px;
  }
}
.contacts__invitation span .bold {
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1343px) {
  .contacts__invitation span .bold {
    font-size: 32px;
  }
}
@media (max-width: 743px) {
  .contacts__invitation span .bold {
    font-size: 20px;
  }
}

.contacts__contacts {
  width: 200px;
}
@media (max-width: 743px) {
  .contacts__contacts {
    margin-top: 24px;
    width: 100%;
  }
}

.contacts__contacts-phone-email {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 18px;
}
.contacts__contacts-phone-email a {
  color: #0a2445;
}
.contacts__contacts-phone-email a:hover {
  color: #0f4fa1;
  transition: 0.2s ease-in all;
}

.contacts__contacts-phone {
  display: flex;
  align-items: center;
}
.contacts__contacts-phone img {
  margin-right: 4px;
}

.contacts__contacts-email {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.contacts__contacts-email img {
  margin-right: 4px;
}

.contacts__contacts-socials {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
.contacts__contacts-socials *:not(:last-child) {
  margin-right: 8px;
}
.contacts__contacts-socials svg:hover .bg {
  fill: #0f4fa1;
  transition: 0.2s ease-in all;
}

.footer {
  padding: 24px 0;
  background-color: #ebf1f6;
  border-top: 1px solid #98a9bd;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 743px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  width: 133px;
  height: 44px;
  box-shadow: 5px 5px 5px #1a293c;
}
.footer__logo a {
  display: inline-block;
}

.footer__details {
  width: 424px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 983px) {
  .footer__details {
    width: 534px;
  }
}
@media (max-width: 743px) {
  .footer__details {
    width: 100%;
    margin-top: 24px;
    flex-direction: column;
    text-align: center;
  }
}
.footer__details * {
  width: 200px;
}
@media (max-width: 983px) {
  .footer__details * {
    width: 250px;
  }
}
@media (max-width: 743px) {
  .footer__details * {
    width: 100%;
  }
}
.footer__details div ~ div {
  margin-top: 16px;
}

p.valid {
  text-align: center;
}
@media (max-width: 743px) {
  p.valid {
    margin-top: 16px;
    text-align: center;
  }
}