@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-style: "Inter", "sans-serif";
  line-height: 34px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.title-black {
  color: black;
  text-transform: uppercase;
  position: relative;
  margin-left: 40px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
}
.title-black::before {
  content: "";
  height: 1px;
  width: 30px;
  background-color: black;
  position: absolute;
  top: 50%;
  left: -40px;
}

.title-white {
  color: white;
  text-transform: uppercase;
  position: relative;
  margin-left: 40px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
}
.title-white::before {
  content: "";
  height: 1px;
  width: 30px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: -40px;
}

.subtitle-black {
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: black;
  line-height: 1.2;
}

.subtitle-white {
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: white;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  height: -moz-max-content;
  height: max-content;
}

.header__logo-container {
  line-height: 0;
}

.header__logo {
  height: 50px;
}

.navigation {
  display: flex;
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
}

.navigation.is-active {
  left: 0;
}

.navigation__menu {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.navigation__item a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #4F5052;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
}

.close-btn {
  display: none;
  position: relative;
  cursor: pointer;
  font-size: 24px;
  z-index: 1002;
  background-color: black;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.close-btn::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 31px;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 31px;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.navigation__item {
  margin-right: 35px;
}
.navigation__item:last-child {
  margin-right: 65px;
}

.navigation-dropdown {
  position: relative;
  font-family: "Lato", sans-serif;
}

.navigation-dropdown__selected {
  background-color: #ffffff;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
}

.navigation-dropdown__arrow {
  margin-left: 5px;
}

.navigation-dropdown__menu {
  display: none;
  position: absolute;
  z-index: 1000 !important;
  width: 50px;
  top: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.navigation-dropdown__item {
  display: block;
  padding: 0 20px 0 10px;
  text-align: center;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.2s;
  text-decoration: none;
  color: #4F5052;
}

.navigation-dropdown__selected-language {
  font-size: 16px;
}

.navigation-dropdown__item {
  font-size: 16px;
}

.navigation-dropdown__item:hover {
  background-color: #f5f5f5;
}

.header__bar {
  display: none;
  position: relative;
  cursor: pointer;
}
.header__bar::before {
  content: "";
  position: absolute;
  width: 43px;
  height: 5px;
  background-color: black;
  right: 0;
  transform: translateY(-5px);
}
.header__bar::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  background-color: black;
  top: 0;
  right: 0;
  transform: translateY(5px);
}

#brand, #softbrand{
    display: none !important;
}

