@import url('https://fonts.googleapis.com/css?family=Hind:300&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Alternates');


body {
    margin: 0;
    padding: 0;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 18px;
    line-height: 24px;

    color: #ffffff;
}

h2, h3, p{
    padding: 0;
    margin: 0;

    color: #3D3939
}

h2 {
    line-height: 30px
}

a {
    text-decoration: none;

    color: #ffffff;
}

label {
    position: relative;
}

.preloader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

    background-color: #F2F2F2;

    z-index: 999999;
}

.preloader.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 1s linear;
}

.preloader.hide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.grecaptcha-badge {
    visibility: hidden;
}

.container {
    width: 1200px;

    margin: 0 auto;
}

button.button {
    display: inline-block;
}

.button {    
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;

    width: 165px;
    height: 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #ffffff;
    border: 0;
    border-radius: 62px;
    outline: none;
    background-color: #0ABAB5;

    cursor: pointer;
}

.button.second{
    background-color: #ffffff;

    color: #3D3939;

    border: #0ABAB5 1px solid;
}

.button.service {
    width: 200px;
}

.button.consultation {
    width: 320px;
}

.button:hover {
    background-color: #04A9A6;
}

.button.second:hover {
    color: #ffffff;
}

.btn-left {
    margin-left: auto;
}

.title {
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    margin: 0;
}

.title-padding {
    padding-top: 80px;
    padding-bottom: 80px;
    margin: 0;
}

#map {
    height: 100%;
}

.main-header {
    position: absolute;

    z-index: 1;

    width: 100%;

    transition: background-color 0.5s ease;
}

.main-wrapper{
    width: 1472px;

    margin: 0 auto;
}

.main-header.scrolled {
    height: 100px;
    width: 100%;
    background-color: #F2F2F2;
    z-index: 2;
    position: fixed;
}

.main-header.scrolled .site-menu-navigation {
    height: 100px;
}

.main-header.scrolled a {
    color: #3D3939;
}

.main-header .main-header-navigation {
    display: flex;
    justify-content: space-between;
}

.main-header .main-header-logo {
    width: 144px;
    height: 98px;
}

.main-header .site-navigation-wrapper {
    display: flex;
    align-items: center;

    justify-content: space-between;
    width: 100%;
}

.site-menu-navigation {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    width: 100%;
}

.site-navigation,
.phone-list,
.language-list,
.social-list {
    list-style: none;

    margin: 0;
    padding: 0;
}

.site-navigation {
    display: flex;

    justify-content: space-between;
    align-content: center;
}

.main-header .site-menu-navigation a:hover {
    padding-bottom: 2px;
    border-bottom: #ffffff 1px solid;
}

.main-header.scrolled .site-menu-navigation a:hover {
    border-bottom: #3D3939 1px solid;
}

.logo-container a:hover {
    border-bottom: none!important;
}

.phone-list {
    display: flex;
    flex-direction: column;
}

.language-list {
    display: flex;

}

.language-list li:nth-child(1) {
    padding-right: 10px;
}

.language-list .current-language {
    padding-bottom: 2px;
    border-bottom: #ffffff 1px solid;
}


.main-header.scrolled .language-list .current-language {
    padding-bottom: 2px;
    border-bottom: #3D3939 1px solid;
}

.mobile-header {
    position: absolute;
    width: 100%;
}

.mobile-header-wrapper {
    display: none;

    position: relative;
    z-index: 5;
    width: 100%;
}

.fixed {
    position: fixed;
    background-color: #F2F2F2;
}

.mobile-header .logo-container {
    width: 100px;
}

.mobile-header .logo-container img{
    width: 100%;
}

.menu-opener-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 21px;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 25px;
    height: 0.5px;
    background-color: #f2f2f2;
    transition: 0.4s;
    border-radius: 50px;
}

.change .bar1 {
    background-color: #3d3939;
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  
.change .bar2 {
    opacity: 0;
}
  
.change .bar3 {
    background-color: #3d3939;
    -webkit-transform: rotate(45deg) translate(-3px, -4px);
    transform: rotate(45deg) translate(-3px, -4px);
  }

.mobile-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.mobile-menu-nav {
    background-color: #f2f2f2;

    width: 100%;
    height: 100%;

    flex-direction: column;

    position: fixed;
    top: 0;
    left: 0;
}

.mobile-menu-nav.open {
    display: flex;

    -webkit-transition: opacity 1, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    opacity: 1;
    z-index: 3;

    overflow: auto;
}

.mobile-menu-nav.close {
    opacity: 0;
    z-index: -1;

    display: none;
}

.mobile-menu-list {
    margin-top: 90px;
    margin-bottom: 50px;
 
    list-style: none;
    padding: 0;
}

.mobile-menu-list li a,
li.sub-menu-openner {
    font-size: 16px;
    color: #3d3939;
    
    display: block;
}

.mobile-menu-list li {
    padding-bottom: 25px;
}

.mobile-menu-list li:last-child {
    padding-bottom: 0;
}

.mobile-menu-social-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    
    list-style: none;

    height: 100px;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
}

.mobile-menu-social-list li {
    border: #3d3939 1px solid;
    height: 40px;
    width: 145px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-social-list a {
    color: #3d3939;
    font-size: 14px;

    width: 100%;
    text-align: center;
}

.sub-menu-openner {
    position: relative;
}

li.sub-menu-openner::before {
    background: url('/img/icons/toggle.svg') no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    height: 18px;
    width: 12px;

    transition: all 0.25s;
}

li.sub-menu-openner.open::before {
    transform: rotate(90deg);
  }
  
  
  li.sub-menu-openner.close::before {
    transform: rotate(0deg);
  }
  

.mobile-sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 10px;
    padding-top: 25px;
}

.mobile-sub-menu li {
    padding-bottom: 25px;
}

.mobile-sub-menu li a {
    display: flex;
    align-items: center;
}

.mobile-sub-menu li svg,
.mobile-sub-menu li img {
    padding-right: 25px;
    width: 25px;
    height: 25px;
}

.language-list.mobile a {
    color: #3d3939;
    font-size: 16px;
}

.language-list.mobile .current-language {
    border-bottom: #3d3939 1px solid;

}

.language-list.mobile {
    width: 100%;
}

.language-list.mobile li.phone {
    margin: auto;
}

.main-page-banner-wrapper {
    display: block;

    height: 815px;
}

.main-page-banner {
    position: absolute;
    width: 100%;
    top: 0;
}

.main-page-banner-slide {
    height: 815px;
}

.main-page-banner-slide .image {
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-page-banner-slide-content-wrapper {
    position: relative;
}

.main-page-banner-slide-content {
    display: flex;
    flex-direction: column;
    position: absolute;

    top: 312px;

    width: 736px;
}

.main-page-banner-slide-content h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;

    color: #F2F2F2;
}

.main-page-banner-slide-content .button {
    margin-top: 30px;
}

.main-page-banner-slide-content .description,
.main-page-banner-slide-content p {
    margin-top: 25px;
    color: #F2F2F2;
}

.main-page-banner-slide-content .description a {
    color: #F2F2F2;
}

.main-page-banner-slide-content .service-info {
    width: 100%;
    border-top: #F2F2F2 0.5px solid;

    padding-left: 30px;
    padding-top: 20px;
}

.main-page-banner-slide-content .service-info .time::before {
    background: url(/img/icons/time-white.svg) no-repeat;
    position: absolute;
    top: 1px;
    left: -30px;
    content: "";
    height: 25px;
    width: 25px;
}

.main-page-banner-slide-content .service-info .price::before {
    background: url(/img/icons/price-white.svg) no-repeat;
    position: absolute;
    top: 0;
    left: -30px;
    content: "";
    height: 25px;
    width: 25px;
}

.main-page-banner-slide-content .service-info .time,
.main-page-banner-slide-content .service-info .price {
    color: #F2F2F2;
    padding-bottom: 25px;
    position: relative;
}


/* Rewrite slick slider main class */
.slick-slider {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: auto;
}

.slick-list {
    width: 100%;
    height: auto;
}

.slick-slide {
    outline: none;
}

.slick-slider-dots,
.review-slider-dots {
    position: absolute;

    display: flex;
    justify-content: center;

    width: 100%;
    list-style: none;

    padding: 0;

    right: 0;
    bottom: -30px;

    margin: 0 auto;
}

.slick-slider-dots {
    left: 0;
}

.review-slider-wrap .slick-slide {
    height: auto;
}

.slick-slider-dots li {
    padding-bottom: 60px;
}

.slick-slider-dots button::before,
.review-slider-dots button::before {
    content: '0';
}

.slick-slider-dots button:focus,
.slick-slider-dots button:active,
.review-slider-dots button:focus,
.review-slider-dots button:active {
    border: none;
    outline: none;
}

.slick-slider-dots button {
    background: none;
    cursor: pointer;
    border: 0;

    color: #ffffff;

    width: 30px;
    height: 30px;

    font-weight: 300;
    font-size: 18px;
    line-height: 32px;

    font-family: "Hind", Arial, sans-serif;
}

.slick-slider-dots .slick-active button {
    border-radius: 50%;

    background-color: #ffffff;

    color: #3D3939;
    
    padding: 0;
}

.social-link-block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-list {
    position: absolute;
    top: 312px;

    z-index: 1;
}

.social-list a {
    padding: 5px;
}

.social-list li {
    margin-bottom: 36px;
    border-radius: 50%;
    line-height: 28px;
    text-align: center;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
}

.social-list li:hover{
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
}

.social-list li:hover a {
    color: #000000;
}

.andwantages {
    display: flex;
    position: relative;

    height: 525px;
}

.background-title-wrapper, .background-title-top-wrapper {
    position: relative;
}

.background-title-top-wrapper {
    display: none;
}

.background-title {
    position: absolute;

    font-size: 200px;
    color: rgba(36, 30, 30, 0.03);

    top: 115px;
    margin: 0;

    user-select: none;
    text-align: center;

    width: 100%;
}

.andwantages-wrapper {
    display: flex;
    justify-content: space-around;

    padding-top: 60px;
}

.andwantages-item {
    display: flex;
    flex-direction: column;

    width: 350px;

    color: #3D3939;
}

.andwantages-item .count {
    font-weight: 600;
    font-size: 60px;
    line-height: 98px;

    margin: 0;
}

.andwantages-item .description p {
    margin: 0;
}

.andwantages-item .description {
    display: flex;
    align-items: center;

    font-weight: normal;
    font-size: 18px;
    line-height: 29px;

    border-left: #3D3939 1px solid;

    padding-left: 25px;
    margin-top: 15px;

    height: 60px;
}

.services {
    background-color: rgba(196, 196, 196, 0.29);

    color: #F2F2F2;

    margin: 0;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;

    padding-bottom: 100px;
}

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

.service-main {
    width: 550px;
    margin: 0;

    display: flex;
    flex-direction: column;
}

.service-main-img {
    width: 585px;
    height: 340px;
}

.service-main-link {
    display: inline-block;
    position: relative;

    color: #3D3939;
}

/* .service-main-link::after {
    position: absolute;

    top: 35px;
    margin-left: 15px;
    

    content: "";
    background: url(/img/icons/arrow.svg);

    width: 40px;
    height: 10px;
} */

.service-main-title {
    display: inline-block;

    font-weight: 600;
    font-size: 24px;
    line-height: 29px;

    margin: 0;

    padding-top: 35px;
    padding-bottom: 35px;
}

.service-main-discription,
.services-wrapper p {
    line-height: 22px;

    padding-bottom: 50px;

    margin: 0;
}

.service-main-button {
    align-self: flex-end;
    margin-top: auto;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;

    width: 580px;
    height: 582px;

    margin: 0;
}

