@media screen and (max-width: 535px) {
  .hid-on-mobile {
    display: none !important;
  }

  .trust-mobile {
    width: 100% !important;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 525px) and (max-width: 660px) {
  .hid-logo {
    display: none;
  }
}

@media screen and (min-width: 660px) and (max-width: 1810px) {
  .hide-1100 {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .logo-mobilee {
    margin-left: -30px;
  }
}

@media screen and (max-width: 660px) {
  .hid-on-660 {
    display: none !important;
  }

  .shown-on-660 {
    display: block !important;
  }
}

.footer {
  padding: 40px;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 30px;
}

.contacts-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);

  width: 600px;
}

.links-txt {
  text-decoration: none;

  color: #243165;
}

.grid-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  padding: 20px;
  gap: 12px;

  background-color: #fff;

  color: #243165;
}

.icons {
  width: 40px;
}

.main-title {
  background-color: #243165;
  width: 600px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.desc {
  font-size: 25px;
  font-weight: 700;
  color: #243165;
}

.fifth {
  grid-area: 3 / 1 / 4 / 3;
}

@media (max-width: 600px) {
  .contacts-info {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    width: 300px;
  }

  .fifth {
    grid-area: unset;
  }
}
