@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header {
  width: 100%;
  position: fixed;
  z-index: 3;
}
header .upper-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 10rem;
  background: #383636;
  color: #ffffff;
  font-size: 1.8rem;
}
header .upper-nav p {
  padding: 0rem 1rem;
  color: #ffffff !important;
}
header .upper-nav p span {
  color: #2EB8E6;
  font-weight: bold;
}
header .upper-nav p:first-child {
  padding-left: 0;
}
header .upper-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
header .upper-nav a svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: #ffffff;
  margin: 0.3rem;
}
header .lower-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}
header .lower-nav .logo {
  width: 8rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-nav .logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
header .lower-nav .logo img {
  width: 100%;
  height: 100%;
}
header .lower-nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .lower-nav nav ul li {
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 2rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-nav nav ul li:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
header .lower-nav nav ul li a {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-nav nav ul li a:hover {
  color: #2EB8E6;
}

#slider {
  width: 100%;
  padding-top: 16rem;
  height: 100vh;
  position: relative;
}
#slider .swiper {
  width: 100%;
  height: 100%;
}
#slider .swiper .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#slider .swiper .swiper-wrapper .swiper-slide .slide-text {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  padding: 5rem;
  padding-left: 17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#slider .swiper .swiper-wrapper .swiper-slide .slide-text h2 {
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 1rem 0rem;
}
#slider .swiper .swiper-wrapper .swiper-slide .slide-text p {
  font-size: 1.8rem;
  text-align: center;
  margin: 1rem 0rem;
}
#slider .swiper .swiper-wrapper .swiper-slide .slide-img {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#slider .swiper .swiper-wrapper .swiper-slide .slide-img .image {
  background: url(img/slide-example.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: inline-block;
  -webkit-clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0% 100%);
}
#slider .stain1 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 35rem;
  z-index: 2;
}
#slider .stain2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 35rem;
  z-index: 2;
  margin-top: 15rem;
}

.btn {
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0.5rem 2rem;
  background: #EA1664;
  border-radius: 30px;
  margin: 1rem 0rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.toggle {
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.6rem 3rem;
  width: 100%;
  border-bottom: 2px solid #000000;
  background: #ffffff;
}
.toggle .logo {
  width: 5rem;
}
.toggle .logo img {
  width: 100%;
}
.toggle svg {
  width: 3rem;
  height: 3rem;
}

#about {
  padding: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  width: 100%;
}
#about .about-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 4rem;
}
#about .about-img img {
  width: 100%;
}
#about .about-text {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 4rem;
}
#about .about-text h2 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
#about .about-text p {
  font-size: 1.8rem;
}

#services {
  padding: 8rem;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}
#services h2 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 1rem 2rem;
}
#services p {
  font-size: 2rem;
  font-weight: 700;
  color: #2EB8E6;
  margin: 1rem 2rem;
}
#services .services-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 4rem 0rem;
}
#services .services-row .service {
  width: 38rem;
  min-height: 48rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem;
  margin: 2rem;
}
#services .services-row .service h3 {
  text-align: center;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: bold;
  margin: 1rem 0rem;
}
#services .services-row .service img {
  width: 10rem;
  height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#services .services-row .service ol {
  list-style-type: disc;
  margin-bottom: 1rem;
  list-style-position: inside;
}
#services .services-row .service ol li {
  font-size: 1.8rem;
}

#references {
  padding: 8rem;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}
#references h2 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 1rem 2rem;
}
#references .references-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#references .references-row a {
  width: 38rem;
  height: 28rem;
  position: relative;
  margin: 2rem;
}
#references .references-row a img {
  width: 38rem;
  height: 28rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.38);
          filter: brightness(0.38);
}
#references .references-row a .img-heading {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
}
#references .references-row a .img-heading h3 {
  color: #ffffff;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin: 1.5rem;
}

