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 {
  width: 200px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f18a18;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

a.page-button span {
  display: inline-block;
  padding-bottom: 2px;
  background-image: linear-gradient(#ffffff 0 0);
  background-position: 0 100%;
  background-size: 0% 2px;
  background-repeat: no-repeat;
  transition: background-size 0.3s, background-position 0s 0.3s;
}

a.page-button:hover span {
  background-position: 100% 100%;
  background-size: 100% 2px;
}

.title {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}

.title span {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #f18a18;
  display: block;
}

.title h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
}

.title h2 span {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  display: block;
}

.title p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #a6aab4;
  line-height: 25px;
}

.description p {
  font-size: 16px;
}

#header {
  display: flex;
  width: calc(100% - 50px);
  justify-content: space-between;
  margin: 25px 25px 12.5px 25px;
  position: relative;
}

#header .left-site-header {
  display: flex;
  gap: 0 25px;
  height: 50px;
}

#header .menu {
  width: 50px;
  height: 50px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#header .menu .line {
  display: block;
  position: absolute;
  height: 7.5px;
  width: 50px;
  background: #2a334e;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#header .menu .line:nth-child(1) {
  top: 0px;
}

#header .menu .line:nth-child(2) {
  top: 20px;
  width: 30px;
}

#header .menu .line:nth-child(3) {
  top: 40px;
}

#header .menu.open .line:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

#header .menu.open .line:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#header .menu.open .line:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

#header .left-site-header .phone-number {
  display: flex;
  gap: 0 15px;
}

#header .left-site-header .phone-number .svg {
  width: 55px;
  height: 50px;
}

#header .left-site-header .phone-number .svg svg {
  width: 50px;
  height: 50px;
}

#header .left-site-header .phone-number .svg svg {
  fill: #f18a18;
}

#header .left-site-header .phone-number:hover .svg .shake {
  animation: shake 1.3s ease-in-out infinite;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-2px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(4px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-8px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(8px, 0, 0);
  }
}

#header .left-site-header .phone-number:hover .svg .bounce#one {
  animation: bounce 1.3s ease-in-out infinite;
}

#header .left-site-header .phone-number:hover .svg .bounce#two {
  animation: bounce 1.2s ease-in-out infinite;
}

#header .left-site-header .phone-number:hover .svg .bounce#three {
  animation: bounce 1.1s ease-in-out infinite;
}

@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-7%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-5%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}

#header .left-site-header .phone-number .data-phone-number {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .left-site-header .phone-number .data-phone-number a {
  text-decoration: none;
  font-weight: 600;
  color: #2a334e;
}

#header .center-header {
  display: flex;
}

#header .center-header .logo,
#header .center-header .logo svg {
  width: 250px;
}

#header .right-side-header {
  display: flex;
  gap: 0 25px;
  height: 50px;
}

#header .right-side-header .social-media-header {
  display: flex;
  gap: 0 15px;
  align-items: center;
}

#header .right-side-header .social-media-icon,
#header .right-side-header .social-media-icon svg {
  width: 30px;
  height: 30px;
}

#header .right-side-header .social-media-icon svg {
  fill: #9499a6;
  transition: 200ms ease-in-out;
}

#header .right-side-header .social-media-icon#facebook:hover svg {
  fill: #0d8bf0;
  transition: 200ms ease-in-out;
}

#header .right-side-header .social-media-icon#youtube:hover svg .red {
  fill: #ff0000;
  transition: 200ms ease-in-out;
}

#header .right-side-header .social-media-icon#youtube:hover svg .black {
  fill: #000000;
  transition: 200ms ease-in-out;
}

#header .right-side-header .social-media-icon#instagram:hover svg {
  fill: url(#InstagramGradient);
  transition: 200ms ease-in-out;
}

#menu-list {
  display: flex;
  width: calc(100% - 50px);
  height: auto;
  padding: 25px;
  position: absolute;
  z-index: 2;
  background: #ffffff;
  flex-direction: column;
  align-items: center;
  gap: 25px 0;
  transition: 0.25s ease-in-out;
  left: -500%;
  -moz-box-shadow:0 5px 5px rgba(182, 182, 182, 0.75);
  -webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
  box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
}

