* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "TT Drugs", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@font-face {
  font-family: "Montserrat", sans-serif;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 100vh;
  background: #121331;
  z-index: 1000;
  padding: 120px 0 0 0;
  transition: transform 0.3s ease;
}
@media (max-width: 990px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.active {
    transform: translateX(0);
  }
}
.sidebar__nav {
  padding: 0;
}
.sidebar__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar__item:last-child {
  border-bottom: none;
}
.sidebar__link {
  display: block;
  padding: 20px 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
    font-family: "Montserrat", sans-serif;
}
.sidebar__link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  padding-left: 40px;
}
.sidebar__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #ffd700;
  transition: width 0.3s ease;
}
.sidebar__link:hover::before {
  width: 4px;
}

.main {
  margin-left: 300px;
  min-height: 100vh;
}
@media (max-width: 990px) {
  .main {
    margin-left: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  border-radius: 0;
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}
.btn--primary {
  background: transparent;
  border: 2px solid #9e2063;
  font-weight: 900;
  padding: 10px 10px;
}
.btn--primary:hover {
  background: #9e2063;
  color: #ffffff;
  border-color: #9e2063;
}
.btn--hero, .btn--wideformat {
  background: transparent;
  border: 2px solid #9e2063;
  color: #ffffff;
  padding: 10px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  letter-spacing: 1px;
}
.btn--hero:hover, .btn--wideformat:hover {
  background: #9e2063;
  color: #ffffff;
  border-color: #9e2063;
}
.btn--wideformat {
  padding: 12px 30px;
}

.header {
  background: linear-gradient(#151635 0%, #020202 50%, #151635 100%);
  margin-left: 300px;
  height: 125px;
  border-bottom: 2px solid #333;
}
@media (max-width: 990px) {
  .header {
    margin-left: 0;
  }
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 125px;
  padding: 0 105px 0 65px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .header__content {
    padding: 0 20px;
    flex-wrap: wrap;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 65px;
  width: auto;
}
.header__phones {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-right: 80px;
}
@media (max-width: 768px) {
  .header__phones {
    display: none;
  }
}
.header .social_icons {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1;
  display: block;
}
.header .social_icons i {
  margin-right: 2px;
  color: #ffffff;
  transition: color 0.3s ease;
}
.header .social_icons i:hover {
  color: #ffd700;
}
.header .social_icons i:last-child {
  margin-right: 0;
}
.header__contact-info {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__contact-info {
    display: none;
  }
}
.header__location {
  flex-shrink: 0;
}
.header__location a {
  display: block;
  transition: transform 0.3s ease;
}
.header__location a:hover {
  transform: scale(1.1);
}
.header__location img {
  height: 80px;
  width: 80px;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  margin-left: 20px;
}
@media (max-width: 990px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.phone-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.phone-item__logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.phone-item__number {
  color: #ffffff;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  text-align: left;
}
.contact-details__label {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-details__email {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 2px;
}
.contact-details__text {
  font-size: 12px;
  color: #ccc;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero {
  background: linear-gradient(#151635 0%, #020202 50%, #151635 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  position: relative;
  padding:0;
}
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 65px;
}
@media (max-width: 1200px) {
  .hero__content {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  .hero__content {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
}
.hero__text {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .hero__text {
    width: 100%;
  }
}
.hero__title {
  font-size: 40px;
  font-weight: 200;
  line-height: 1.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  letter-spacing: 1px;
  margin: 45px 0;
  color:#fff;
}
@media (max-width: 1500px) {
  .hero__title {
    margin: 42px 0;
  }
}
@media (max-width: 1200px) {
  .hero__title {
    margin: 35px 0;
    font-size: 28px;
    line-height: 1.8;
  }
}
@media (max-width: 768px) {
  .hero__title {
    margin: 25px 0;
    font-size: 24px;
    line-height: 1.5;
  }
}
.hero__cta {
  font-size: 24px;
  font-weight: 400;
  margin: 70px 20vw 90px;
  max-width: 300px;
  width: 17vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1500px) {
  .hero__cta {
    font-size: 17px;
    max-width: 200px;
    width: 100%;
    margin: 60px 16.5vw 80px;
  }
}
@media (max-width: 1200px) {
  .hero__cta {
    font-size: 18px;
    width: 100%;
    margin: 50px 8vw 70px;
  }
}
@media (max-width: 768px) {
  .hero__cta {
    width: 100%;
    margin: 0 auto 40px;
  }
}
.hero__features {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 30px;
  font-weight: 300;
}
@media (max-width: 1200px) {
  .hero__features {
    font-size: 24px;
    gap: 3px;
  }
}
@media (max-width: 768px) {
  .hero__features {
    font-size: 25px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero__feature {
  color: #ffffff;
}
.hero__image {
  flex-shrink: 0;
  position: relative;
  max-width: 400px;
  width: 18vw;
  z-index: 0;
}
.hero__image::before {
  content: "";
  position: absolute;
  inset: 0% -15% 0% -130px;
  background: linear-gradient(90deg, transparent, rgba(58, 81, 130, 0.85) 50%, transparent);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1200px) {
  .hero__image::before {
    filter: blur(10px);
  }
}
@media (max-width: 768px) {
  .hero__image {
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: center;
  }
  .hero__image::before {
    display: none;
  }
}
.hero__image img {
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.products {
  padding: 25px 0;
}
@media (max-width: 990px) {
  .products {
    margin-left: 0;
  }
}
.products__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 65px;
}
@media (max-width: 1200px) {
  .products__container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .products__container {
    padding: 0 20px;
  }
}
.products__title {
  font-size: 33px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .products__title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}
@media (max-width: 1200px) {
  .products__grid {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  max-width: 400px;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card__image {
  height: 290px;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__content {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
}
.product-card__title {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wideformat {
  background: linear-gradient(#151635 0%, #020202 50%, #151635 100%);
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
}
.wideformat__content {
  font-size: 42px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 65px;
}
@media (max-width: 1200px) {
  .wideformat__content {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .wideformat__content {
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  .wideformat__content {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .wideformat__content {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
.wideformat__cta {
  margin-top: 15px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .wideformat__cta {
    margin-bottom: 20px;
  }
}

.photo-gallery {
  padding: 30px;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.slider .slide {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.slider .slide.center {
  width: 350px;
  height: 250px;
}
@media (max-width: 1200px) {
  .slider {
    gap: 20px;
    padding: 30px;
  }
  .slider .slide {
    width: 160px;
    height: 160px;
  }
  .slider .slide.center {
    width: 280px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .slider {
    gap: 10px;
    padding: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .slider .slide {
    width: 140px;
    height: 140px;
  }
  .slider .slide.center {
    width: 220px;
    height: 160px;
  }
}

.clients-section {
  text-align: center;
  margin-bottom: 60px;
}
.clients-section__title {
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .clients-section__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.clients-section__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 65px;
}
@media (max-width: 1200px) {
  .clients-section__grid {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .clients-section__grid {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .clients-section__grid {
    gap: 30px 40px;
  }
}
.clients-section__logo {
  flex: 0 1 calc(16.6666666667% - 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;
}
@media (max-width: 768px) {
  .clients-section__logo {
    flex: 0 1 calc(50% - 30px);
    width: 90px;
    height: 70px;
  }
}
.clients-section__grid--row3 .clients-section__logo {
  flex: 0 1 calc(25% - 60px);
}
@media (max-width: 768px) {
  .clients-section__grid--row3 .clients-section__logo {
    flex: 0 1 calc(50% - 40px);
  }
}

.contact-section {
  background-color: #121331;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 10px;
  gap: 50px;
  text-align: center;
}
.contact-section__block {
  background: #ffffff;
  color: #333;
  padding: 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;
  min-height: 180px;
}
@media (max-width: 768px) {
  .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;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.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;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .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: 768px) {
  .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;
  transition: text-decoration 0.3s ease;
}
.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: 768px) {
  .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: 150px;
  height: auto;
}
@media (max-width: 768px) {
  .contact-section__location .location img {
    width: 120px;
  }
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  margin: 0 auto;
  padding: 35px 150px;
  gap: 40px;
  flex-wrap: wrap;
  color: #333;
}
.footer-content .phone-item__number {
  color: #333;
  font-size: 15px;
}
@media (max-width: 990px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.7;
  gap: 50px;
}
.footer-links h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.social_icons {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1;
  display: block;
}
.social_icons i {
  margin-right: 2px;
  color: #121331;
  transition: color 0.3s ease;
}
.social_icons i:hover {
  color: #9e2063;
}
.social_icons i:last-child {
  margin-right: 0;
}

/*# sourceMappingURL=main.css.map */


.sidebar__submenu {
  display: none;
  padding-left: 15px;
}

.sidebar__item.has-children > .sidebar__link {
  position: relative;
  cursor: pointer;
}

/* Стрілочка */
.sidebar__item.has-children > .sidebar__link::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: transform 0.3s;
}

/* При відкритті */
.sidebar__item.open > .sidebar__link::after {
  transform: translateY(-50%) rotate(180deg);
}
