.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

h1 {
  font-size: 82px;
  font-weight: 900;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  padding-left: 28px;
  position: relative;
}

.subtitle:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: #144D91;
}

.btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 12px 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #27AE60;
  border-radius: 10px;
  border: 2px solid #27AE60;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  transition: .4s;
  position: relative;
}

.btn svg * {
  transition: 0.4s;
}

.anim {
  opacity: 0;
  transition: all 0.4s, opacity 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.anim.fromBottom {
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  transition: all 0.4s, opacity 1s cubic-bezier(0.85, 0, 0.15, 1), -webkit-transform 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 0.4s, transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 0.4s, transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 1s cubic-bezier(0.85, 0, 0.15, 1), -webkit-transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.anim.fromLeft {
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
  transition: all 0.4s, opacity 1s cubic-bezier(0.85, 0, 0.15, 1), -webkit-transform 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 0.4s, transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 0.4s, transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 1s cubic-bezier(0.85, 0, 0.15, 1), -webkit-transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.anim.width100 {
  opacity: 1;
  width: 0;
  transition: all 0.4s, width 2s cubic-bezier(0.85, 0, 0.15, 1);
}

.anim.animated {
  opacity: 1;
}

.anim.animated.fromBottom {
  -webkit-transform: none;
          transform: none;
}

.anim.animated.fromLeft {
  -webkit-transform: none;
          transform: none;
}

.anim.animated.width100 {
  width: 100%;
}

.anim.delay2 {
  transition-delay: 0.2s;
}

.anim.delay3 {
  transition-delay: 0.4s;
}

.anim.delay4 {
  transition-delay: 0.6s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  border-radius: 0;
  text-decoration: none;
  color: #191919;
  font-family: "Proxima Nova", sans-serif;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off, 'kern' off;
          font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off, 'kern' off;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 88px;
}

body footer {
  margin-top: auto;
  margin-bottom: 0;
}

select,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
}

*:focus {
  outline: transparent;
}

input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("../fonts/ProximaNova-Black.woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("../fonts/ProximaNova-Bold.woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("../fonts/ProximaNova-Semibold.woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("../fonts/ProximaNova-Regular.woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.header {
  background: white;
  padding: 20px 0;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  box-shadow: 0 0 50px rgba(25, 25, 25, 0.1);
}

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

.header__logo img {
  display: block;
  height: 40px;
  width: auto;
}

.header__menu ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__menu a {
  font-size: 16px;
  font-weight: 600;
  transition: 0.4s;
}

.header__menu a:hover {
  color: #27AE60;
}

.header__btn svg {
  display: none;
}

.header__mob__btn {
  width: 40px;
  height: 40px;
  margin-left: 30px;
  border-radius: 5px;
  background: #27AE60;
  position: relative;
}

.header__mob__btn span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  background: white;
  border-radius: 5px;
  width: 20px;
  height: 2px;
  transition: 0.4s;
}

.header__mob__btn span:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 6px));
          transform: translate(-50%, calc(-50% - 6px));
}

.header__mob__btn span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header__mob__btn span:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% + 6px));
          transform: translate(-50%, calc(-50% + 6px));
}

.header__mob__btn.open span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header__mob__btn.open span:nth-child(2) {
  opacity: 0;
}

.header__mob__btn.open span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.header__mob__container {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: calc(100vh - 64px);
  background: white;
  z-index: 2;
  padding: 40px 5vw 50px;
}

.header__mob__container ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.header__mob__container ul a {
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s;
}

.header__mob__container ul a:active {
  color: #27AE60;
}

.header__mob__container .contact {
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  background: #27AE60;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: .4s;
  font-weight: 600;
  color: white;
}

.header__mob__container .contact + .contact {
  margin-top: 20px;
}

.header__mob__container .contact svg {
  display: block;
  width: 24px;
  height: auto;
}

.header__mob__container .contact svg * {
  fill: white;
  transition: .4s;
}

.header__mob__container .contact:hover {
  background: #27AE60;
  color: white;
}

.header__mob__container .contact:hover svg * {
  fill: white;
}

.footer {
  background: #2c9a5c;
  padding: 40px 0;
}

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

