@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Red+Hat+Display:wght@500&family=Roboto:wght@100;300;400;500;700;900&display=swap");
html.hidden {
  overflow: hidden;
}

body {
  font-family: Montserrat;
  box-sizing: border-box;
	padding-top: 70px;
}
body.hidden {
  overflow: hidden;
}
body.hidden header {
  padding-top: 16px;
  padding-bottom: 12px;
}
.suss {
    display: none;
    font-weight: 500;
    padding-top: 10px;
}
.roboto {
  font-family: Roboto;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
  margin: 0 auto;
}

header {
  padding-top: 34px;
  padding-bottom: 12px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: #FFF;
  transition: 0.3s;
}
header .right {
  display: flex;
  align-items: center;
}
header .logo {
  transition: 0.3s;
}
header .logo:hover {
  opacity: 0.5;
}
header.sticky-head {
  padding-top: 10px;
  padding-bottom: 8px;
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}
header .flex_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .main_menu {
  margin-left: auto;
}
header .main_menu ul {
  display: inline-flex;
  margin-right: 80px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
header .main_menu ul li {
  display: inline-block;
}
header .main_menu ul li a {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #000;
  transition: 0.3s;
}
header .main_menu ul li a:hover {
  opacity: 0.5;
}
header .lang_menu ul {
  -moz-column-gap: 15px;
       column-gap: 15px;
  display: inline-flex;
}
header .lang_menu ul li {
  display: inline-block;
}
header .lang_menu ul li.active a {
  color: #CCC;
}
header .lang_menu ul li a {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.main_section {
  position: relative;
}
.main_section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 396px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.67) 48.44%, rgba(255, 255, 255, 0.8) 60.94%, rgba(255, 255, 255, 0.9) 73.44%, rgba(255, 255, 255, 0.98) 87.5%, #FFF 100%);
  background-blend-mode: lighten;
  width: 100%;
  left: 0;
}
.main_section .main_section_image {
  overflow: hidden;
  width: 100%;
}
.main_section .main_section_image img {
  width: 100%;
  height: 908px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.main_section .main_description {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 805px;
  width: 100%;
  bottom: 155px;
  z-index: 1;
}
.main_section .main_description h1 {
  text-align: center;
  color: #FFF;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 114%;
  margin-bottom: 20px;
}
.main_section .main_description p {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
}

.introduce_section {
  position: relative;
}
.introduce_section .flex_row {
  display: flex;
  align-items: stretch;
}
.introduce_section .flex_row .right {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  padding-left: 80px;
  padding-right: 60px;
  text-align: center;
  background: #F4F4F4;
}
.introduce_section .flex_row .right .right-wrap{
		max-width: 580px;
		margin: 0 auto;
	}
.introduce_section .flex_row .right h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 140.625%;
  margin-bottom: 40px;
}
.introduce_section .flex_row .right ul li {
  color: #7B7B7B;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 192.857%;
  text-transform: uppercase;
}
.introduce_section .flex_row .right ul li:not(:first-child) {
  margin-top: 15px;
}
.introduce_section .flex_row .right ul li::before {
  content: "/";
  transform: scale(1.1);
  color: #000;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
}
.introduce_section .flex_row .left {
  width: 50%;
}
.introduce_section .flex_row .left img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services_section {
  padding-top: 100px;
  padding-bottom: 120px;
}
.services_section__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #D8D8D8;
  margin-top: 20px;
  color: #000;
  transition: 0.3s;
}
.services_section__link:hover {
  opacity: 0.5;
}
.services_section__link img {
  width: 24px;
  height: 24px;
}
.services_section h2 {
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.4px;
  margin-bottom: 80px;
}
.services_section .services-wrap {
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
	text-transform:uppercase
}

