@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url("../css/normalize.css");
@import url("../css/fonts.css");
@import url("../css/grid.css");
@import url("../css/slick.css");
@import url("../css/jquery.fancybox.css");

/*

@import url("../css/nice-select.css");
*/


html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

*,*:before,*:after { -webkit-box-sizing:border-box;box-sizing:border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
b, strong { font-weight: bold; }
input { outline: none; }
input:focus,textarea:focus{-webkit-box-shadow:none;box-shadow:none;}
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; vertical-align: top;}
iframe{ border:0; }
a { text-decoration: none; 	-webkit-transition:opacity .3s ease-out; -o-transition:opacity .3s ease-out; transition:opacity .3s ease-out; }
a:hover { text-decoration: none; }
*:focus{outline:none}

body {
	font-family: 'Noto Serif', serif;
	font-size:14px;
	font-weight:normal;
	color:#000;
	background:#FFF;
	margin:0 auto;
	padding:0;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}

body.no-scroll {
    height: 100vh;
    overflow: hidden;
}

/*** GLOBAL ***/

/*Btn*/

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 32px;
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: #5D5D5D;
    background: radial-gradient(66.36% 1709.38% at 22.86% 58.49%, #F9D59F 0%, #F1C881 100%);
    border-radius: 46px;
    border: none;
    border-bottom: 4px solid #CEB385;
    text-align: center;
}

.btn span {
    position: relative;
    z-index: 5;
}

/*Wrapper*/

.wrapper {
    background: url(../img/bg/main.jpg) no-repeat center top;
    background-size: cover;
}

/*Bg*/

.bg-gold {
    background: radial-gradient(53.04% 44.08% at 50% 44.85%, rgba(248, 248, 248, 0.5) 0%, rgba(245, 240, 231, 0.5) 100%);
}

/*Section Title*/

.section-title {
	margin: 0 0 80px;
	text-align: center;
}

.section-title .title {
	color: #7C7C7C;
	font-weight: 600;
	font-size: 48px;
	line-height: 65px;
}

.section-title .title span {
	color: #F5CD8D;
}

.section-title .subtitle {
	font-size: 22px;
	line-height: 30px;
	color: #7C7C7C;
}


/*Scroll Block*/

.scroll-down {
    width: 106px;
    height: 106px;
    background: #eeebe2;
    position: absolute;
    top: -65px;
    left: 50%;
    margin-left: -53px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.scroll-down:before {
    width: 22px;
    height: 36px;
    background: url(../img/mouse-scroll.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin-top: -18px;
    margin-left: -11px;
}

.scroll-down:after {
    position: absolute;
    content: '';
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: url(../img/scroll-text.svg) center center no-repeat;
    background-size: contain;
}

.rot:after {
    animation: 20s linear 0s normal none infinite running rot;
    -webkit-animation: 20s linear 0s normal none infinite running rot;
}

@keyframes rot {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@-webkit-keyframes rot {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/*Slider*/

.slick-dots {
    bottom: -40px;
}

.slick-dots li {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(61, 61, 61, 0.19);
    margin: 0 5px;
}

.slick-dots li.slick-active {
    background: radial-gradient(66.36% 1709.38% at 22.86% 58.49%, #F9D59F 0%, #F1C881 100%);
}

.slick-dots li button {
    display: none;
}

/*** HEADER ***/

header {
    padding: 29px 0 33px;
}

.header-block {
    display: flex;
    align-items: center;
}

.header-block .logo {
    margin-right: 91px;
    font-size: 22px;
    line-height: 30px;
    color: #5D5D5D;
}

.header-block .adress {
    position: relative;
    padding-left: 77px;
    font-size: 18px;
    line-height: 25px;
    color: #5D5D5D;
}

.header-block .adress:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: url(../img/adress.png) no-repeat center center;
}

.header-block .adress b {
    display: block;
}

.header-block .adress span {
    display: block;
}

.header-block .callback {
    margin-left: auto;
    margin-right: 52px;
}

.header-block .callback .btn {
    padding: 16px 32px;
    font-size: 16px;
}

.header-block .phone-block {
    text-align: right;
}

.header-block .phone-block a {
    font-weight: 600;
    font-size: 26px;
    line-height: 35px;
    color: #5D5D5D;
    display: block;
}

.header-block .phone-block .time {
    color: #616161;
    font-size: 14px;
    line-height: 19px;
}

.header-menu {
    background: #FFFFFF;
    box-shadow: 0px 14px 44px rgb(0 0 0 / 10%);
    padding: 8px 0 12px;
    top: -200px;
    transition: .3s top;
    position: fixed;
}

.header-menu.show {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 33;
}

.header-menu .header-menu-block {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.header-menu .menu ul {
    display: flex;
    align-items: center;
}

.header-menu .menu ul li {
    margin-right: 36px;
    padding-right: 36px;
    position: relative;
}

.header-menu .menu ul li:last-child {
    margin-right: 0;
}

.header-menu .menu ul li:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: #D9D9D9;
}

.header-menu .menu ul li:last-child:after {
    display: none;
}

.header-menu .menu ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
}

.header-menu .callback {
    margin-left: auto;
}

.header-menu .callback .btn {
    padding: 14px 25px;
    text-align: center;
    font-size: 16px;
    line-height: 110%;
}

.mobile-toggle {
    background: #323232;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    z-index: 12;
}

.mobile-toggle span {
    background: radial-gradient(66.36% 1709.38% at 22.86% 58.49%, #F9D59F 0%, #F1C881 100%);
    border-radius: 4px;
    height: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-toggle span:nth-child(1) {
    width: 20px;
    margin-top: -7px;
}

.mobile-toggle span:nth-child(2) {
    width: 16px;
    margin-left: -2px;
}

.mobile-toggle span:nth-child(3) {
    width: 20px;
    margin-top: 7px;
}

.mobile-toggle.open {
    border-color: #818D8D;
}

.mobile-toggle.open span {
    background: #FFF;
}

.mobile-toggle.open span:nth-child(1) {
    margin: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 2px;
}

.mobile-toggle.open span:nth-child(2) {
    display: none;
}

.mobile-toggle.open span:nth-child(3) {
    margin: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    height: 2px;
}

.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 100;
    overflow: hidden;
    display: none;
}

.mobile-menu .scroll-box {
    padding: 22px 16px;
}

.mobile-menu .phone {
    width: 44px;
    height: 44px;
    margin-left: auto;
    margin-right: 102px;
    margin-top: 25px;
}

.mobile-menu .phone a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/icons/mobile-phone.svg) no-repeat center center;
}

.mobile-menu .menu {
    margin: 0;
}

.mobile-menu .menu ul li {
    text-align: center;
    margin: 0 0 36px;
}

.mobile-menu .menu ul li:last-child {
    margin-bottom: 0;
}

.mobile-menu .menu ul li a {
    color: #333333;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}


/*** MAIN ***/

.main {
    padding: 97px 0 0;
    overflow: hidden;
}

.main-block {
    position: relative;
    padding: 0 0 132px;
}

.main-block .info .title {
    font-size: 56px;
    line-height: 130%;
    color: #5D5D5D;
    margin: 0 0 52px;
    font-weight: bold;
}

.main-block .info ul {
    margin: 0 0 56px;
}

.main-block .info ul li {
    margin: 0 0 13px;
    position: relative;
    padding-left: 28px;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: #7C7C7C;
}

.main-block .info ul li:last-child {
    margin-bottom: 0;
}

.main-block .info ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: #7C7C7C;
    border: 4px solid #F8D39A;
    border-radius: 100px;
}

.main-block .info .controls {
    display: inline-block;
    vertical-align: top;
}

.main-block .info .controls .btn {
    padding: 26px 40px;
    font-size: 22px;
    line-height: 28px;
}

.main-block .image {
    position: absolute;
    right: -150px;
    bottom: 0;
}

.main-block .image img {
    position: relative;
    z-index: 5;
}

.main-block .image:before {
    content: '';
    position: absolute;
    left: 80px;
    bottom: -153px;
    width: 559px;
    height: 559px;
    background: #EEEBE2;
    border-radius: 50%;
    z-index: 3;
    border: 20px solid #F4F3EE;
}


/*** SERVICE ***/

.service-section {
    padding: 90px 0 70px;
    position: relative;
}

.service-section .service-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.service-block .info {
    width: 633px;
    max-width: 100%;
}

.service-block .info .title {
    margin: 0 0 15px;
    font-weight: bold;
    font-size: 48px;
    line-height: 65px;
    color: #5D5D5D;
}

.service-block .info .text {
    margin: 0 0 55px;
    font-size: 22px;
    line-height: 30px;
    color: #7C7C7C;
}

.service-block .info .h2 {
    margin: 0 0 12px;
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    color: #5D5D5D;
}

.service-block .info .problems {
    width: 521px;
    max-width: 100%;
    margin: 0 0 47px;
}

.service-block .info .problems ul li {
    margin: 0 0 30px;
    background: #FAF9F4;
    box-shadow: 0px 14px 14px rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 17px 20px 10px 106px;
    min-height: 85px;
    border-radius: 100px 10px 10px 100px;
    font-size: 18px;
    line-height: 25px;
    color: #5D5D5D;
    display: flex;
    align-items: center;
}

.service-block .info .problems ul li:last-child {
    margin-bottom: 0;
}

.service-block .info .problems ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 89px;
    height: 89px;
    background: url(../img/icons/check_gold.svg) no-repeat center center #FFF;
    border-radius: 100px;
    box-shadow: 0px 14px 14px rgba(0, 0, 0, 0.05);
}

.service-block .image {
    margin-left: auto;
    position: sticky;
    top: 100px;
}

.service-block .image img {
    position: relative;
    z-index: 5;
}

.service-block .image:before {
    content: '';
    position: absolute;
    right: -15px;
    top: -15px;
    width: 100%;
    height: 100%;
    border: 5px solid #f0ede8;
}

.service-block .info .price {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    color: #5D5D5D;
    margin: 0 0 15px;
}

.service-block .info .price b {
    color: #7C7C7C;
}

.service-block .info .controls {
    display: inline-block;
    vertical-align: top;
}

.service-section .service-block.type-2 .info {
    order: 2;
}

.service-section .service-block.type-2 .image {
    order: 1;
    margin-left: 0;
    margin-right: auto;
}

.service-block.type-2 .image:before {
    right: inherit;
    left: -15px;
}


/*** QUIZ ***/

.quiz {
	background: #F5F0E7;
	padding: 70px 0 120px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}


.quiz .bg-image {
    position: absolute;
    left: 50%;
    bottom: -150px;
    margin-left: -780px;
}

.quiz-block {
    display: flex;
    flex-wrap: wrap;
}

.quiz-block .questions-block {
    background: #FFF;
    border: 1px solid #D7D7D7;
    border-radius: 12px;
    padding: 20px 40px 50px;
    width: calc(100% - 400px);
    margin-right: 40px;
}

.quiz-block .questions-block .question-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 30px;
    color: #5d5d5d;
    border-bottom: 1px solid #e1e1e1;
    padding: 0 0 10px;
}

.quiz-block .questions-block .questions {
    display: flex;
    flex-wrap: wrap;
}

.quiz-block .questions-block .questions .item {
    width: calc(100%/3 - 60px*2/3);
    margin-right: 60px;
}

.quiz-block .questions-block .questions .item:last-child {
    margin-right: 0;
}

.quiz-block .questions-block .questions .item .title {
    font-size: 18px;
    font-weight: bold;
    color: #323232;
    margin: 20px 0;
}

.quiz-block .questions-block .questions .item .title:first-child {
    margin-top: 0;
}

.form-group.checkbox {
    margin: 0 0 10px;
}

.form-group.checkbox input {
    display: none;
}

.form-group.checkbox label {
    position: relative;
    padding-left: 45px;
    cursor: pointer;
    min-height: 29px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
}

.form-group.checkbox label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #f3f3f3;
}

.form-group.checkbox:last-child {
    margin-bottom: 0;
}

.form-group.checkbox input:checked + label:before {
    background: linear-gradient(264.61deg, #FFDF8E 7.92%, #FDCC4F 81.14%);
    box-shadow: inset 0px 9px 9px rgba(255, 255, 255, 0.25);
}

.form-group.checkbox input:checked + label:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 16px;
    background: url(../img/icons/check_black.svg) no-repeat center center;
}