@media (max-width: 992px) {
  .header__logo {
    height: 40px;
  }
  .navigation__item a {
    font-size: 14px;
  }
  .navigation__item:last-child {
    margin-right: 45px;
  }
  .navigation-dropdown__selected-language {
    font-size: 14px;
  }
  .navigation-dropdown__item {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .navigation {
    display: none;
  }
  .navigation-dropdown__item {
    text-align: left;
    padding: 0;
    color: #7D7D7E;
  }
  .navigation {
    position: fixed;
    left: -100vw; /* Off-screen initially */
    top: 0;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    overflow-y: scroll;
    background-color: #fff; /* Background color */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: flex-start; /* Align items to the top */
    transition: left 0.3s ease-in-out; /* Smooth slide-in effect */
    z-index: 1001; /* Above other content */
  }
  .navigation.is-active {
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
  .header__bar {
    display: block;
  }
  .navigation__menu {
    flex-direction: column;
    padding: 46px 30px 0 30px;
    text-align: left;
    margin-bottom: 50px;
  }
  .navigation-dropdown {
    margin: 0 30px;
    padding: 10px 10px 0 10px;
    border-top: 1px solid black;
  }
  .navigation-dropdown__menu {
    box-shadow: none;
  }
  .navigation__item a {
    color: black;
  }
  .navigation-dropdown__selected {
    justify-content: space-between;
  }
  .close-btn-container {
    display: flex;
    justify-content: flex-end;
  }
  .close-btn {
    display: block;
    margin: 20px 30px 0 0;
  }
}
.no-scroll {
  overflow: hidden;
  position: fixed; /* Add this line */
  width: 100%; /* Add this line */
}

@media (max-width: 400px) {
  .header__logo {
    height: 30px;
  }
  .header__bar::before {
    transform: translateY(-7.5px);
  }
  .header__bar::after {
    transform: translateY(2.5px);
  }
}
.header {
  background-color: #1E1E1F;
}

.navigation__item a {
  color: #F0F0F0;
}

.navigation-dropdown__selected {
  background-color: #1E1E1F;
  color: #F0F0F0;
}

.navigation.is-active .navigation__item a {
  color: black;
}
.navigation.is-active .navigation-dropdown__selected {
  background-color: white;
  color: black;
}

.header__bar::before {
  background-color: white;
}
.header__bar::after {
  background-color: white;
}

.footer {
  background-color: #1E1E1F;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid white;
}

.footer__content {
  display: flex;
  margin-top: 40px;
}

.footer__content > * {
  flex: 1;
}

.footer__image {
  height: 50px;
  margin-top: 40px;
}

.footer__copyright {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer-title {
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  color: white;
}

.footer__links-items {
  display: flex;
  flex-direction: column;
}

.footer__links-item {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: white;
  font-size: 16px;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 17px;
}

.footer__contacts-info {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.footer__contacts-info:last-child {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .footer__main {
    flex-direction: column;
  }
  .footer__image {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 400px) {
  .footer__image {
    height: 30px;
  }
  .footer__links-title {
    font-size: 14px;
  }
  .footer__links-item, .footer__contacts-info {
    font-size: 14px;
  }
}
.intro {
  display: flex;
  justify-content: space-between;
  background-color: #1E1E1F;
}

.intro__image {
  width: 50vw;
}

.intro__title {
  line-height: 1.1;
  margin-left: max((100vw - 1200px) / 2, 20px);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 80px;
  letter-spacing: 5%;
  color: white;
  padding-top: 340px;
}

.info__inner {
  padding: 130px 0;
  border-bottom: 1px solid black;
}

.addresses {
  margin-top: 80px;
}

.addresses__title {
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 30px;
}

.addresses__info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.addresses__info-item {
  width: 200px;
  margin-top: 40px;
}
.addresses__info-item span {
  display: block;
}

.addresses__info-item-title {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 5px;
}

.addresses__info-item-value {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  color: #4F5052;
}

.contact {
  position: relative;
  padding: 130px 0 130px 0;
  margin-bottom: 130px;
}

.contact__title {
  position: absolute;
  left: 62vw;
  bottom: 440px;
}

.contact__map {
  width: 60vw;
  height: 550px;
}

.contact__form {
  position: absolute;
  padding: 40px;
  bottom: 0;
  left: 50vw;
  background-color: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  width: calc(50vw - (100vw - 1200px) / 2);
}

.contact__input {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
  outline: 0;
  padding-bottom: 5px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.contact_email-info {
  display: flex;
  justify-content: space-between; /* Distributes space between items */
  gap: 10px; /* Gap between flex items */
}

.contact_email-info > * {
  flex: 1; /* Ensures that each child takes equal space */
}

.contact__form-title {
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 25px;
  text-transform: capitalize;
  line-height: 1.2;
}

.contact__textarea {
  resize: none;
  margin-bottom: 10px;
  height: 6em;
}

.contact__submit {
  background-color: black;
  width: 100%;
  padding: 15px 0;
  cursor: pointer;
  border: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-right: 5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact__submit::after {
  content: url("../images/arrow_white.png");
  display: block;
  margin-left: 5px;
}

#brand, #softbrand{
    display: none;
}

@media (max-width: 1200px) {
  .intro__title {
    padding-top: 200px;
    font-size: 60px;
  }
  .contact {
    margin-bottom: 450px;
  }
  .contact__form {
    left: 50%;
    transform: translateX(-50%);
    bottom: -50%;
    max-width: 100%;
  }
  .contact__map {
    width: 100%;
  }
  .contact__title {
    bottom: 20px;
    left: 50%;
    transform: translateX(-170%);
  }
}
@media (max-width: 992px) {
  .intro__title {
    padding: 200px 0 100px 0;
    font-size: 60px;
  }
  .intro {
    flex-direction: column;
  }
  .intro__image {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact__form-title {
    font-size: 30px;
  }
  .contact__title {
    display: none;
  }
  .contact_email-info {
    flex-direction: column; /* Stack items on smaller screens */
  }
  .info_subtitle {
    font-size: 30px;
  }
}/*# sourceMappingURL=contacts.css.map */