footer {
  background: #000;
  padding: 58px 0;
  color: #FFF;
}
footer h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 95px;
	text-align: center;
}
footer .mobile-h3-visible{
	display:none;
}
footer h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 166%; /* 39.84px */
  letter-spacing: 2.4px;
  margin-bottom: 40px;
}
footer .contact-flex {
  display: flex;
  align-items: center;
}
footer .contact-flex .tel_link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
  margin-right: 30px;
  position: relative;
  transition: 0.3s;
  display: flex;
  justify-content: center;
}
footer .contact-flex .tel_link img {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}
footer .contact-flex .tel_link:hover {
  opacity: 0.5;
}
footer .contact-flex .social-links {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  transition: 0.3s;
}
footer .contact-flex .social-links:hover a {
  transition: 0.3s;
  display: block;
  opacity: 0.5;
}
footer .contact-flex .social-links:hover a:hover {
  opacity: 1;
}
footer .left .email_link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
  margin-right: 30px;
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
footer .left .email_link img {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}
footer .left .email_link:hover {
  opacity: 0.5;
}
footer .social-flex-row {
  margin-top: 40px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  transition: 0.3s;
}
footer .social-flex-row:hover a {
  opacity: 0.5;
  transition: 0.3s;
}
footer .social-flex-row:hover a:hover {
  opacity: 1;
}
footer .social-flex-row a {
  color: #FFF;
  padding: 0 13px;
  border: 1px solid #FFF;
  border-radius: 100px;
}
footer .footer-wrap {
  display: flex;
	justify-content:space-between;
}
footer .footer-wrap .right {
  width: 100%;
  max-width: 50%;
  margin-left: 60px;
	padding-right: 100px;
}
footer .footer-wrap .right p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}
footer .footer-wrap .right form input {
  width: 100%;
  background: transparent;
  color: #FFF;
  padding-bottom: 10px;
  border: none;
  border-bottom: 1px solid #D8D8D8;
  padding-top: 20px;
  border-radius: 0;
}
footer .footer-wrap .right form input::-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
footer .footer-wrap .right form input::placeholder {
  color: #FFF;
  opacity: 1;
}
footer .footer-wrap .right form input.error {
  border-color: #F13735;
  font-size: 12px;
}
footer .footer-wrap .right form label.error {
  color: #F13735;
  font-size: 12px;
}
footer .footer-wrap .right form p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142%;
  text-transform: none;
  margin: 20px 0 60px 0;
}
footer .footer-wrap .right form .submit-button {
  display: flex;
  align-items: center;
  color: #FFF;
  background: transparent;
  padding: 16px 48px;
  border: 1px solid #FFF;
  border-radius: 4px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  transition: 0.3s;
}
footer .footer-wrap .right form .submit-button:hover {
  opacity: 0.5;
}
footer .footer-wrap .right form .submit-button img {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}
footer .bottom-text {
  padding-top: 20px;
  border-top: 1px solid #FFF;
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
footer .bottom-text p {
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 12px */
  letter-spacing: 1px;
  max-width: 322px;
}
footer .bottom-text a {
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
  transition: 0.3s;
}
footer .bottom-text a:hover {
  opacity: 0.5;
}

.services-section {
  padding: 120px 0;
}
.services-section h1 {
  text-align: center;
  color: #000;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 104%;
  letter-spacing: 3.84px;
  margin-bottom: 80px;
}
.services-section .services-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.services-section .services-filter p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.services-section .services-filter .filters {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: 0.3s;
}
.services-section .services-filter .filters a {
  color: #000;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid black;
  border-radius: 100px;
	 transition: all .3s ease
}
.services-section .services-filter .filters a:hover {
  color: #fff;
  background: #000;
}
.services-section .services-filter .filters a.active_cat{
  color: #fff;
  background: #000;
}

.services-section .services-filter .filters:hover {
/*   opacity: 0.5; */
}
.services-section .services-wrap {
  display: grid;
  -moz-column-gap: 51px;
       column-gap: 51px;
  row-gap: 80px;
  grid-template-columns: repeat(3, 1fr);
}
.services-section .services-wrap a {
  color: #000;
  height: 100%;
}
.services-section .services-wrap a:hover img {
  transform: scale(1.1);
}
.services-section .services-wrap a .zoom-div {
  width: 100%;
  height: 361px;
  overflow: hidden;
}
.services-section .services-wrap a .zoom-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.services-section .services-wrap a .service-name {
  height: calc(100% - 361px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-section .services-wrap a .service-name p {
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 20px 0;
}
.services-section .services-wrap a .service-name .service-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-section .services-wrap a .service-name .service-description p {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.services-section .services-wrap a .service-name .service-description span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.detail-section {
  padding: 106px 0 120px;
}

.detail-wrap {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.detail-wrap .left {
  width: 50%;
}
.detail-wrap .left img {
  margin-bottom: 20px;
  width: 100%;
}
.detail-wrap .left .detail-info .detail-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 15px;
}
.detail-wrap .left .detail-info .detail-text p {
  color: #000;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.detail-wrap .left .detail-info .detail-text span {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.detail-wrap .right {
  width: 50%;
}
.detail-wrap .right h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 114%;
  margin-bottom: 80px;
}
.detail-wrap .right p {
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
}
.detail-wrap .right h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
  margin-top: 20px;
}
.detail-wrap .right h4 {
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  color: #7B7B7B;
  margin-bottom: 20px;
}
.detail-wrap .right img {
  width: 100%;
  margin-bottom: 20px;
	height: auto;
}
.detail-wrap .right .consult-btn {
  display: flex;
  align-items: center;
  margin-top: 60px;
  border: 1px solid #000;
  padding: 16px 48px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  border-radius: 4px;
  color: #000;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
.detail-wrap .right .consult-btn:hover {
  opacity: 0.5;
}
.detail-wrap .right .consult-btn img {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  margin-bottom: 0;
  filter: invert(1);
}

.mobile-service-title {
  display: none;
}

.blog-section {
  padding: 120px 0;
}
.blog-section h1 {
  font-size: 96px;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 104%;
  letter-spacing: 3.84px;
  color: #000;
  text-align: center;
  margin-bottom: 120px;
}
.blog-section .blog {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #D8D8D8;
}
.blog-section .blog:hover span {
  text-decoration: underline;
}
.blog-section .blog img {
  width: 270px;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 120px;
}
.blog-section .blog .blog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.blog-section .blog .blog-row p {
  color: #000;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.blog-section .blog .blog-row span {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.blog-section .blog .blog-row span img {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  margin-right: 0;
}

.error-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 805px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  min-height: 100vh;
}
.error-wrap .center {
  margin-top: auto;
  margin-bottom: auto;
}
.error-wrap img {
  margin-bottom: 30px;
  width: 192px;
  height: 30px;
}
.error-wrap .bottom {
  margin-top: 80px;
}
.error-wrap h1 {
  font-family: Red Hat Display;
  color: #CCC;
  font-size: 140px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 7px;
}
.error-wrap p {
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 40px;
}
.error-wrap a {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 16px 48px;
  transition: 0.3s;
}
.error-wrap a img {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  filter: invert(1);
  margin-bottom: 0;
}
.error-wrap a:hover {
  opacity: 0.5;
}

.privacy {
  display: flex;
  flex-direction: column;
  width: 580px;
  padding-bottom: 120px;
  padding-top: 106px;
}
.privacy h1 {
  margin-bottom: 80px;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 114%;
}
.privacy p {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
  margin-bottom: 20px;
}

.policy .container {
  display: flex;
  justify-content: flex-end;
}

.gam {
  position: relative;
  display: none;
  align-items: center;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 50;
}
.gam.active span {
  opacity: 0;
}
.gam.active:before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #000;
}
.gam.active:after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background: #000;
}
.gam:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 6px;
  background: #000;
  top: 3px;
  left: 0;
  transition: 0.3s;
}
.gam:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 6px;
  background: #000;
  bottom: 3px;
  left: 0;
  transition: 0.3s;
}
.gam span {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 6px;
  background: #000;
  transition: 0.3s;
}