.quiz-block .form {
    padding: 38px 32px;
    width: 360px;
    background: radial-gradient(66.36% 1709.38% at 22.86% 58.49%, #F9D59F 0%, #F1C881 100%);
    border-radius: 12px;
    display: flex;
    flex-flow: column;
}

.quiz-block .form .title {
    font-size: 20px;
    font-weight: bold;
    color: #323232;
    margin: 0 0 14px;
}

.quiz-block .form .subtitle {
    margin: 0 0 auto;
    color: #646464;
}

.form-group input[type=tel] {
    background: #FFF;
    width: 100%;
    border: none;
    padding: 24px 20px 24px 50px;
    border-radius: 100px;
    font-size: 20px;
    background: url(../img/icons/phone.svg) no-repeat left 20px center #FFF;
}

.form .form-group input::placeholder {
    color: #d3d3d3;
}

.form .form-group-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0 30px;
}

.form .form-group-list .form-group {margin: 0 auto;}

.form .form-group-list .form-group input {
    display: none;
}

.form .form-group-list .form-group label {
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: center;
    font-size: 13px;
    cursor: pointer;
    color: #323232;
}

.form .form-group-list .form-group label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #FFF;
    border-radius: 50%;
}

.form .form-control .btn {
    background: #323232;
    color: #FFF;
    border-bottom: none;
    margin: 0;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
}

.form .form-group-list .form-group input:checked + label:before {
    border: 3px solid #FFF;
    background: #00c453;
}


/*** DOCTORS ***/

.doctors {
	padding: 90px 0 128px;
}

.doctors-list .item {
	display: flex;
	flex-wrap: wrap;
	background: #F5F0E7;
	border: 1px solid #D7D7D7;
	box-shadow: 0px 34px 89px rgba(0, 0, 0, 0.05);
	border-radius: 30px;
	padding: 44px 0 0 40px;
	position: sticky;
	top: 90px;
	margin: 0 0 70px;
}

.doctors-list .item:last-child {
	margin-bottom: 0;
}

.doctors-list .item .image {
    margin-right: 16px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.doctors-list .item .image:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, #f5f0e7 0%, rgb(255 255 255 / 0%) 100%);
    height: 173px;
    pointer-events: none;
    z-index: 3;
}

.doctors-list .item .info {
	width: 664px;
	max-width: 100%;
    padding-bottom: 30px;
}

.doctors-list .item .info .title {
	font-size: 26px;
	line-height: 138%;
	color: #333333;
}

.doctors-list .item .info .subtitle {
	font-size: 18px;
	line-height: 129%;
	color: #7C7C7C;
	margin: 0 0 28px;
}

.doctors-list .item .info .advantages {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 37px;
}

.doctors-list .item .info .advantages ul {
	display: flex;
	align-items: center;
}

.doctors-list .item .info .advantages ul li {
	margin-right: 28px;
	display: flex;
	align-items: center;
	color: #333333;
	line-height: 138%;
}

.doctors-list .item .info .advantages ul li:last-child {
	margin-right: 0;
}

.doctors-list .item .info .advantages ul li img {
	margin-right: 14px;
}

.doctors-list .item .info .advantages ul li span {
	max-width: 100%;
}

.doctors-list .item .info .text {
    margin: 0 0 37px;
}

.doctors-list .item .info .text p {
    margin: 0 0 12px;
    color: #323232;
    font-size: 15px;
    line-height: 120%;
    position: relative;
    padding-left: 30px;
}

.doctors-list .item .info .text p:before {
    content: '';
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 9px;
    line-height: 1;
    width: 16px;
    height: 1px;
    background: #323232;
}

.doctors-list .item .info .text p:last-child {
    margin-bottom: 0;
}

.doctors-list .item .info .end-lide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.doctors-list .item .info .end-lide .certificates {
    margin-right: auto;
}

.doctors-list .item .info .end-lide .certificates ul {
    display: flex;
    align-items: center;
}

.doctors-list .item .info .end-lide .certificates ul li {
    margin-right: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.doctors-list .item .info .end-lide .certificates ul li:last-child {
    margin-right: 0;
}

.doctors-list .item .info .end-lide .certificates ul li a {
    cursor: pointer;
}

.doctors-list .item .info .end-lide .controls {
    margin-left: auto;
}

.doctors-list .item .info .end-lide .controls a {
	font-size: 16px;
	padding: 16px 32px;
}


/*** ABOUT ***/

.about {
    background: url(../img/about.jpg) no-repeat center top;
    position: relative;
    overflow: hidden;
}

.about:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, #FFFFFF 0%, rgb(255 255 255 / 0%) 100%);
    height: 173px;
    pointer-events: none;
    z-index: 3;
}

.about .about-block {
	position: relative;
	z-index: 5;
}

.about .about-block .info {
    padding: 143px 0;
    width: 608px;
    max-width: 100%;
}

.about .about-block .info .title {
    font-size: 64px;
    line-height: 64px;
    color: #464646;
    margin: 0 0 36px;
}

.about .about-block .info .text {
    font-size: 16px;
    line-height: 24px;
    color: #464646;
}

.about .about-block .info .text p {
    margin: 0 0 24px;
}

.about .about-block .info .text p:last-child {
    margin: 0;
}

.about .about-block .big-image {
    position: absolute;
    right: 0;
    top: 0;
}

.about .big-image {
    position: absolute;
    left: 50%;
    width: 961px;
    height: 862px;
    margin-left: 60px;
}

.about .big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-block .images {
    display: flex;
    align-items: center;
}

.about .about-block .images .item {
    overflow: hidden;
    margin-right: 20px;
	cursor: pointer;
}

.about .about-block .images .item:last-child {
    margin-right: 0;
}

.about .about-block .images .item img {
    border-radius: 30px;
    border: 5px solid #FFF;
}

.about .about-block .images .item.active img {
    border-color: #f4cd8c;
}


/*** REVIEWS ***/

.reviews {
    padding: 100px 0 70px;
    overflow: hidden;
    max-width: 100%;
    position: relative;
}

.reviews .container {
    position: relative;
    z-index: 5;
}

.reviews .bg-image {
    pointer-events: none;
    position: absolute;
    left: 50%;
    bottom: 40px;
    margin-left: 580px;
    z-index: 4;
}

.reviews .bg-image img {
    max-width: inherit;
}

.reviews-list {
    margin: 0 0 128px;
}

.reviews-list .slick-track {
    display: flex;
}

.reviews-list .item {
    background: #F5F0E7;
    border-radius: 10px;
    padding: 40px;
    margin: 0 15px;
    display: flex;
    flex-flow: column;
    position: relative;
    height: auto;
}

.reviews-list .item:after {
    content: '';
    position: absolute;
    right: -5px;
    top: 5px;
    width: 63px;
    height: 63px;
    background: url(../img/icons/quete.svg) no-repeat center center;
}

.reviews-list .item .image {
    width: 100%;
    overflow: hidden;
    margin: auto 0 0;
    order: 2;
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: flex-end;
    padding-top: 20px;
}

.reviews-list .item .info {
    width: 100%;
    order: 1;
}

.reviews-list .item .info .name {
    color: #252A2D;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    margin: 0 0 15px;
}

.reviews-list .item .info .text {
    font-size: 18px;
    line-height: 25px;
    color: #697176;
}

.reviews-list .item .image span {
    margin-right: 10px;
    color: #d6d3cc;
}

.reviews-list .item .image img {
    filter: grayscale(1);
    opacity: .3;
    width: 100px;
}

.more-reviews {
    text-align: center;
}

.more-reviews .items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 770px;
    margin: 0 auto;
}

.more-reviews .items .item {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.more-reviews .items .item:last-child {
    margin-right: 0;
}

.more-reviews .items .item img {
    position: relative;
    z-index: 4;
}

.more-reviews .items .item span {
    position: relative;
    left: -12px;
    top: -20px;
    background: #ffcc00;
    border-radius: 40px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    min-width: 30px;
}

.more-reviews .title {
    font-weight: 500;
    font-size: 22px;
    line-height: 140%;
    color: #7C7C7C;
    margin: 0 0 24px;
}


/*** CONTACTS ***/

.contacts {
    position: relative;
    z-index: 5;
}

.contacts .map {
    height: 545px;
    width: 100%;
}

.contacts .map #map {
    width: 100%;
    height: 100%;
}

.contacts .contacts-block {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 5;
}

.contacts .contacts-list {
    background: #fff;
    border-radius: 15px 15px 0 0;
    padding: 39px 52px 49px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0px 14px 44px rgba(0, 0, 0, 0.1);
}

.contacts .contacts-list .item {
    display: flex;
    align-items: flex-start;
    width: calc(100% / 3);
}

.contacts .contacts-list .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgb(246 208 148 / 80%);
    border-radius: 50px;
}

.contacts .contacts-list .item .icon img {
    width: 20px;
}

.contacts .contacts-list .info {
    margin-left: 20px;
}

.contacts .contacts-list .info .title {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    color: #898989;
}

.contacts .contacts-list .info .text {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    color: #303030;
}

.contacts .contacts-list .item:nth-child(2) {
    margin: 0 auto;
}

.contacts .contacts-list .info .text a {
    color: #323232;
    font-size: 24px;
}


/*** FOOTER ***/

footer {
    position: relative;
    z-index: 10;
    background: #464646;
}

footer .footer-top {
    padding: 34px 0;
}

footer .footer-top .footer-top-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

footer .footer-top .phone-block {
    text-align: right;
}

footer .footer-top .phone-block .phone a {
    color: #fff;
    font-size: 24px;
    line-height: 120%;
    font-weight: normal;
    position: relative;
    padding-left: 30px;
}

footer .footer-top .phone-block .phone a span {
    color: #ffffff;
    font-weight: 600;
}

footer .footer-top .phone-block .time {
    color: #d1d1d1;
}

footer .footer-top .phone-block .phone a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/icons/phone.svg) no-repeat center center;
    width: 21px;
    height: 21px;
}

footer .footer-top .footer-top-block .text {
    margin: 45px 0 0;
    color: #949494;
    width: 800px;
    max-width: 100%;
}

footer .footer-top .footer-top-block .text b {
    display: block;
    margin: 0 0 10px;
}

footer .footer-top .footer-top-block .text span {
    display: block;
}

footer .footer-top .footer-top-block ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin: 0 auto;
}

footer .footer-top .footer-top-block ul li {
    margin-right: 20px;
}

footer .footer-top .footer-top-block ul li:last-child {
    margin-right: 0;
}

footer .footer-top .footer-top-block ul li a {
    color: #ccc;
    border-bottom: 1px dashed #ccc;
    transition: 0.3s color, 0.3s border-color;
}

footer .footer-top .footer-top-block ul li a:hover {
    color: #9d9072;
    border-color: transparent;
}


/*** MODAL ***/

.modal {
    display: none;
    width: 476px;
    margin: 30px auto 15px;
    overflow: visible;
    border-radius: 24px;
    padding: 30px 50px;
    max-width: 100%;
}

.modal .form-block.type-2 {
  padding: 52px 90px 62px;
}

.modal .fancybox-close-small {
    padding: 0;
    right: -40px;
    top: -40px;
    color: #FFF;
    opacity: 1;
}

.compensate-for-scrollbar {
  margin-right: 0;
}

.modal .form-block .form-group input {
    padding: 26px 20px 26px 60px;
    background-color: #FFF;
    height: auto;
    font-size: 20px;
    margin: 0 0 10px;
    width: 100%;
    border: 1px solid #CCC;
    border-radius: 70px;
    }

.modal .form-block .form-group .btn {
  padding: 21px 30px;
}

.modal-title {
    text-align: center;
    margin: 0 0 25px;
}

.modal-title .title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 120%;
    margin: 0 0 10px;
}

.modal-title .subtitle {
    font-size: 16px;
    color: #333;
}

.modal .form-text {
    text-align: center;
}

.modal .form-block .btn {
    width: 100%;
    font-size: 18px;
    padding: 18px 20px;
}

.form-text {
    margin: 10px 0 0;
    font-size: 14px;
    color: #7c7c7c;
}