
@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;500;600&display=swap');

:root {
  --color-blue: #101E6A;
  --font-family-Montserrat: 'Montserrat', sans-serif;
}

html {
  font-size: 65%;
}

body {
  font-size: 1.5rem;
}

.btn {
  font-size: 1.6rem;
  padding: 10px;
}
.btn-dark {
  background-color: #303030;
  color: #fff;
}

.topbar {
  width: 100%;
  background-color: #f5f5f5;

  &__wrapper {
    height: 40px;
  }

  &__info {

  }

  &__info-link {
    font-family: var(--font-family-Montserrat);
    font-size: 1.2rem;
  }

  &__info-icon {
    font-size: 1.5rem;
  }

  &__social-nav {

  }
  &__social-icon {
    font-size: 2rem;
  }
}

header {
  background-color: #fff;
}

.container-dv {
  width: 1170px;
  margin: 0 auto;
}

.navbar {
  height: 90px;
  &__logo {
    width: 148px;
  }

  &__link {
    color: var(--color-blue) !important;
  }
}


.swiper-container {
  width: 100%;
  height: 100%;
  z-index: -2 !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-button-next, .swiper-button-prev {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10rem;
  width: 50px !important;
  height: 50px !important;

}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 2rem !important;
  color: #101E6A;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 100px !important;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 100px !important;
}

.swiper-pagination-bullet {
  width: 16px !important;
  height: 6px !important;
  border-radius: 16px !important;
  background: #fff !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  width: 56px !important;
  background: #EFDDBB !important;
}

.motto {
  &__icon {
    font-size: 6rem;
    color: #00125C;
    position: relative;
    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 2.625rem;
      width: 70px;
      height: 70px;
      background-color: #ECEDF3;
      border-radius: 50%;
      z-index: -1;
    }
  }
  &__title {
    font-family: var(--font-family-Montserrat);
    color: #00125C;
    font-weight: 600;
  }
  &__info {
    font-weight: 300;
    font-size: 1.4rem;
    color: #737373;
  }
}

.product {
  background-color: #ebeef0;
  &__title {
    font-size: 3rem;
    font-weight: 600;
    font-family: var(--font-family-Montserrat);
    color: #00125C;
  }
  &__info {
    font-family: var(--font-family-Montserrat);
    font-size: 1.5rem;
    line-height: 2;
  }
}

.footer {
  width: 100%;
  background: url(../images/footer-bg.c4ceb336.svg), linear-gradient(to bottom, #48484B, #414141);
  background-repeat: no-repeat;
  background-position: top right;
  padding: 5.625rem 0;

  &__title {
    font-size:1.5rem;
    font-family: var(--font-family-Montserrat);
    font-weight: 600;
    color: #4bc0e9;
  }

  &__product-item {
    padding-top: 5px;
  }

  &__product-link {
    font-family: var(--font-family-Montserrat);
    color:#fff;
    font-size: 1.3rem;
  }

  &__quality-item {
    padding-top: 5px;
  }


  &__quality-link {
    font-family: var(--font-family-Montserrat);
    color:#fff;
    font-size: 1.3rem;
  }

  &__contact-item {
    padding-top:5px;
  }

  &__contact-link {
    font-family: var(--font-family-Montserrat);
    color:#fff;
    font-size: 1.3rem;
  }


}