@import url(/assets/Montserrat/Montserrat.css);
html *,
html ul,
html p {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  outline: none;
  font-family: "Montserrat", sans-serif;
  color: white;
  line-height: 1.5;
}
html a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
html a:hover {
  color: inherit;
  text-decoration: none;
}
html section {
  overflow: hidden;
}
html p {
  font-size: 16px;
  color: #ffffff;
}
html h1 {
  font-size: 48px;
  font-weight: 600;
}
html h2 {
  font-size: 32px;
  font-weight: 600;
}
html h3 {
  font-weight: 500;
  font-size: 20px;
}
html h4 {
  font-weight: 500;
  font-size: 18px;
}
html h5 {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}
html input::-webkit-outer-spin-button,
html input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html body {
  margin: 0;
}
html .btn-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 60px;
  border: 2px solid #EF2121;
  transition: all 0.5s ease;
}
html .btn-default:hover {
  color: black;
  background: #EF2121;
  border: none;
}

header .navigation {
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  transition: all 0.3s ease;
  background: #151515;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  /* &::after,
  &::before {
  	content: "";
  	position: absolute;
  	bottom: 0;
  	left: 0;
  	height: 3px;
  	width: 0;
  	background: $secondary-color;
  	width: 100%;
  	opacity: 1;
  	visibility: visible;
  	transition: all 0.3s ease;
  }
  &::before {
  	background: #ffc700 linear-gradient(left, #ffc700, #fff) no-repeat 0 0;
  	animation: sweep 7s ease-in infinite both;
  	z-index: 1;
  	-webkit-text-fill-color: rgba(233, 220, 220, 0.3);
  	display: inline;
  } */
}
header .navigation.transparent {
  background: transparent;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
header .navigation.transparent::after, header .navigation.transparent::before {
  opacity: 0;
  visibility: hidden;
  animation: unset;
}
header .navigation .logo {
  display: none;
}
header .navigation .links {
  display: flex;
  justify-content: space-around;
  flex-grow: 1;
  padding: 0px 50px;
  align-items: center;
}
header .navigation .links li a {
  transition: all 0.3s ease;
  font-weight: 700;
}
header .navigation .links li a:hover {
  color: #EF2121;
}
header .navigation .links li a.active {
  color: #EF2121;
}
header .navigation .links .logo {
  display: flex;
}
header .navigation .links .logo img {
  border-radius: 5px;
}
header .navigation .mobile-btns {
  display: none;
}

main {
  position: relative;
}
main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
main.active::after {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 10;
}

.introduction {
  padding: 0;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
}
.introduction .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.introduction .bg-video img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction .title {
  padding: 0px 50px 100px;
  width: 100%;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.introduction .title .redline {
  display: flex;
  width: 200px;
  margin: auto;
  margin-top: 20px;
}
.introduction .title .redline span {
  height: 5px;
  width: 100%;
  background: #fff;
}
.introduction .title .redline span.red {
  background-color: #EF2121;
}
.introduction .title h2 {
  padding-top: 20px;
}

.about-bmk {
  background: #151515;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}
.about-bmk .about-info {
  padding-left: 50px;
  width: 50%;
}
.about-bmk .about-info .redline {
  display: flex;
  width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.about-bmk .about-info .redline span {
  height: 5px;
  width: 100%;
  background: #fff;
}
.about-bmk .about-info .redline span.red {
  background-color: #EF2121;
}
.about-bmk .about-info p {
  padding-top: 30px;
  font-size: 16px;
  letter-spacing: 2px;
}
.about-bmk .about-img {
  padding-right: 0;
  position: relative;
  width: 50%;
}
.about-bmk .about-img .about-carousel {
  -webkit-clip-path: polygon(12% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(12% 0, 100% 0%, 100% 100%, 0% 100%);
}
.about-bmk .about-img .about-carousel .item {
  height: 620px;
  width: 100%;
}
.about-bmk .about-img .about-carousel .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-bmk .about-img .yellow-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 110%;
  width: 25px;
  background: #EF2121;
  transform: rotate(10.5deg) translateX(180%) translateY(-15px);
  z-index: 1;
}

.products {
  padding: 30px 0;
  background: url("/assets/images/back1.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
}
.products h2 {
  text-align: center;
  padding-top: 20px;
}
.products .redline {
  display: flex;
  width: 200px;
  margin: auto;
  margin-top: 20px;
}
.products .redline span {
  height: 5px;
  width: 100%;
  background: #fff;
}
.products .redline span.red {
  background-color: #EF2121;
}
.products .products-carousel {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px auto;
  width: 80%;
}
.products .products-carousel .product {
  width: 30%;
}
.products .products-carousel .product .inner {
  width: 100%;
  margin: 20px 0;
}
.products .products-carousel .product .inner img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.products .products-carousel .product .inner h3 {
  text-align: center;
  margin-top: 15px;
}

footer {
  height: 300px;
  width: 100%;
  padding: 50px 30px;
  background-size: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
}
footer .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
footer .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .f-link {
  flex-basis: 20%;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
footer .f-link .logo-bmk {
  margin-bottom: 30px;
}
footer .f-link .icon {
  margin-bottom: 15px;
}
footer .f-link p {
  color: white;
  margin-bottom: 10px;
}
footer .f-link a {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
footer .f-link a:hover {
  color: #EF2121;
}
footer .f-link .socials {
  margin-top: 10px;
}
footer .f-link .socials a {
  margin: 0px 7px;
}
footer .f-link .socials a img {
  transition: all 0.3s ease;
}
footer .f-link .socials a:hover img {
  filter: grayscale(1) brightness(10);
}

@media (max-width: 1600px) {
  header .navigation {
    padding: 0px;
    height: 60px;
  }
  header .navigation .links {
    padding: 0px 15px;
  }
  header .navigation .links .logo {
    height: 40px;
    width: 120px;
  }
  header .navigation .links .logo img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 40px;
    width: 120px;
  }
  header .navigation .links li a {
    font-weight: 400;
    font-size: 14px;
  }
  .introduction .title {
    padding: 20px;
  }
  .introduction .title h1 {
    font-size: 32px;
  }
  .introduction .title h2 {
    font-size: 24px;
  }
  .introduction .title .redline {
    width: 100px;
  }
  .about-bmk .about-img .yellow-line {
    transform: rotate(10.5deg) translateX(120%) translateY(-15px);
  }
  .products .products-carousel {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .about-bmk .about-info {
    width: 100%;
    padding: 30px;
  }
  .about-bmk .about-img {
    display: none;
  }
  .products .products-carousel .product {
    width: 45%;
  }
  footer {
    padding: 20px;
  }
  footer .f-link {
    flex-basis: 25%;
  }
}
@media (max-width: 700px) {
  header .navigation {
    padding: 20px;
  }
  header .navigation .logo {
    height: 40px;
    width: 120px;
    display: flex;
  }
  header .navigation .logo img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 40px;
    width: 120px;
    border-radius: 5px;
  }
  header .navigation .links {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 60px 20px 100px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background: #151515;
    transform: translateX(100%);
    transition: all 0.3s ease;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header .navigation .links .logo {
    display: none;
  }
  header .navigation .links.active {
    transform: unset;
  }
  header .navigation .links li a {
    padding: 15px 0;
    display: flex;
  }
  header .navigation .mobile-btns {
    display: flex;
  }
  header .navigation .mobile-btns .hamburger {
    display: inline-block;
    height: 40px;
    width: 40px;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  header .navigation .mobile-btns .hamburger:hover {
    opacity: 0.7;
  }
  header .navigation .mobile-btns .hamburger.is-active:hover {
    opacity: 0.7;
  }
  header .navigation .mobile-btns .hamburger.is-active .hamburger-inner,
  header .navigation .mobile-btns .hamburger.is-active .hamburger-inner::before,
  header .navigation .mobile-btns .hamburger.is-active .hamburger-inner::after {
    background-color: white;
  }
  header .navigation .mobile-btns .hamburger-box {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
  }
  header .navigation .mobile-btns .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  header .navigation .mobile-btns .hamburger-inner,
  header .navigation .mobile-btns .hamburger-inner::before,
  header .navigation .mobile-btns .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
  header .navigation .mobile-btns .hamburger-inner::before,
  header .navigation .mobile-btns .hamburger-inner::after {
    content: "";
    display: block;
  }
  header .navigation .mobile-btns .hamburger-inner::before {
    top: -13px;
  }
  header .navigation .mobile-btns .hamburger-inner::after {
    bottom: -13px;
  }
  header .navigation .mobile-btns .hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header .navigation .mobile-btns .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.12s ease, opacity 0.1s ease;
  }
  header .navigation .mobile-btns .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.12s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header .navigation .mobile-btns .hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.2s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  header .navigation .mobile-btns .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.2s ease;
  }
  header .navigation .mobile-btns .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.2s cubic-bezier(0.2, 0.61, 0.355, 1);
  }
  .about-bmk .about-info {
    width: 100%;
    padding: 30px 20px;
  }
  .about-bmk .about-info h2 {
    font-size: 24px;
  }
  .about-bmk .about-info .redline {
    width: 100px;
    margin-bottom: 10px;
  }
  .about-bmk .about-info p {
    padding-top: 20px;
    letter-spacing: normal;
  }
  .products {
    padding: 15px 0;
  }
  .products .products-carousel .product {
    width: 90%;
    margin: auto;
  }
  .products .products-carousel .product .inner {
    width: 80%;
    margin: 15px auto;
  }
  .products .products-carousel .product .inner img {
    width: 100%;
  }
  footer {
    height: unset;
  }
  footer .f-link {
    flex-basis: 60%;
  }
  footer .f-link img {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */