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

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

.popup {
  border-radius: 5px;
  text-align: center;
  position: absolute;
  width: 350px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  background-color: #fff;
  color: #000;
}

.popup h3 {
  font-size: 26px;
  margin-bottom: 25px;
}

.popup p {
  font-size: 16px;
  color: #5c5c5c;
  font-weight: 300;
}

.popup button {
  width: 240px;
  padding: 10px;
  color: #9d9d9e;
  border-radius: 6px;
  border: 1px solid #9d9d9e;
  margin-top: 20px;
  background-color: #fff;
  font-size: 20px;
  transition: 0.3s all;
}
.popup button:hover {
  background-color: #9d9d9e;
  color: #fff;
}

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

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

.close-popup:after {
  content: "";
  background-color: #9d9d9e;
  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;
  }
}
.popup-1 {
  text-align: center;
  position: absolute;
  width: 350px;
  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: 350px;
  display: flex;
  padding: 30px 20px;
}

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

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

.close-popup-1:after {
  content: "";
  background-color: #9d9d9e;
  position: absolute;
  height: 2px;
  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;
}

.header {
  margin: 15px 0;
}
.header .container {
  border-radius: 25px;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.header .container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 14, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.header .container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .container .header-top {
  background-color: #fff;
  border: 1px solid #85B200;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  z-index: 3;
}
.header .container .header-top .logo img {
  width: 250px;
}
.header .container .header-top nav ul {
  padding: 0;
  margin: 0;
  display: flex;
}
.header .container .header-top nav ul li {
  list-style-type: none;
}
.header .container .header-top nav ul li a {
  color: #000;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  margin: 0 20px;
}
.header .container .header-top nav ul li a:hover {
  text-decoration: underline;
}
.header .container .header-top .lang {
  display: flex;
  align-items: center;
}
.header .container .header-top .lang a {
  color: #4790FC;
  margin: 0 5px;
  font-weight: bold;
  text-decoration: none;
}
.header .container .header-top .lang .active {
  color: #85B200;
  text-decoration: underline;
}
.header .container .header-block {
  margin-top: 100px;
  padding-bottom: 150px;
  position: relative;
  z-index: 3;
}
.header .container .header-block .text {
  padding-left: 70px;
  color: #fff;
  width: 100%;
  max-width: 600px;
}
.header .container .header-block .text h1 {
  font-size: 60px;
  font-weight: 900;
  margin: 0;
}
.header .container .header-block .text p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 30px;
}
.header .container .header-block .text .btn-a {
  border: 2px solid #fff;
}

.btn-a {
  background-color: #85B200;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #85B200;
  display: inline-block;
  transition: 0.3s all;
}
.btn-a:hover {
  background-color: #fff;
  color: #85B200;
}

.md-bottom {
  margin-bottom: 100px;
}

.about .text {
  display: flex;
  justify-content: space-between;
}
.about .text h2 {
  font-weight: 900;
  font-size: 40px;
  width: 40%;
}
.about .text h2 span {
  color: #85B200;
}
.about .text p {
  font-size: 25px;
  width: 55%;
  color: #41565e;
}

.h2 {
  font-weight: 800;
  font-size: 55px;
  margin-bottom: 30px;
}

.services .container {
  background-color: #EEEEEE;
  border-radius: 25px;
  padding: 30px;
}
.services .container .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.services .container .items .item {
  background-color: #fff;
  border-radius: 25px;
  padding: 20px;
  transition: 0.3s all;
}
.services .container .items .item h3 {
  font-size: 37px;
  margin-bottom: 35px;
  text-align: right;
  font-weight: 700;
}
.services .container .items .item h4 {
  margin-bottom: 15px;
  color: #4790FC;
  font-weight: bold;
  font-size: 20px;
}
.services .container .items .item p {
  margin: 0;
  color: #a7b9c0;
}
.services .container .items .item:hover {
  background-color: #4790FC;
  color: #fff;
}
.services .container .items .item:hover h4 {
  color: #fff;
}
.services .container .items .item:hover p {
  color: #fff;
}

.logo-block .container {
  background-color: #4790FC;
  border-radius: 25px;
  padding: 30px;
  color: #fff;
}
.logo-block .container .items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.logo-block .container .items .item {
  background-color: #fff;
  border-radius: 25px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-block .container .items .item img {
  width: 90%;
  height: auto;
}

.form .container {
  background-color: #EEEEEE;
  border-radius: 25px;
  padding: 30px;
}
.form .container h2 {
  margin-bottom: 20px;
}
.form .container p {
  font-size: 20px;
}
.form .container form {
  margin-top: 50px;
}
.form .container .block-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form .container .block-form .input-email {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  border: none;
  outline: none;
}
.form .container .btn-a {
  margin-top: 20px;
}

.contact {
  padding-bottom: 30px;
}
.contact .contact-content {
  padding-bottom: 30px;
}
.contact .contact-content .text {
  display: flex;
  justify-content: space-between;
}
.contact .contact-content .text .map .logo img {
  width: 270px;
  margin-bottom: 30px;
}
.contact .contact-content .text .map iframe {
  width: 100%;
  height: 250px;
  border-radius: 20px;
}
.contact .contact-content .text .item h4 {
  font-weight: 700;
  font-size: 18px;
}
.contact .contact-content .text .item a, .contact .contact-content .text .item p {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 25px;
}
.contact .container-bg {
  text-align: center;
  background-color: #EEEEEE;
  border-radius: 25px;
  padding: 30px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .contact .contact-content .text {
    gap: 20px;
  }
  .header .container .header-top nav {
    display: none;
  }
}
@media (max-width: 991px) {
  .header .container .header-top .logo img {
    width: 200px;
  }
  .header .container .header-block .text h1 {
    font-size: 50px;
  }
  .about .text p {
    font-size: 20px;
  }
  .services .container .items {
    grid-template-columns: repeat(2, 1fr);
  }
  .h2 {
    font-size: 40px;
  }
  .logo-block .container .items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  body {
    padding: 0 20px;
  }
  .header .container .header-block {
    padding-bottom: 50px;
    margin-top: 50px;
  }
  .header .container .header-block .text h1 {
    font-size: 35px;
  }
  .header .container .header-block .text p {
    font-size: 16px;
  }
  .about .text {
    flex-direction: column;
  }
  .about .text h2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .about .text p {
    width: 100%;
  }
  .md-bottom {
    margin-bottom: 50px;
  }
  .contact .contact-content .text {
    flex-direction: column;
    gap: 0;
  }
  .contact .contact-content .text .map {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .about .text h2, .h2 {
    font-size: 30px;
  }
  .services .container .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .services .container .items .item h3 {
    margin-bottom: 15px;
  }
  .logo-block .container .items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .logo-block .container .items .item {
    border-radius: 10px;
  }
  .form .container .block-form {
    grid-template-columns: repeat(1, 1fr);
  }
  .form .container p {
    font-size: 16px;
    margin: 0;
  }
  .form .container form {
    margin-top: 20px;
  }
  .contact .contact-content .text .item a, .contact .contact-content .text .item p {
    font-size: 18px;
  }
  .contact .contact-content .text .map .logo img {
    width: 180px;
  }
  .header .container .header-top {
    padding: 10px;
  }
  .header .container .header-top .logo img {
    width: 150px;
  }
  .header .container .header-top .btn-a {
    font-size: 12px;
  }
  .header .container .header-block .text {
    padding-left: 30px;
  }
  .header .container .header-block .text h1 {
    font-size: 30px;
  }
  .about .text p {
    font-size: 18px;
  }
  .contact .container-bg {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */