html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FBFBFB;
}

* {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

.section-container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.section-container-small {
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.section-container-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn {
  background-color: #2AC5F4;
  padding: 7px 35px;
  font-size: 21px;
  border: none;
  color: white;
  cursor: pointer;
  margin-top: 17px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 50px;
  background: #fff;
  left: -55px;
  top: -40px;
  -webkit-transform: rotate(37deg);
          transform: rotate(37deg);
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0.3;
}

.btn:hover:before {
  left: 95%;
}

header nav {
  height: 80px;
  background-color: white;
  position: fixed;
  width: 100%;
  box-shadow: 1px 1px 12px 0px rgba(192, 192, 192, 0.473);
  -webkit-box-shadow: 1px 1px 12px 0px rgba(192, 192, 192, 0.473);
  -moz-box-shadow: 1px 1px 12px 0px rgba(192, 192, 192, 0.473);
  border-bottom: 2px solid #2AC5F4;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

header nav .nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

header nav .nav-bar-logo {
  width: 245px;
}

header nav .nav-bar-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav .nav-bar-logo a img {
  height: 60px;
}

header nav .nav-bar-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav .nav-bar-links ul li {
  list-style-type: none;
  margin: 0px 18px;
}

header nav .nav-bar-links ul li a {
  font-size: 17px;
  color: #303030;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 0px solid #2AC5F4;
}

header nav .nav-bar-links ul li a:hover {
  border-bottom: 2px solid #2AC5F4;
}

@media only screen and (max-width: 1199px) {
  header nav .nav-bar-links {
    display: none;
  }
}

header nav .nav-bar-social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 245px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header nav .nav-bar-social-media-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .nav-bar-social-media-icons a {
  text-decoration: none;
  margin: 0px 9px;
}

header nav .nav-bar-social-media-icons a:hover {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

header nav .nav-bar-social-media-call-me {
  margin-left: 9px;
}

header nav .nav-bar-social-media-call-me a {
  text-decoration: none;
}

header nav .nav-bar-social-media-call-me a button {
  background-color: #0D0D0D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E8E8E8;
  font-weight: bold;
  font-size: 15px;
  border: none;
  cursor: pointer;
  padding: 7px 15px;
  border-radius: 5px;
  width: 138px;
}

header nav .nav-bar-social-media-call-me a button svg {
  margin-right: 7px;
}

header nav .nav-bar-social-media-call-me a button:hover {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media only screen and (max-width: 1199px) {
  header nav .nav-bar-social-media {
    display: none;
  }
}

header nav .nav-bar .open-mobile-menu {
  display: none;
  cursor: pointer;
}

@media only screen and (max-width: 1199px) {
  header nav .nav-bar .open-mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header nav .nav-bar .menu-mobile {
  display: none;
}

header nav .nav-bar .menu-mobile-active {
  height: 100%;
  position: fixed;
  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: right;
      -ms-flex-pack: right;
          justify-content: right;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f7f7f7;
}

header nav .nav-bar .menu-mobile-active .close-the-menu {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 30px;
}

header nav .nav-bar .menu-mobile-active .close-the-menu img {
  cursor: pointer;
}

header nav .nav-bar .menu-mobile-active ul {
  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;
}

header nav .nav-bar .menu-mobile-active ul li {
  list-style-type: none;
  margin: 6px 0px;
  border-bottom: 1px solid #b9b9b9;
}

header nav .nav-bar .menu-mobile-active ul li a {
  text-decoration: none;
  font-size: 30px;
  color: #252525;
}

header nav .nav-bar .menu-mobile-active .mobile-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

header nav .nav-bar .menu-mobile-active .mobile-call a {
  text-decoration: none;
}

header nav .nav-bar .menu-mobile-active .mobile-call a button {
  background-color: #0D0D0D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #E8E8E8;
  font-weight: bold;
  font-size: 15px;
  border: none;
  cursor: pointer;
  padding: 7px 15px;
  border-radius: 5px;
}

header nav .nav-bar .menu-mobile-active .mobile-call a button svg {
  margin-right: 7px;
}

header nav .nav-bar .menu-mobile-active .nav-bar-social-media-icons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

header .nav-active {
  height: 60px;
}

header .first-view .swiper-container {
  height: 80vh;
  min-height: 625px;
  overflow: hidden;
}

header .first-view .swiper-container .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  -webkit-filter: brightness(77%);
          filter: brightness(77%);
}

header .first-view .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

header .first-view .swiper-container .swiper-button-next {
  color: rgba(255, 255, 255, 0.548);
}

header .first-view .swiper-container .swiper-button-prev {
  color: rgba(255, 255, 255, 0.548);
}

@media (max-height: 700px) {
  header .first-view .swiper-container {
    min-height: 555px;
  }
}

header .first-view .main-title {
  position: absolute;
  top: 30%;
  z-index: 5;
  width: 100%;
}

header .first-view .main-title .main-title-container {
  text-align: center;
}

header .first-view .main-title .main-title-container h1 {
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.57);
  font-size: 66px;
  color: #E8E8E8;
  font-weight: 400;
  margin: 0px 10px 0px 10px;
}

@media only screen and (max-width: 1199px) {
  header .first-view .main-title .main-title-container h1 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 769px) {
  header .first-view .main-title .main-title-container h1 {
    font-size: 40px;
  }
}

header .first-view .main-title .main-title-container-sep {
  display: inline-block;
  height: 1px;
  width: 160px;
  background-color: #E8E8E8;
}

header .first-view .main-title .main-title-container h3 {
  font-size: 26px;
  color: #E8E8E8;
  font-weight: 300;
  margin-top: 12px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.57);
}

@media only screen and (max-width: 1199px) {
  header .first-view .main-title .main-title-container h3 {
    font-size: 22px;
  }
}

header .first-view .main-title .main-title-container button {
  background-color: #2AC5F4;
  padding: 7px 35px;
  font-size: 21px;
  border: none;
  color: white;
  cursor: pointer;
  margin-top: 17px;
}

@media only screen and (max-width: 1199px) {
  header .first-view .main-title .main-title-container button {
    font-size: 18px;
    padding: 6px 35px;
  }
}

@media (max-height: 780px) {
  header .first-view .main-title {
    top: 210px;
  }
}

@media (max-height: 700px) {
  header .first-view .main-title {
    top: 180px;
  }
}

header .first-view .windows-at-the-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  bottom: 65px;
  z-index: 10;
}

header .first-view .windows-at-the-bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 10px 0px 10px;
}

header .first-view .windows-at-the-bottom-container .windows-at-the-bottom-item {
  width: 250px;
  height: 250px;
  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;
  border-right: 1px solid #E2E2E2;
  background-color: white;
  cursor: default;
  -webkit-box-shadow: 20px 25px 22px 0px rgba(59, 59, 59, 0.055);
          box-shadow: 20px 25px 22px 0px rgba(59, 59, 59, 0.055);
}

header .first-view .windows-at-the-bottom-container .windows-at-the-bottom-item svg {
  width: 35px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 35px;
}

header .first-view .windows-at-the-bottom-container .windows-at-the-bottom-item .windows-at-the-bottom-item-text {
  margin: 0px 15px;
  text-align: center;
}

header .first-view .windows-at-the-bottom-container .windows-at-the-bottom-item .windows-at-the-bottom-item-text h3 {
  margin-top: 15px;
  color: #5C5C5C;
  font-size: 20px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-weight: 300;
}

header .first-view .windows-at-the-bottom-container .windows-at-the-bottom-item .windows-at-the-bottom-item-text p {
  margin-top: 8px;
  color: #8A8A8A;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1199px) {
  header .first-view .windows-at-the-bottom-container .windows-at-the-bottom-item {
    border: none;
    -webkit-box-shadow: 20px 25px 22px 0px rgba(59, 59, 59, 0.055);
            box-shadow: 20px 25px 22px 0px rgba(59, 59, 59, 0.055);
  }
}

header .first-view .windows-at-the-bottom-container .windows-at-the-bottom-item:last-child {
  border: none;
}

header .first-view .windows-at-the-bottom-container .windows-at-the-bottom-item:hover > .windows-at-the-bottom-item-text h3 {
  color: #2AC5F4;
}

@media only screen and (max-width: 1199px) {
  header .first-view .windows-at-the-bottom-container {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.section .container {
  text-align: center;
}

.section .container .container-title {
  margin-bottom: 10px;
}

.section .container .container-title .sep {
  display: inline-block;
  height: 1px;
  width: 80px;
  margin-bottom: 10px;
  background-color: #2AC5F4;
}

.section .container .container-title h2 {
  font-size: 31px;
}

.section .container .container-title .under-the-title {
  color: #2ac5f4b6;
  cursor: default;
}

main .offer {
  margin-bottom: 50px;
}

main .offer .container .offer-container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

main .offer .container .offer-container .offer-tiles-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .offer .container .offer-container .offer-tiles-container .oferr-tile-container {
  width: 325px;
}

main .offer .container .offer-container .offer-tiles-container .oferr-tile-container .offer-tile {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px 0px;
  text-align: left;
  margin-left: 48px;
}

main .offer .container .offer-container .offer-tiles-container .oferr-tile-container .offer-tile h3 {
  color: #2d2d2d;
  font-size: 20px;
}

main .offer .container .offer-container .offer-tiles-container .oferr-tile-container .offer-tile .offer-tile-sep {
  display: inline-block;
  height: 2px;
  width: 50px;
  margin: 5px 0px 5px 0px;
  background-color: #2AC5F4;
}

main .offer .container .offer-container .offer-tiles-container .oferr-tile-container .offer-tile ul li {
  color: #7E7E7E;
  font-size: 18px;
  font-weight: 300;
  list-style: none;
  margin: 3px 0px 3px 0px;
}

main .offer .container .offer-container .offer-tiles-container .oferr-tile-container .offer-tile ul li::before {
  content: "\2022";
  color: #2AC5F4;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

@media only screen and (max-width: 1115px) {
  main .offer .container .offer-container .offer-tiles-container .oferr-tile-container .offer-tile {
    width: 295px;
  }
}

@media only screen and (max-width: 1115px) {
  main .offer .container .offer-container {
    max-width: 886px;
  }
}

main .offer .container .under-the-content {
  color: #2ac5f4b6;
  cursor: default;
  margin: 10px 20px 0px 20px;
  font-size: 16px;
}

main .about-company {
  background-color: white;
  padding: 90px 0px 90px 0px;
}

main .about-company .section-container {
  width: auto;
}

main .about-company .about-company-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main .about-company .about-company-container .about-company-text {
  width: 55%;
}

main .about-company .about-company-container .about-company-text h2 {
  font-weight: 400;
  font-size: 33px;
}

@media only screen and (max-width: 1199px) {
  main .about-company .about-company-container .about-company-text h2 {
    font-size: 30px;
  }
}

main .about-company .about-company-container .about-company-text .about-company-text-sep {
  display: inline-block;
  height: 1px;
  width: 80px;
  margin-top: 20px;
  margin-bottom: 10px;
  background-color: #2AC5F4;
}

main .about-company .about-company-container .about-company-text p {
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #727272;
  margin-bottom: 7px;
  padding-right: 85px;
}

@media only screen and (max-width: 1199px) {
  main .about-company .about-company-container .about-company-text p {
    font-size: 17px;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 1000px) {
  main .about-company .about-company-container .about-company-text p {
    text-align: justify;
  }
}

@media (max-width: 860px) {
  main .about-company .about-company-container .about-company-text p {
    padding-right: 0;
  }
}

main .about-company .about-company-container .about-company-text .under-the-about-company {
  color: #2ac5f4b6;
  font-size: 16px;
  cursor: default;
}

@media only screen and (max-width: 1199px) {
  main .about-company .about-company-container .about-company-text .under-the-about-company {
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  main .about-company .about-company-container .about-company-text {
    width: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 550px) {
  main .about-company .about-company-container .about-company-text {
    margin-bottom: 30px;
  }
}

main .about-company .about-company-container .about-company-img {
  overflow: hidden;
  width: 45%;
}

main .about-company .about-company-container .about-company-img img {
  width: 100%;
  height: 315px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(223, 223, 223, 0.582);
          box-shadow: 0px 0px 22px 0px rgba(223, 223, 223, 0.582);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  main .about-company .about-company-container .about-company-img img {
    max-width: 427px;
    max-height: 236px;
    width: 100%;
    height: 100%;
  }
}

main .about-company .about-company-container .about-company-img img:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

@media (max-width: 860px) {
  main .about-company .about-company-container .about-company-img {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 860px) {
  main .about-company .about-company-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 1000px) {
  main .about-company {
    padding: 50px 0px;
  }
}

main .realizations {
  padding-top: 60px;
  padding-bottom: 50px;
  text-align: center;
}

main .realizations .realizations-container {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .realizations .realizations-container .realization-galerry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main .realizations .realizations-container .realization-galerry .photo-in-gallery {
  max-height: 350px;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  width: calc((100% / 3) - (1.5rem / 3));
  overflow: hidden;
}

main .realizations .realizations-container .realization-galerry .photo-in-gallery img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(223, 223, 223, 0.582);
          box-shadow: 0px 0px 22px 0px rgba(223, 223, 223, 0.582);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

main .realizations .realizations-container .realization-galerry .photo-in-gallery img:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

@media (max-width: 1100px) {
  main .realizations .realizations-container .realization-galerry .photo-in-gallery {
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    width: calc((100% / 2) - (0.75rem / 2));
  }
}

@media (max-width: 500px) {
  main .realizations .realizations-container .realization-galerry .photo-in-gallery {
    width: 100%;
    margin-right: 0;
  }
}

@media (min-width: 1101px) {
  main .realizations .realizations-container .realization-galerry .photo-in-gallery:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 1100px) {
  main .realizations .realizations-container .realization-galerry .photo-in-gallery:nth-child(2n) {
    margin-right: 0;
  }
}

main .realizations .realizations-container button {
  width: 170px;
  background-color: #2AC5F4;
  border: none;
  color: white;
  font-size: 19px;
  padding: 6px 0px;
  cursor: pointer;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-top: 5px;
}

main .contact {
  padding-top: 60px;
  padding-bottom: 50px;
  background: rgba(187, 170, 204, 0.03);
}

main .contact .contact-container {
  margin-bottom: 30px;
}

main .contact .contact-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0px;
  background-color: #FDFDFD;
  border-left: 10px solid #2AC5F4;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .contact .contact-content .contact-content-information {
  margin-left: 90px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

main .contact .contact-content .contact-content-information h3 {
  font-size: 27px;
}

@media only screen and (max-width: 850px) {
  main .contact .contact-content .contact-content-information h3 {
    font-size: 24px;
  }
}

main .contact .contact-content .contact-content-information .under-the-title {
  color: #5B5B5B;
  font-size: 16px;
}

@media only screen and (max-width: 850px) {
  main .contact .contact-content .contact-content-information .under-the-title {
    font-size: 14px;
  }
}

main .contact .contact-content .contact-content-information .contact-social-media .contact-social-media-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  margin: 12px 0px;
  color: #3a3a3a;
}

main .contact .contact-content .contact-content-information .contact-social-media .contact-social-media-item .contact-social-media-item-icon {
  width: 30px;
  margin-right: 20px;
  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;
}

main .contact .contact-content .contact-content-information .contact-social-media .contact-social-media-item a {
  text-decoration: none;
  color: #3a3a3a;
}

@media only screen and (max-width: 850px) {
  main .contact .contact-content .contact-content-information .contact-social-media .contact-social-media-item {
    font-size: 18px;
  }
}

main .contact .contact-content .contact-content-information .contact-social-media .contact-social-media-item:first-child img {
  margin-right: 28px;
}

main .contact .contact-content .contact-content-information .follow-us {
  font-size: 20px;
  font-weight: 400;
}

main .contact .contact-content .contact-content-information .contact-social-media-container {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .contact .contact-content .contact-content-information .contact-social-media-container .social-media-icon-contact {
  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;
  width: 33px;
  height: 33px;
  border: 1px solid black;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main .contact .contact-content .contact-content-information .contact-social-media-container .social-media-icon-contact:hover {
  border: 1px solid #2AC5F4;
}

@media only screen and (max-width: 1050px) {
  main .contact .contact-content .contact-content-information {
    margin-left: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media only screen and (max-width: 850px) {
  main .contact .contact-content .contact-content-information {
    margin: 0px 0px 0px 20px;
  }
}

@media only screen and (max-width: 850px) {
  main .contact .contact-content .contact-content-information {
    margin: 0px 0px 0px 20px;
  }
}

@media only screen and (max-width: 650px) {
  main .contact .contact-content .contact-content-information {
    margin: 0;
  }
}

main .contact .contact-content .contact-content-form {
  margin-right: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .contact .contact-content .contact-content-form h3 {
  font-size: 20px;
}

main .contact .contact-content .contact-content-form .contact-content-forms {
  width: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

main .contact .contact-content .contact-content-form .contact-content-forms .contact-form {
  border: none;
  background: #E7E7E7;
  margin: 7px 0px;
  padding: 10px 13px 10px 13px;
  font-size: 15px;
}

main .contact .contact-content .contact-content-form .contact-content-forms .message {
  height: 100px;
  max-width: 450px;
  max-height: 200px;
}

@media only screen and (max-width: 700px) {
  main .contact .contact-content .contact-content-form .contact-content-forms .message {
    max-width: 700px;
  }
}

main .contact .contact-content .contact-content-form .contact-content-forms button {
  width: 150px;
  background-color: #2AC5F4;
  border: none;
  color: white;
  font-size: 19px;
  padding: 5px 45px;
  cursor: pointer;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 5px;
}

@media only screen and (max-width: 1050px) {
  main .contact .contact-content .contact-content-form .contact-content-forms {
    width: 365px;
  }
}

@media only screen and (max-width: 700px) {
  main .contact .contact-content .contact-content-form .contact-content-forms {
    width: 530px;
  }
}

@media only screen and (max-width: 600px) {
  main .contact .contact-content .contact-content-form .contact-content-forms {
    width: 450px;
  }
}

@media only screen and (max-width: 510px) {
  main .contact .contact-content .contact-content-form .contact-content-forms {
    width: 390px;
  }
}

@media only screen and (max-width: 450px) {
  main .contact .contact-content .contact-content-form .contact-content-forms {
    width: 330px;
  }
}

@media only screen and (max-width: 400px) {
  main .contact .contact-content .contact-content-form .contact-content-forms {
    width: 300px;
  }
}

@media only screen and (max-width: 1050px) {
  main .contact .contact-content .contact-content-form {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 850px) {
  main .contact .contact-content .contact-content-form {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 700px) {
  main .contact .contact-content .contact-content-form {
    margin-top: 20px;
    margin-right: 0;
  }
}

@media only screen and (max-width: 1050px) {
  main .contact .contact-content {
    border: none;
  }
}

@media only screen and (max-width: 850px) {
  main .contact .contact-content {
    border: none;
  }
}

@media only screen and (max-width: 700px) {
  main .contact .contact-content {
    -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;
  }
}

@media only screen and (max-width: 1050px) {
  main .contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

footer {
  background-color: #141414;
  border-top: 5px solid #2AC5F4;
}

footer .footer-top {
  text-align: center;
  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;
}

footer .footer-top img {
  margin-top: 15px;
  width: 223px;
}

footer .footer-top p {
  color: #808080;
  font-size: 15px;
  max-width: 510px;
  margin: 0px 20px 20px 20px;
}

footer .footer-top button {
  text-decoration: none;
  color: #C0C0C0;
  font-size: 15px;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}

footer .footer-bottom {
  margin-top: 20px;
  text-align: center;
  padding: 14px 0px;
  border-top: 1px solid #252525;
}

footer .footer-bottom p {
  font-size: 15px;
  color: #939393;
}

.information-about-cookies {
  display: none;
  position: fixed;
  bottom: 0;
  text-align: center;
  border-top: 2px solid #2AC5F4;
  background-color: rgba(255, 255, 255, 0.514);
  width: 100%;
  z-index: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #575757;
}

.information-about-cookies p {
  color: #303030;
  padding: 5px 0px;
  font-size: 14px;
}

@media only screen and (max-width: 1000px) {
  .information-about-cookies p {
    font-size: 11px;
    color: #575757;
  }
}

.information-about-cookies img {
  width: 13px;
  height: 13px;
  cursor: pointer;
  margin-left: 20px;
  margin-right: 10px;
}

.gallery-swiper {
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  position: fixed;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.8);
}

.gallery-swiper .close-gallery {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 15;
}

.gallery-swiper .close-gallery img {
  cursor: pointer;
}

.gallery-swiper .swiper-container-gallery {
  height: 100vh;
}

.gallery-swiper .swiper-container-gallery .swiper-wrapper .swiper-slide {
  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;
}

.gallery-swiper .swiper-container-gallery .swiper-wrapper .swiper-slide picture {
  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;
}

.gallery-swiper .swiper-container-gallery .swiper-wrapper .swiper-slide img {
  max-height: 90vh;
  max-width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: -webkit-grab;
  cursor: grab;
}

@media (max-width: 575px) {
  .gallery-swiper .swiper-container-gallery .swiper-wrapper .swiper-slide img {
    max-width: 97%;
  }
}

.gallery-swiper .swiper-container-gallery .swiper-button-next {
  color: white;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

@media only screen and (max-width: 1000px) {
  .gallery-swiper .swiper-container-gallery .swiper-button-next {
    right: 5px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

.gallery-swiper .swiper-container-gallery .swiper-button-next:hover {
  color: #d8d8d8;
}

.gallery-swiper .swiper-container-gallery .swiper-button-prev {
  color: white;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

@media only screen and (max-width: 1000px) {
  .gallery-swiper .swiper-container-gallery .swiper-button-prev {
    left: 5px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

.gallery-swiper .swiper-container-gallery .swiper-button-prev:hover {
  color: #d8d8d8;
}

#offer {
  scroll-margin-top: 70px;
}

#about-company {
  scroll-margin-top: 60px;
}

#realization {
  scroll-margin-top: 70px;
}

#contact {
  scroll-margin-top: 70px;
}

.cookie-message {
  display: none;
}

.cookie-message-active {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.534);
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
}

.cookie-message-active .cookie-message-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.cookie-message-active .cookie-message-close img {
  cursor: pointer;
}

.cookie-message-active .cookie-message-container {
  max-width: 1200px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  background-color: #ececec;
  border: 1px solid #2AC5F4;
  margin-top: 10px;
  padding: 20px 20px 30px 20px;
  margin: 20px;
}

.cookie-message-active .cookie-message-text h2 {
  font-size: 27px;
  margin-bottom: 15px;
  color: #2D2D2D;
}

.cookie-message-active .cookie-message-text h3 {
  font-size: 19px;
  margin-bottom: 10px;
  margin-top: 6px;
  color: #444444;
}

.cookie-message-active .cookie-message-text p {
  color: #707070;
}

.cookie-message-active button {
  margin-top: 30px;
  font-size: 16px;
  padding: 5px 25px;
  background-color: #2AC5F4;
  border: none;
  color: white;
  cursor: pointer;
}

.certificates {
  border-top: 2px solid #2AC5F4;
  border-bottom: 2px solid #2AC5F4;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  padding-bottom: 45px;
}

.certificates-title {
  padding: 45px 0px;
}

.certificates-title h2 {
  font-size: 31px;
  font-weight: 500;
  text-align: center;
  color: white;
}

.certificates-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.certificates-content-tile {
  margin-bottom: 0.6rem;
  margin-right: 0.6rem;
  margin-left: 0.6rem;
  width: calc((100% / 3) - (3.6rem / 3));
}

.certificates-content-tile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1100px) {
  .certificates-content-tile {
    margin-bottom: 1rem;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    width: calc((100% / 2) - (2rem / 2));
  }
}

@media (max-width: 500px) {
  .certificates-content-tile {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.no-webp .certificates {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.808)), to(rgba(0, 0, 0, 0.808))), url(../img/room.jpg) no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.808)), url(../img/room.jpg) no-repeat;
}

.webp .certificates {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.808)), to(rgba(0, 0, 0, 0.808))), url(../img/room.webp) no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.808)), url(../img/room.webp) no-repeat;
}
/*# sourceMappingURL=style.css.map */