@font-face {
  font-family: Regular;
  src: url(./fonts/sf-pro-text-regular.ttf);
}
@font-face {
  font-family: Medium;
  src: url(./fonts/sf-pro-text-medium.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Regular;
  letter-spacing: 0.01em;
  background-color: #F8F8FA;
}

img {
  width: 100%;
  margin-bottom: -4px;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .container {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: 100%;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

header {
  margin: 30px 0;
}
@media screen and (max-width: 991px) {
  header {
    margin: 20px 0;
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  header .container {
    flex-wrap: wrap;
    gap: 16px;
  }
}
header .container .piece {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  header .container .piece {
    gap: 25px;
  }
}
@media screen and (max-width: 991px) {
  header .container .piece {
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 240px;
  }
  header .container .piece:last-child {
    align-items: flex-end;
    row-gap: 20px;
    flex-direction: column-reverse;
  }
  header .container .piece .logo {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header .container .piece {
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
  }
  header .container .piece:last-child {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
header .container .piece .logo-mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  header .container .piece .logo-mobile {
    display: block;
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  header .container .piece .logo-mobile {
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  header .container .piece .logo-mobile {
    width: 100px;
  }
}
header .container .piece .address-box {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  header .container .piece .address-box {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  header .container .piece .address-box svg {
    display: none;
  }
}
header .container .piece .address-box p {
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  header .container .piece .address-box p {
    text-align: right;
  }
}
header .container .piece .address-box p:first-child {
  font-size: 14px;
  color: #898E96;
  font-weight: 400;
}
header .container .piece .button {
  padding: 15px 24px;
  min-width: 222px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  border-radius: 18px;
  background: linear-gradient(97.32deg, #FF2D9A 18.76%, #BE2293 98.52%);
  border: none;
  outline: none;
  margin-right: 28px;
}
@media screen and (max-width: 1199px) {
  header .container .piece .button {
    padding: 15px;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  header .container .piece .button {
    padding: 11px 15px;
    border-radius: 12px;
  }
}
header .container .piece .lang {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .container .piece .lang svg {
  margin-right: 2px;
}
@media screen and (max-width: 1199px) {
  header .container .piece .lang svg {
    display: none;
  }
}
header .container .piece .lang span {
  cursor: pointer;
  color: #64686A;
}
header .container .piece .lang span.active {
  color: #FF2D9A;
  font-weight: 600;
}

.banner {
  padding: 50px 216px 0 235px;
  border-radius: 30px;
  background: linear-gradient(118.59deg, #FF2D9A 0.95%, #BE2293 100.59%);
}
@media screen and (max-width: 1400px) {
  .banner {
    padding: 40px 200px 0;
  }
}
@media screen and (max-width: 1199px) {
  .banner {
    padding: 40px 100px 0;
  }
}
@media screen and (max-width: 991px) {
  .banner {
    padding: 40px 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    padding: 20px;
    padding-bottom: 0;
    border-radius: 16px;
  }
}
.banner h1 {
  color: #fff;
  font-size: 70px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.01em;
  padding-left: 43px;
}
@media screen and (max-width: 1400px) {
  .banner h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1199px) {
  .banner h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .banner h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .banner h1 {
    font-size: 30px;
    padding-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .banner h1 {
    font-size: 24px;
  }
}
.banner p {
  margin-top: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  padding-left: 43px;
  color: rgba(255, 255, 255, 0.8);
  width: 95%;
}
@media screen and (max-width: 1199px) {
  .banner p {
    line-height: 140%;
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .banner p {
    width: 100%;
    padding-left: 0;
    font-size: 18px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 480px) {
  .banner p {
    font-size: 16px;
  }
}
.banner img {
  margin-bottom: -5px;
}

.about {
  padding: 70px 50px 0;
  border-radius: 30px;
  background-color: #fff;
  margin: 50px 0;
  display: flex;
  gap: 55px;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .about {
    padding: 40px 40px 0;
  }
}
@media screen and (max-width: 1199px) {
  .about {
    gap: 30px;
    margin: 40px 0;
  }
}
@media screen and (max-width: 991px) {
  .about {
    padding: 30px;
    margin: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 20px;
    margin: 20px 0;
    border-radius: 16px;
  }
}
.about .phone {
  position: relative;
  width: 524px;
  flex-shrink: 0;
}
@media screen and (max-width: 1400px) {
  .about .phone {
    width: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .about .phone {
    width: 360px;
  }
}
@media screen and (max-width: 991px) {
  .about .phone {
    display: none;
  }
}
.about .phone div.logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .phone div.logo img.logo {
  padding-top: 30px;
  width: 396px;
}
@media screen and (max-width: 1400px) {
  .about .phone div.logo img.logo {
    width: 300px;
  }
}
.about h1 {
  color: #393F48;
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
}
@media screen and (max-width: 1400px) {
  .about h1 {
    font-size: 52px;
  }
}
@media screen and (max-width: 1199px) {
  .about h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 768px) {
  .about h1 {
    font-size: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .about h1 {
    font-size: 24px;
  }
}
.about h1 span {
  color: #FF2D9A;
}
.about .lead {
  margin-top: 24px;
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  color: #898E96;
}
@media screen and (max-width: 1400px) {
  .about .lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .about .lead {
    font-size: 20px;
    margin-top: 16px;
    line-height: 140%;
  }
}
@media screen and (max-width: 768px) {
  .about .lead {
    font-size: 18px;
    font-weight: normal;
  }
}
@media screen and (max-width: 480px) {
  .about .lead {
    font-size: 16px;
  }
}
.about .numbers {
  margin: 40px 0;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
@media screen and (max-width: 1400px) {
  .about .numbers {
    margin: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .about .numbers {
    justify-content: start;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .about .numbers {
    gap: 10px;
    margin: 16px 0;
  }
}
.about .numbers .box {
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #CCCDCE;
  border-radius: 24px;
}
@media screen and (max-width: 1400px) {
  .about .numbers .box {
    width: 170px;
    height: 170px;
  }
}
@media screen and (max-width: 1199px) {
  .about .numbers .box {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 768px) {
  .about .numbers .box {
    width: 110px;
    height: 110px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 480px) {
  .about .numbers .box {
    width: 92px;
    height: 92px;
  }
}
.about .numbers .box p {
  color: #898E96;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .about .numbers .box p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .about .numbers .box p {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .about .numbers .box p {
    font-size: 13px;
  }
}
.about .numbers .box .number {
  font-weight: 600;
  font-size: 42px;
  line-height: 140%;
  color: #000;
  margin-bottom: 12px;
}
@media screen and (max-width: 1199px) {
  .about .numbers .box .number {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .about .numbers .box .number {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .about .numbers .box .number {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.about .upload {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .about .upload svg {
    width: 40px;
    height: 40px;
  }
}
.about .upload p {
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .about .upload p {
    font-size: 16px;
  }
}

.advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 1400px) {
  .advantages {
    gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .advantages {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .advantages {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .advantages {
    gap: 20px;
  }
}
.advantages .advantage {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .advantages .advantage {
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .advantages .advantage {
    border-radius: 16px;
  }
}
@media screen and (max-width: 480px) {
  .advantages .advantage {
    flex-direction: column;
  }
}
.advantages .advantage h1 {
  padding: 50px 50px 24px;
  font-weight: 600;
  font-size: 46px;
  line-height: 130%;
}
@media screen and (max-width: 1400px) {
  .advantages .advantage h1 {
    font-size: 42px;
    padding: 40px 40px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .advantages .advantage h1 {
    line-height: 120%;
    font-size: 38px;
    padding: 30px 30px 16px;
  }
}
@media screen and (max-width: 991px) {
  .advantages .advantage h1 {
    font-size: 30px;
    padding: 16px 30px;
  }
}
@media screen and (max-width: 480px) {
  .advantages .advantage h1 {
    padding: 16px 20px;
    font-size: 24px;
  }
}
.advantages .advantage h1 span {
  color: #FF2D9A;
}
.advantages .advantage p {
  padding: 0 50px 50px;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #898E96;
}
@media screen and (max-width: 1400px) {
  .advantages .advantage p {
    padding: 0 40px 10px;
  }
}
@media screen and (max-width: 1199px) {
  .advantages .advantage p {
    font-size: 18px;
    padding: 0 30px 10px;
  }
}
@media screen and (max-width: 991px) {
  .advantages .advantage p {
    padding: 0 30px 16px 30px;
  }
}
@media screen and (max-width: 480px) {
  .advantages .advantage p {
    padding: 0 20px;
    font-size: 16px;
  }
}
.advantages .advantage img {
  height: 484px;
  object-fit: cover;
}
@media screen and (max-width: 1400px) {
  .advantages .advantage img {
    height: 460px;
  }
}
@media screen and (max-width: 1199px) {
  .advantages .advantage img {
    height: 390px;
  }
}
@media screen and (max-width: 991px) {
  .advantages .advantage img {
    height: auto;
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .advantages .advantage img {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .advantages .advantage img {
    display: block;
    width: 100%;
  }
}

.discounts {
  margin: 50px 0;
  position: relative;
  background: url("../images/wallpaper.jpg"), #393F48;
  background-blend-mode: multiply;
  border-radius: 30px;
  padding: 50px 0 0 265px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .discounts {
    padding: 40px 0 0 160px;
  }
}
@media screen and (max-width: 1199px) {
  .discounts {
    margin: 40px 0;
    padding: 40px 0 0 100px;
    gap: 40px;
  }
  .discounts img {
    width: 400px;
  }
}
@media screen and (max-width: 991px) {
  .discounts {
    margin: 30px 0;
    padding: 30px;
    text-align: center;
  }
  .discounts img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .discounts {
    border-radius: 16px;
  }
}
@media screen and (max-width: 480px) {
  .discounts {
    margin: 20px 0;
    padding: 20px 0 0 20px;
    flex-direction: column;
    gap: 10px;
  }
  .discounts img {
    display: block;
    width: 200px;
    margin-left: auto;
  }
}
.discounts .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.discounts .content h1 {
  font-weight: 600;
  font-size: 76px;
  line-height: 115%;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .discounts .content h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .discounts .content h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .discounts .content h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .discounts .content h1 {
    font-size: 24px;
    padding-right: 20px;
  }
}
.discounts .content .lead {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  margin-top: 30px;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .discounts .content .lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .discounts .content .lead {
    font-size: 16px;
    padding-right: 20px;
    margin-top: 10px;
  }
}
.discounts .content .upload {
  position: absolute;
  bottom: 50px;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .discounts .content .upload {
    position: inherit;
    justify-content: center;
    margin-top: 16px;
  }
}
@media screen and (max-width: 480px) {
  .discounts .content .upload svg {
    width: 40px;
    height: 40px;
  }
}
.discounts .content .upload p {
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .discounts .content .upload p {
    font-size: 16px;
  }
}

.why-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 30px;
  padding-bottom: 28px;
}
@media screen and (max-width: 1400px) {
  .why-us {
    padding-left: 40px;
  }
}
@media screen and (max-width: 991px) {
  .why-us {
    padding: 15px 30px 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .why-us {
    padding: 20px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 480px) {
  .why-us {
    flex-direction: column-reverse;
    padding: 0 0 20px 20px;
  }
}
.why-us .thumbs-up {
  height: 384px;
}
@media screen and (max-width: 1400px) {
  .why-us .thumbs-up {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .why-us .thumbs-up {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .why-us .thumbs-up {
    display: none;
  }
}
.why-us img {
  width: auto;
}
@media screen and (max-width: 1199px) {
  .why-us img {
    width: 400px;
  }
}
@media screen and (max-width: 991px) {
  .why-us img:last-child {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .why-us img:last-child {
    display: block;
    width: 200px;
    margin-left: auto;
  }
}
.why-us .content h1 {
  color: #393F48;
  font-weight: 600;
  font-size: 56px;
  line-height: 130%;
  width: 90%;
  padding-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .why-us .content h1 {
    font-size: 52px;
  }
}
@media screen and (max-width: 1199px) {
  .why-us .content h1 {
    font-size: 46px;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .why-us .content h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .why-us .content h1 {
    font-size: 30px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .why-us .content h1 {
    font-size: 24px;
    padding-bottom: 14px;
    width: 90%;
  }
}
.why-us .content h1 span {
  color: #FF2D9A;
}
.why-us .content .reasons {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .why-us .content .reasons {
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .why-us .content .reasons {
    gap: 14px;
  }
}
.why-us .content .reasons .reason {
  display: flex;
  gap: 18px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .why-us .content .reasons .reason svg {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .why-us .content .reasons .reason svg {
    width: 50px;
    height: 50px;
  }
}
.why-us .content .reasons .reason p {
  max-width: 300px;
  font-family: Medium;
  font-size: 24px;
  line-height: 130%;
  color: #393F48;
}
@media screen and (max-width: 1199px) {
  .why-us .content .reasons .reason p {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .why-us .content .reasons .reason p {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .why-us .content .reasons .reason p {
    font-size: 16px;
    width: 70%;
  }
}

.testimonials {
  margin: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  .testimonials {
    margin: 50px 0;
  }
}
@media screen and (max-width: 991px) {
  .testimonials {
    grid-template-columns: 1fr;
    margin: 40px 0;
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .testimonials {
    margin: 30px 0;
  }
}
.testimonials .title {
  display: flex;
  align-items: center;
}
.testimonials .title h1 {
  color: #393F48;
  font-weight: 600;
  font-size: 56px;
  line-height: 130%;
  width: 90%;
}
@media screen and (max-width: 1400px) {
  .testimonials .title h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .testimonials .title h1 {
    font-size: 40px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .testimonials .title h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .testimonials .title h1 {
    font-size: 24px;
  }
}
.testimonials .title h1 span {
  color: #FF2D9A;
}
.testimonials .box {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
}
@media screen and (max-width: 1400px) {
  .testimonials .box {
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .testimonials .box {
    padding: 20px;
    border-radius: 16px;
  }
}
.testimonials .box .user {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 24px;
}
@media screen and (max-width: 1400px) {
  .testimonials .box .user {
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  .testimonials .box .user {
    padding-bottom: 10px;
  }
}
.testimonials .box .user h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width: 1400px) {
  .testimonials .box .user h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .testimonials .box .user h3 {
    font-size: 18px;
  }
}
.testimonials .box p {
  font-size: 18px;
  line-height: 150%;
  color: #393F48;
}
@media screen and (max-width: 480px) {
  .testimonials .box p {
    font-size: 16px;
  }
}
.testimonials .note {
  font-size: 20px;
  line-height: 150%;
  color: #898E96;
}
@media screen and (max-width: 480px) {
  .testimonials .note {
    font-size: 16px;
  }
}
.testimonials .note span {
  color: #F50000;
}

footer .banner {
  padding: 50px 216px 0 235px;
  border-radius: 30px;
  background: linear-gradient(118.59deg, #FF2D9A 0.95%, #BE2293 100.59%);
}
@media screen and (max-width: 1400px) {
  footer .banner {
    padding: 40px 180px 0 200px;
  }
}
@media screen and (max-width: 1199px) {
  footer .banner {
    padding: 40px 100px 0;
  }
}
@media screen and (max-width: 991px) {
  footer .banner {
    padding: 40px 40px 0;
  }
}
@media screen and (max-width: 768px) {
  footer .banner {
    padding: 20px;
    padding-bottom: 0;
    border-radius: 16px;
  }
}
footer .banner h1 {
  color: #fff;
  font-size: 70px;
  font-weight: 600;
  font-size: 70px;
  line-height: 109.34%;
  letter-spacing: 0.01em;
  padding-left: 43px;
}
@media screen and (max-width: 1400px) {
  footer .banner h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1199px) {
  footer .banner h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  footer .banner h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  footer .banner h1 {
    font-size: 30px;
    padding-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  footer .banner h1 {
    font-size: 24px;
  }
}
footer .banner p {
  margin-top: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  padding-left: 43px;
  color: rgba(255, 255, 255, 0.8);
  width: 95%;
}
@media screen and (max-width: 1199px) {
  footer .banner p {
    line-height: 140%;
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  footer .banner p {
    width: 100%;
    padding-left: 0;
    font-size: 18px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 480px) {
  footer .banner p {
    font-size: 16px;
  }
}
footer .banner .photos {
  display: flex;
  gap: 13px;
  padding: 30px 0 30px 43px;
}
@media screen and (max-width: 768px) {
  footer .banner .photos {
    padding: 30px;
  }
}
@media screen and (max-width: 480px) {
  footer .banner .photos {
    justify-content: center;
    padding: 20px 0;
  }
}
footer .banner .photos img {
  width: auto;
}
@media screen and (max-width: 991px) {
  footer .banner .photos img {
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  footer .banner .photos img {
    width: 120px;
  }
}
footer .banner img {
  margin-bottom: -5px;
}
footer .copyright {
  text-align: center;
  padding: 30px 0;
}
@media screen and (max-width: 991px) {
  footer .copyright {
    padding: 20px 0;
  }
}
footer .copyright h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #393F48;
  padding-bottom: 8px;
}
footer .copyright p {
  font-size: 14px;
  line-height: 17px;
  color: #898E96;
}