#contact {
  padding: 8rem 0rem;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#contact .contact-form {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  padding: 0rem 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#contact .contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#contact .contact-form form h2 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 1.5rem;
  margin-bottom: 0;
}
#contact .contact-form form input {
  width: 40rem;
  padding: 0.5rem 1.5rem;
  padding-left: 0;
  font-size: 1.8rem;
  border: none;
  border-bottom: 2px solid #969696;
  outline: none;
  margin: 1.5rem;
}
#contact .contact-form form label {
  margin: 0.5rem 1.5rem;
  font-size: 1.6rem;
}
#contact .contact-form form input[type=submit] {
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0.5rem 2rem;
  background: #EA1664;
  border-radius: 30px;
  margin: 1rem 0rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  border: none;
  cursor: pointer;
  width: 18rem;
  -ms-flex-item-align: start;
      align-self: start;
  margin: 1.5rem;
}
#contact .contact-form form input[type=submit]:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#contact .contact-form form textarea {
  width: 83rem;
  height: 25rem;
  padding: 0.5rem 1.5rem;
  padding-left: 1.5rem;
  font-size: 1.8rem;
  border: 2px solid #969696;
  outline: none;
  margin: 1.5rem;
  resize: vertical;
}
#contact .contact-details {
  position: relative;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
#contact .contact-details .contact-table {
  background: #383636;
  padding: 5rem;
}
#contact .contact-details .contact-table h3 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
}
#contact .contact-details .contact-table .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 2rem 0rem;
}
#contact .contact-details .contact-table .contact-info svg {
  width: 4rem;
  height: 4rem;
  fill: #ffffff;
  margin-right: 1rem;
}
#contact .contact-details .contact-table .contact-info p {
  color: #ffffff !important;
  font-size: 1.8rem;
}
#contact .contact-details .contact-table .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
}
#contact .contact-details .contact-table .socials a svg {
  width: 4rem;
  height: 4rem;
  fill: #ffffff;
  margin-right: 1rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#contact .contact-details .contact-table .socials a svg:hover {
  fill: #2EB8E6;
}
#contact .contact-details .stain3 {
  position: absolute;
  width: 28rem;
  top: -15rem;
  right: 0;
  height: auto;
  z-index: -1;
}

footer {
  width: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#2EB8E6), to(#EA1664));
  background: linear-gradient(270deg, #2EB8E6 0%, #EA1664 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 8rem;
  font-size: 1.8rem;
  color: #ffffff;
  font-size: bold;
}
footer a {
  color: #ffffff;
  font-size: bold;
}
footer svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
}

#gdpr {
  padding: 8rem;
  width: 100%;
  padding-top: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
#gdpr h1 {
  font-size: 4rem;
  color: #000000;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: bold;
}
#gdpr h2 {
  font-size: 4rem;
  margin: 1rem 0rem;
  text-transform: uppercase;
  font-weight: bold;
}
#gdpr p {
  font-size: 1.8rem;
  margin: 1rem 0rem;
}

#cookies {
  width: 42.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 3;
  bottom: 0;
  right: 0;
  border: 3px solid #000;
}

#cookies p {
  font-size: 1.6rem;
  color: #000;
}

#cookies a {
  font-size: 1.8rem;
  color: #000;
  font-weight: bold;
}

#cookies .cookies-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 2rem;
}

#cookies .cookies-btns .btn-w {
  background: none;
  font-size: 1.8rem;
  border: 3px solid #000;
  margin: 1rem;
  color: #000;
  padding: 0.5rem 2rem;
}

#cookies .cookies-btns .btn-w:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#cookies .cookies-btns .btn-d {
  background: #000;
  font-size: 1.8rem;
  border: 3px solid #fff;
  margin: 1rem;
  padding: 0.5rem 2rem;
  color: #ffffff;
}

#cookies .cookies-btns .btn-d:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Fix 8.5.2023 */
.swiper-pagination-bullet-active {
  background: #EA1664 !important;
}

.swiper-pagination-bullet{
  width: 14px !important;
  height: 14px !important;
}

