@font-face {
  font-family: "Open Sans";
  font-style: normal;
  src: url("/wp-content/themes/mdc/fonts/OpenSans-Regular.ttf");
}

html {
    overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

li {
  list-style: none;
}

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

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  overflow: hidden;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.section__title {
   font-size: 2rem;
   color: #000000;
}
  
.section {
   padding: 3rem 0;
}

.header {
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 1;
   transition: all 0.5s;
   border-bottom: 1px solid #ffffff;
   padding: 2rem 0;
   z-index: 10;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: #ffffff;
}

.header--scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem 0;
}

.mobile__wrap {
  display: none;
}

.mobile__menu-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(113, 118, 128, 0.8);
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
}

.mobile__menu-wrap .menu {
  flex-direction: column;
}

.mobile__menu-wrap .menu__link {
  color: #ffffff;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

.mobile__nav {
  padding-top: 60px;
}

.btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
}

.btn__line {
  display: block;
  height: 2px;
  background-color: #ffffff;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.menu__link {
  font-weight: 600;
  text-transform: uppercase;
}

.logo {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.section-banner {
  padding: 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 84vh;
}

.banner__content {
  padding-top: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#bannerVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  object-fit: cover;
}

.banner__wrap {
  z-index: 1;
}

.banner__title {
  color: #ffffff;
  font-size: 2rem;
  line-height: 2rem;
}

.section__title {
  text-align: center;
  padding-bottom: 50px;
  color: #5c6268;
}

.section-about {
  background-color: #fafafa;
}

.section-about .section__text {
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.section-about .section__text p {
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 400;
  color: #71767b;
}

.section-about .section__text p:not(:last-child) {
  padding-bottom: 15px;
}

.section-contact {
  padding: 0;
}

.product__list {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.product__item {
  flex: 0 0 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 20px;
}

.product__title {
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  color: #ffffff;
}

.section-banner::before {
  content: '';
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product__item::before {
  content: '';
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer {
  background-color: #fafafa;
  padding: 8rem 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.footer__nav .menu {
  flex-direction: column;
}

.footer__content .logo {
  padding-bottom: 25px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact__title {
  color: #000000;
  padding-bottom: 15px;
  font-weight: 600;
}

@media(max-width: 980px) {
  .mobile__wrap {
    display: block;
  }

  .header__nav {
    display: none;
  }

  .product__list {
    flex-direction: column;
  }

  .product__item {
    flex: 0 0 350px;
  }

  .footer__content {
    flex-direction: column;
  }

  .contact__list {
    text-align: center;
  }
}