.service-item-wrapper {
    height: 100%;
    padding: 10px;
}

.service-item {
    display: flex;
    flex-direction: column;

    text-align: center;

    width: 277px;
    height: 277px;

    background: #ffffff;
    border: 1px solid transparent;

    box-shadow: 1px 1px 10px rgba(61, 57, 57, 0.05), 1px 1px 10px rgba(61, 57, 57, 0.05);
}

.service-item:hover {
    border: #0ABAB5 1px solid;
    transition: .2s linear;
    box-shadow: 0 5px 10px rgba(0,0,0,0.25), 0 5px 10px rgba(0,0,0,0.22);
}

.service-list a {
    color: #3D3939;
}

.service-item-logo,
.service-item-title,
.service-item-description {
    margin: 0;
}

.service-item-logo {
    padding-top: 10px;
    padding-bottom: 10px;
}

.service-item-logo svg,
.service-item-logo img {
    width: 76px;
    height: 76px;
}

.service-item-title {
    font-size: 24px;
    line-height: 29px;

    padding-bottom: 20px;
}

.services-link {
    display: block;
    position: relative;

    font-size: 0;
}

.services-link::after {
    position: absolute;
    background: url(/img/icons/arrow.svg);

    content: "";

    right: 0;

    width: 40px;
    height: 10px;
}

.reviews {
    color: #F2F2F2;

    margin-bottom: 70px;
}

.review-wrapper {
    padding-bottom: 130px;
}

.review {
    display: flex;
    align-items: center;
}

.review .user-info {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 380px;
}

.review .user-img {
    width: 185px;

    border-radius: 50%;
}

.review .user-name {
    margin: 0;
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    text-align: center;
}

.review .user-description {
    margin: 0;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.review-text {
    position: relative;

    margin: 0;

    padding-left: 50px;

    width: 850px;
}

.review-text p {
    font-size: 18px;
    line-height: 24px;

    margin: 0;
}

.review-text a {
    color: #27AFB7;
}

.review-text::before {
    position: absolute;

    content: "";
    color: #3d3939;

    font-size: 144px;
    left: 0;
}

.review-slider-wrap.slick-slider {
    position: relative;
    height: auto;
}


.review-slider-wrap.slick-initialized .slick-slide {
    display: flex;
}

.review-slider-dots {
    right: 0;
}

.review-slider-dots li {
    padding-left: 5px;
}

.review-slider-dots button {
    background: none;
    cursor: pointer;
    border: 0;

    color: #3D3939;

    width: 30px;
    height: 30px;

    font-weight: 300;
    font-size: 18px;

    font-family: "Hind", Arial, sans-serif;
}

.review-slider-dots .slick-active button {
    border-radius: 50%;
    border: #3D3939 1px solid;

    padding: 0;
}

.about {
    display: flex;
    position: relative;

    color: #3D3939;
    background-color: #F2F2F2;
}

.about-img {
    position: absolute;

    max-width: 785px;
    top: -25px;
    left: 0;

    z-index: 1;
}

.about-text-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    height: 675px;
}

.about-main-text {
    width: 580px;

    padding-top: 30px;
    padding-bottom: 30px;
}

.about-main-text-link {
    margin-left: auto;
}

.contact-us {
    color: #3D3939;

    height: 900px;

    margin-bottom: 50px;
}

.contact-us-wrapper {
    display: flex;

    justify-content: space-between;

    margin-bottom: 50px;
}

.input-list{
    width: 450px;

    list-style: none;

    padding: 0;
    margin: 0;
}

.input-list li {
    display: flex;

    padding-bottom: 22px;
}

.input-list input,
.input-list textarea {
    font-family: inherit;

    flex-grow: 1;
    border: 0;

    outline: none;

    font-size: 18px;
    line-height: 22px;

    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;

    border-bottom: #3D3939 0.5px solid;

    border-radius: 0;
    -webkit-appearance: none;
}

.input-list input.error,
.input-list textarea.error {
    border-bottom: #d07575 0.5px solid;
}

.input-list textarea {
    min-height: 100px;
    
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;

    resize: none;
}

.input-list .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.input-list .checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;

    color: #3D3939;
  }

.input-list .checkbox+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 0.5px solid #3D3939;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px;
  }

  .input-list .checkbox+label.error::before {
    border: 0.5px solid #d07575;
  }

  .input-list .checkbox:checked+label::before {
    background-image: url("/img/icons/check.svg");
    border: 0.5px solid #3D3939;
  }

.input-list li:last-child {
    /* padding: 0; */
    display: flex;
    justify-content: flex-end;
}

.input-list textarea::-webkit-scrollbar{
    width: 5px;
    background-color: #F5F5F5;
}

.input-list textarea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0ABAB5;
}

.input-list input::placeholder,
.input-list textarea::placeholder {
    color: rgba(61, 57, 57, 0.43);
}

.adress-map {
    text-align: center;

    height: 275px;
    width: 50%;
}

.adress-map p {
    margin: 0;
    margin-top: 10px;
}

.main-footer {
    background-color: #F2F2F2;

    color: #3D3939;
    font-size: 18px;
}

.main-footer a {
    color: #3D3939;
    width: 100%
}

.main-footer-wrapper {
    display: flex;
    justify-content: space-between;

    padding-top: 20px;
}

.footer-menu,
.footer-phone-list,
.social-list,
.footer-submenu,
.footer-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    padding-top: 10px;
}

.footer-menu a:hover {
    border-bottom: #3D3939 1px solid;
}

.footer-phone-list li {
    padding-bottom: 5px;
}

.footer-phone-list li:last-child {
    padding-top: 20px;
}

.mobile-footer-menu {
    display: none; 
}

.copyright {
    font-size: 18px;
    padding-top: 70px;
    text-align: center;

    padding-bottom: 20px;
}

.copyright p {
    margin: 0;
    padding-bottom: 5px;
}

.footer-social-list a {
    font-size: 0;
}

.footer-social-list li {
    padding-bottom: 20px;
}

.fb-icon,
.inst-icon,
.tg-icon {
    position: relative;
}

.fb-icon::before {
    content: "";

    position: absolute;
    background: url(/img/icons/fb.svg);

    width: 40px;
    height: 40px;
}

.inst-icon::before {
    content: "";

    position: absolute;
    background: url(/img/icons/inst.svg);

    width: 40px;
    height: 40px;
}

.tg-icon::before {
    content: "";

    position: absolute;
    background: url(/img/icons/tg.svg);

    width: 40px;
    height: 40px;
}

.fade-in-modal-wrapper {
    display: none;
}

.fade-in-modal {
    display: flex;
    justify-content: center;
}

.fade-in-modal::before {
    content: "";
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-in-container {
    display: flex;

    position: fixed;
    background-color: #ffffff;

    width: 1000px;

    height: 540px;

    top: 110px;

    z-index: 2;
}

.fade-in-container .form-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fade-in-modal .close {
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 14px;
    cursor: pointer;

    right: 30px;
    top: 10px;
}

.fade-in-modal .close .bar1,
.fade-in-modal .close .bar2 {
    background-color: #3D3939;
}

.fade-in-modal .close .bar1 {
    transform: rotate(-45deg) translate(-5px, 7px);
}

.fade-in-modal .close .bar2 {
    transform: rotate(45deg) translate(-3px, -5px);
}

.info-block-wrapper h2,
.info-block-wrapper p {
    color: #ffffff;
}

.info-block-wrapper ul {
	text-align: center;
	padding-top: 10px;
}

.fade-in-container .form-block-form-send h2, p {
    color: #3D3939;
}

.fade-in-container .info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 50%;

    color: #ffffff;

    background-image: url('/img/fade-in-form-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.form-block-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
}

.form-block-form-send-wrapper {
    display: none;
}

.form-block-form-send {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    text-align: center;

    height: 300px;
    width: 100%;
}

.form-block-form-send .check {
    background-image: url('/img/icons/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 65px;
    height: 50px;
}

.form-block-form-send .form-social-list {
    padding: 0;
    margin: 0;

    width: 300px;

    display: flex;
    justify-content: space-between;

    list-style: none;
}

.fade-in-container .info-block-wrapper {
    height: 230px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
    align-items: center;
}

.service-description {
    height: 480px;
    background-color: #f2f2f2;
    display: flex;

    margin-top: 100px;
}

.service-description-info {
    background-repeat: no-repeat;
    height: 100%;
}

.service-description-info.left {
    background-position-x: left;
}

.service-description-info.rigth {
    background-position-x: right;
}

.service-description-text {
    width: 50%;
    padding-top: 100px;
}

.service-description-text.rigth{
    margin-left: auto;
}

.service-description-text.left{
    margin-right: auto;
}

.service-info-list-wrapper {
    display: flex;
    justify-content: space-between;

    margin-top: 120px;
}

.service-info-list-wrapper img {
    width: 48%;
    height: 100%;
}

.service-info-list-info {
    width: 48%;
    padding-top: 50px;
}

.service-info-list-info .list-item {
    padding-top: 80px;
}

.service-info-list-info .list-item .number {
    padding-bottom: 15px;

    color: #04A9A6;
    border-bottom: #3D3939 0.5px solid;
}

.service-info-list-info .list-item .text {
    padding-top: 15px;
}

.stages-main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 50px;
}

.stages-wrapper {
    position: relative;
    margin-top: 50px;
}

.stage-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: -75px 0;
}

.stage-line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: 3px;
    background: #04A9A6;
    z-index: -1;
}