body.home #menu-list {
  box-shadow: none;
}

#menu-list.active {
  left: 0;
}

#menu-list .menu {
  display: flex;
}

#menu-list .menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0 20px;
  align-items: center;
}

#menu-list .menu ul > li {
  font-size: 18px;
  font-weight: 600;
  color: #2a334e;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

#menu-list .menu ul > li.current-menu-item,
#menu-list .menu ul > li:hover {
  color: #f18a18;
}

#menu-list .contact {
  display: none;
  flex-direction: column;
  gap: 25px 0;
}

#menu-list .contact .phone-number {
  display: flex;
  gap: 0 15px;
}

#menu-list .contact .phone-number .svg {
  width: 55px;
  height: 50px;
}

#menu-list .contact .phone-number .svg svg {
  width: 50px;
  height: 50px;
}

#menu-list .contact .phone-number .svg svg {
  fill: #f18a18;
}

#menu-list .contact .phone-number:hover .svg .shake {
  animation: shake 1.3s ease-in-out infinite;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-2px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(4px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-8px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(8px, 0, 0);
  }
}

#menu-list .contact .phone-number:hover .svg .bounce#one {
  animation: bounce 1.3s ease-in-out infinite;
}

#menu-list .contact .phone-number:hover .svg .bounce#two {
  animation: bounce 1.2s ease-in-out infinite;
}

#menu-list .contact .phone-number:hover .svg .bounce#three {
  animation: bounce 1.1s ease-in-out infinite;
}

@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-7%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-5%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}

#menu-list .contact .phone-number .data-phone-number {
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu-list .contact .phone-number .data-phone-number a {
  text-decoration: none;
  font-weight: 600;
  color: #2a334e;
}

#menu-list .contact .social-media .social-media-menu {
  display: flex;
  gap: 0 15px;
  justify-content: center;
}

#menu-list .contact .social-media .social-media-icon,
#menu-list .contact .social-media .social-media-icon svg {
  width: 30px;
  height: 30px;
}

#menu-list .contact .social-media .social-media-icon svg {
  fill: #9499a6;
  transition: 200ms ease-in-out;
}

#menu-list .contact .social-media .social-media-icon#facebook:hover svg {
  fill: #0d8bf0;
  transition: 200ms ease-in-out;
}

#menu-list .contact .social-media .social-media-icon#youtube:hover svg .red {
  fill: #ff0000;
  transition: 200ms ease-in-out;
}

#menu-list .contact .social-media .social-media-icon#youtube:hover svg .black {
  fill: #000000;
  transition: 200ms ease-in-out;
}

#menu-list .contact .social-media .social-media-icon#instagram:hover svg {
  fill: url(#InstagramGradient);
  transition: 200ms ease-in-out;
}

#menu-list .contact .button {
  display: flex;
  justify-content: center;
}

#slider {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 800px;
  top: 0;
  transition: 0.25s ease-in-out;
  position: relative;
}

#slider .background-photo-slider {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 800px;
  filter: brightness(0.7);
}

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

#slider .slider-content {
  width: calc(100% - 50px);
  height: calc(800px - 50px);
  display: flex;
  z-index: 1;
  padding: 25px;
}

#slider .slider-content .boxes {
  display: flex;
  flex: 0 0 25%;
  max-width: 25%;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 20px 0;
}

#slider .slider-content .boxes .box {
  display: flex;
  width: calc(80% - 50px);
  height: 125px;
  background-color: #f8f1e9;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  gap: 5px;
  transition: 200ms ease-in-out;
}

#slider .slider-content .boxes .box:hover {
  background: #f18a18;
}

#slider .slider-content .boxes .box .title-box {
  display: flex;
}

#slider .slider-content .boxes .box .title-box h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 30px;
  color: #2a334e;
  transition: 200ms ease-in-out;
}

#slider .slider-content .boxes .box .title-box h2 span {
  display: block;
}

#slider .slider-content .boxes .box:hover .title-box h2 {
  color: #ffffff;
}

#slider .slider-content .boxes .box .button {
  display: flex;
  width: 35px;
  height: 35px;
}

#slider .slider-content .boxes .box .button svg {
  width: 35px;
  height: 35px;
  fill: #f18a18;
  transition: 200ms ease-in-out;
}

#slider .slider-content .boxes .box:hover .button svg {
  fill: #ffffff;
}

#slider .slider-content .text-slider {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#slider .slider-content .text-slider .title h1 {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

#slider .slider-content .text-slider .description p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

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

#for-who .boxes {
  display: flex;
  gap: 0 15px;
  margin: 50px 0 25px;
}

#for-who .boxes .box {
  display: flex;
  flex: 0 0 calc(33% - 55px);
  max-width: 33.33%;
  background: #f8f1e9;
  height: 75px;
  padding: 25px;
  gap: 0 25px;
}

#for-who .boxes .box .icon,
#for-who .boxes .box .icon svg {
  width: 75px;
  height: 75px;
}

#for-who .boxes .box .icon svg {
  fill: #f18a18;
}

#for-who .boxes .box .text {
  display: flex;
  align-items: center;
}

#for-who .boxes .box .text p {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

#for-who .boxes .box .text p span {
  display: block;
}

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

#about-company .photos {
  display: flex;
  gap: 0 50px;
  margin: 50px 0 25px;
}

#about-company .photos .photo {
  display: flex;
  flex: 0 0 calc(33% - 28px);
  max-width: 33.33%;
  height: 300px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#about-company .photos .photo#middle {
  position: relative;
  top: 50px;
}

#about-company .photos .photo img {
  width: 100%;
  min-width: 400px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

#about-company .button {
  margin: 100px 0 25px;
  display: flex;
  justify-content: center;
}

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

#why-us .advantages {
  display: flex;
  gap: 0 15px;
  margin: 50px 0 25px;
}

#why-us .advantages .advantage {
  display: flex;
  flex: 0 0 calc(25% - 16px);
  max-width: 25%;
  gap: 25px 0;
  flex-direction: column;
  align-items: center;
}

#why-us .advantages .advantage .icon {
  display: flex;
}

#why-us .advantages .advantage .icon,
#why-us .advantages .advantage .icon svg {
  width: 75px;
  height: 75px;
}

#why-us .advantages .advantage .icon svg {
  fill: #f18a18;
}

#why-us .advantages .advantage .advantage-title p {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin: 0;
}

#why-us .advantages .advantage .advantage-title p span {
  display: block;
}

#why-us .advantages .advantage .description p {
  text-align: center;
  margin: 0;
  color: #a6aab4;
}

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

#opinions .opinions-content {
  display: flex;
  margin: 50px 0 25px;
  height: auto;
  gap: 0 20px;
}

#opinions .opinions-content .swiper-wrapper {
  min-height: 300px;
}

#opinions .opinions-content .opinion {
  display: flex;
  flex: 0 0 calc(33% - 9px);
  max-width: 33.33%;
  position: relative;
  top: 25px;
}

#opinions .opinions-content .opinion .content {
  width: calc(100% - 50px);
  height: auto;
  background: #f5f8ff;
  padding: 25px;
}

#opinions .opinions-content .opinion .content .icon {
  position: relative;
  top: -50px;
}

#opinions .opinions-content .opinion .content .icon,
#opinions .opinions-content .opinion .content .icon svg {
  width: 75px;
  height: 75px;
}

#opinions .opinions-content .opinion .content .icon svg {
  fill: #f18a18;
}

#opinions .opinions-content .opinion .content .text p {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  line-height: 25px;
  color: #a6aab4;
  margin: 0;
}

#opinions .opinions-content .opinion .content .data-person {
  display: flex;
  gap: 0 5px;
}

#opinions .opinions-content .opinion .content .data-person p {
  font-size: 14px;
  font-weight: 600;
}

#opinions .opinions-content .opinion .content .data-person .data-person p {
  color: #000000;
}

#opinions .opinions-content .opinion .content .data-person .company p {
  color: #f18a18;
}

#opinions .opinions-navigation {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 0 10px;
}

#opinions .opinions-navigation .opinion-prev,
#opinions .opinions-navigation .opinion-next {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #a6aab4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

