@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: calc(100% - 50px);
  max-width: 1600px;
  position: relative;
  margin: 0 auto;
  padding: 25px;
}

a.page-button {
  display: flex;
  width: 180px;
  height: 30px;
  background: transparent;
  border-bottom: 2px solid #3FC0F0;
  padding: 15px 0 0 0;
  justify-content: space-between;
  position: relative;
}
a.page-button span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
a.page-button svg {
  width: 18px;
  height: 18px;
  fill: #2D346B;
}

a.page-button.blue span {
  color: #2D346B;
}

a.page-button.orange span {
  color: #3FC0F0;
}
a.page-button.orange svg {
  fill: #3FC0F0;
}

a.page-button.white {
    border-bottom: 2px solid #fff;
}

a.page-button.white span {
    color: #fff;
}

a.page-button.white svg {
    fill: #fff;
}

body.home #background-photo {
  background-size: cover;
  min-height: 800px;
  height: auto;
  overflow: hidden;
  position: relative;
}

#background-photo {
  background-size: cover;
  height: auto;
  overflow: hidden;
  position: relative;
}
#background-photo .gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

#header {
  display: flex;
  flex-direction: column;
  padding: 10px 20px 20px 20px;
  width: calc(100% - 40px);
  height: 120px;
  position: relative;
  background: transparent;
  gap: 10px 0;
}
#header .top-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#header .top-header .socials-header {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}
#header .top-header .socials-header .social-icon-header {
  width: 25px;
  height: 25px;
}
#header .top-header .socials-header .social-icon-header svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}
#header .top-header .info-header {
  display: flex;
  flex-direction: row;
  gap: 0 20px;
}
#header .top-header .info-header .adress-header,
#header .top-header .info-header .mail-header,
#header .top-header .info-header .phone-header {
  display: flex;
  gap: 10px;
}
#header .top-header .info-header .adress-header .icon,
#header .top-header .info-header .mail-header .icon,
#header .top-header .info-header .phone-header .icon {
  width: 25px;
  height: 25px;
}
#header .top-header .info-header .adress-header .icon svg,
#header .top-header .info-header .mail-header .icon svg,
#header .top-header .info-header .phone-header .icon svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}
#header .top-header .info-header .adress-header .data,
#header .top-header .info-header .mail-header .data,
#header .top-header .info-header .phone-header .data {
  display: flex;
  align-items: center;
}
#header .top-header .info-header .adress-header .data p,
#header .top-header .info-header .mail-header .data p,
#header .top-header .info-header .phone-header .data p {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
}
#header .border-header {
  width: calc(100% - 40px);
  padding: 1px 20px 0;
  height: 0;
  background: #5d5e60;
  display: flex;
}
#header .bottom-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#header .bottom-header .logo-header {
  width: 200px;
  height: 80px;
}
#header .bottom-header .logo-header svg {
  width: 200px;
  height: 80px;
  fill: #ffffff;
}
#header .bottom-header .menu-header {
  display: flex;
}
#header .bottom-header .menu-header ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  gap: 0 25px;
}
#header .bottom-header .menu-header ul li {
  padding: 20px 0 20px;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  transition: 200ms ease-in-out;
  cursor: pointer;
}
#header .bottom-header .menu-header ul li.current-menu-item {
  color: #3FC0F0;
  border-bottom: 2px solid #3FC0F0;
}
#header .bottom-header .menu-header ul li:hover {
  color: #3FC0F0;
}
#header .mobile-menu-header {
  display: none;
}
#header .mobile-menu-header .hamburger {
  width: 50px;
  height: 50px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#header .mobile-menu-header .hamburger .line {
  display: block;
  position: absolute;
  height: 7.5px;
  width: 50px;
  background: #ffffff;
  border-radius: 5px;
  opacity: 1;
  right: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#header .mobile-menu-header .hamburger .line:nth-child(1) {
  top: 0px;
}
#header .mobile-menu-header .hamburger .line:nth-child(2) {
  top: 20px;
  width: 30px;
}
#header .mobile-menu-header .hamburger .line:nth-child(3) {
  top: 40px;
}
#header .mobile-menu-header .hamburger.open .line:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}
#header .mobile-menu-header .hamburger.open .line:nth-child(2) {
  opacity: 0;
  right: -60px;
}
#header .mobile-menu-header .hamburger.open .line:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

#menu-mobile {
  width: calc(100% - 40px);
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  position: absolute;
  z-index: 999999;
  right: -500%;
  transition: 200ms ease-in-out;
}
#menu-mobile.open {
  right: 0;
}
#menu-mobile .content-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}
#menu-mobile .content-menu .nav {
  display: flex;
}
#menu-mobile .content-menu .nav ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  gap: 0 25px;
}
#menu-mobile .content-menu .nav ul li {
  padding: 10px 0;
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
}
#menu-mobile .content-menu .nav ul li.current-menu-item {
  color: #3FC0F0;
  border-bottom: 2px solid #3FC0F0;
}
#menu-mobile .content-menu .nav ul li:hover {
  color: #3FC0F0;
}
#menu-mobile .content-menu .socials {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}
#menu-mobile .content-menu .socials .social-icon-header {
  width: 25px;
  height: 25px;
}
#menu-mobile .content-menu .socials .social-icon-header svg {
  width: 25px;
  height: 25px;
  fill: #000000;
}
#menu-mobile .content-menu .company-data {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  align-items: center;
}
#menu-mobile .content-menu .company-data .adress-header,
#menu-mobile .content-menu .company-data .mail-header,
#menu-mobile .content-menu .company-data .phone-header {
  display: flex;
  gap: 10px;
}
#menu-mobile .content-menu .company-data .adress-header .icon,
#menu-mobile .content-menu .company-data .mail-header .icon,
#menu-mobile .content-menu .company-data .phone-header .icon {
  width: 25px;
  height: 25px;
}
#menu-mobile .content-menu .company-data .adress-header .icon svg,
#menu-mobile .content-menu .company-data .mail-header .icon svg,
#menu-mobile .content-menu .company-data .phone-header .icon svg {
  width: 25px;
  height: 25px;
  fill: #000000;
}
#menu-mobile .content-menu .company-data .adress-header .data,
#menu-mobile .content-menu .company-data .mail-header .data,
#menu-mobile .content-menu .company-data .phone-header .data {
  display: flex;
  align-items: center;
}
#menu-mobile .content-menu .company-data .adress-header .data p,
#menu-mobile .content-menu .company-data .mail-header .data p,
#menu-mobile .content-menu .company-data .phone-header .data p {
  font-size: 12px;
  color: #000000;
  margin: 0;
}

#slider {
  width: calc(100% - 40px);
  height: auto;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
}
#slider .title-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
}
#slider .title-slider h1 {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
#slider .title-slider p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

#about-company {
  width: calc(100% - 40px);
  height: auto;
  padding: 60px 20px;
  display: flex;
  background: #EAF8FD;
}
#about-company .content-about-company {
  display: flex;
}
#about-company .content-about-company .left {
  width: calc(50% - 50px);
  padding: 0 50px 0 0;
  display: flex;
  flex-direction: column;
  gap: 100px 0;
}
#about-company .content-about-company .left .title {
  width: 100%;
  position: relative;
}
#about-company .content-about-company .left .title span {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#about-company .content-about-company .left .title h2 {
  text-align: left;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
}
#about-company .content-about-company .left .title h2 span {
  text-align: left;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#about-company .content-about-company .left .title p {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
  line-height: 25px;
}
#about-company .content-about-company .right {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
#about-company .content-about-company .right .photo {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}
#about-company .content-about-company .right .photo:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}
#about-company .content-about-company .right .photo img {
  width: auto;
  min-width: 400px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

