@import url('./fonts.css');

* {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

*::selection {
  background-color: #cb4154;
  color: #ffffff;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  margin-block: 0;
}

p {
  margin-block: 0;
}

ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

.images-grid__item {
  padding: 25px;

  width: 100%;
  aspect-ratio: 1;

  border-right: 1px solid #000;
  border-bottom: 1px solid #000;

  object-fit: scale-down;
}

.header {
  position: absolute;
  z-index: 1337;

  top: 0;
  right: 0;

  width: 100%;
  height: 105px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header > .container {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-navigation {
  display: flex;
  column-gap: 25px;
}

.header-navigation__item {
  font-size: 14px;
  font-weight: 600;

  color: #fff;
}

.header__button {
  padding-inline: 20px;

  font-size: 12px;
  font-weight: 600;
  line-height: 40px;

  border-radius: 4px;
  border: 1px solid #fff;

  color: #fff;
  transition:
    color 200ms,
    background-color 200ms;
}

.header__button:hover,
.header__button:focus-visible {
  color: #000;
  background-color: #fff;
}

.hero {
  position: relative;
  height: 75dvh;
}

.hero__overlay {
  position: absolute;

  top: 0;
  right: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;

  opacity: 0.5;
  background-color: #1b1f29;
}

.hero > .container {
  position: relative;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  max-width: 50%;

  font-size: 72px;
  font-weight: 600;
  line-height: 1;

  color: #fff;
}

.hero__description {
  margin-top: 30px;
  max-width: 50%;

  font-weight: 600;
  line-height: 1.5;

  color: #fff;
}

.hero__button {
  margin-top: 30px;
  padding-inline: 20px;

  width: fit-content;
  height: 50px;

  display: flex;
  align-items: center;
  column-gap: 15px;

  font-size: 13px;
  font-weight: 600;

  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #fff;

  transition:
    color 200ms,
    background-color 200ms;
}

.hero__button:hover,
.hero__button:focus-visible {
  color: #fff;
  background-color: transparent;
}

.hero__button > svg {
  width: 13px;
  height: 13px;
}

.bridging {
  padding-block: 100px;
  background-color: #2d2d2d;
}

.bridging__image {
  margin-inline: auto;

  width: 400px;
  height: 150px;

  object-fit: scale-down;
}

.bridging__title {
  margin-top: 50px;

  font-size: 48px;
  font-weight: 600;
  text-align: center;

  color: #2b161b;
}

.retailers {
  padding-block: 100px;
}

.retailers__title {
  font-size: 14px;
  font-weight: 600;

  text-align: center;
  text-transform: uppercase;
}

.retailers__grid {
  margin-top: 50px;
}

.countries {
  height: 768px;
  background-color: #2d2d2d;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(1240px - 20px * 2) auto;
}

.manufacturers {
  padding-block: 100px;
}

.manufacturers__title {
  font-size: 14px;
  font-weight: 600;

  text-align: center;
  text-transform: uppercase;
}

.manufacturers__grid {
  margin-top: 50px;
}

.services {
  padding-block: 100px;

  color: #453e3e;
  background-color: #f7f3f5;
}

.services__title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  column-gap: 75px;
  margin-top: 50px;

  padding-top: 50px;
  border-top: 1px solid #000;
}

.services-item__number {
  font-size: 14px;
  font-weight: 600;
}

.services-item__title {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.services-item__description {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.banner {
  height: 768px;
  background-size: cover;
  background-repeat: no-repeat;
}

.promo {
  padding-block: 100px 50px;

  color: #2b161b;
  background-color: #f7f3f5;
}

.promo > .container {
  display: flex;
  column-gap: 50px;
}

.promo__image {
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.promo__quote-icon > svg {
  width: 32px;
  height: 32px;
}

.promo__title {
  margin-top: 25px;

  font-size: 32px;
  font-weight: 600;
}

.reviews {
  color: #2b161b;
  background-color: #f7f3f5;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
}

.reviews-header__quote-icon > svg {
  width: 32px;
  height: 32px;
}

.reviews-header__toptitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.reviews-header__title {
  margin-top: 10px;
  font-size: 48px;
  font-weight: 600;
}

.reviews-body {
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border: 1px solid #000;
}

.reviews-item {
  padding: 40px;

  display: flex;
  column-gap: 20px;

  background-color: #fff;
}

.reviews-item:first-child {
  border-right: 1px solid #000;
}

.reviews-item__image {
  flex-shrink: 0;

  width: 80px;
  height: 80px;

  border-radius: 100%;
  object-fit: scale-down;
}

.reviews-item__text {
  font-weight: 600;
  line-height: 1.5;
}

.contact {
  padding-block: 100px;

  color: #2b161b;
  background-color: #f7f3f5;
}

.contact > .container {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}

.contact-feedback__title {
  font-size: 48px;
  font-weight: 600;
}

.contact-body {
  margin-left: auto;
}

.contact__image {
  width: 400px;
  height: 540px;
  object-fit: cover;
}

.contact__title {
  margin-top: 30px;

  font-size: 24px;
  font-weight: 700;
}

.contact__phone {
  margin-top: 15px;
}

.footer {
  padding-block: 50px;

  color: #2b161b;
  background-color: #f7f3f5;

  border-top: 1px solid #fff;
}

.footer__copyright {
  font-size: 14px;
}

@media (max-width: 1239px) {
  .hero {
    height: 100dvh;
  }

  .hero__title {
    font-size: 24px;
    max-width: none;
  }

  .hero__description {
    max-width: none;
    font-size: 18px;
  }

  .bridging__title {
    font-size: 32px;
  }

  .images-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countries {
    height: 240px;
    background-size: 100% auto;
  }

  .services-row {
    grid-template-columns: 1fr;
  }

  .banner {
    display: none;
  }

  .promo {
    padding-top: 0;
  }

  .promo > .container {
    row-gap: 25px;
    flex-direction: column;
  }

  .reviews-body {
    grid-template-columns: 1fr;
  }

  .reviews-item {
    flex-direction: column;
    row-gap: 20px;
  }

  .reviews-item:first-child {
    border-right: none;
    border-bottom: 1px solid #000;
  }

  .contact > .container {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
}