.footer .container.dev {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.footer .container.dev a {
  color: white;
  font-weight: 600;
  transition: 0.4s;
  border-bottom: 1px solid transparent;
}

.footer .container.dev a:hover {
  border-color: white;
}

.footer__logo img {
  display: block;
  height: 40px;
  width: auto;
}

.footer .conts {
  display: flex;
  gap: 20px;
}

.footer p {
  color: white;
}

.footer .contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  background: #27AE60;
  transition: 0.4s;
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.footer .contact svg * {
  transition: 0.4s;
}

.footer .contact:hover {
  background: white;
  color: #27AE60;
}

.footer .contact:hover svg * {
  fill: #27AE60;
}

.wpcf7-not-valid-tip {
  color: #AB6262 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  position: absolute !important;
  left: 0 !important;
  top: 100% !important;
}

.wpcf7-response-output {
  width: 100% !important;
  margin: 20px auto 0 !important;
  padding: 5px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

form {
  position: relative;
}

.wpcf7-spinner {
  right: 0 !important;
  bottom: 0 !important;
  margin: 0 !important;
  position: absolute !important;
  width: 24px !important;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.block1 {
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.block1 * {
  color: white;
}

.block1 h1 {
  font-size: 52px;
  margin-bottom: 30px;
}

.block1 ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.block1 li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 24px;
}

.block1 li img {
  display: block;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.block1 .btn {
  margin-top: 50px;
}

.block2 {
  padding: 100px 0;
}

.block2 + .block2 {
  padding-top: 0;
}

.block2 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.block2 h2:before,
.block2 h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #191919;
}

.block2 .catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}

.block2 .catalog .card {
  width: calc(25% - 22.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.block2 .catalog .card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.block2 .catalog .card .img {
  display: block;
  width: 100%;
  padding-bottom: 150%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}

.block2 .catalog .card .img > div {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  display: none;
}

.block2 .catalog .card .img > div:nth-child(1) {
  display: block;
}

.block2 .catalog .card h3 {
  text-align: center;
}

.block2 .catalog .card .sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.block2 .catalog .card .sizes input {
  display: none;
}

.block2 .catalog .card .sizes input:checked + label {
  background: #27AE60;
  color: white;
}

.block2 .catalog .card .sizes label {
  padding: 5px 7px;
  border: 1px solid #27AE60;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.4s;
}

.block2 .catalog .card .price {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: baseline;
}

.block2 .catalog .card .price span {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.block2 .catalog .card .price span:nth-child(2) {
  position: relative;
  font-size: 16px;
  opacity: 0.65;
  color: #E74C3C;
}

.block2 .catalog .card .price span:nth-child(2):before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 110%;
  height: 1px;
  background: #E74C3C;
}

.block2 .catalog .card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.block3 {
  padding: 100px 0;
  background: #F0F9F4;
  border-radius: 20px;
  margin: 0 20px;
}

.block3 h2 {
  text-align: center;
  margin-bottom: 50px;
}

.block3 .content {
  display: flex;
  gap: 60px;
}

.block3 .content ul {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}

.block3 .content ul li {
  display: flex;
  gap: 20px;
}

.block3 .content ul li img {
  display: block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.block3 .content ul li .text {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 10px;
}

.block3 .content ul li .text a {
  transition: 0.4s;
}

.block3 .content ul li .text a:hover {
  color: #27AE60;
}

.block3 .content ul li .text .soc-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.block3 .content ul li .text .soc-box img {
  display: block;
  width: 30px;
  height: 30px;
}

.block3 .content .img {
  width: 45%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.block4 {
  padding: 100px 0;
}

.block4 h2 {
  text-align: center;
  margin-bottom: 50px;
}

.block4 .content {
  display: flex;
  gap: 60px;
}

.block4 .content ul {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}

.block4 .content ul li {
  display: flex;
  gap: 20px;
}

.block4 .content ul li img {
  display: block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.block4 .content ul li .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block4 .content .img {
  width: 45%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1010;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 25, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.popup .popup-container {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  padding: 40px;
  display: flex;
  gap: 30px;
}

.popup .popup-container .form {
  width: 50%;
}

.popup .popup-container .form h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.popup .popup-container .form form > p {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.popup .popup-container .form form > p > span {
  display: block;
  width: 100%;
}

.popup .popup-container .form form .input {
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 15px;
  border: 1px solid rgba(25, 25, 25, 0.4);
  border-radius: 10px;
}

.popup .popup-container .form form .btn {
  width: 100%;
  padding: 14px;
  justify-content: center;
}

.popup .popup-container .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.popup .popup-container .info .logo {
  display: block;
  height: 30px;
  width: auto;
  margin-bottom: 36px;
}

.popup .popup-container .info .card {
  display: flex;
  gap: 20px;
}

.popup .popup-container .info .card img {
  display: block;
  width: 100px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.popup .popup-container .info .card .text {
  width: calc(100% - 120px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup .popup-container .info .card .text h3 {
  font-size: 18px;
}

.popup .popup-container .info .card .text p {
  font-size: 18px;
}

.popup .popup-container .info .socials {
  display: flex;
  gap: 20px;
}

.popup .popup-container .info .contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  background: #F0F9F4;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: .4s;
  font-weight: 600;
}

.popup .popup-container .info .contact svg {
  display: block;
  width: 24px;
  height: auto;
}

.popup .popup-container .info .contact svg * {
  fill: #191919;
  transition: .4s;
}

.popup .popup-container .info .contact:hover {
  background: #27AE60;
  color: white;
}

.popup .popup-container .info .contact:hover svg * {
  fill: white;
}

.popup .popup-container .exit-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popup .popup-container .exit-btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #191919;
}

.popup .popup-container .exit-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #191919;
}

.fancybox__container * {
  color: white !important;
}

@media screen and (min-width: 1025px) {
  .btn:hover {
    background: transparent;
    color: #27AE60;
  }

  .header__mob__btn {
    display: none;
  }
}

@media screen and (max-width: 1440px) {
  .container {
    max-width: 1100px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 19px;
  }

  .block1 {
    padding: 80px 0;
  }

  .block1 h1 {
    font-size: 42px;
  }

  .block1 ul {
    gap: 15px;
  }

  .block1 li {
    font-size: 20px;
    gap: 15px;
  }

  .block1 li img {
    width: 30px;
    height: 30px;
  }

  .block2 {
    padding: 80px 0;
  }

  .block2 h2 {
    gap: 40px;
    margin-bottom: 40px;
  }

  .block2 h2:before,
  .block2 h2:after {
    width: 80px;
  }

  .block2 .catalog .card .sizes {
    gap: 7px;
  }

  .block2 .catalog .card .sizes label {
    font-size: 15px;
  }

  .block3 {
    padding: 80px 0;
  }

  .block4 {
    padding: 80px 0;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 550px;
  }

  h1 {
    font-size: 42px;
  }

  h3 {
    font-size: 16px;
  }

  .btn:active {
    background: white;
    color: #27AE60;
  }

  .btn:active svg * {
    fill: #27AE60;
  }

  body {
    padding-top: 64px;
  }

  .header {
    padding: 12px 0;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__logo img {
    height: 30px;
  }

  .header__menu {
    display: none;
  }

  .header__btn {
    padding: 6px;
    border-radius: 5px;
  }

  .header__btn svg {
    display: block;
  }

  .header__btn {
    font-size: 0;
  }

  .footer .container {
    flex-direction: column;
    gap: 20px;
  }

  .footer .conts {
    flex-direction: column;
  }

  .footer p {
    order: 1;
  }

  .footer .contact {
    justify-content: center;
  }

  .block1 {
    position: relative;
  }

  .block1:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 25, 0.6);
  }

  .block1 .container {
    position: relative;
    z-index: 2;
  }

  .block1 h1 {
    font-size: 38px;
  }

  .block2 {
    padding: 50px 0;
  }

  .block2 h2 {
    margin-bottom: 20px;
    gap: 20px;
  }

  .block2 h2:before,
  .block2 h2:after {
    width: 50px;
  }

  .block2 .catalog {
    gap: 40px 10px;
  }

  .block2 .catalog .card {
    width: calc(50% - 5px);
  }

  .block2 .catalog .card .img {
    margin-bottom: 5px;
    padding-bottom: 130%;
  }

  .block2 .catalog .card .sizes label {
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 5px;
  }

  .block2 .catalog .card .price {
    gap: 7px;
  }

  .block2 .catalog .card .price span {
    font-size: 18px;
  }

  .block2 .catalog .card .price span:nth-child(2) {
    font-size: 12px;
  }

  .block2 .catalog .card .btn {
    font-size: 14px;
    padding: 8px;
    border-radius: 5px;
  }

  .block3 {
    padding: 50px 0;
    margin: 0;
  }

  .block3 h2 {
    text-align: left;
    margin-bottom: 30px;
  }

  .block3 .content {
    flex-direction: column;
    gap: 40px;
  }

  .block3 .content ul {
    width: 100%;
    padding: 0;
    gap: 20px;
  }

  .block3 .content ul li {
    gap: 10px;
  }

  .block3 .content ul li img {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .block3 .content ul li .text {
    gap: 3px;
  }

  .block3 .content ul li .text h3 {
    font-size: 18px;
  }

  .block3 .content ul li .text p {
    font-size: 16px;
  }

  .block3 .content .img {
    width: 100%;
    height: 90vw;
  }

  .block4 {
    padding: 50px 0;
  }

  .block4 h2 {
    text-align: left;
    margin-bottom: 30px;
  }

  .block4 .content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .block4 .content ul {
    width: 100%;
    padding: 0;
    gap: 20px;
  }

  .block4 .content ul li {
    gap: 10px;
  }

  .block4 .content ul li img {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .block4 .content ul li .text {
    gap: 3px;
  }

  .block4 .content ul li .text h3 {
    font-size: 18px;
  }

  .block4 .content ul li .text p {
    font-size: 16px;
  }

  .block4 .content .img {
    width: 100%;
    height: 90vw;
  }

  .popup .popup-container {
    flex-direction: column;
    max-width: 400px;
    overflow: auto;
    max-height: calc(100vh - 60px);
    padding: 30px 20px 20px;
    gap: 0;
  }

  .popup .popup-container .form {
    width: 100%;
  }

  .popup .popup-container .form h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .popup .popup-container .form form > p {
    gap: 15px;
  }

  .popup .popup-container .info {
    width: 100%;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(25, 25, 25, 0.2);
  }

  .popup .popup-container .info .logo {
    display: none;
  }

  .popup .popup-container .info .card {
    gap: 10px;
  }

  .popup .popup-container .info .card img {
    width: 60px;
    height: 80px;
  }

  .popup .popup-container .info .card .text {
    gap: 5px;
  }

  .popup .popup-container .info .card .text h3 {
    font-size: 16px;
  }

  .popup .popup-container .info .card .text p {
    font-size: 15px;
  }

  .popup .popup-container .info .contact {
    margin: 10px auto 0;
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .subtitle {
    font-size: 16px;
    padding-left: 17px;
  }

  .subtitle:before {
    width: 10px;
    height: 10px;
  }
}