#why-us {
  width: calc(100% - 40px);
  height: auto;
  padding: 60px 20px;
  display: flex;
  background: #ffffff;
}
#why-us .title {
  width: 100%;
  position: relative;
}
#why-us .title span {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#why-us .title h2 {
  text-align: left;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
}
#why-us .title h2 span {
  text-align: left;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#why-us .title p {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
  line-height: 25px;
}
#why-us .boxes {
  display: flex;
  gap: 0 50px;
}
#why-us .boxes .box {
  display: flex;
  flex-direction: row;
  gap: 0 20px;
  flex: 0 0 calc(25% - 38px);
  max-width: 25%;
  padding: 30px 0;
}
#why-us .boxes .box .icon-box {
  width: 75px;
  height: 75px;
}
#why-us .boxes .box .icon-box svg {
  width: 75px;
  height: 75px;
  fill: #634090;
}
#why-us .boxes .box .icon-box svg path {
  fill: #634090;
}
#why-us .boxes .box .content-box {
  display: flex;
  flex-direction: column;
}
#why-us .boxes .box .content-box .title-box h2 {
  font-size: 18px;
  font-weight: 600;
  color: #2D346B;
}
#why-us .boxes .box .content-box .description-box p {
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
}

#opinions {
  width: calc(100% - 40px);
  height: auto;
  padding: 60px 20px;
  display: flex;
  background: #ffffff;
}
#opinions .title {
  width: 100%;
  position: relative;
}
#opinions .title span {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#opinions .title h2 {
  text-align: left;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
}
#opinions .title h2 span {
  text-align: left;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#opinions .title p {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
  line-height: 25px;
}
#opinions .opinions-boxes {
  display: flex;
  padding: 30px 0;
}
#opinions .opinions-boxes.swiper {
  max-width: 1000px;
  align-items: center;
  gap: 0 50px;
}
#opinions .opinions-boxes .swiper-wrapper {
  max-width: 1000px;
}
#opinions .opinions-boxes .opinion-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #a7abb6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  display: none;
}
#opinions .opinions-boxes .opinion-prev svg {
  width: 20px;
  height: 20px;
  fill: #3FC0F0;
}
#opinions .opinions-boxes .opinion-prev:hover {
  background: #3FC0F0;
}
#opinions .opinions-boxes .opinion-prev:hover svg {
  fill: #ffffff;
}
#opinions .opinions-boxes .opinion-box {
  display: flex;
  flex-direction: row;
  gap: 0 20px;
  border: 1px solid #a7abb6;
  padding: 50px;
  width: calc(100% - 102px) !important;
  max-width: 900px !important;
}
#opinions .opinions-boxes .opinion-box .icon-opinion {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: start;
}
#opinions .opinions-boxes .opinion-box .icon-opinion svg {
  width: 100px;
  height: 100px;
  fill: #634090;
}
#opinions .opinions-boxes .opinion-box .icon-opinion svg path {
  fill: #634090;
}
#opinions .opinions-boxes .opinion-box .opinion-content {
  display: flex;
  flex-direction: column;
}
#opinions .opinions-boxes .opinion-box .opinion-content .title-opinion {
  display: flex;
  align-items: start;
  gap: 0 5px;
}
#opinions .opinions-boxes .opinion-box .opinion-content .title-opinion p {
  font-size: 14px;
  font-weight: 600;
}
#opinions .opinions-boxes .opinion-box .opinion-content .title-opinion p#name {
  color: #000000;
}
#opinions
  .opinions-boxes
  .opinion-box
  .opinion-content
  .title-opinion
  p#company {
  color: #634090;
}
#opinions .opinions-boxes .opinion-box .opinion-content .description-opinion p {
  font-size: 14px;
  font-weight: 400;
  color: #a7abb6;
  line-height: 25px;
}
#opinions .opinions-boxes .opinion-next {
  width: 40px;
  height: 40px;
  border: 1px solid #a7abb6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  display: none;
}
#opinions .opinions-boxes .opinion-next svg {
  width: 20px;
  height: 20px;
  fill: #3FC0F0;
}
#opinions .opinions-boxes .opinion-next:hover {
  background: #3FC0F0;
}
#opinions .opinions-boxes .opinion-next:hover svg {
  fill: #ffffff;
}

