* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

.burger-menu_button {
  position: relative;
  top: 0px;
  z-index: 30;
  width: 60px;
  height: 60px;
  transition: 0.4s;
}

.burger-menu_button:hover .burger-menu_lines {
  filter: brightness(0.7);
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #fff;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -12px;
}

.burger-menu_lines::after {
  content: "";
  top: 12px;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.burger-menu_nav {
  padding-top: 80px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #018ABD;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  transition: 0.4s;
  width: 70%;
}

.burger-menu_link {
  padding: 10px 35px;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}
.burger-menu_link:hover {
  text-decoration: underline;
  color: #fff;
}

.burger-menu_link:hover {
  filter: brightness(0.9);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup {
  border-radius: 5px;
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 48px;
  margin-bottom: 10px;
}

.popup p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.popup .input-email {
  border: 3px solid var(--color-accent);
  box-sizing: border-box;
  border-radius: 25px;
  width: 432px;
  height: 52px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  outline: none;
  border: 1px solid #000;
}

.popup .btn-email {
  background-color: #f7d61e;
  padding: 15px 25px;
  color: #000;
  border: none;
  display: inline-block;
  margin-top: 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
  width: 432px;
  height: 52px;
}

.popup a {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #000000;
  margin-top: -10px;
  display: block;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup:before {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup:after {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.overlay-1 {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup-1 {
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup-bg {
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 100px 70px;
  border-radius: 0px;
  background-color: #2d2d2d;
}

.popup-bg img {
  margin-bottom: 65px;
}

.popup-bg h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.popup-bg span {
  font-size: 18px;
  font-weight: 400;
}

.close-popup-1 {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup-1:before {
  content: "";
  background-color: #fff;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup-1:after {
  content: "";
  background-color: #fff;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup-1 {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.js-overlay-campaign-1 img {
  width: 100px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}

.a-btn {
  padding: 10px 40px;
  background-color: #791515;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
}
.a-btn:hover {
  color: #fff;
}

h2 {
  color: #154167;
  font-weight: bold;
  font-size: 40px;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  box-shadow: 0px 0px 18px -6px rgba(0, 0, 0, 0.35);
}
.header .header-top {
  padding: 5px 0;
  background-color: #fff;
}
.header .header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top .container .logo img {
  width: 130px;
}
.header .header-top .container nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.header .header-top .container nav ul li {
  list-style-type: none;
}
.header .header-top .container nav ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin: 0 30px;
}
.header .header-top .container .lang .active img {
  border: 2px solid #791515;
}
.header .header-top .container .lang a {
  margin: 0 10px;
}
.header .header-top .container .lang a img {
  width: 30px;
  border: 1px solid #154167;
}
.header .header-top .container .lang a img:hover {
  border: 2px solid #791515;
}

.header-content {
  background: url(../img/bg.jpg) center center/cover no-repeat;
}
.header-content .bg {
  background-color: rgba(255, 255, 255, 0.6);
}
.header-content .container {
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.header-content .container h1 {
  font-weight: bold;
  width: 70%;
  font-size: 50px;
  color: #154167;
}
.header-content .container h1 span {
  font-weight: 900;
}
.header-content .container a {
  font-size: 22px;
  display: inline-block;
  margin-top: 50px;
}

.about {
  padding: 50px 0;
}
.about .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about .content .text {
  width: 49%;
}
.about .content .text p {
  font-weight: 500;
  color: #154167;
}
.about .content .img {
  width: 49%;
}
.about .content .img img {
  width: 100%;
  border-radius: 20px;
}
.about .block {
  margin-top: 30px;
}
.about .block p {
  font-weight: 500;
  color: #154167;
}
.about .block .p {
  font-weight: bold;
  color: #154167;
}
.about .block a {
  color: #154167;
}

.products {
  padding: 50px 0;
  text-align: center;
  background-color: #E4F0F9;
}
.products .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.products .items .item {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}
.products .items .item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.products .items .item h3 {
  font-weight: bold;
  color: #154167;
  margin-top: 15px;
  font-size: 22px;
  margin-bottom: 0;
}

.categories {
  padding: 50px 0;
  text-align: center;
}
.categories .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.categories .items img {
  height: 90px;
  margin: 15px;
}

.contact {
  padding: 50px 0;
  background-color: #E4F0F9;
}
.contact h2 {
  text-align: center;
}
.contact .content {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  font-weight: 500;
  color: #154167;
  font-size: 18px;
}
.contact .content a {
  color: #154167;
  font-weight: bold;
  font-size: 20px;
}
.contact .content iframe {
  width: 100%;
  height: 300px;
}
.contact span {
  text-align: center;
  display: block;
}

.modal-body form .input-email {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #791515;
  margin-bottom: 20px;
}
.modal-body form .btn-email {
  border: none;
}

@media (max-width: 1400px) {
  .categories .items img {
    height: 80px;
  }
}
@media (max-width: 1400px) {
  .header-content .container h1 {
    font-size: 40px;
  }
  .products .items {
    grid-template-columns: repeat(3, 1fr);
  }
  .header-content .container {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .header .header-top .container nav {
    display: none;
  }
  .about .content {
    flex-direction: column-reverse;
  }
  .about .content .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .about .content .img img {
    width: 100%;
    height: auto;
  }
  .about .content .text {
    width: 100%;
  }
  .about .block {
    margin-top: 0px;
  }
  .products .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .header .header-top .container .logo img {
    width: 100px;
  }
  .header .header-top .container .a-btn {
    padding: 5px 15px;
    font-size: 14px;
  }
  .header-content .container {
    height: auto;
    padding: 30px 0;
  }
  .header-content .container h1 {
    width: 100%;
    font-size: 30px;
  }
  .header-content .container a {
    margin-top: 20px;
  }
  .header-content .container a {
    font-size: 14px;
  }
  h2 {
    font-size: 30px;
  }
  .categories .items img {
    height: 70px;
    margin: 10px;
  }
  .contact .content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .products .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .categories .items img {
    height: 40px;
  }
  .contact .content {
    font-size: 16px;
  }
  .header .header-top .container .a-btn {
    font-size: 12px;
  }
  .header .header-top .container .logo img {
    width: 70px;
  }
  .header .header-top .container .lang a {
    margin: 0 5px;
  }
  .header .header-top .container .lang a img {
    height: 15px;
    width: auto;
  }
  .header-content .container h1 {
    font-size: 25px;
  }
  .about, .products, .categories, .contact {
    padding: 30px 0;
  }
  .popup-bg {
    width: 90%;
    padding: 50px;
  }
}/*# sourceMappingURL=style.css.map */