@media (min-width: 1921px) {
  header .upper-nav {
    padding: 2rem 15rem;
    font-size: 2.5rem;
  }
  header .upper-nav a svg {
    width: 3rem;
    height: 3rem;
    margin: 0.5rem;
  }
  header .lower-nav {
    padding: 1.2rem 15rem;
  }
  header .lower-nav .logo {
    width: 12rem;
  }
  header .lower-nav nav ul li {
    font-size: 3rem;
    margin: 0 3rem;
  }
  #slider {
    padding-top: 24rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    padding: 8rem;
    padding-left: 24rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text h2 {
    font-size: 8rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text p {
    font-size: 2.5rem;
  }
  #slider .stain1 {
    height: 50rem;
  }
  #slider .stain2 {
    height: 50rem;
    margin-top: 28rem;
  }
  #about .about-img {
    padding: 6rem;
  }
  #about .about-text {
    padding: 6rem;
  }
  #about .about-text h2 {
    font-size: 6rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  #about .about-text p {
    font-size: 2.5rem;
  }
  #services h2 {
    font-size: 6rem;
    margin: 1rem 6rem;
  }
  #services p {
    font-size: 3rem;
    margin: 1rem 6rem;
  }
  #services .services-row {
    margin: 4rem 0rem;
  }
  #services .services-row .service {
    width: 42rem;
    min-height: 55rem;
    margin: 3rem;
    padding: 4rem;
  }
  #services .services-row .service h3 {
    font-size: 3.5rem;
  }
  #services .services-row .service img {
    width: 12rem;
    height: 12rem;
  }
  #services .services-row .service ol li {
    font-size: 2.5rem;
  }
  .btn {
    font-size: 3rem;
    padding: 1rem 4rem;
  }
  #references h2 {
    font-size: 6rem;
    margin: 2rem 4rem;
  }
  #references .references-row {
    margin: 2rem 0rem;
    width: 100%;
  }
  #references .references-row a {
    width: 48rem;
    height: 35rem;
    margin: 3rem;
  }
  #references .references-row a img {
    width: 48rem;
    height: 35rem;
  }
  #references .references-row a .img-heading h3 {
    font-size: 3rem;
  }
  #contact .contact-form {
    padding: 0rem 8rem;
  }
  #contact .contact-form form h2 {
    font-size: 6rem;
    margin: 2rem;
  }
  #contact .contact-form form input {
    width: 50rem;
    padding: 1rem 2rem;
    padding-left: 0;
    font-size: 2.5rem;
    margin: 2rem;
  }
  #contact .contact-form form input[type=submit] {
    font-size: 2.5rem;
    padding: 1rem 2rem;
    width: 25rem;
    margin: 2rem;
  }
  #contact .contact-form form textarea {
    width: 105rem;
    height: 35rem;
    padding: 1rem 2rem;
    font-size: 2.5rem;
    margin: 2rem;
  }
  #contact .contact-details .contact-table {
    padding: 6rem;
  }
  #contact .contact-details .contact-table h3 {
    font-size: 4rem;
  }
  #contact .contact-details .contact-table .contact-info svg {
    width: 5rem;
    height: 5rem;
    margin-right: 2rem;
  }
  #contact .contact-details .contact-table .contact-info p {
    font-size: 2.5rem;
  }
  #contact .contact-details .contact-table .socials {
    margin-top: 6rem;
  }
  #contact .contact-details .contact-table .socials a svg {
    width: 5rem;
    height: 5rem;
    margin-right: 2rem;
  }
  #contact .contact-details .stain3 {
    width: 35rem;
    top: -18rem;
  }
  #gdpr {
    padding-top: 30rem;
  }
  #gdpr h1 {
    font-size: 6rem;
  }
  #gdpr h2 {
    font-size: 4rem;
  }
  #gdpr p {
    font-size: 2.5rem;
  }
}
@media (max-width: 1440px) {
  header .upper-nav {
    padding: 0.8rem 5rem;
    font-size: 1.8rem;
  }
  header .upper-nav a svg {
    width: 2rem;
    height: 2rem;
  }
  header .lower-nav {
    width: 100%;
    padding: 0.5rem 5rem;
  }
  header .lower-nav .logo {
    width: 7rem;
  }
  header .lower-nav nav ul li {
    font-size: 2rem;
    margin: 0 1.5rem;
  }
  #slider {
    padding-top: 13.5rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 3rem;
    padding-left: 13.5rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text h2 {
    font-size: 4rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-img .image {
    -webkit-clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
  }
  #slider .stain1 {
    height: 28rem;
  }
  #slider .stain2 {
    height: 28rem;
    margin-top: 15rem;
  }
  #about {
    padding: 5rem;
  }
  #about .about-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 3rem;
  }
  #about .about-text {
    padding: 3rem;
  }
  #about .about-text h2 {
    font-size: 3rem;
  }
  #about .about-text p {
    font-size: 1.6rem;
  }
  #services {
    padding: 5rem;
    padding-top: 0;
  }
  #services h2 {
    font-size: 3rem;
    margin: 0.5rem 2rem;
  }
  #services p {
    font-size: 2rem;
    margin: 0.5rem 2rem;
  }
  #services .services-row {
    margin: 4rem 0rem;
    margin-bottom: 0;
  }
  #services .services-row .service {
    width: 32rem;
    min-height: 40rem;
    padding: 2.5rem;
    margin: 2rem;
  }
  #services .services-row .service h3 {
    font-size: 2.2rem;
  }
  #services .services-row .service img {
    width: 8rem;
    height: 8rem;
  }
  #services .services-row .service ol li {
    font-size: 1.6rem;
  }
  #references {
    padding: 5rem;
    padding-top: 0;
  }
  #references h2 {
    font-size: 3rem;
  }
  #references .references-row a .img-heading h3 {
    font-size: 1.8rem;
    margin: 1rem;
  }
  #contact {
    padding: 5rem 0rem;
  }
  #contact .contact-form {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    padding: 0rem 5rem;
  }
  #contact .contact-form form h2 {
    font-size: 3rem;
  }
  #contact .contact-form form input {
    width: 35rem;
    font-size: 1.6rem;
    margin: 1rem;
  }
  #contact .contact-form form input[type=submit] {
    font-size: 1.8rem;
    width: 16rem;
    margin: 1rem;
  }
  #contact .contact-form form textarea {
    width: 72rem;
    height: 20rem;
    padding: 0.5rem 1.5rem;
    padding-left: 1.5rem;
    font-size: 1.6rem;
    margin: 1rem;
  }
  #contact .contact-details {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
  }
  #contact .contact-details .contact-table {
    padding: 4rem;
  }
  #contact .contact-details .contact-table h3 {
    font-size: 2.5rem;
  }
  #contact .contact-details .contact-table .contact-info {
    margin: 1rem 0rem;
  }
  #contact .contact-details .contact-table .contact-info svg {
    width: 3rem;
    height: 3rem;
  }
  #contact .contact-details .contact-table .contact-info p {
    font-size: 1.6rem;
  }
  #contact .contact-details .contact-table .socials a svg {
    width: 3rem;
    height: 3rem;
  }
  #contact .contact-details .stain3 {
    width: 20rem;
    top: -10rem;
  }
  footer {
    padding: 1rem 6rem;
    font-size: 1.6rem;
  }
  footer svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  #gdpr {
    padding: 5rem;
    padding-top: 15rem;
  }
  #gdpr h1 {
    font-size: 3rem;
  }
  #gdpr h2 {
    font-size: 2.5rem;
  }
  #gdpr p {
    font-size: 1.6rem;
  }
}
@media (max-width: 1366px) {
  header .upper-nav {
    padding: 0.8rem 5rem;
    font-size: 1.8rem;
  }
  header .upper-nav a svg {
    width: 2rem;
    height: 2rem;
  }
  header .lower-nav {
    width: 100%;
    padding: 0.5rem 5rem;
  }
  header .lower-nav .logo {
    width: 7rem;
  }
  header .lower-nav nav ul li {
    font-size: 2rem;
    margin: 0 1.5rem;
  }
  #slider {
    padding-top: 13.5rem;
  }
  #services {
    padding: 3rem;
    padding-top: 0;
  }
  #services .services-row {
    margin: 3rem 0rem;
    margin-bottom: 0;
  }
  #services .services-row .service {
    width: 26rem;
    min-height: 35rem;
    padding: 2rem;
    margin: 2rem;
  }
  #services .services-row .service h3 {
    font-size: 2rem;
  }
  #services .services-row .service img {
    width: 7rem;
    height: 7rem;
  }
  #contact {
    padding: 4rem 0rem;
  }
  #contact .contact-form form input {
    width: 25rem;
  }
  #contact .contact-form form textarea {
    width: 52rem;
  }
}
@media (max-width: 1024px) {
  header .upper-nav {
    padding: 0.5rem 3rem;
    font-size: 1.6rem;
  }
  header .upper-nav a svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  header .lower-nav {
    padding: 0.5rem 3rem;
  }
  header .lower-nav .logo {
    width: 6rem;
  }
  header .lower-nav nav ul li {
    font-size: 1.8rem;
    margin: 0 1rem;
  }
  #slider {
    padding-top: 11.6rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text {
    padding: 3rem 10rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text h2 {
    font-size: 3rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text p {
    font-size: 1.6rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text .btn {
    font-size: 1.8rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-img .image {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  #slider .stain1 {
    height: 20rem;
  }
  #slider .stain2 {
    height: 20rem;
    margin-top: 13rem;
  }
  #about {
    padding: 3rem;
  }
  #about .about-img {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    padding: 3rem;
  }
  #about .about-text {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 3rem;
  }
  #references {
    padding: 3rem;
    padding-top: 0;
  }
  #references .references-row a {
    width: 35rem;
    height: 25rem;
  }
  #references .references-row a img {
    width: 35rem;
    height: 25rem;
  }
  #gdpr {
    padding: 3rem;
    padding-top: 14rem;
  }
}
@media (max-width: 1023px) {
  #contact {
    padding: 4rem 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .contact-form {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 6rem;
  }
  #contact .contact-details {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  #contact .contact-details .contact-table {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header {
    height: 12rem;
  }
  header .upper-nav .row {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .upper-nav .row:nth-child(2) {
    display: none;
  }
  header .lower-nav {
    padding: 2rem;
  }
  header .lower-nav .logo {
    display: none;
  }
  header .lower-nav nav {
    width: 100%;
    padding: 0rem;
  }
  header .lower-nav nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .lower-nav nav ul li {
    margin: 0.5rem;
  }
  header .lower-nav nav ul li a {
    font-size: 2rem;
  }
  .active-menu {
    opacity: 1;
    visibility: visible;
  }
  .not-active-menu {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  #slider {
    padding-top: 10.6rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 3rem 5rem;
  }
  #slider .swiper .swiper-wrapper .swiper-slide .slide-img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #slider .stain1 {
    height: 18rem;
  }
  #slider .stain2 {
    height: 18rem;
  }
  #about .about-img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 2rem;
  }
  #about .about-text {
    padding: 2rem;
  }
  #references .references-row a {
    width: 30rem;
    height: 22rem;
  }
  #references .references-row a img {
    width: 30rem;
    height: 22rem;
  }
  #contact .contact-form {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .email {
    display: none;
  }
  header .upper-nav .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #contact .contact-form {
    padding: 0 3rem;
  }
  #contact .contact-form form .row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #contact .contact-form form input {
    width: 100%;
    margin: 1.5rem 0rem;
  }
  #contact .contact-form form textarea {
    width: 100%;
    margin: 1.5rem 0rem;
  }
  #contact .contact-details .stain3 {
    width: 15rem;
    top: -8rem;
  }
  footer {
    padding: 0.5rem 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  footer p {
    margin: 0.5rem;
  }
  footer p a {
    margin: 0rem;
  }
  footer a {
    margin: 0.5rem;
  }
}
@media (max-width: 425px) {
  #slider .swiper .swiper-wrapper .swiper-slide .slide-text {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 3rem 3rem;
  }
  #slider .stain1 {
    height: 15rem;
  }
  #slider .stain2 {
    height: 15rem;
  }
  #about .about-img {
    padding: 2rem 0rem;
  }
  #about .about-text {
    padding: 2rem 0rem;
    padding-top: 0;
  }
  #services .services-row .service {
    width: 28rem;
    min-height: 34rem;
    margin: 2rem 0rem;
    padding: 3rem;
  }
  #references h2 {
    margin: 1rem 0rem;
  }
  #references .references-row {
    position: relative;
  }
  #references .references-row a {
    width: 100%;
    margin: 1rem 0rem;
  }
  #references .references-row a img {
    width: 100%;
  }
  #references .references-row a .img-heading h3 {
    font-size: 2rem;
    margin: 1.5rem;
  }
  #cookies {
    width: 100%;
  }
  #cookies p {
    font-size: 1.6rem;
  }
  #cookies a {
    font-size: 1.6rem;
  }
  #cookies .cookies-btns .btn-w, #cookies .cookies-btns .btn-d {
    font-size: 1.8rem;
    border: 2px solid #ffffff;
  }
}
@media (max-width: 375px) {
  header .upper-nav {
    padding: 0.5rem 1.5rem;
  }
}