#offer {
  width: calc(100% - 40px);
  height: auto;
  padding: 60px 20px;
  display: flex;
  background: #ffffff;
}
#offer .title {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}
#offer .title span {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#offer .title h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
}
#offer .title h2 span {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#offer .title p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
  line-height: 25px;
}
#offer .offer-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 30px 0 60px;
}
#offer .offer-boxes .offer-box {
  flex: 0 0 calc(33% - 46px);
  max-width: 33.33%;
  display: flex;
  align-items: center;
  gap: 0 25px;
  padding: 20px;
}
#offer .offer-boxes .offer-box.orange {
  background: #EAF8FD;
}
#offer .offer-boxes .offer-box.blue {
  background: #F1EAF9;
}
#offer .offer-boxes .offer-box .icon-offer {
  width: 65px;
  height: 65px;
}
#offer .offer-boxes .offer-box .icon-offer svg {
  width: 65px;
  height: 65px;
  fill: #634090;
}
#offer .offer-boxes .offer-box .icon-offer svg path {
  fill: #634090;
  stroke: #634090;
}
#offer .offer-boxes .offer-box .title-offer h2 {
  font-size: 16px;
  font-weight: 600;
  color: #2D346B;
}
#offer .offer-boxes .offer-box .title-offer h2 span {
  font-size: 16px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#offer .button-offer {
  display: flex;
  justify-content: center;
}

#gallery {
  width: calc(100% - 40px);
  height: auto;
  padding: 60px 20px;
  display: flex;
  background: #ffffff;
}
#gallery .title {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}
#gallery .title span {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#gallery .title h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
}
#gallery .title h2 span {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#gallery .title p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
  line-height: 25px;
}
#gallery .photos {
  display: flex;
  padding: 30px 0 60px;
  align-items: center;
  gap: 0 15px;
}
#gallery .photos .photos-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #a7abb6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  display: none;
}
#gallery .photos .photos-prev svg {
  width: 20px;
  height: 20px;
  fill: #3FC0F0;
}
#gallery .photos .photos-prev:hover {
  background: #3FC0F0;
}
#gallery .photos .photos-prev:hover svg {
  fill: #ffffff;
}
#gallery .photos .swiper-wrapper {
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
}
#gallery .photos .swiper-wrapper .photo {
  display: flex;
  height: 300px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  filter: opacity(0.5);
}
#gallery .photos .swiper-wrapper .photo.swiper-slide-active {
  height: 400px;
  filter: none;
}
#gallery .photos .swiper-wrapper .photo.swiper-slide-active img {
  width: 100%;
  min-width: 600px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
#gallery .photos .swiper-wrapper .photo img {
  width: 100%;
  min-width: 500px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
#gallery .photos .photos-next {
  width: 40px;
  height: 40px;
  border: 1px solid #a7abb6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  display: none;
}
#gallery .photos .photos-next svg {
  width: 20px;
  height: 20px;
  fill: #3FC0F0;
}
#gallery .photos .photos-next:hover {
  background: #3FC0F0;
}
#gallery .photos .photos-next:hover svg {
  fill: #ffffff;
}
#gallery .button-gallery {
  display: flex;
  justify-content: center;
}