.stage-items {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.stage-item.left {
    float: left;
    padding-left: 50px;
}

.stage-item.right {
    float: right;
    padding-right: 50px;
}

.stage-step {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-left: -31px;
    color: #3D3939;
    border-radius: 100%;
    border: #04A9A6 0.5px solid;
    background: #ffffff;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stage-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.stage-description {
    display: flex;
    align-items: center;
    justify-content: center;

    border: #04A9A6 0.5px solid;
    border-radius: 20px;
    height: 180px;
    width: 380px;

    text-align: center;
}

.stage-icon {
    width: 62px;

    padding-bottom: 20px;
}

.stage-description p {
    padding: 20px;
}

.info-text {
    width: 100%;
    /*height: 350px;*/
}

.info-text-wrapper {
    display: flex;
    padding-top: 40px;
    margin-bottom: 40px;
}

.info-text-wrapper .one-header {
    width: 50%;
}

.info-text-wrapper .text-block {
    width: 50%;
}

.full-img {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.full-img .item {
    max-width: 100%;
    max-height: 100%;
}

.vertical-list {
    height: 400px;
    padding-top: 85px;
}

.vertical-list-wrapper {
    display: flex;
    padding-top: 80px;
}

.vertical-list-wrapper h3 {
    font-size: 24px;
    color: #27AFB7;

    padding-bottom: 0;
}

.vertical-list-wrapper h4 {
    font-size: 24px;
    color: #3D3939;
    
    margin-top: 10px;    
}

.vertical-list-wrapper {
    padding-top: 80px;
}

.partners-list {
    height: 400px;
    background-color: #f2f2f2;
}

.partners-list h2 {
    padding-top: 80px;
}

.partners {
    display: flex;
    justify-content: space-between;
    
    padding-top: 80px;

    position: relative;
}

.partners .slick-track {
    display: flex;
    align-items: center;
}

.slick-initialized .slick-slide.partner-img {
    display: flex;
    justify-content: center;
    flex-direction: column;

    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    
    width: 200px!important;
    height: auto;
}

.partner-img img {
    max-width: 100%;
    max-height: 100%;
}

.team h2 {
    padding-top: 80px;
}

.our-team { 
    display: flex;
    justify-content: space-between;
    
    padding-top: 80px;

    position: relative;
    
    margin: 0 -10px;

}

.our-team .team-item {
    display: flex;
    flex-direction: column;
}

.our-team .team-name {
    font-size: 24px;
    text-align: center;
    font-weight: 600;

    padding-top: 15px;
    padding-bottom: 15px;
}

.our-team .position {
    font-size: 18px;
    text-align: center;

}

.slick-initialized .slick-slide.team-item {
    display: flex;

    justify-content: center;

    margin: 0 10px;
}

.team-item-img {
    width: 100%;
    height: auto;
}

.form-block-form {
    padding-top: 70px;
}

.form-block-form .contact-as.title {
    padding-bottom: 40px;
}


.service-banner-info-wrapper {
    display: flex; 
    position: absolute;

    top: 150px;

    width: 100%;
}

.service-banner-info-content {
    width: 50%;
}

.service-banner-info-content h2 {
    font-size: 40px;
    line-height: 120%;
    color: #ffffff;
}

.service-banner-info-content .time,
.service-banner-info-content .price {
    color: #ffffff;
}

.service-banner-info-content .time::before {
    background: url('/img/icons/time-white.svg') no-repeat;
    position: absolute;
    left: 0;
    content: "";
    height: 25px;
    width: 25px;
}

.service-banner-info-content .price::before {
    background: url('/img/icons/price-white.svg') no-repeat;
    position: absolute;
    left: 0;
    content: "";
    height: 25px;
    width: 25px;
}

.service-banner-info-main-content {
    padding-left: 35px;
    padding-top: 50px;
}

.service-banner-info-main-content ul {
    padding-left: 0px;
    margin: 0;
}

.service-banner-info-main-content ul li {
    list-style: none;
    background-image: url("/img/icons/check-white.svg");
    background-repeat: no-repeat;
    background-position: 5px 5px;
    padding-left: 40px;
    padding-bottom: 15px;
}

.service-banner-form {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-banner-form form {
    width: 80%;
}

.service-banner-form.mobile {
    display: none;
}

.service-banner-form ul li.last {
    justify-content: space-between;
    align-items: center;
}

.service-banner-form .success-messages {
    position: relative;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}

.service-banner-form .success-messages::before {
    background: url('/img/icons/check-white.svg') no-repeat;
    position: absolute;
    left: -25px;
    content: "";
    height: 25px;
    width: 25px;
}

.service-banner-form h3 {
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
    font-weight: 500;
    padding-bottom: 60px;
    width: 80%;
}

.service-banner-form h3 b {
    font-weight: 600;
}

.service-banner-form form input {
    border-bottom: 2px solid #FFFFFF;
    background-color: transparent;
}

.service-banner-form form input::placeholder {
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}


@media (max-width: 1668px) {
    .about-main-text {
        width: 400px;
    }
}

@media (max-width: 1280px) {
    body {
        font-size: 16px;
        line-height: 20px;
    }

    .container {
        width: 1000px;
    }

    .title {
        font-size: 30px;
    }

    .title-padding {
        padding-bottom: 50px;
    }

	.form-block-form {
		padding-top: 60px;
	}    

    .button {
        width: 140px;
        height: 40px;

        font-size: 14px;
    }

    .main-page-banner-slide-content h2{
        font-size: 36px;
        line-height: 44px;
    }

    .background-title {
        font-size: 167px;
    }

    .andwantages {
        height: 380px;
    }

    .andwantages-wrapper {
        padding-top: 25px;
    }

    .background-title-wrapper .background-title {
        top: 70px;
    }

    .andwantages-item {
        width: 280px;
    }

    .andwantages-item .count {
        font-size: 40px;
    }

    .andwantages-item .description {
        font-size: 14px;
    }

    .services {
        padding-bottom: 15px;
    }

    .services-wrapper {
        height: 490px;
        margin-bottom: 30px;
    }

    .service-main {
        width: 460px
    }

    .service-list {
        width: 488px;
        margin-bottom: 0;
        height: auto;
    }

    .service-main-title {
        font-size: 20px;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .service-main-img {
        width: 490px;
        height: 300px;
    }

    .service-main-discription {
        font-size: 16px;
    }

    .service-item {
        width: 235px;
        height: 235px;

    }

    .service-item-wrapper {
        padding: 5px;
    }

    .service-item-logo {
        padding-bottom: 5px;
        padding-top: 5px;
    }

    .service-item-title {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 10px;
    }

    .service-item-description {
        font-size: 16px;
    }

    .review-wrapper {
        padding-bottom: 130px;
    }
 
    .review .user-img {
        width: 175px;
    }

    .review .user-name {
        font-size: 18px;
        line-height: 22px;
    }

    .review-text::before{
        font-size: 120px;
    }

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

    .main-header-navigation {
        display: none;
    }

    .about-img {
        width: 50%;
    }

    .about-img img {
        width: 100%;
    }

    .about-text-wrapper {
        height: 550px;
    }

    .about-main-text {
        width: 387px;
    }

    .contact-us {
        height: 750px;
    }

    .contact-us-wrapper {
        margin-bottom: 0px;
    }

    /* .contact-form, .adress-map {
        width: 47%;
    } */

    .input-list input,
    .input-list textarea {
        font-size: 16px;
    }

    .input-list {
        width: 100%;
    }

    .input-list textarea {
        min-height: 75px;
    }

    .footer-social-list {
        width: 40px;
    }

    .copyright {
        font-size: 16px;
    }

    .fade-in-container {
        width: 1000px;
        min-height: 600px;
    }
}

@media (max-width: 1000px) {
    body {
        font-size: 16px;
    }

    .container {
        width: 700px;
    }

    .button {
        width: 110px;
        height: 30px;
        font-size: 11px;
    }

    .title {
        text-align: center;
    }

    .main-header {
        display: none;
    }

    .mobile-header.scrolled {
        background-color: #F2F2F2;
        z-index: 5;
        position: fixed;

        transition: background-color 0.5s ease;
    }

    .mobile-header.scrolled .bar1,
    .mobile-header.scrolled .bar2,
    .mobile-header.scrolled .bar3 {
        background-color: #3D3939;
    }


    .mobile-header-wrapper {
        display: block;
    }

    .site-menu-navigation {
        display: none;
    }

    .social-link-block {
        display: none;
    }

    .main-page-banner-wrapper {
        height: 500px;
    }

    .main-page-banner-slide {
        position: relative;
        max-height: 500px;
    }

    .main-page-banner-slide-content-wrapper {
        display: flex;
        justify-content: center;
    }

    .main-page-banner-slide-content {
        width: 70%;

        top: 150px;
        align-items: center;
        text-align: center;
    }

    .main-page-banner-slide-content h2 {
        font-size: 22px;
    }

    .background-title {
        font-size: 117px;
    }

    .background-title-wrapper {
        display: none;
    }

    .andwantages-item .count {
        border-bottom: #3D3939 0.5px solid;
        width: 100%;
        text-align: center;
    }

    .background-title-top-wrapper {
        display: block;
    }

    .andwantages {
        height: 700px;
    }

    .andwantages-wrapper {
        flex-direction: column;
        align-items: center;

        padding-top: 200px;
    }

    .andwantages-item {
        width: 100%;
        align-items: center;
    }

    .andwantages-item-line {
        width: 100%;
        border-top: #3D3939 0.5px solid;
    }

    .andwantages-item .description {
        border-left: none;
        margin: 0;
        padding: 0;
    }

    .services-wrapper {
        display: none;
    }

    .mobile-service-wrapper {
        display: block;
        padding-bottom: 70px;
    }

    .mobile-service-list{
        display: flex;
        list-style: none;

        flex-wrap: wrap;

        padding: 0;
    }

    .mobile-service-list a {
        color: #3D3939;
        width: 100%;
        height: 100%;
        font-size: 14px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }

    .mobile-service-list svg,
    .mobile-service-list img {
        padding-bottom: 40px;
        width: 34px;
        height: 40px;
    }

    .mobile-service-list p {
        font-weight: 600;
        text-align: center;
    }

    .mobile-service-list li {
        width: calc(50% - 1px);
        height: 200px;
        display: flex;
        align-items: center;
    }

    .mobile-service-list li:nth-child(2n) {
        border-left: #3D3939 0.5px solid;
    }

    .mobile-service-list li:nth-child(-n+4) {
        border-bottom: #3D3939 0.5px solid;
    }

    .review-wrapper {
        padding-bottom: 50px;
    }

    .about-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .about {
        justify-content: center;
    }

    .about-img {
        position: static;
        top: 0;
        max-width: 100%;
        width: 100%;
        margin-top: 50px;
    }

    .about-img img {
        width: 100%;
    }

    .about-text-wrapper {
        width: 100%;
        padding-bottom: 30px;
        height: auto;
    }

    .about-main-text {
        width: 100%;
    }

    .about-main-text-link {
        width: 100%;
    }

    .contact-us {
        height: 1100px;
    }

    .contact-us-wrapper {
        flex-wrap: wrap;
    }

    .contact-form {
        width: 100%;
        margin-bottom: 70px;
    }

    .adress-map {
        width: 100%;
    }

    .contact-form .button {
        width: 100%;
    }

    .contact-us .background-title-wrapper {
        display: block;
    }

    .contact-us .background-title {
        top: 115px;
    }

    .form-block-form-send {
        width: 100%;
        height: 375px;
        margin-bottom: 150px;
    }

    .form-block-form-send .form-social-list {
        width: 250px;
    }

    .fade-in-modal .form-block-form-send {
        margin-bottom: 50px;
    }
 
    .main-footer-wrapper {
        flex-wrap: wrap;
    }

    .main-footer {
        font-size: 16px;
    }

    .footer-logo {
        display: none;
    }

    .footer-menu li {
        padding-bottom: 15px;
    }

    .footer-social-list {
        width: 100%;
        display: flex;
        justify-content: center;

        margin-top: 30px;
    }

    .footer-social-list li{
        width: 33%;
        text-align: center;
    }

    .footer-social-list li:nth-child(2) {
        border-left: #3D3939 1px solid;
        border-right: #3D3939 1px solid;
    }

    .fb-icon::before {
        left: -20px;
    }

    .inst-icon::before {
        left: -20px;
    }

    .tg-icon::before {
        left: -20px;
    }

    .fade-in-container {
        width: 95%;
        height: 545px;
        min-height: 545px;
        top: 85px;
    }

    .fade-in-container .form-block {
        width: 100%;
    }

    .fade-in-container .info-block  {
        display: none;
    }

    .main-page-banner-slide-content .service-info {
        border-top: none;
    }

    .main-page-banner-slide-content .service-info .time,
    .main-page-banner-slide-content .service-info .price {
        text-align: left;
    }

    .main-page-banner-slide-content .service-info .price::before {
        top: -3px;
    }

    .service-description {
        margin-top: 0;
        height: auto;
    }

    .service-description-info {
        background-image: none!important;
    }

    .service-description-text {
        display: flex;
        align-items: center;
        
        width: 100%;
        height: auto;
        padding: 0;

        padding-top: 30px;
        padding-bottom: 30px;
    }

    .service-info-list-wrapper {
        flex-wrap: wrap;
        flex-direction: column;
        
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .service-info-list-wrapper img {
        width: 100%;

        margin-top: 50px;

        order: 1;
    }

    .service-info-list-info {
        width: 100%;
    }

    .service-info-list-info .item {
        padding-top: 35px;
    }

    .stage-line, .stage-step {
        left: 35px;
    }
    
    .stage-item.left, .stage-item.right {
        padding: 0;
        padding-right: 30px;

        width: 75%;
    }

    .stage-item.left {
        float: right;
    }

    .stage-icon {
        display: none;
    }

    .stage-step {
        top: 35%;
    }

    .stage-description {
        height: 100px;
        width: 100%;
    }

    .service-info-list-info .list-item {
        padding-top: 50px;
    }

    .info-text {
        height: auto;
        /*min-height: 350px;*/
    }

    .info-text-wrapper {
        flex-wrap: wrap;
        padding-top: 40px;
    }

    .info-text-wrapper .one-header,
    .info-text-wrapper .text-block {
        width: 100%;
    }
    
    .info-text-wrapper .text-block {
        padding-top: 40px;
    }
    
    .vertical-list {
        height: auto;
        
        padding-top: 40px;
    }

    .vertical-list-wrapper {
        flex-wrap: wrap;

        padding-top: 40px;
    }

    .vertical-list-item {
        padding-bottom: 40px;
    }
    
    .stage-content {
        margin: 0;
    }
    
    .stage-items, .stage-content {
        height: auto;
    }

    .vertical-list-wrapper h3, 
    .vertical-list-wrapper h4 {
        font-size: 18px;
    }
.service-banner-info-wrapper {
    flex-direction: column;
    align-items: center;
    top: 100px;
    width: 80%;
    }

.service-banner-info-content {
    width: 100%;
}


.service-banner-info-content h2 {
    font-size: 22px;
}

.service-banner-info-main-content {
    padding-top: 20px;
}

.service-banner-form {
    display: none;
}

.service-banner-form.mobile {
    display: block;
    width: 100%;
    background-color: #F2F2F2;
    padding-top: 40px;
    padding-bottom: 40px;
}

.service-banner-form.mobile a {
    color: #3D3939;
}

.service-banner-form.mobile form {
    width: 100%;
}

.service-banner-form.mobile form input {
    border-bottom: 1px solid #000000;
    background-color: transparent;
}

.service-banner-form.mobile form input.error {
    border-bottom: #d07575 0.5px solid;
}


.service-banner-form.mobile form input::placeholder {
    line-height: 140%;
    color: #000000;
    font-size: 11px;
}

.service-banner-form.mobile h3 {
    font-weight: 500;
    line-height: 30px;
    color: #3D3939;
    padding-top: 40px;
    font-size: 16px;
}
.service-banner-form.mobile .success-messages {
    color: #3D3939;
    font-size: 11px;
}

.service-banner-form.mobile .success-messages::before {
    background: url(/img/icons/check-black.svg) no-repeat;
}
}



@media (max-width: 699px) {
    .container {
        width: 500px;
    }

    .main-page-banner-slide-content h2 {
        font-size: 18px;

        line-height: 25px;
    }

    .main-page-banner-slide-content {
        width: 90%;
    }

    .background-title {
        font-size: 84px;
    }

    .andwantages-item .description {
        text-align: center;
    }

    .review {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .review .user-info {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-around;
        padding-bottom: 50px;
    }

    .review .user-img {
        width: 100px;
    }

    .review-slider-dots {
        bottom: -60px;
    }

    .contact-us {
        height: 1020px;
    }

    .contact-form {
        margin-bottom: 150px;
    }

    .contact-us .background-title {
        top: -380px;
    }

    .form-block-form {
        width: 95%;
    }

    .fade-in-modal .title-padding {
        padding-top: 0;
        padding-bottom: 50px;
    }

    .fade-in-modal .contact-form {
        margin-bottom: 0;
    }

    .stage-item.right,
    .stage-item.left {
        padding-left: 90px;
        padding-right: 10px;
    }
    
    .stage-step {
        width: 35px;
        height: 35px;
        font-size: 22px;
        left: 50px;
    }
}

@media (max-width: 499px) {

    body {
        font-size: 14px;
    }

    h2 {
        line-height: 30px
    }
    
    .container {
        width: 300px;
    }

    .title {
        font-size: 22px;
    }

    .background-title {
        font-size: 50px;
    }

    .andwantages-wrapper {
        padding-top: 125px;
    }

    .background-title {
        top: 75px;
    }

    .mobile-service-list {
        text-align: center;
    }

    .mobile-service-list svg {
        padding-bottom: 20px;
    }

    .mobile-service-list p {
        margin: 0;

        padding: 10px;
    }

    .user-info .user-img {
        width: 65px;
    }

    .user-info .user-description {
        font-size: 10px;
    }

    .review-text::before {
        font-size: 70px;
    }

    .footer-menu, .footer-phone-list {
        display: none;

    }

    .mobile-footer-menu {
        display: flex;
        flex-direction: column;

        list-style: none;

        padding: 0;
        margin: 0;
        
        width: 100%;
    }

    .mobile-footer-menu .item {
        display: flex;
        align-items: center;

        border-bottom: #3D3939 1px solid;
        
        padding-bottom: 15px;
        padding-top: 15px;
    }

    .mobile-footer-menu .item.language-list {
        border-bottom: none;
        
        margin-left: auto;
    }

    .mobile-footer-menu .item.language-list .current-language {
        border-bottom: 1px solid #3D3939;
    }

    .mobile-footer-menu .sub-menu-openner {
        display: block;
        height: auto;
    }

    .mobile-footer-menu .sub-menu-openner::before {
        top: 17px;
    }
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 250px;

    text-align: center;

    color: #3D3939;
    background-color: #F2F2F2;

    margin-top: 100px;
}

.info-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    width: 800px;
}

.info-banner h2 {
    font-size: 36px;

    padding-bottom: 25px;
}

.info-banner p {
    padding-bottom: 35px;
}

.service-navigation-opener {
    position: relative;

    display: none;

    border: #3D3939 0.5px solid;

    border-radius: 55px;

    margin-top: 20px;
    margin-bottom: 10px;

    height: 70px;
    
}

.service-navigation-opener::before {
    background: url(/img/icons/toggle.svg) no-repeat;
    position: absolute;
    background-size: contain;
    top: 22px;
    right: 25px;
    content: "";
    height: 30px;
    width: 15px;
    transition: all 0.25s;
}

.service-navigation-opener.open::before{
    transform: rotate(90deg);
}

.service-navigation-opener-item {
    display: flex;
    align-items: center;
    color: #3D3939;
    height: 50px;

    height: 100%;

    padding-left: 30px;
}

.service-navigation-opener p {
    font-size: 22px;
    font-weight: 600;
    padding-left: 35px;
}

.services-list-wrapper {
    display: flex;
    margin-top: 100px;
    margin-bottom: 50px;
}

.service-navigation-wrapper {
    width: 530px;
}

.current-service-items {
    width: 670px;
    display: flex;
    flex-direction: column;
}

.service-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-nav-list li {
    display: flex;
    align-content: center;

    height: 75px;
    width: 90%;

    margin-bottom: 30px;
}

.service-nav-list .item {
    display: flex;
    align-items: center;

    width: 100%;

    font-size: 22px;
    font-weight: 600;
}

.service-nav-list .item svg {
    width: 40px;
    height: 40px;

    padding-left: 25px;
}

.service-nav-list .item img {
    width: 40px;
    height: 40px;

    padding-left: 25px;
}

.service-nav-list .item .name {
    padding-left: 35px;
}

.service-nav-list li:hover{
    border-radius: 55px;

    background-color: rgba(242,242,242, 0.3);
}

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

.mobile-service-navigation {
    border: #3D3939 0.5px solid;
    border-radius: 15px;
    
}
.service-nav-list-wrapper {
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 25px;
    margin-bottom: 25px;
    max-height: 350px;
    width: 100%;
}
/* .service-nav-list-wrapper::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.service-nav-list-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0ABAB5;
} */

.mobile-service-navigation-current-item {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 25px;
}

.mobile-service-navigation-current-item img {
    width: 40px;
    height: 40px;
}

.mobile-service-navigation .service-nav-list li {
    height: 70px;
    width: 100%;
    padding-left: 30px;
    border-radius: 0;
}

.mobile-service-navigation .service-nav-list li.active {
    border-radius: 0;
}

.service-nav-list li.active{
    border-radius: 55px;

    background-color: rgba(242,242,242, 0.3);
}

.current-service-item-wrapper {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease-in;
    height: 0px;

    display: none;
}

.current-service-item-wrapper.active {
    visibility: visible;
    opacity: 1; 
    height: auto;

    width: 100%;

    display: block;
    
}

.current-service-items .search {
    width: 100%;

    margin-bottom: 75px;
}

.current-service-items .search input {
    position: relative;
    width: 100%;

    padding-left: 35px;

    box-sizing: border-box;
}

.current-service-items .search label::before {
    background: url('/img/icons/search.svg') no-repeat;

    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 30px;
    width: 30px;
    z-index: 1;
}

.current-service-item {
    width: 700px;
    height: auto;

    margin-bottom: 35px;

    border-radius: 20px;

    box-shadow: 1px 4px 10px rgba(61, 57, 57, 0.05), 1px 1px 10px rgba(61, 57, 57, 0.05);
}

.current-service-item .item-data-wrapper {
    padding-left: 30px;
    padding-right: 30px;
    
    padding-top: 15px;

}

.current-service-item .item-header {
    font-size: 22px;

    line-height: 25px;
}

.current-service-item .details {
    padding-left: 10px;
}

.current-service-item .item-time {
    position: relative;

    padding-top: 10px;
    padding-left: 30px;
}

.current-service-item .item-price {
    position: relative;

    padding-top: 10px;
    padding-left: 30px;
}

.current-service-item .item-time::before {
    background: url('/img/icons/time.svg') no-repeat;

    position: absolute;
    top: 12px;
    left: 0;
    content: "";
    height: 20px;
    width: 20px;
}

.current-service-item .item-price::before {
    background: url('/img/icons/price.svg') no-repeat;

    position: absolute;
    top: 12px;
    left: 0;
    content: "";
    height: 20px;
    width: 20px;
}

.item-buttons-wrapper {
    display: flex;
    justify-content: flex-end;

    padding-bottom: 15px;
}

.item-buttons-wrapper a:first-child {
    margin-right: 20px;
}


@media (max-width: 1280px) {
    .service-navigation-wrapper {
        width: 40%;
    }
    
    .current-service-items {
        width: 60%;
    }

    .current-service-item {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .services-list-wrapper {
        flex-wrap: wrap;
        margin-top: 0;
    }

    .service-navigation-wrapper {
        display: none;
    }

    .service-navigation-opener {
        display: block;
    }

    .service-menu {
        display: block;
    }

    .service-nav-list li {
        margin-bottom: 0;
    }

    .current-service-items {
        align-items: center;

        width: 100%;
    }

    .item-buttons-wrapper {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .info {
        margin-top: 0;
    }

    .current-service-items {
        margin-top: 50px;
    }

}

@media (max-width: 699px) {
    .current-service-item {
        height: auto;
    }

    .current-service-item .details {
        padding-top: 10px;
    }

    .current-service-items .search {
        margin-bottom: 50px;
    }

    .info-banner h2 {
        font-size: 30px;
    }

    .main-page-banner-slide.service {
        max-height: 500px;
    }
}

@media (max-width: 499px) { 

    .service-navigation-opener {
        height: 50px;
    }

    .service-navigation-opener::before {
        top: 16px;
        right: 12px;
        height: 20px;
        width: 15px;
    }

    .service-navigation-opener-item {
        padding-left: 0;
    }

    .service-navigation-opener p {
        padding-left: 10px;
        font-size: 16px;
    }

    .mobile-service-navigation .service-nav-list li {
        height: 50px;
        padding-left: 0;
    }

    .service-nav-list .item .name {
        padding-left: 10px;
        font-size: 16px;
    }

    .service-nav-list-wrapper {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

}