#opinions .opinions-navigation .opinion-prev svg,
#opinions .opinions-navigation .opinion-next svg {
  width: 20px;
  height: 20px;
  fill: #f18a18;
}

#opinions .opinions-navigation .opinion-prev:hover,
#opinions .opinions-navigation .opinion-next:hover {
  background: #f18a18;
}

#opinions .opinions-navigation .opinion-prev:hover svg,
#opinions .opinions-navigation .opinion-next:hover svg {
  fill: #ffffff;
}

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

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

#offer .offer-content .offer-box {
  display: flex;
  flex: 0 0 calc(33% - 56px);
  max-width: 33.33%;
  background: #f8f1e9;
  padding: 25px;
  flex-direction: column;
}

#offer .offer-content .offer-box .icon-offer,
#offer .offer-content .offer-box .icon-offer svg {
  width: 75px;
  height: 75px;
}

#offer .offer-content .offer-box .icon-offer svg {
  fill: #f18a18;
}

#offer .offer-content .offer-box .title-offer p {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

#offer .offer-content .offer-box .title-offer p span {
  display: block;
}

#offer .offer-content .offer-box .description-offer p {
  color: #a6aab4;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

#offer .button {
  display: flex;
  margin: 50px 0 25px;
  justify-content: center;
}

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

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

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

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

#gallery .gallery-navigation {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 0 10px;
}

#gallery .gallery-navigation .gallery-prev,
#gallery .gallery-navigation .gallery-next {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #a6aab4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

#gallery .gallery-navigation .gallery-prev svg,
#gallery .gallery-navigation .gallery-next svg {
  width: 20px;
  height: 20px;
  fill: #f18a18;
}

#gallery .gallery-navigation .gallery-prev:hover,
#gallery .gallery-navigation .gallery-next:hover {
  background: #f18a18;
}

#gallery .gallery-navigation .gallery-prev:hover svg,
#gallery .gallery-navigation .gallery-next:hover svg {
  fill: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

#contact
  .contact-content
  .company-data
  .top-data
  .company-contact
  .phone-number
  .data
  a,
#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 .contact-content .company-data .bottom-data {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

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

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

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

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

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

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

#footer {
  display: flex;
  width: calc(100% - 50px);
  padding: 25px;
  position: relative;
  background: #2a334e;
  flex-direction: column;
  gap: 50px 0;
}

#footer .top {
  display: flex;
  flex-direction: row;
  width: 100%;
}

#footer .top .column {
  flex: 0 0 calc(25% - 50px);
  max-width: 25%;
  padding: 25px;
}

#footer .top .column#adress {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

#footer .top .column#adress .company-data {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

#footer .top .column#adress .company-data p {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

#footer .top .column#adress .social-buttons {
  display: flex;
  flex-direction: row;
  gap: 0 15px;
}

#footer .top .column#adress .social-buttons .social-media-icon,
#footer .top .column#adress .social-buttons .social-media-icon svg {
  width: 30px;
  height: 30px;
}

#footer .top .column#adress .social-buttons .social-media-icon svg {
  fill: #ffffff;
}

#footer .top .column#buttons {
  display: flex;
}

#footer .top .column#buttons .company-contact {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

#footer .top .column#buttons .company-contact .phone-number,
#footer .top .column#buttons .company-contact .email-adress {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}

#footer .top .column#buttons .company-contact .phone-number .icon,
#footer .top .column#buttons .company-contact .email-adress .icon,
#footer .top .column#buttons .company-contact .phone-number .icon svg,
#footer .top .column#buttons .company-contact .email-adress .icon svg {
  width: 40px;
  height: 40px;
}

#footer .top .column#buttons .company-contact .phone-number .icon svg,
#footer .top .column#buttons .company-contact .email-adress .icon svg {
  fill: #f18a18;
}

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

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

#footer .top .column#menu-1 {
  display: flex;
}

#footer .top .column#menu-1 .menu {
  display: flex;
}

#footer .top .column#menu-1 .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

#footer .top .column#menu-1 .menu ul > li {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

#footer .top .column#menu-1 .menu ul > li.active {
  color: #f18a18;
}

#footer .top .column#menu-2 {
  display: flex;
}

#footer .top .column#menu-2 .menu {
  display: flex;
}

#footer .top .column#menu-2 .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

#footer .top .column#menu-2 .menu ul > li {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

#footer .top .column#menu-2 .menu ul > li.active {
  color: #f18a18;
}

#footer .bottom {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-top: 2px solid #3e465e;
}

#footer .bottom .info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 37.5px 0 12.5px;
  gap: 0 25px;
}

#footer .bottom .info p,
#footer .bottom .info a {
  font-size: 14px;
  font-weight: 500;
  color: #9195a3;
  text-decoration: none;
  transition: 200ms ease-in-out;
}

#footer .bottom .info p a:hover {
  color: #ffffff;
}

#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 {
  width: calc(100% - 40px);
  height: auto;
  padding: 60px 20px;
  display: flex;
  background: #ffffff;
}
#contact-page .contact-content {
  display: flex;
  padding: 30px 0 0;
  margin: 0;
}
#contact-page .contact-content .left-contact {
  width: 45%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  gap: 100px 0;
}
#contact-page .contact-content .left-contact .company-data {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  width: 100%;
  background: #ffffff;
}
#contact-page .contact-content .left-contact .company-data .name-company h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
}
#contact-page .contact-content .left-contact .company-data .adress-company {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
#contact-page .contact-content .left-contact .company-data .adress-company p {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
#contact-page .contact-content .left-contact .company-data .contact-company {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .phone-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 10px;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .phone-number
  .icon {
  width: 35px;
  height: 35px;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .phone-number
  .icon
  svg {
  width: 35px;
  height: 35px;
  fill: #f18a18;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .phone-number
  .data
  a {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .e-mail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 10px;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .e-mail
  .icon {
  width: 35px;
  height: 35px;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .e-mail
  .icon
  svg {
  width: 35px;
  height: 35px;
  fill: #f18a18;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .contact-company
  .e-mail
  .data
  a {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
#contact-page .contact-content .left-contact .company-data .socials-company {
  display: flex;
  gap: 0 15px;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .socials-company
  .social-media-icon {
  width: 25px;
  height: 25px;
}
#contact-page
  .contact-content
  .left-contact
  .company-data
  .socials-company
  .social-media-icon
  svg {
  width: 25px;
  height: 25px;
  fill: #303953;
}
#contact-page .contact-content .right-contact {
  width: calc(55% - 100px);
  padding: 50px;
  background: #f8f1e9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#contact-page .contact-content .right-contact .top-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
#contact-page .contact-content .right-contact .top-contact-form .customer-data {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#contact-page
  .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-page
  .contact-content
  .right-contact
  .top-contact-form
  .customer-data
  input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact-page
  .contact-content
  .right-contact
  .top-contact-form
  .customer-data
  input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact-page
  .contact-content
  .right-contact
  .top-contact-form
  .customer-message {
  display: flex;
}
#contact-page
  .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-page
  .contact-content
  .right-contact
  .top-contact-form
  .customer-message
  input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact-page
  .contact-content
  .right-contact
  .top-contact-form
  .customer-message
  input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact-page .contact-content .right-contact .bottom-contact-form {
  display: flex;
  justify-content: space-between;
  gap: 0 15px;
}
#contact-page .contact-content .right-contact .bottom-contact-form .accept {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: 60%;
}
#contact-page
  .contact-content
  .right-contact
  .bottom-contact-form
  .accept
  input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#contact-page
  .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-page
  .contact-content
  .right-contact
  .bottom-contact-form
  .accept
  input:checked::before {
  background: #ffffff;
  color: #f18a18;
}
#contact-page
  .contact-content
  .right-contact
  .bottom-contact-form
  .accept
  label
  p {
  font-size: 14px;
  font-weight: 500;
  color: #a7abb6;
}
#contact-page
  .contact-content
  .right-contact
  .bottom-contact-form
  .accept
  label
  p
  a {
  color: #f18a18;
  text-decoration: underline;
}
#contact-page .contact-content .right-contact .bottom-contact-form .send {
  width: 40%;
}
#contact-page
  .contact-content
  .right-contact
  .bottom-contact-form
  .send
  a.page-button {
  width: 100%;
}