#contact {
  width: calc(100% - 40px);
  height: auto;
  padding: 60px 20px;
  display: flex;
  background: #ffffff;
}
#contact .title {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}
#contact .title span {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#contact .title h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
}
#contact .title h2 span {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #2D346B;
  display: block;
}
#contact .title p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
  line-height: 25px;
}
#contact .contact-content {
  display: flex;
  padding: 30px 0 60px;
}
#contact .contact-content .left-contact {
  width: 45%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  gap: 100px 0;
}
#contact .contact-content .left-contact .company-data {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
#contact .contact-content .left-contact .company-data .name-company h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
}
#contact .contact-content .left-contact .company-data .adress-company {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
#contact .contact-content .left-contact .company-data .adress-company p {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
#contact .contact-content .left-contact .company-data .contact-company {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .phone-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 10px;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .phone-number
  .icon {
  width: 35px;
  height: 35px;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .phone-number
  .icon
  svg {
  width: 35px;
  height: 35px;
  fill: #3FC0F0;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .phone-number
  .data
  a {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
#contact .contact-content .left-contact .company-data .contact-company .e-mail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 10px;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .e-mail
  .icon {
  width: 35px;
  height: 35px;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .e-mail
  .icon
  svg {
  width: 35px;
  height: 35px;
  fill: #3FC0F0;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .e-mail
  .data
  a {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
#contact .contact-content .left-contact .company-data .socials-company {
  display: flex;
  gap: 0 15px;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .socials-company
  .social-media-icon {
  width: 25px;
  height: 25px;
}
#contact
  .contact-content
  .left-contact
  .company-data
  .socials-company
  .social-media-icon
  svg {
  width: 25px;
  height: 25px;
  fill: #2D346B;
}
#contact .contact-content .right-contact {
  width: calc(55% - 100px);
  padding: 50px;
  background: #EAF8FD;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#contact .contact-content .right-contact .top-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
#contact .contact-content .right-contact .top-contact-form .customer-data {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#contact
  .contact-content
  .right-contact
  .top-contact-form
  .customer-data
  input {
  font-family: "Montserrat", sans-serif;
  flex: 0 0 calc(50% - 44px);
  max-width: 50%;
  padding: 15px;
  border: 1px solid #a7abb6;
  color: #a7abb6;
  font-size: 12px;
  font-weight: 500;
  outline: none;
}
#contact
  .contact-content
  .right-contact
  .top-contact-form
  .customer-data
  input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact
  .contact-content
  .right-contact
  .top-contact-form
  .customer-data
  input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact .contact-content .right-contact .top-contact-form .customer-message {
  display: flex;
}
#contact
  .contact-content
  .right-contact
  .top-contact-form
  .customer-message
  input {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  padding: 60px 15px;
  border: 1px solid #a7abb6;
  color: #a7abb6;
  font-size: 12px;
  font-weight: 500;
  outline: none;
}
#contact
  .contact-content
  .right-contact
  .top-contact-form
  .customer-message
  input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact
  .contact-content
  .right-contact
  .top-contact-form
  .customer-message
  input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact .contact-content .right-contact .bottom-contact-form {
  display: flex;
  justify-content: space-between;
  gap: 0 15px;
}
#contact .contact-content .right-contact .bottom-contact-form .accept {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: 60%;
}
#contact .contact-content .right-contact .bottom-contact-form .accept input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#contact
  .contact-content
  .right-contact
  .bottom-contact-form
  .accept
  input::before {
  content: "✔";
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #a7abb6;
  border-radius: 0;
  display: block;
  transition: 200ms ease-in-out;
  cursor: pointer;
  text-align: center;
  color: transparent;
  font-size: 18px;
  line-height: 20px;
}
#contact
  .contact-content
  .right-contact
  .bottom-contact-form
  .accept
  input:checked::before {
  background: #ffffff;
  color: #3FC0F0;
}
#contact .contact-content .right-contact .bottom-contact-form .accept label p {
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
}
#contact
  .contact-content
  .right-contact
  .bottom-contact-form
  .accept
  label
  p
  a {
  color: #3FC0F0;
  text-decoration: underline;
}
#contact .contact-content .right-contact .bottom-contact-form .send {
  width: 40%;
}
#contact
  .contact-content
  .right-contact
  .bottom-contact-form
  .send
  a.page-button {
  width: 100%;
}

#footer {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 10px 20px;
  width: calc(100% - 40px);
  position: relative;
  background: #2D346B;
  gap: 10px 0;
}
#footer .content-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px 0;
}
#footer .top-footer {
  display: flex;
}
#footer .top-footer .menu-header {
  display: flex;
}
#footer .top-footer .menu-header ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  align-items: center;
}
#footer .top-footer .menu-header ul li {
  padding: 0 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid #5d5e60;
}
#footer .top-footer .menu-header ul li:last-child {
  border: none;
}
#footer .top-footer .menu-header ul li.active {
  color: #3FC0F0;
}
#footer .bottom-footer p {
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
} /*# sourceMappingURL=style.css.map */

#gallery-page {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 25px 0;
}

#gallery-page .gallery-content {
  display: flex;
  margin: 50px 0 25px;
  gap: 0 15px;
}

#gallery-page .gallery-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 15px;
  flex-wrap: wrap;
}

#gallery-page .gallery-content ul > li {
  display: flex;
  flex: 0 0 calc(25% - 12px);
  max-width: 25%;
}

#gallery-page .gallery-content ul > li a {
  display: flex;
  width: 100%;
  height: 100%;
}

#gallery-page .gallery-content .photo {
  display: flex;
  width: 100%;
  height: 300px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#gallery-page .gallery-content .photo img {
  width: 100%;
  min-width: 500px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

#contact-page #contact {
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding: 25px 0;
  position: relative;
  margin: 0 auto;
}

#contact-page #contact .contact-content {
  display: flex;
  margin: 50px 0 25px;
}

#contact-page #contact .contact-content .company-data {
  display: flex;
  flex-direction: column;
  background: #2D346B;
  width: calc(50% - 50px);
  padding: 25px;
  gap: 75px 0;
  justify-content: space-between;
}

#contact-page #contact .contact-content .company-data .top-data {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

#contact-page #contact .contact-content .company-data .top-data .company-name h2 {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 10px 0;
}

#contact-page #contact .contact-content .company-data .top-data .company-adress {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

#contact-page #contact .contact-content .company-data .top-data .company-adress p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

#contact-page #contact .contact-content .company-data .top-data .company-contact {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .phone-number,
#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .email-adress {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}

#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .phone-number
  .icon,
#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .phone-number
  .icon
  svg,
#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .email-adress
  .icon,
#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .email-adress
  .icon
  svg {
  width: 40px;
  height: 40px;
}

#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .phone-number
  .icon
  svg,
#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .email-adress
  .icon
  svg {
  fill: #3FC0F0;
}

#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .phone-number
  .data,
#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .email-adress
  .data {
  display: flex;
  align-items: center;
}

#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .phone-number
  .data
  a,
#contact-page #contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .email-adress
  .data
  a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

#contact-page #contact .contact-content .company-data .bottom-data {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

#contact-page #contact .contact-content .company-data .bottom-data .button {
  margin: 10px 0;
}

#contact-page #contact .contact-content .company-data .bottom-data .social-buttons {
  display: flex;
  flex-direction: row;
  gap: 0 15px;
}

#contact-page #contact
  .contact-content
  .company-data
  .bottom-data
  .social-buttons
  .social-media-icon,
#contact-page #contact
  .contact-content
  .company-data
  .bottom-data
  .social-buttons
  .social-media-icon
  svg {
  width: 30px;
  height: 30px;
}

#contact-page #contact
  .contact-content
  .company-data
  .bottom-data
  .social-buttons
  .social-media-icon
  svg {
  fill: #ffffff;
}

#contact-page #contact .contact-content .company-map {
  display: flex;
  width: 50%;
  position: relative;
  overflow: hidden;
}

#contact-page #contact .contact-content .company-map #map {
  width: 100%;
  height: 100%;
}