@charset "UTF-8";
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  padding: 0 2%;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  body {
    padding: 0 2.5%;
  }
}
@media (max-width: 480px) {
  body {
    padding: 0 3%;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  border-bottom: 3px solid #cb3749;
}
@media (max-width: 1200px) {
  .header {
    grid-template-columns: auto auto auto auto;
    gap: 15px;
    padding: 12px 20px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 10px 15px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .header {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 10px;
    text-align: center;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-self: start;
}
@media (max-width: 480px) {
  .header__logo {
    order: 1;
    justify-self: center;
  }
}
.header__logo .logo {
  width: 220px;
  height: auto;
}
@media (max-width: 1024px) {
  .header__logo .logo {
    width: 180px;
  }
}
@media (max-width: 768px) {
  .header__logo .logo {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .header__logo .logo {
    width: 120px;
    max-height: 40px;
  }
}
.header__phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: start;
}
@media (max-width: 1200px) {
  .header__phone {
    justify-self: center;
  }
}
@media (max-width: 768px) {
  .header__phone {
    justify-self: center;
  }
}
@media (max-width: 480px) {
  .header__phone {
    order: 2;
    justify-self: center;
  }
}
.header__phone .phone-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1200px) {
  .header__phone .phone-group {
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header__phone .phone-group {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .header__phone .phone-group {
    flex-direction: column;
    gap: 5px;
  }
}
.header__phone .phone-group p {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #cb3749;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .header__phone .phone-group p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .header__phone .phone-group p {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .header__phone .phone-group p {
    font-size: 12px;
    justify-content: center;
  }
}
.header__phone .phone-group p .icon, .contact-section__phones p .icon {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .header__phone .phone-group p .icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  .header__phone .phone-group p .icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
  }
}
@media (max-width: 480px) {
  .header__phone .phone-group p .icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }
}
.header__email {
  justify-self: start;
}
@media (max-width: 1200px) {
  .header__email {
    justify-self: center;
  }
}
@media (max-width: 768px) {
  .header__email {
    justify-self: center;
  }
}
@media (max-width: 480px) {
  .header__email {
    order: 3;
    justify-self: center;
  }
}
@media (max-width: 1200px) {
  .header__email .email-info {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .header__email .email-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
}
@media (max-width: 480px) {
  .header__email .email-info {
    gap: 2px;
  }
}
.header__email .email-info p {
  margin: 2px 0;
  font-size: 13px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .header__email .email-info p {
    font-size: 11px;
    margin: 1px 0;
  }
}
@media (max-width: 768px) {
  .header__email .email-info p {
    font-size: 10px;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .header__email .email-info p {
    font-size: 11px;
  }
}
.header__email .email-info a {
  color: #cb3749;
  text-decoration: none;
}
.header__email .email-info a:hover {
  text-decoration: underline;
}
.header__right {
  display: flex;
  align-items: center;
  justify-self: end;
}
@media (max-width: 480px) {
  .header__right {
    order: 4;
    justify-self: center;
  }
}
.header__right .header__icon-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .header__right .header__icon-group {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .header__right .header__icon-group {
    gap: 15px;
  }
}
.header__right .header__icon-group .location {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .header__right .header__icon-group .location {
    display: flex;
  }
}
.header__right .header__icon-group .location img {
  width: 60px;
  height: auto;
}
@media (max-width: 1024px) {
  .header__right .header__icon-group .location img {
    width: 50px;
  }
}
@media (max-width: 768px) {
  .header__right .header__icon-group .location img {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .header__right .header__icon-group .location img {
    width: 35px;
  }
}
.header__right .header__icon-group .menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
}
.header__right .header__icon-group .menu-toggle img {
  width: 75px;
  height: auto;
}
@media (max-width: 768px) {
  .header__right .header__icon-group .menu-toggle img {
    width: 30px;
  }
}
@media (max-width: 480px) {
  .header__right .header__icon-group .menu-toggle img {
    width: 25px;
  }
}
.header__right .header__icon-group .menu-toggle:hover {
  opacity: 0.7;
}
@media (max-width: 600px) {
  .header {
    padding: 10px 15px;
  }
  .header__email {
    display: none;
  }
  .header__phone .phone-group p {
    display: none;
  }
  .header__phone .phone-group p:first-child {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    color: #cb3749;
    white-space: nowrap;
  }
  .header__phone .phone-group p:first-child .icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    flex-shrink: 0;
  }
  .header__logo .logo {
    width: 100px;
    max-height: 40px;
  }
  .header__right .header__icon-group {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .header__right .header__icon-group .location img {
    width: 24px;
    height: 24px;
  }
  .header__right .header__icon-group .menu-toggle img {
    width: 24px;
    height: 24px;
  }
}

.menu {
  display: none;
  background: #cb3749;
  color: white;
  padding: 15px 20px;
  position: relative;
  z-index: 1000;
}
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .menu ul {
    flex-direction: column;
    gap: 15px;
  }
}
.menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .menu ul li a {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.menu.open {
  display: block;
}

.banner-section {
  background-image: url("../img/galeria.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  margin-top: 20px;
  position: relative;
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, black 0%, black 40%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 84%, black 99%, black 100%);
  z-index: 1;
  pointer-events: none;
}
.banner-section__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .banner-section__content {
    padding: 35px 0;
  }
}
@media (max-width: 768px) {
  .banner-section__content {
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .banner-section__content {
    padding: 25px 0;
  }
}
@media (max-width: 360px) {
  .banner-section__content {
    padding: 20px 0;
  }
}
.banner-section__text {
  flex: 1;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .banner-section__text {
    padding: 0 30px;
  }
}
@media (max-width: 430px) {
  .banner-section__text {
    padding: 0 0px;
  }
}
.banner-section__text h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 2px;
  margin: 0;
  color: white;
}
@media (max-width: 1200px) {
  .banner-section__text h1 {
    font-size: 50px;
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {
  .banner-section__text h1 {
    font-size: 45px;
    line-height: 1.5;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .banner-section__text h1 {
    font-size: 36px;
    line-height: 1.4;
    padding: 0 15px;
  }
}
@media (max-width: 600px) {
  .banner-section__text h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .banner-section__text h1 {
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}
@media (max-width: 360px) {
  .banner-section__text h1 {
    font-size: 22px;
    line-height: 1.2;
  }
}
.banner-section__footer {
  background-color: #cb3749;
  padding: 15px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .banner-section__footer {
    padding: 12px 0;
  }
}
@media (max-width: 480px) {
  .banner-section__footer {
    padding: 10px 0;
  }
}
@media (max-width: 360px) {
  .banner-section__footer {
    padding: 8px 0;
  }
}
.banner-section__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 40px;
}
@media (max-width: 1024px) {
  .banner-section__list {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .banner-section__list {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .banner-section__list {
    gap: 15px;
  }
}
.banner-section__list li {
  font-size: 42px;
  color: white;
  position: relative;
}
@media (max-width: 1400px) {
  .banner-section__list li {
    font-size: 28px;
  }
}
@media (max-width: 1100px) {
  .banner-section__list li {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .banner-section__list li {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .banner-section__list li {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .banner-section__list li {
    font-size: 18px;
  }
}
.banner-section__list li::after {
  content: " •";
  font-size: 42px;
  font-weight: bold;
  color: white;
  margin-left: 15px;
}
@media (max-width: 1200px) {
  .banner-section__list li::after {
    font-size: 36px;
    margin-left: 12px;
  }
}
@media (max-width: 1024px) {
  .banner-section__list li::after {
    font-size: 32px;
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .banner-section__list li::after {
    font-size: 28px;
    margin-left: 8px;
  }
}
@media (max-width: 600px) {
  .banner-section__list li::after {
    font-size: 24px;
    margin-left: 8px;
  }
}
@media (max-width: 480px) {
  .banner-section__list li::after {
    font-size: 20px;
    margin-left: 6px;
  }
}
@media (max-width: 360px) {
  .banner-section__list li::after {
    font-size: 18px;
    margin-left: 5px;
  }
}
.banner-section__list li:first-child::before, .banner-section__list li:last-child::before {
  content: "• ";
  font-size: 42px;
  font-weight: bold;
  color: white;
  margin-right: 15px;
}
@media (min-width: 587px) {
  .banner-section__list li:first-child::before, .banner-section__list li:last-child::before {
    content: " ";
  }
}
@media (max-width: 1200px) {
  .banner-section__list li:first-child::before, .banner-section__list li:last-child::before {
    font-size: 36px;
    margin-right: 12px;
  }
}
@media (max-width: 1024px) {
  .banner-section__list li:first-child::before, .banner-section__list li:last-child::before {
    font-size: 32px;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .banner-section__list li:first-child::before, .banner-section__list li:last-child::before {
    font-size: 28px;
    margin-right: 8px;
  }
}
@media (max-width: 600px) {
  .banner-section__list li:first-child::before, .banner-section__list li:last-child::before {
    font-size: 24px;
    margin-right: 8px;
  }
}
@media (max-width: 480px) {
  .banner-section__list li:first-child::before, .banner-section__list li:last-child::before {
    font-size: 20px;
    margin-right: 6px;
  }
}
@media (max-width: 360px) {
  .banner-section__list li:first-child::before, .banner-section__list li:last-child::before {
    font-size: 18px;
    margin-right: 5px;
  }
}

.container {
  width: 84%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
  }
}

.external-ads,
.featured-promo {
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 8px solid #cb3749;
}
.external-ads__title,
.featured-promo__title {
  font-size: 36px;
  font-weight: 400;
  color: #222;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .external-ads__title,
.featured-promo__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .external-ads__title,
.featured-promo__title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.external-ads__cards,
.featured-promo__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 1300px) {
  .external-ads__cards,
.featured-promo__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
}
@media (max-width: 580px) {
  .external-ads__cards,
.featured-promo__cards {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}

.ad-card {
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 3px solid #cb3749;
  border-radius: 38px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ad-card {
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  .ad-card {
    min-height: 400px;
  }
}
.ad-card__image {
  flex: 0 0 40%;
  overflow: hidden;
  position: relative;
  min-height: 240px;
}
@media (max-width: 768px) {
  .ad-card__image {
    flex: 0 0 45%;
    min-height: 180px;
  }
}
@media (max-width: 480px) {
  .ad-card__image {
    flex: 0 0 50%;
    min-height: 160px;
  }
}
.ad-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  display: block;
}
.ad-card__description {
  flex: 1;
  padding: 20px;
  font-size: 18px;
  color: #333;
  border-top: 3px solid #cb3749;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .ad-card__description {
    padding: 15px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .ad-card__description {
    padding: 12px;
    font-size: 14px;
  }
}
.ad-card__description p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  font-weight: 600;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-card__description .ad-card__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}
.ad-card__description .ad-card__buttons .btn,button.btn, .btn:not(.close):not(.mfp-close), a.btn:not([href]):not([tabindex]) {
  flex: 1 1 0;
  padding: 14px 5px;
  background-color: #cb3749;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ad-card__description .ad-card__buttons .btn:hover {
  background-color: #a42b3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .ad-card__description .ad-card__buttons .btn {
    font-size: 11px;
    padding: 12px 0;
  }
}
.ad-card__footer {
  flex: 0 0 auto;
  background-color: #cb3749;
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1650px) {
  .ad-card__footer {
    font-size: 14px;
    padding: 15px 0;
  }
}
@media (max-width: 768px) {
  .ad-card__footer {
    font-size: 14px;
    padding: 14px 0;
  }
}
@media (max-width: 650px) and (min-width: 580px){
  .ad-card__footer {
    font-size: 12px;
    padding: 14px 0;
  }
}
@media (max-width: 480px) {
  .ad-card__footer {
    font-size: 15px;
    padding: 12px 0;
  }
}

.clients-section {
  text-align: center;
  margin-bottom: 60px;
}
.clients-section__title {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .clients-section__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .clients-section__title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.clients-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .clients-section__grid {
    gap: 30px 40px;
  }
}
@media (max-width: 480px) {
  .clients-section__grid {
    gap: 20px 30px;
  }
}
.clients-section__logo {
  flex: 0 1 calc(100% / 6 - 60px);
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-section__logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .clients-section__logo {
    flex: 0 1 calc(33.33% - 40px);
    width: 100px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .clients-section__logo {
    flex: 0 1 calc(50% - 30px);
    width: 90px;
    height: 70px;
  }
}
.clients-section__grid--row3 {
  justify-content: center;
}
.clients-section__grid--row3 .clients-section__logo {
  flex: 0 1 calc(100% / 4 - 60px);
}
@media (max-width: 768px) {
  .clients-section__grid--row3 .clients-section__logo {
    flex: 0 1 calc(50% - 40px);
  }
}

.contact-section {
  background-color: #cb3749;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 10px;
  gap: 50px;
  text-align: center;
}
@media (min-width: 1025px) {
  .contact-section {
    margin: 0 0;
  }
}
@media (max-width: 1024px) {
  .contact-section {
    gap: 30px;
    margin: 0 -2.6%;
  }
}
@media (max-width: 480px) {
  .contact-section {
    gap: 20px;
    margin: 0 -3.1%;
  }
}
.contact-section__block {
  background: #fff;
  color: #222;
  padding: 15px 15px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 440px;
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .contact-section__block {
    max-width: 90%;
    min-height: auto;
    padding: 10px;
    font-size: 13px;
  }
}
.contact-section__phones .phone-group,
.contact-section__phones .email-group, .contact-section__emails .phone-group,
.contact-section__emails .email-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .contact-section__phones .phone-group,
.contact-section__phones .email-group, .contact-section__emails .phone-group,
.contact-section__emails .email-group {
    gap: 5px;
  }
}
.contact-section__phones .phone-group p,
.contact-section__phones .email-group p, .contact-section__emails .phone-group p,
.contact-section__emails .email-group p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 480px) {
  .contact-section__phones .phone-group p,
.contact-section__phones .email-group p, .contact-section__emails .phone-group p,
.contact-section__emails .email-group p {
    font-size: 14px;
    gap: 5px;
  }
}
.contact-section__phones .phone-group .icon,
.contact-section__phones .email-group .icon, .contact-section__emails .phone-group .icon,
.contact-section__emails .email-group .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media (max-width: 480px) {
  .contact-section__phones .phone-group .icon,
.contact-section__phones .email-group .icon, .contact-section__emails .phone-group .icon,
.contact-section__emails .email-group .icon {
    width: 16px;
    height: 16px;
  }
}
.contact-section__phones .phone-group a,
.contact-section__phones .email-group a, .contact-section__emails .phone-group a,
.contact-section__emails .email-group a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 16px;
}
.contact-section__phones .phone-group a:hover,
.contact-section__phones .email-group a:hover, .contact-section__emails .phone-group a:hover,
.contact-section__emails .email-group a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .contact-section__phones .phone-group a,
.contact-section__phones .email-group a, .contact-section__emails .phone-group a,
.contact-section__emails .email-group a {
    font-size: 14px;
  }
}
.contact-section__location {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.contact-section__location .location img {
  width: 165px;
  height: auto;
  display: block;
}
@media (max-width: 480px) {
  .contact-section__location .location img {
    width: 120px;
  }
}

.wide-format {
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 8px solid #cb3749;
}
.wide-format__title {
  font-size: 46px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .wide-format__title {
    font-size: 36px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .wide-format__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.wide-format__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.wide-format__buttons .btn {
  padding: 10px 20px;
  min-width: 180px;
  background-color: #cb3749;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .wide-format__buttons .btn {
    min-width: 140px;
    font-size: 13px;
    padding: 8px 16px;
  }
}
@media (max-width: 480px) {
  .wide-format__buttons .btn {
    min-width: 100px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 30px;
  padding: 40px;
  flex-direction: column;
}
@media (max-width: 768px) {
  .slider {
    gap: 20px;
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .slider {
    gap: 10px;
    padding: 20px;
  }
}
.slider .slider-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .slider .slider-track {
    order: 1;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .slider .slider-track {
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
@media (max-width: 768px) {
  .slider .slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    order: 2;
    margin-top: 20px;
  }
}
.slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #cb3749;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider .slider-btn:hover {
  background: #a42b3a;
  transform: translateY(-50%) scale(1.1);
}
.slider .slider-btn--prev {
  left: 10px;
}
.slider .slider-btn--next {
  right: 10px;
}
@media (max-width: 768px) {
  .slider .slider-btn {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin: 0 10px;
  }
  .slider .slider-btn:hover {
    transform: scale(1.1);
  }
  .slider .slider-btn--prev {
    left: auto;
    order: 1;
  }
  .slider .slider-btn--next {
    right: auto;
    order: 2;
  }
}
.slider .slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .slider .slider-dots {
    order: 3;
    margin-top: 15px;
  }
}
.slider .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #cb3749;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider .slider-dot.active, .slider .slider-dot:hover {
  background: #cb3749;
}
.slider .slide {
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}
.slider .slide .slide-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.slider .slide:hover img {
  transform: scale(1.05);
}
.slider .slide:not(.center) {
  cursor: pointer;
}
.slider .slide:not(.center):hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}
.slider .slide .zoom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  pointer-events: auto;
}
@media (hover: hover) {
  .slider .slide .zoom-btn:hover {
    background: #cb3749;
    color: white;
  }
}
@media (max-width: 768px) {
  .slider .slide .zoom-btn {
    opacity: 1;
    font-size: 10px;
    padding: 6px 12px;
  }
}
.slider .slide .mobile-nav-left,
.slider .slide .mobile-nav-right {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  z-index: 4;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .slider .slide .mobile-nav-left,
.slider .slide .mobile-nav-right {
    display: block;
  }
}
.slider .slide .mobile-nav-left {
  left: 0;
}
.slider .slide .mobile-nav-right {
  right: 0;
}
@media (hover: hover) {
  .slider .slide:hover .zoom-btn {
    opacity: 1;
  }
}
.slider .slide.center {
  width: 400px;
  height: 300px;
  transform: scale(1);
}
.slider .slide.center .zoom-btn {
  font-size: 14px;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  .slider .slide.center .zoom-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}
@media (max-width: 1024px) {
  .slider {
    gap: 20px;
    padding: 30px;
  }
  .slider .slider-track {
    gap: 20px;
  }
  .slider .slide {
    width: 175px;
    height: 175px;
  }
  .slider .slide.center {
    width: 250px;
    height: 190px;
  }
}
@media (max-width: 768px) {
  .slider {
    gap: 10px;
    padding: 20px;
  }
  .slider .slider-track {
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .slider .slider-btn {
    display: none;
  }
  .slider .slide {
    width: 175px;
    height: 175px;
  }
  .slider .slide.center {
    width: 250px;
    height: 190px;
  }
}

.photo-gallery {
  text-align: center;
  padding: 50px 0;
  border-bottom: 8px solid #cb3749;
}
.photo-gallery__title {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .photo-gallery__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .photo-gallery__title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
}
.lightbox-close:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .lightbox-close {
    top: -30px;
    font-size: 30px;
  }
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
  z-index: 10001;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next {
    font-size: 20px;
    padding: 10px 15px;
  }
}
.lightbox-prev {
  left: 20px;
}
@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
}
.lightbox-next {
  right: 20px;
}
@media (max-width: 768px) {
  .lightbox-next {
    right: 10px;
  }
}
.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lightbox-counter {
    bottom: -30px;
    font-size: 14px;
  }
}


.btn, 
button.btn, 
a.btn {
  display: inline-block;
  width: 100%;               /* кнопка тягнеться на всю ширину блоку */
  max-width: 150px;          /* обмеження, щоб не була надто широкою */
  padding: 14px 32px;        /* бокові відступи */
  background-color: #cb3749;
  color: #fff;
  border: none;
  border-radius: 20px;       /* більш плавні краї */
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase; /* Всі букви великі */
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;    /* щоб паддінг не з'їдав ширину */
}

@media (max-width: 768px) {
 .ad-card__buttons a{
	font-size:9px !important;
}
}
