@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Arsenal:400,700&display=swap');

body {
  font-family: Roboto, serif;
  font-size: 1rem;
}

H2 {
  font-size: 1.8rem;
}

/* FIX BOOTSTRAP */
@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}
/* END FIX BOOTSTRAP */

/* SECTION NAV */
.section-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  transition: padding 500ms, background-color 500ms;
}

.nav__link {
  position: relative;
  margin-right: 6px;
  padding: 10px 14px;
  color: white;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: red;
  transition: width ease 300ms;
}

.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: #ffc107;
  text-decoration: none;
  background-color: #0005;
}

/* END SECTION NAV */

/* SECTION HEADER MAIN */
.section-header-main {
  background: url("../img/bg/bh_header.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 8rem 0 2rem;
}

.section-header-main:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .3);
}

.header-main_title {
  font-size: 3.25em;
  line-height: 50px;
  font-family: Arsenal, sans-serif;
}

.section_title {
  font-size: 2.3em;
  font-weight: 600;
  line-height: 50px;
  font-family: Arsenal, sans-serif;
}

@media (max-width: 768px) {
  .header-main_title {
    font-size: 2em;
  }
}

.header-main-discount input {
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #f5f5f5;
  font-weight: 400;
  padding: 4px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.header-main-discount button {
  border-radius: 30px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.header-main__left {
  font-size: 1.3em;
}

.header-main__left form {
  min-width: 375px;
}

@media (max-width: 992px) {
  .header-main__left form {
    min-width: 100%;
  }
}
/* END SECTION HEADER MAIN */

/* SECTION ADVANTAGES  */
.section-advantages img {
  max-height: 90px;
}
/* END SECTION ADVANTAGES */

/* SECTION ASSEMBLY */
.section-assembly,
.section-advantages2 {
  background-color: #C0E0EF;
}

.section-assembly .video {
  width: 64vw;
  height: 36vw;
  max-width: 864px;
  max-height: 486px;
  display: block;
  margin: 0 auto;
  border: 10px solid #2323ff;
  border-radius: 10px;
}
/* END SECTION ASSEMBLY */

/* SECTION CATALOG */
.svg-arrow-bottom {
  position: relative;
  margin-bottom: 34px;
  background: linear-gradient(0deg, #2323ff, #232395);
}

.svg-arrow-bottom>svg {
  max-height: 33px;
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transform: translate(0, 93%);
  transform: translate(0, 93%);
  left: 0;
  right: 0;
  fill: #2323ff;
}

.catalog-title {
  border-radius: 1rem;
}

.card-wrapper {
  border: 2px solid red;
  padding: 1rem;
}

.catalog__table {
  font-size: small;
}

@media screen and (min-width: 1500px) {
  .catalog__table {
    font-size: inherit;
  }
}

.catalog-img {
  width: 57%;
}
/* END SECTION CATALOG */

/* MODALS */
#modal-consultation {
  width: 325px;
  color: white;
  background-color: rgba(255, 255, 0, .7);
  padding: 1rem;
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 9;
  display: none;
}

#modal-consultation.shown {
  display: block;
}

.modal-consultation__close {
  width: 25px;
  height: 25px;
  background-color: black;
  border: 2px solid white;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  left: -10px;
  cursor: pointer;
}

.modal-consultation__title {
  background-color: #21a2cc;
  border-radius: 10px;
  font-size: 1.5em;
  padding: .6rem;
  margin: 1rem 0;
}

.modal-consultation__text {
  color: #000;
}

#modal-gift {
  width: 325px;
  color: white;
  background-color: rgba(128, 128, 128, .7);
  padding: 1rem;
  position: fixed;
  top: 70px;
  left: 20px;
  z-index: 9;
  display: none;
}

#modal-gift.shown {
  display: block;
}

.modal-gift__close {
  width: 25px;
  height: 25px;
  background-color: black;
  border: 2px solid white;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
}

.modal-gift__title {
  background-color: #21a2cc;
  border-radius: 10px;
  font-size: 1.5em;
  padding: .6rem;
  margin: 1rem 0;
}
/* EMD MODALS */

/* CUSTOM */
.owl-carousel-catalog {
  overflow: hidden;
}

.owl-carousel-catalog .owl-nav .owl-prev,
.owl-carousel-catalog .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 117px;
  height: 180px;
  line-height: 180px;
  text-align: center;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  opacity: 0.7;
}

.owl-carousel-catalog .owl-nav .owl-prev {
  left: -50px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .65)), to(transparent));
  background: linear-gradient(to right, rgba(0, 0, 0, .65) 0%, transparent 100%);
}

.owl-carousel-catalog .owl-nav .owl-next {
  right: -50px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .65)), to(transparent));
  background: linear-gradient(to left, rgba(0, 0, 0, .65) 0%, transparent 100%);
}

.owl-carousel-catalog .owl-nav .owl-prev:hover,
.owl-carousel-catalog .owl-nav .owl-next:hover {
  opacity: 1;
}

.owl-carousel-catalog .owl-nav .owl-prev i {
  -webkit-transform: translate(15px);
  transform: translate(15px);
  color: #fff;
}

.owl-carousel-catalog .owl-nav .owl-next i {
  -webkit-transform: translate(-15px);
  transform: translate(-15px);
  color: #fff;
}

.c__section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.opacity-75 {
  opacity: .75;
}

.text-size-4 {
  font-size: 1.1em;
}

.text-size-5 {
  font-size: 1.2em;
}

.text-size-6 {
  font-size: 1.4em;
}

.text-red {
  color: red;
}

.text-blue {
  color: blue;
}

/* END CUSTOM */