@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.2.3/css/flag-icons.min.css');

/**************************/
/* NAVIGATIONS SECTION */
/**************************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

.main-nav-list {
  background-color: #cccccc;
  height: 6.2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.logo {
  height: 4rem;
}

.main-nav-link,
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  color: #333;
  font-weight: 500;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.second-nav-list {
  background-color: #e6e6e6;
  height: 5.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.nav-item {
  position: relative;
}

/* .dropdown__nav-item a {
  display: block;
} */

.dropdown {
  position: absolute;
  background-color: #e6e6e6;
  padding: 0.5rem;
  display: none;
}

.dropdown__nav-item a {
  padding: 1rem 0;
}

.nav-item:hover .dropdown {
  display: block;
}

.second-nav-list .nav-item {
  transition: 0.5s;
}

.second-nav-list:hover .nav-item {
  opacity: 0.3;
}

.second-nav-list .nav-item:hover {
  opacity: 1;
}

.second-nav-list .nav-item:hover a {
  color: #333;
}

.second-nav-link,
.second-nav-link:link,
.second-nav-link:visited {
  display: inline-block;
  color: #333;
  font-weight: 500;
  font-size: 1.4rem;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 3.6rem;
  width: 3.6rem;
  color: #333;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 7.4rem;
}

.section-hero .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  margin-top: 45rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
  .hero-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .hero-video {
    width: auto;
    height: 100%;
  }
}

/**************************/
/* TEXT-BANNER SECTION */
/**************************/

.section-text-banner {
  margin-bottom: 7.4rem;
}

.text-banner-content {
  background: #f8f8f8;
  font-size: 1.8rem;
  font-weight: 400;
  color: #333;
  padding: 6rem;
  line-height: 1.6;
  text-align: center;
}

/**************************/
/* PRODUCTS SECTION */
/**************************/

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.card {
  min-width: calc(100% / 3 - 0.7rem);
  background-color: #13265f;
  color: #e6e6e6;
  padding: 2rem;
  border-radius: 1.2rem;
}

.card-img {
  width: 100%;
  height: auto;
  margin-bottom: 1.6rem;
}

.card-description {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.btn--product,
.btn--product:link,
.btn--product:visited {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 6px;

  border: none;
  cursor: pointer;
  font-family: inherit;

  transition: all 0.3s;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}
.carousel-btn--left {
  left: 0;
}
.carousel-btn--right {
  right: 0;
}

/**************************/
/* HOW-WE-WORK SECTION */
/**************************/

.how-we-work-texts {
  margin-bottom: 4rem;
}

.how-we-work-card {
  text-align: center;
  background-color: #f8f8f8;
  padding: 2.4rem;
  border-radius: 8px;
  box-shadow: 0px 2rem 3rem 0 rgba(0, 0, 0, 0.07);
}

.how-we-work-description {
  font-size: 1.6rem;
}

.icon-chart,
.icon-tooth,
.icon-cube,
.icon-support {
  height: 5rem;
  width: 5rem;
  background-color: #e7e9ef;
  color: #13265f;
  border-radius: 50%;
  padding: 1.8rem;
  margin-bottom: 2rem;
}

.how-we-work-card-description {
  font-size: 1.6rem;
}

/**************************/
/* ABOUT-US SECTION */
/**************************/

.section-about-us,
.section-products,
.section-how-we-work {
  padding: 4.8rem 0 9.6rem 0;
  margin-bottom: 7.4rem;
}

.about-us-text-box {
  padding: 1.6rem;
}

.about-us-descriptions {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.about-us-description,
.e-catalog-description {
  font-size: 1.4rem;
}

/**************************/
/* E-CATALOG SECTION */
/**************************/

.section-e-catalog {
  padding: 4.8rem 0 9.6rem 0;
  margin-bottom: 15rem;
}

.e-catalog-items {
  background-color: #f8f8f8;
  padding: 3rem;
}

.e-catalog-description {
  margin-bottom: 1.6rem;
}

/**************************/
/* CONTACT SECTION */
/**************************/

.contact {
  padding: 4.8rem 0 9.6rem 0;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  background-color: #e6e6e6;
  padding: -1rem 0 2.4rem 0;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

.contact-col,
.nav-col {
  margin-top: 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-location,
.icon-phone,
.icon-email {
  width: 2rem;
  height: 2rem;
  color: #740c09;
  background-color: #f1e7e6;
  padding: 0.5rem;
  border-radius: 50%;
}

.icon-location {
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.copyright {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-top: auto;
}

.social-media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
  color: #666;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #740c09;
}

.icon-arrow-up {
  height: 3rem;
  width: 3rem;
  stroke-width: 2;
  color: #13265f;
  fill: none;
}

.logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid #bbbbbb;
  margin-top: 1.6rem;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6rem 0;
}

.icon-search,
.icon-globe,
.icon-menubar {
  height: 2.2rem;
  width: 2.2rem;
  color: #333;
}

.icon-linkedIn,
.icon-facebook,
.icon-instagram,
.icon-whatsapp {
  height: 3rem;
  width: 3rem;
  color: #333;
  transition: all 0.3s;
}

.icon-linkedIn:hover,
.icon-facebook:hover,
.icon-instagram:hover,
.icon-whatsapp:hover {
  color: #740c09;
}

.carousel-btn-icon {
  height: 4rem;
  width: 4rem;
}

/* LANGUAGE WINDOW */
.lang-popup {
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 5rem 6rem;
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.5s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 100;
  transition: all 0.5s;
}

.btn-close--lang-popup {
  font-family: inherit;
  color: inherit;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  font-size: 4rem;
  cursor: pointer;
  background: none;
  border: none;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.navbar-hidden {
  height: 0%;
}

.lang-popup-content h2 {
  text-align: center;
}

.country-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.country {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.country-title {
  font-size: 1.8rem;
  font-weight: 500;
}

.country a {
  color: inherit;
}

.flag-size {
  font-size: 1.8rem;
}

.responsive-lang-item {
  display: none;
}

/* SPLASH SCREEN */
.intro {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #e6e6e6;
  transition: 1s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro.display-none {
  display: none;
  opacity: 0;
  position: fixed;
  z-index: -99999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #161616;
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-logo {
  width: 20%;
  margin-bottom: 0.3rem;
}

.intro-subtitle,
.footer-logo__subtitle {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 500;
  color: #740c09;
}

@keyframes fadeIn {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fade-in {
  animation: fadeIn 1.6s ease-in-out forwards;
}

.fair-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100vh;
  margin: 3rem;
}

.fair-container a {
  margin-bottom: 1rem;
}

.fair-box {
  /* background-color: #f8f8f8; */
  box-shadow: 0px 2rem 2rem 2rem rgba(0, 0, 0, 0.07);
  padding: 5.5rem;
}

.fair-logo {
  width: 10rem;
  height: 10rem;
}

.fair-description {
  text-align: center;
  font-size: 1.6rem;
  color: #333;
}