.socs-menu {
  display: none;
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: center;
}
.socs-menu a img {
  width: 20px;
  height: 20px;
}


@media (max-width: 1180px) {
  .main_section .main_section_image img {
    height: 708px;
  }
  .gam {
    display: flex;
  }
  header {
    padding-top: 16px;
  }
  header .flex_row {
    position: relative;
  }
  header .right {
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -15px;
    height: calc(100vh - 32px);
    width: 100vw;
    padding: 60px 42px 150px 42px;
    background: #FFF;
    visibility: hidden;
    transition: 0.5s;
    opacity: 0;
  }
  header .right.active {
    visibility: visible;
    opacity: 1;
  }
  header .right .socs-menu {
    display: flex;
    -moz-column-gap: 24px;
         column-gap: 24px;
    align-items: center;
    margin-top: auto;
    margin-bottom: 40px;
  }
  header .right .socs-menu a img {
    width: 20px;
    height: 20px;
  }
  header .main_menu {
    margin-left: 0;
  }
  header .main_menu ul {
    flex-direction: column;
    margin-right: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 24px;
  }
  header .main_menu ul li {
    display: inline-block;
  }
  header .main_menu ul li a {
    font-size: 16px;
  }
  header .lang_menu ul {
    -moz-column-gap: 15px;
         column-gap: 15px;
    display: inline-flex;
  }
  header .lang_menu ul li {
    display: inline-block;
  }
  header .lang_menu ul li.active a {
    color: #CCC;
  }
  header .lang_menu ul li a {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
  }
  footer h3 {
    text-align: center;
  }
  footer .footer-wrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  footer .footer-wrap .left {
    width: 100%;
    font-size: 14px;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }
  footer .footer-wrap .left h3 {
    display: none;
  }
  footer .footer-wrap .left .contact-flex {
    justify-content: center;
  }
  footer .footer-wrap .left .social-flex-row {
    justify-content: center;
  }
  footer .footer-wrap .left .email_link {
    justify-content: center;
  }
  footer .footer-wrap .right {
    width: calc(100% - 30px);
    max-width: 100%;
    margin-left: 0;
    margin-top: 60px;
  }
  footer .footer-wrap .right form .submit-button {
    margin: auto;
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding-bottom: 80px;
    padding-top: 0;
  }
  .blog-section .blog {
    padding: 40px 0 20px 0;
  }
  .blog-section .blog img {
    margin-right: 0;
    width: 80px;
    height: 80px;
  }
  .blog-section h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 278%;
    letter-spacing: 1.44px;
    margin-bottom: 0;
  }
  .blog-section .blog .blog-row {
    flex-direction: column;
    margin-left: 15px;
    align-items: flex-start;
  }
  .blog-section .blog .blog-row P {
    padding-bottom: 20px;
    font-size: 18px;
  }
  .blog-section .blog .blog-row span {
    font-size: 12px;
  }
  .main_section .main_section_image img {
    height: 508px;
  }
  .main_section .main_description h1 {
    font-size: 32px;
  }
  .main_section .main_description p {
    font-size: 18px;
  }
  .introduce_section .flex_row {
    align-items: center;
    flex-direction: column;
    background: #F4F4F4;
    padding-top: 36px;
  }
  .introduce_section .flex_row .left {
    width: 100%;
  }
  .introduce_section .flex_row .right {
    width: 100%;
    padding-left: 16px;
    padding: 30px 16px 42px 16px;
  }
  .introduce_section .flex_row .right h3 {
    margin-bottom: 22px;
  }
  .services_section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services_section h2 {
    margin-bottom: 40px;
  }
  .services_section .services-wrap .services_section__link {
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.64px;
    text-transform: uppercase;
  }
  .services_section .services-wrap .services_section__link img {
    width: 34px;
    height: 34px;
  }
  .services_section footer {
    padding-bottom: 41px;
    padding-top: 0;
  }
}
@media (max-width: 650px) {
	.services_section .services-wrap{
		max-width: 100%;
	}
	.container {
  padding: 0 15px;

}
  .error-wrap {
    padding-top: 16px;
  }
  .error-wrap img {
    margin-bottom: 99px;
  }
  .error-wrap p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    margin: 40px 0;
  }
  .privacy {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .privacy h1 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 166%;
    letter-spacing: 2.4px;
    text-align: center;
    margin-top: 64px;
    margin-bottom: 40px;
    letter-spacing: 2.4px;
  }
  .privacy p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 143%;
    margin-bottom: 30px;
  }
  .services-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .services-section .services-filter p {
    display: none;
  }
  .services-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .services-section .services-wrap {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
  .services-section .services-wrap a .service-name p {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-top: 24px;
    margin-bottom: 16px;
  }
  .services-section .services-wrap a .service-name .service-description p {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
  }
  .main_section {
    padding-bottom: 120px;
  }
  .main_section::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 20%;
    height: 133px;
    background: linear-gradient(to top, white 0%, white 20%, rgba(255, 255, 255, 0.5) 70%, transparent);
    width: 100%;
    left: 0;
  }
  .main_section .main_section_image img {
    width: 180%;
    max-width: unset;
    margin-left: -34%;
	  height:auto;
  }
  .main_section .main_description {
    bottom: 80px;
  }
  .main_section .main_description p {
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 192%;
    text-transform: uppercase;
    padding-left: 16px;
    padding-right: 16px;
  }
  .main_section .main_description h1 {
    margin-bottom: 10px;
  }
  footer .bottom-text {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
  footer .bottom-text p {
    margin-top: 59px;
  }
  footer h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 166%;
    letter-spacing: 2.4px;
  }
  footer h4 {
    text-align: left;
    margin-top: 60px;
    font-size: 16px;
  }
  footer .footer-wrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  footer .footer-wrap .left {
    width: 100%;
    text-align: left;
    max-width: unset;
  }
  footer .footer-wrap .left h3 {
    display: none;
  }
  footer .footer-wrap .left .contact-flex {
    justify-content: flex-start;
  }
  footer .footer-wrap .left .social-flex-row {
    justify-content: flex-start;
    flex-flow: row;
    flex-wrap: wrap;
  }
  footer .footer-wrap .left .social-flex-row a {
    margin-bottom: 10px;
  }
  footer .footer-wrap .left .email_link {
    justify-content: flex-start;
  }
  footer .footer-wrap .right {
    width: 100%;
    margin-left: 0;
    margin-top: 0px;
	  padding-right: 0;
	  max-width: 100%;
  }
  footer .footer-wrap .right p {
    font-size: 12px;
    color: #7B7B7B;
  }
  footer .footer-wrap .right form .submit-button {
    width: 100%;
    margin: auto;
    justify-content: center;
    font-size: 13px;
  }
  footer .footer-wrap .right form input::-moz-placeholder {
    color: white;
    opacity: 1;
  }
  footer .footer-wrap .right form input::placeholder {
    color: white;
    opacity: 1;
  }
  .detail-section {	
    padding: 50px 0 120px;
  }
  .detail-section .mobile-service-title {
    display: block;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 40px;
  }
  .detail-section .detail-wrap {
    flex-direction: column;
  }
  .detail-section .detail-wrap h3 {
    margin-bottom: 24px;
    margin-top: 40px;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 166%;
    letter-spacing: 2.4px;
  }
  .detail-section .detail-wrap .left {
    width: 100%;
  }
  .detail-section .detail-wrap .left img {
    margin-bottom: 0;
  }
  .detail-section .detail-wrap .right {
    width: 100%;
  }
  .detail-section .detail-wrap .right p {
    margin: 20px 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
  .detail-section .detail-wrap .right .consult-btn {
    width: 100%;
    justify-content: center;
  }
  .detail-section .detail-wrap .right h1 {
    display: none;
  }
  .detail-section .detail-wrap .right h4 {
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
  }
  .detail-section .detail-wrap .right img {
    margin: 40px 0;
  }
}
@media (max-width: 380px) {
  .detail-section {
    padding: 64px 0 80px;
  }
  .detail-section .mobile-service-title {
    display: block;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 40px;
  }
  .detail-section .detail-wrap {
    flex-direction: column;
  }
  .detail-section .detail-wrap .left {
    width: 100%;
  }
  .detail-section .detail-wrap .left .detail-info {
    margin-top: 20px;
  }
  .detail-section .detail-wrap .right {
    width: 100%;
  }
  .detail-section .detail-wrap .right .consult-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px 18px;
  }
  .detail-section .detail-wrap .right .consult-btn img {
    margin-top: 0;
    margin-bottom: 0;
  }
  .detail-section .detail-wrap .right h1 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */