@keyframes reveal {
0% {
transform: translateY(20%);
opacity: 0;
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.cookies {
display: none;
position: fixed;
z-index: 100;
bottom: 20px;
left: calc((100% - 1240px) / 2);
max-width: calc(100% - 24px);
width: 1240px;
box-sizing: border-box;
padding: 20px 30px;
background: #ffffff;
border: 1px solid #d9d9d9;
align-items: center;
justify-content: space-between;
}
.cookies_btn {
padding: 8px 12px;
border: 2px solid #000000;
background: #ffffff;
font-size: 16px;
cursor: pointer;
color: #000000;
}
.cookies_btn:hover {
background: #ffc107;
}
.cookies.visible {
display: flex;
animation: reveal 1000ms ease-in-out 1 normal forwards;
gap: 10px;
}
header {
width: 1240px;
max-width: calc(100% - 40px);
margin: 0 auto;
display: grid;
grid-template-columns: 278px 1fr 160px;
}
header .logo, header .feedback {
border-left: 2px solid #000000;
border-right: 2px solid #000000;
}
header .logo {
padding: 36px 20px 20px 40px;
}
header .feedback {
display: flex;
flex-direction: column;
justify-content: flex-end;
background: #d9d9d9;
}
header .feedback .btn {
padding: 12px 17px;
background: #ffc107;
cursor: pointer;
font-family: 'Gilroy Bold', sans-serif;
border-top: 2px solid #000000;
}
header .feedback .btn:hover {
background: #ffffff;
}
header .feedback .phone {
font-family: 'Gilroy Bold', sans-serif;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
}
header .feedback .phone a {
color: #000000;
text-decoration: none;
text-align: center;
}
nav {
margin-left: auto;
align-self: flex-end;
}
nav ul {
display: flex;
list-style: none;
margin-bottom: 8px;
padding: 0;
align-items: flex-start;
}
nav ul li {
cursor: pointer;
margin-right: 40px;
font-family: 'Gilroy Bold', sans-serif;
font-size: 14px;
padding-bottom: 2px;
border: 2px solid transparent;
position: relative;
}
nav ul li a {
color: #000000;
text-decoration: none;
}
nav ul li:hover, nav ul li.active {
color: #ffc107;
border-bottom: 2px solid #ffc107;
border-radius: 2px;
}
nav ul li:hover a, nav ul li.active a {
color: #ffc107;
}
nav ul li:hover .inner_menu a, nav ul li.active .inner_menu a {
color: initial;
}
.inner_menu {
font-size: 16px;
font-family: 'Gilroy', sans-serif;
font-weight: 500;
position: absolute;
z-index: 100;
top: 0;
padding-top: 31px;
width: 200px;
display: none;
}
nav ul li.dropdown:hover .inner_menu {
display: block;
}
.inner_menu_item {
padding: 10px;
border-bottom: 2px solid #000000;
background-color: #fff;
cursor: pointer;
}
.inner_menu_item:hover {
background: #ffc107;
}
.menu_button {
display: none;
}
.desktop {
display: block;
}
.mobile {
display: none;
}
@media (max-width: 1240px) {
.cookies {
left: 12px;
}
}
@media (max-width: 980px) {
header {
max-width: 100%;
grid-template-columns: 1fr 60px 60px;
}
header .logo, header .feedback {
border: none;
}
header .logo {
padding: 10px;
max-width: 80px;
}
header .logo img {
max-width: 100%;
}
nav {
display: none;
position: absolute;
width: 100%;
}
nav ul {
flex-direction: column;
padding: 40px 20px 50px 80px;
gap: 30px;
margin-top: 0;
margin-bottom: 0;
}
nav ul li {
margin-right: 0;
font-size: 16px;
text-transform: uppercase;
z-index: 1;
}
nav ul li.dropdown {
display: flex;
flex-direction: column;
}
nav ul li.active {
border: none;
color: #ffc107;
}
nav ul li:hover {
border: none;
}
nav.active {
background: #fff;
display: block;
top: 63px;
z-index: 10;
border-bottom: 1px solid #d9d9d9;
}
nav.active::after {
content: '';
width: 100%;
height: 200px;
background: linear-gradient(#d9d9d9, transparent 1px), linear-gradient(90deg, #d9d9d9, transparent 1px);
background-size: 40px 40px;
position: absolute;
bottom: 0;
left: 0;
}
nav.active .inner_menu {
display: block;
position: relative;
padding-top: 15px;
}
nav.active .inner_menu_item {
border: none;
padding: 10px 0;
text-transform: none;
font-weight: 500;
font-size: 18px;
}
nav.active .inner_menu_item:last-child {
padding-bottom: 0;
}
.desktop {
display: none;
}
.mobile {
display: block;
align-self: center;
}
header .feedback {
display: none;
}
.menu_button {
display: flex;
border-left: 2px solid #000000;
background: #ffc107;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.menu_button span {
width: 30px;
height: 3px;
background: #000000;
margin-bottom: 5px;
display: block;
position: relative;
transition: transform linear 0.2s;
}
.menu_button span:last-child {
margin-bottom: 0;
}
.menu_button.active span {
position: absolute;
transform: rotate(45deg);
top: 45%;
transition: transform linear 0.2s;
}
.menu_button.active span:last-child {
transform: rotate(-45deg);
transition: transform linear 0.2s;
}
}
@media (max-width: 800px) {
nav.active {
top: 63px;
}
.cookies {
flex-wrap: wrap;
gap: 12px;
}
.cookies_btn {
margin-left: auto;
}
}
.page__main {
display: grid;
grid-template-columns: calc(50% - 342px) 1fr 700px;
background: #d9d9d9;
position: relative;
}
.page__main .checks {
background: linear-gradient(#fff, transparent 1px), linear-gradient(90deg, #fff, transparent 1px);
background-size: 40px 40px;
background-position-x: right;
border-right: 1px solid #fff;
}
.page__main .image {
max-height: 60vh;
min-height: 480px;
border-right: 2px solid #000000;
border-left: 2px solid #000000;
}
.page__main .image img {
height: 100%;
}
.page__main .caption p {
max-width: 280px;
font-family: 'Roboto', sans-serif;
line-height: 140%;
padding-left: 20px;
margin-top: 0;
}
.page__main .caption {
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
}
.page__main h1 {
margin-top: 0;
padding-left: 20px;
line-height: 90%;
margin-bottom: 30px;
}
.page__about, .page__adv, .page__testimonials, .page__feedback {
padding-top: 150px;
padding-bottom: 120px;
}
.page__about {
background: linear-gradient(#d9d9d9, transparent 1px), linear-gradient(90deg, #d9d9d9, transparent 1px);
background-size: 40px 40px;
background-position-x: calc(50% - 362px);
padding-bottom: 80px;
}
.page__about .checks {
display: none;
}
.page__about h2 {
text-indent: 320px;
margin-top: 20px;
margin-bottom: 40px;
}
.page__about h2 span {
background: #d9d9d9;
padding: 0 5px;
}
.page__about .content .title .title__image {
border: 2px solid #000000;
padding: 0;
}
.page__about .content .title {
margin-bottom: 100px;
}
.page__about h3 {
text-indent: 320px;
}
.slider {
margin-top: 60px;
position: relative;
}
.slider .swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination {
top: auto;
bottom: -42px;
}
.slider .swiper-pagination-bullet-active {
background: #ffffff;
}
@media (max-width: 1600px) {
.page__main {
grid-template-columns: calc(50% - 342px) 1fr 500px;
gap: 0 10px;
}
}
@media (max-width: 1280px) {
.page__main {
grid-template-columns: 298px 1fr 500px;
}
.page__about .content .text {
grid-template-columns: 280px 450px 1fr;
}
.page__about .content .title .title__image {
padding: 0;
}
}
@media (max-width: 1200px) {
.page__main {
grid-template-columns: 3fr 2fr;
}
.page__main .image {
margin-left: auto;
}
.page__main .checks {
position: absolute;
height: 100%;
background-position: left;
width: 280px;
}
.page__main h1 {
text-indent: -238px;
padding-left: 20px;
margin: 30px 0 45px 278px;
position: relative;
}
.page__main .caption p {
padding-left: 298px;
}
.page__about {
background-position: initial;
padding-top: 80px;
padding-bottom: 80px;
}
}
@media (max-width: 1140px) {
.page__main {
grid-template-columns: 1fr 400px;
}
.page__main .image {
max-height: 55vh;
min-height: 420px;
}
.page__about .content .title {
grid-template-columns: 1fr;
gap: 20px 0;
}
.page__about .content .title .title__text {
max-width: 236px;
}
}
@media (max-width: 1023px), (max-width: 1100px) and (orientation: portrait) { .page__main h1 {
font-size: 64px;
max-width: 370px;
text-indent: 0;
margin-left: 0;
}
.page__main .image {
justify-self: flex-end;
border-top: none;
}
.page__main .image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top;
}
.page__main .caption {
position: relative;
}
.page__main .caption p {
padding-left: 20px;
}
.page__main .checks {
width: 160px;
}
.page__main h1 {
font-size: 64px;
}
.page__about .content .text {
grid-template-columns: 20% 1fr;
}
.page__about .text__empty {
display: block;
}
.page__about h3, .page__about h2 {
text-indent: calc(20% + 40px);
}
.page__about, .page__adv, .page__testimonials, .page__feedback {
padding-top: 80px;
padding-bottom: 80px;
}
.page__about .content .text .text__btns {
grid-column-start: 2;
}
}
@media (max-width: 960px) {
.page__main h1 {
text-indent: 0;
padding-left: 20px;
}
}
@media (max-width: 800px) {
.page__about .content .text {
grid-template-columns: 1fr;
}
.page__about, .page__testimonials, .page__feedback {
padding-top: 40px;
}
.page__about {
background: #fff;
position: relative;
}
.page__about .checks {
background: linear-gradient(#d9d9d9, transparent 1px), linear-gradient(90deg, #d9d9d9, transparent 1px);
background-size: 40px 40px;
background-position-x: left;
width: 100%;
height: 441px;
position: absolute;
top: 0;
left: 0;
display: block;
}
.page__about .content .title {
margin-bottom: 40px;
position: relative;
}
.page__about .content .text .text__btns {
grid-column-start: initial;
}
.page__about .content .title .title__image {
display: none;
}
.page__about h3, .page__about h2 {
text-indent: 0;
}
.page__about .text__empty {
display: none;
}
.page__testimonials .slider {
margin-top: 0;
}
}
@media (max-width: 640px) {
.page__main {
grid-template-columns: 1fr;
}
.page__main .caption {
order: 1;
margin-bottom: 0;
}
.page__main h1 {
font-size: 40px;
}
.page__main .checks {
width: 100%;
height: 120px;
bottom: 0;
}
.page__main .image {
max-width: 100vw;
min-height: 345px;
border: 2px solid #000000;
border-top: none;
}
}
.page__team {
background: linear-gradient(#fff, transparent 1px), linear-gradient(90deg, #fff, transparent 1px);
background-size: 40px 40px;
background-color: #d9d9d9;
background-position-x: calc(50% - 362px);
}
.page__team h1 {
text-indent: 0;
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
line-height: 90%;
font-size: 150px;
font-family: 'Gilroy Bold';
position: relative;
z-index: 3;
}
.page__team h1 p {
margin: 0;
}
.page__team h1 p:nth-child(2) {
text-indent: 630px;
}
.page__team h1 p:last-child {
text-indent: 640px;
}
.page__team.page__title {
position: relative;
}
.page__team .content {
width: 1240px;
max-width: calc(100% - 24px);
}
.page__team .content .logo {
position: absolute;
z-index: 1;
top: auto;
left: calc(50% - 500px);
}
.page__team .content .description {
width: 280px;
position: absolute;
font-size: 18px;
line-height: 25px;
top: 40px;
right: 0;
}
.page__image {
display: flex;
} .page__image .about-us {
margin: -2px auto;
max-width: 100vw;
}
.page__about-team {
padding-top: 150px;
padding-bottom: 120px;
}
.page__about-team .content {
position: relative;
}
.page__about-team .content .title .title__text {
color: #ffc107;
border: none;
font-size: 30px;
padding-top: 6px;
padding-left: 0;
}
.page__about-team .content .title .title__caption {
font-family: 'Gilroy', sans-serif;
font-size: 64px;
line-height: 100%;
text-indent: 320px;
position: absolute;
width: 100%;
}
.page__about-team .content .title .title__description {
margin: 0;
margin-top: 0;
}
.page__about-team .content .title .title__description h2 {
margin: 0;
font-weight: 500;
text-indent: 320px;
margin-left: -320px;
margin-bottom: 50px;
}
.page__about-team .content .title .title__description p {
max-width: 280px;
}
.page__about-team .content .list {
margin-top: 150px;
display: grid;
grid-template-columns: repeat(4, 280px);
gap: 40px 40px;
}
.list__title {
font-family: 'Gilroy ExtraBold', sans-serif;
font-size: 20px;
line-height: normal;
text-transform: uppercase;
padding: 28px 22px;
background: #ffc107;
border: 2px solid #000000;
align-self: start;
}
.list__item {
border: 2px solid #000000;
padding-bottom: 20px;
display: flex;
flex-direction: column;
align-self: start;
}
.list__item a {
color: #000000;
text-decoration: none;
}
.list__item.no-border {
display: flex;
border: none;
}
.list__item .image, .list__item .image img {
width: 100%;
height: 350px;
object-fit: cover;
}
.list__item.small .image, .list__item.small .image img {
height: 280px;
}
.list__item .fio, .list__item .description, .list__item .experience {
padding: 20px;
padding-bottom: 0;
}
.list__item .fio {
font-weight: 700;
}
.list__item .description {
font-size: 14px;
line-height: 140%;
}
.list__item_doctor:hover {
border: 2px solid #ffc107;
}
.page__testimonials .content .title.title__achievs {
grid-template-columns: 280px 1fr;
}
.achieve__item {
display: grid;
grid-template-columns: 280px 1fr 20px;
padding-top: 23px;
padding-bottom: 23px;
border-top: 2px solid #000000;
position: relative;
color: #000000;
}
.achieve__item:last-child {
border-bottom: 2px solid #000000;
}
.achieve__item .year {
font-size: 18px;
}
.achieve__item .text {
font-size: 12px;
}
.content .achieve__item .text {
display: block;
}
.achieve__item .caption {
font-weight: 700;
}
.list__item.no-border.list__item_tablet {
display: none;
}
@media (max-width: 1240px) {
.page__team h1 {
font-size: 120px;
}
.page__team h1 p:nth-child(2), .page__team h1 p:last-child {
text-indent: 40%;
}
.page__team .content .logo {
max-height: 400px;
top: 20px;
left: auto;
}
.page__team .content .logo img {
max-height: 400px;
}
.page__about-team {
padding: 100px 0;
}
.page__about-team .content .list {
margin-top: 80px;
grid-template-columns: repeat(3, 280px);
}
.list__item.no-border {
display: none;
}
.list__item.no-border.list__item_tablet {
display: block;
}
}
@media (max-width: 940px) {
.page__about-team .content .list {
margin-top: 80px;
grid-template-columns: 1fr;
}
.list__item {
max-width: 450px;
width: 100%;
margin: 0 auto;
}
.list__title {
font-size: 16px;
max-width: 230px;
box-sizing: border-box;
padding: 20px;
margin-bottom: 20px;
}
.list__item .image, .list__item .image img {
max-height: 250px;
object-fit: cover;
object-position: 0 0;
}
.list__item.no-border.list__item_tablet {
display: none;
}
}
@media (max-width: 800px) {
.page__team h1 {
font-size: 80px;
}
.page__team h1 p:nth-child(2), .page__team h1 p:last-child {
text-indent: 310px;
}
.page__team .content .logo {
top: -70px;
left: 70px;
height: 360px;
width: calc(100% - 65px);
}
.page__team .content .logo img {
width: 100%;
height: 100%;
object-fit: contain;
}
.page__about-team {
padding-top: 60px;
padding-bottom: 80px;
}
.page__about-team .content .title .title__text {
font-size: 16px;
}
.page__about-team .content .title .title__description {
max-width: none;
}
.page__about-team .content .title .title__description h2 {
margin-left: 0;
text-indent: 80px;
position: relative;
bottom: 42px;
margin-bottom: 0;
}
.page__about-team .content .title .title__description p {
max-width: none;
}
}
@media (max-width: 480px) {
.page__team .content {
position: unset;
}
.page__team .content .logo {
top: 5vh;
left: 10vw;
}
.page__team h1 {
font-size: 40px;
}
.page__team h1 p:nth-child(2) {
text-indent: 70px;
}
.page__team h1 p:last-child {
text-indent: 165px;
position: relative;
bottom: 36px;
}
}
.page__profile {
background: linear-gradient(#ffffff, transparent 1px), linear-gradient(90deg, #ffffff, transparent 1px);
background-color: #d9d9d9;
background-size: 40px 40px;
background-position-x: calc(50% - 320px);
}
.page__profile .content {
width: auto;
margin-left: calc(50% - 620px);
max-width: initial;
background-color: #d9d9d9;
position: relative;
z-index: 3;
border-left: 2px solid;
}
.page__profile .content .title {    
display: grid;
grid-template-columns: 975px 1fr;
gap: 0 10px;
}
.breadcrumbs {
font-size: 14px;
line-height: 32px;
margin-left: 278px;
margin-top: 30px;
margin-bottom: 30px;
display: flex;
align-items: center;
width: max-content;
}
.breadcrumbs a {
color: #000000;
text-decoration: none;
font-size: 14px;
display: flex;
align-items: center;
}
.breadcrumbs a::after {
content: '';
width: 3px;
height: 3px;
border-radius: 50%;
background: #ffffff;
margin-left: 10px;
margin-right: 10px;
}
.page__docs .breadcrumbs a::after {
background: #000000;
}
.title__block {
display: grid;
grid-template-columns: 275px 1fr;
position: relative;
height: calc(100% - 92px);
}
.title__avatar {
display: flex;
justify-content: center;
}
.title__avatar img {
width: auto;
height: 100px;
object-fit: cover;
}
.page__profile .content .title .title__block .title__content .title__text {
background: transparent;
border: none;
font-family: 'Gilroy Bold';
font-size: 72px;
line-height: 100%;
margin-bottom: 30px;
padding: 0;
max-width: 40px;
text-transform: none;
}
.page__profile .title__description { margin-bottom: 60px;
max-width: 600px;
display: flex;
align-items: center;
justify-content: space-between;
}
.title__description .btn button {
font-size: 18px;
font-weight: 700;
padding: 10px 30px;
border: 2px solid;
background: #ffc107;
color: #000000;
}
.title__description .btn button:hover {
background: #ffffff;
}
.title__description_text {
max-width: 245px;
text-wrap: balance;
}
.page__profile .title__image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.page__about.page__about-profile h2 {
margin-top: 0;
margin-bottom: 50px;
font-size: 52px;
}
.page__about.page__about-profile {
background: #ffffff;
}
.page__about.page__about-profile .content .text .text__main p {
margin-top: 0;
}
.text .exp {
font-size: 16px;
font-weight: 700;
padding: 4px 22px;
background: #ffc107;
align-self: self-start;
justify-self: self-end;
}
.page__profile-info {
background: #d9d9d9;
padding-top: 150px;
}
.page__profile-info.page__docs {
background: #ffffff;
}
.page__profile-info .title__list {
margin-bottom: 150px;
}
.page__profile-info .title__list .achieve__item {
grid-template-columns: 1fr 20px;
}
.page__profile-info .title__list.title__list-education .achieve__item {
grid-template-columns: 300px 1fr;
}
.page__profile-info.page__docs .title__list {
margin-bottom: 0;
}
.page__profile-info.page__docs.page__acts .title__list {
margin-bottom: 150px;
}
.page__docs .content .title .title__text {
background: #ffc107;
}
.page.page__docs-last {
border-top: none;
padding-bottom: 150px;
line-height: 140%;
}
.page__profile-info.page__docs.page__nadzor .title__list {
max-width: 640px;
line-height: 140%;
}
.page.page__docs-last.page__nadzor {
border-top: 2px solid #000000;
}
.achieve__item .arrow {
display: none;
}
.title__list_btn {
margin-top: 40px;
}
.title__list_btn button {
background: transparent;
border: none;
font-size: 18px;
font-weight: 700;
color: #000000;
}
.title__list h2 {
margin-top: 0;
line-height: 120%;
}
.title__list p {
max-width: 640px;
line-height: 140%;
}
.title__list a {
font-weight: 700;
line-height: 120%;
text-decoration: underline;
}
.title__list .vacancy__item {
text-decoration: none;
}
.title__list.vacancy h2 {
margin-bottom: 60px;
}
.title__list a:hover {
color: #d9d9d9;
}
.title__list a:hover svg path{
fill: #d9d9d9;
}
.longlist {
max-height: 800px;
transition: all ease-out 1.7s;
}
.longlist .toggling__item {
height: 0;
opacity: 0;
z-index: -5;
padding: 0;
border: none;
}
.longlist.opened {
height: auto;
max-height: 5000px;
transition: all ease-in 1.7s;
}
.longlist.opened .toggling__item {
padding-top: 23px;
padding-bottom: 23px;
border-top: 2px solid #000000;
height: auto;
opacity: 1;
z-index: 1;
}
@media (max-width: 1640px) {
.page__profile .content .title {
grid-template-columns: 1fr 460px;
gap: 0 10px;
}
.title__block {
grid-template-columns: 275px 1fr;
}
}
@media (max-width: 1250px) {
.title__avatar {
display: none;
}
.page__about.page__about-profile, .page__profile-info {
padding-top: 80px;
padding-bottom: 80px;
}
.page__profile .title__content {
padding-left: 20px;
grid-column-start: 1;
grid-column-end: 3;
}
.page__profile .content {
margin-left: 0;
border-left: none;
}
.page__profile .content .title {
grid-template-columns: 55fr 50fr;
gap: 0 10px;
}
.page__profile .content .title .title__image {
padding: 0;
}
.title__block {
grid-template-columns: 170px 1fr;
}
.title__description_text {
width: 100%;
padding: 0;
margin-bottom: 30px;
}
.page__profile .title__description {
justify-content: flex-start;
align-items: flex-start;
margin-left: 0;
flex-wrap: wrap;
margin-top: 30px;
margin-bottom: 30px;
}
.page__about-profile .content .text {
grid-template-columns: 130px 600px 1fr;
}
.breadcrumbs {
margin-left: 20px;
margin-bottom: 20px;
}
.page.page__docs-last {
padding-top: 0;
padding-bottom: 80px;
}
.page.page__docs-last.page__nadzor {
padding-top: 80px;
}
.page__profile-info.page__docs.page__acts .title__list {
margin-bottom: 80px;
}
}
@media (max-width: 1023px) {
.title__block {
grid-template-columns: 1fr;
}
.title__content {
padding-left: 20px;
}
.page__profile-info {
padding-top: 80px;
}
.text__empty {
display: none;
}
.page__about-profile .content .text {
grid-template-columns: 550px 1fr;
}
.page__about.page__about-profile h2 {
font-size: 40px;
}
.page__profile .content .title .title__block .title__content .title__text {
font-size: 54px;
}
.page__profile-info .title__list.title__list-education .achieve__item {
grid-template-columns: 100px 1fr;
}
}
@media (max-width: 920px) {
.breadcrumbs {
display: none;
}
.page__profile .content .title .title__block .title__content .title__text {
margin-bottom: 30px;
margin-top: 30px;
}
}
@media (min-width: 801px) {
.title__list h2 {
font-size: 40px;
}
}
@media (max-width: 800px) {
.page__profile {
border: none;
}
.page__profile .content {
margin-left: 0;
border: none;
}
.page__profile .title__content {
padding-left: 10px;
}
.title__description_text {
padding-left: 0;
}
.page__profile .content .title .title__image img {
object-fit: cover;
object-position: top;
}
.page__profile .content .title .title__block .title__content .title__text {
font-size: 40px;
}
.page__about.page__about-profile h2 {
font-size: 20px;
font-weight: 500;
line-height: 24px;
margin-bottom: 40px;
}
.page__about-profile .content .text {
padding-left: 70px;
}
.page__about-profile .content .text {
grid-template-columns: 1fr;
}
.text .exp {
justify-self: self-start;
margin-bottom: 20px;
}
.page__profile-info .title__list {
margin-top: 40px;
margin-bottom: 80px;
}
.page__profile-info .title__list.title__list-education .achieve__item {
grid-template-columns: 1fr;
padding: 20px 0;
}
.page__profile-info .title__list.title__list-education .achieve__item.toggling__item {
padding: 0;
}
.page__profile-info .title__list.title__list-education.longlist.opened .achieve__item.toggling__item {
padding: 20px 0;
}
.page__profile-info.page__docs.page__acts .title__list {
margin-bottom: 0;
}
.content .achieve__item .text {
padding-left: 0;
max-height: 0;
opacity: 0;
transition: max-height linear 0.3s;
}
.content .achieve__item.opened .text {
max-height: 500px;
padding-top: 20px;
opacity: 1;
transition: max-height ease 0.3s;
}
.title__list_btn button {
background: #ffc107;
border: 2px solid #000000;
font-size: 18px;
font-weight: 700;
padding: 10px 30px;
}
.achieve__item .arrow {
display: block;
position: absolute;
top: 20px;
right: 10px;
width: 15px;
height: 15px;
border-right: 2px solid #000000;
border-bottom: 2px solid #000000;
transform: rotate(45deg);
transition: all ease 0.3s;
}
.achieve__item.opened .arrow {
transform: rotate(225deg);
transition: all ease-out 0.3s;
}
}
@media (max-width: 640px) {
.page.page__contacts.page__title.page__docs {
max-height: 200px;
min-height: 200px;
}
.title__list h2 {
font-size: 24px;
}
}
@media (max-width: 600px) {
.page__profile .content .title {
grid-template-columns: 1fr;
}
.title__inner {
order: 1;
}
.page__about-profile .text__main {
order: 1;
}
.page__profile .content .title .title__image {
max-height: 250px;
display: flex;
justify-content: center;
border: 2px solid #000000;
border-top: none;
box-sizing: border-box;
}
}
.page__service-item .breadcrumbs {
margin-left: 0px;
}
.page__service-item .title__block {
grid-template-columns: 276px 1fr;
gap: 0 40px;
}
.page__profile.page__service-item .content {
height: 100%;
}
.page__profile.page__service-item .content .title {
grid-template-columns: 880px 440px;
gap: 0 40px;
height: 100%;
}
.page__profile.page__service-item .title__image img {
object-fit: contain;
}
.page__service-item .title__description, .page__service-item .title__description .text {
display: block;
}
.page__service-item .title__description .text, .text-mobile {
white-space: pre-line;
line-height: 1.4;
}
.page__service-item .title__block {
height: 100%;
}
.page__service-item .title__content {
align-self: center;
}
.text-mobile {
display: none;
}
.page__service-item .content .title .title__text {
text-transform: none;
}
.page__profile.page__service-item {
background: #ffc107;
display: block;
}
.page__profile.page__service-item .title__avatar {
background: linear-gradient(#ffffff, transparent 1px), linear-gradient(90deg, #ffffff, transparent 1px);
background-size: 40px 40px;
border-right: 2px solid;
}
.page__service-info {
padding-top: 150px;
padding-bottom: 150px;
}
.page__service-info .title__inner h3 {
font-size: 40px;
font-family: 'Gilroy', sans-serif;
font-weight: 500;
margin-top: 0;
}
.page__service-info .title__inner p {
max-width: 600px;
line-height: 1.4;
}
.page__service-info .title__list {
margin-top: 80px;
}
.page__service-info .list__caption {
font-weight: 700;
padding: 4px 30px;
background: #ffc107;
width: fit-content;
}
.page__service-info .title__list ul {
margin-top: 20px;
list-style: none;
padding-left: 0;
}
.page__service-info .title__list ul li {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.page__service-info .title__list ul li::before {
content: '';
width: 5px;
height: 5px;
border-radius: 50%;
background: #ffc107;
margin-right: 15px;
}
.page__methods {
padding: 150px 0;
background: linear-gradient(#ffffff, transparent 1px), linear-gradient(90deg, #ffffff, transparent 1px);
background-size: 40px 40px;
background-color: #d9d9d9;
background-position-x: calc(50% - 362px);
}
.methods {
margin-top: 50px;
display: grid;
grid-template-columns: 280px 1fr;
gap: 0 40px;
}
.methods__list_caption {
padding: 20px 10px;
background: #ffffff;
border: 2px solid;
border-top-width: 1px;
cursor: pointer;
}
.methods__list_caption:first-child {
border-top-width: 2px;
}
.methods__list_caption.active {
font-weight: 700;
background-color: #ffc107;
}
.methods__description {
display: grid;
grid-template-columns: 640px 280px;
border: 2px solid;
height: 290px;
}
.content .methods__description .text {
display: flex;
align-items: center;
background-color: #ffffff;
padding: 40px;
}
.content .methods__description .image {
display: flex;
align-items: center;
justify-content: center;
background: #ffc107;
border-left: 2px solid;
position: relative;
}
.content .methods__description .image img {
width: 100%;
height: 100%;
object-fit: contain;
}
.page__profile-info .title__list.title__list-price .achieve__item {
grid-template-columns: 1fr 150px;
}
.page__specialists {
padding: 150px 0;
background: #ffc107;
}
.page__specialists .list__item {
border: none;
border-top: 2px solid #000000;
display: flex;
flex-direction: row;
gap: 0 40px;
padding: 10px 0;
position: relative;
}
.page__specialists .list__item .name {
font-size: 24px;
font-weight: 700;
width: 33%;
}
.page__specialists .list__item .avatar {
width: 33%;
max-height: 160px;
}
.page__specialists .list__item .avatar img {
width: 100%;
height: 100%;
object-fit: contain;
}
.page__specialists .list__item .spec {
font-size: 18px;
width: 33%;
}
.list__item_link {
color: #000000;
}
.page__service-info iframe {
width: 415px;
height: 800px;
max-width: 100%;
max-height: 100vh;
grid-column: 2;
}
@media (max-width: 1440px) {
.page__profile.page__service-item .content .title {
grid-template-columns: 2fr 1fr;
gap: 0 20px;
}
}
@media (max-width: 1240px) {
.page__profile.page__service-item .content .title {
grid-template-columns:  2fr 1fr;
padding-right: 10px;
}
.page__service-item .title__block {
grid-template-columns: 15% 1fr;
}
.content .title .title__image {
padding: 0 20px;
}
.methods__description {
grid-template-columns: 16fr 7fr;
height: auto;
}
}
@media (max-width: 1023px) {
.methods {
grid-template-columns: 1fr;
}
.methods__description {
grid-template-columns: 1fr;
height: auto;
margin-top: 10px;
}
.content .methods__description .image {
border-top: 2px solid #000000;
border-left: none;
}
}
@media (max-width: 800px) {
.page__service-item .title__block {
grid-template-columns: 1fr;
position: inherit;
}
.page__profile.page__service-item .content .title {
grid-template-columns: 1fr;
padding: 0;
}
.page__profile.page__service-item .content .title .title__block .title__content .title__text {
margin-top: 60px;
}
.page__profile.page__service-item .content .title .title__image {
border: none;
order: 1;
max-height: 30vh;
}
.page__service-item.page__title {
height: auto;
max-height: none;
min-height: auto;
}
.page__profile.page__service-item .content .title .title__image img {
max-width: none;
object-fit: contain;
width: auto;
}
.page__profile.page__service-item .title__avatar {
display: block;
position: absolute;
height: 160px;
width: 100%;
border-bottom: 2px solid #000000;
bottom: 0;
}
.page__service-item .title__description {
display: none;
} .text-mobile {
display: block;
order: 2;
padding-left: 80px;
padding-bottom: 20px;
position: relative;
}
.page.page__service-info {
border-top: none;
}
.page__service-info {
padding-top: 60px;
padding-bottom: 80px;
}
.page__service-info .title__inner {
margin-top: 60px;
}
.page__service-info .title__inner h3 {
font-size: 30px;
margin-bottom: 40px;
}
.page__service-info .title__list {
margin-top: 60px;
}
.page__service-info .title__list ul li {
font-size: 14px;
}
.page__methods {
padding-top: 60px;
padding-bottom: 60px;
}
.content .methods__description .text {
padding: 10px;
}
.content .methods__description .image img {
width: 100%;
max-width: calc(100% - 40px);
height: 154px;
}
.page__profile-info .title__list.title__list-price {
margin-top: 60px;
margin-bottom: 60px;
}
.page__specialists {
padding: 80px 0;
}
.page__specialists .title__list {
margin-top: 60px;
}
.page__specialists .list__item {
flex-wrap: wrap;
padding: 20px 0;
}
.page__specialists .list__item .name {
width: auto;
}
.page__specialists .list__item .avatar {
width: auto;
max-height: 170px;
margin: 20px auto;
}
.page__specialists .list__item .spec {
width: auto;
}
}
@media (max-width: 600px) {
.page__service-info iframe {
grid-column: auto;
}
.page__service-info .title__inner {
order: unset;
}
}
.page__before-after {
background: linear-gradient(#ffffff, transparent 1px), linear-gradient(90deg, #ffffff, transparent 1px);
background-color: #d9d9d9;
background-size: 40px 40px;
background-position-x: calc(50% - 362px);
}
.page__before-after h1 {
text-indent: 0;
font-size: 150px;
line-height: 90%;
margin: 0;
font-weight: 700;
font-family: 'Gilroy Bold', sans-serif;
display: flex;
flex-direction: column;
padding-left: 0;
align-items: center;
}
.page__before-after h3 {
text-align: center;
font-size: 40px;
font-weight: 700;
margin: 0;
}
.title__descript {
width: 600px;
margin: 0 auto;
margin-top: 15px;
}
.title__image {
display: flex;
position: relative;
border: 2px solid #000000;
border-bottom: none;
}
.title__image picture {
display: flex;
width: 100%;
}
.title__image img {
width: 100%;
object-fit: cover;
}
.page__cases {
padding-top: 150px;
padding-bottom: 150px;
background: linear-gradient(#d9d9d9, transparent 1px), linear-gradient(90deg, #d9d9d9, transparent 1px);
background-size: 40px 40px;
}
.case__list {
display: grid;
grid-template-columns: 1fr;
gap: 100px;
}
.case__item {
display: grid;
grid-template-columns: min(600px,50%) 1fr;
position: relative;
}
.cases-slider {
width: 100%;
overflow: hidden;
position: relative;
}
.cases-slider .slide__item.swiper-slide {
display: block;
max-width: none;
border-right: none;
}
.cases-slider .slide__item.swiper-slide  img {
width: 100%;
height: 100%;
object-fit: cover;
}
.cases-slider .swiper-button-next, .cases-slider .swiper-button-prev {
width: 40px;
height: 40px;
color: #ffffff;
border: 2px solid #ffffff;
box-sizing: border-box;
top: auto;
bottom: 20px;
left: 20px;
}
.cases-slider .swiper-button-next {
left: auto;
right: 20px;
}
.cases-slider .swiper-button-next::after, .cases-slider .swiper-button-prev::after {
font-size: 18px;
color: #ffffff;
}
.cases-slider .swiper-pagination-bullet-active {
background: #ffffff;
}
.case__inner {
padding: 90px 40px;
font-size: 24px;
border: 2px solid #000000;
background: #ffffff;
position: relative;
}
.case__inner::before {
content: '';
position: absolute;
top: 41px;
left: -38px;
z-index: 2;
border: 20px solid #ffffff;
border-bottom: 20px solid transparent;
border-left: 20px solid transparent;
}
.case__inner::after {
content: '';
position: absolute;
top: 38px;
left: -45px;
border: 22px solid #000000;
border-bottom: 22px solid transparent;
border-left: 22px solid transparent;
z-index: 1;
}
.case__name {
font-size: 36px;
font-family: 'Gilroy Bold', sans-serif;
text-transform: uppercase;
margin-bottom: 25px;
}
.case__med {
font-family: 'Gilroy', sans-serif;
text-transform: uppercase;
margin-bottom: 25px;
}
.case__time {
font-weight: 700;
}
@media (max-width: 1240px) {
.page__before-after h1 {
font-size: 130px;
}
}
@media (max-width: 940px) {
.page__before-after h1 {
font-size: 100px;
}
}
@media (max-width: 800px) {
.title__image {
justify-content: center;
}
.case__inner {
padding: 40px;
} .page.page__cases {
padding-top: 80px;
padding-bottom: 80px;
background: #ffffff;
}
}
@media (max-width: 640px) {
.page__before-after h1 {
font-size: 100px;
}
.cases-slider .slide__item.swiper-slide {
border-right: 2px solid #000000;
border-bottom: none;
}
.case__item {
grid-template-columns: 1fr;
}
.case__inner::before {
left: auto;
right: 41px;
top: -37px;
border-bottom: 20px solid #ffffff;
border-top: 20px solid transparent;
}
.case__inner::after {
top: -45px;
left: auto;
right: 38px;
border-bottom: 22px solid #000;
border-left: 22px solid transparent;
border-top: 22px solid transparent;
}
.cases-slider .swiper-navigation {
display: none;
}
}
@media (max-width: 480px) {
.page__before-after h3 {
font-size: 18px;
text-align: left;
padding-left: 70px;
}
.page__before-after h1 {
font-size: 40px;
margin-top: 10px;
width: 10px;
padding-left: 0;
align-items: flex-start;
}
.page__before-after h1 span:first-child {
white-space: nowrap;
}
.page__before-after h1 span:last-child {
padding-left: 70px;
}
.case__inner {
padding: 20px;
}
.cases-slider .slide__item.swiper-slide {
height: 250px;
}
}
#map {
width: 100%;
height: 60vh;
min-height: 60vh;
padding: 0;
margin: 0;
position: relative;
}
.page__contacts {
background: linear-gradient(#d9d9d9, transparent 1px), linear-gradient(90deg, #d9d9d9, transparent 1px);
background-size: 40px 40px;
}
.page__contacts h1 {
font-size: 160px;
text-indent: 0;
font-family: 'Gilroy Bold', sans-serif;
font-weight: 800;
margin-left: 0;
padding-left: 0;
margin-top: 0;
margin-bottom: 0;
}
.page__contacts .content {
display: flex;
justify-content: space-between;
}
.page__contacts .content .title__descript {
font-size: 20px;
line-height: 1.4;
max-width: 320px;
margin: 0;
}
.page__phones .content {
display: grid;
grid-template-columns: 11fr 5fr;
width: 100%;
max-width: none;
}
.page__phones .content h3 {
font-weight: 500;
}
.content__phones, .content__schedule {
padding-top: 70px;
padding-bottom: 80px;
padding-left: 40px;
}
.content__schedule {
background: #d9d9d9;
border-left: 2px solid #000000;
display: flex;
flex-direction: column;
grid-row: 1;
grid-column: 2;
}
.content__schedule h3 {
margin-top: 0;
}
.schedule {
font-size: 20px;
}
.schedule ul {
list-style: none;
padding: 0;
margin: 0;
line-height: 1.55;
}
.schedule ul li span:first-child {
width: 200px;
display: inline-block;
}
.content__phones {
padding-left: calc((100vw - 1240px) / 2);
grid-column: 1;
grid-row: 1;
}
.content__phones a {
color: #000000;
}
.content__phones .phone {
font-family: 'Gilroy Bold', sans-serif;
font-weight: 800;
font-size: 64px;
padding: 20px 32px;
background: #ffc107;
margin-bottom: 15px;
max-width: 520px;
text-align: center;
}
.content__phones .email {
font-family: 'Gilroy Bold', sans-serif;
font-size: 40px;
margin-top: 50px;
margin-bottom: 70px;
}
.content__phones .address {
max-width: 295px;
line-height: 1.55;
}
.address p {
margin: 0;
}
.social {
display: flex;
gap: 0 30px;
margin-top: auto;
}
.social svg {
cursor: pointer;
}
.social svg:hover g path {
fill: #ffc107;
}
.scheme__button {
margin-top: 20px;
}
.scheme__button button {
background: none;
font-size: 20px;
border: none;
text-decoration: underline;
cursor: pointer;
padding: 0;
color: #000000;
}
.content__scheme {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
padding-top: 0;
padding-bottom: 0;
line-height: 140%;
grid-row: 2;
grid-column-start: 1;
grid-column-end: 3;
width: 1240px;
max-width: calc(100% - 40px);
margin-left: calc((100vw - 1240px) / 2);
overflow: hidden;
max-height: 0;
transition: all ease 0.5s;
}
.content__scheme.opened {
padding-top: 70px;
padding-bottom: 70px;
max-height: 1300px;
transition: all ease 0.5s;
}
.scheme__image {
max-width: 100%;
}
.scheme__image img {
max-width: 100%;
}
@media (min-width: 1241px) {
.content__phones.opened, .content__schedule.opened {
border-bottom: 2px solid #000000;
}
}
@media (max-width: 1240px) {
.content__phones, .content__schedule {
padding-left: 20px;
padding-right: 20px;
}
.schedule {
font-size: 16px;
}
.schedule ul li span:first-child {
width: 155px;
}
.content__scheme {
gap: 30px;
padding-left: 10px;
padding-right: 10px;        
margin-left: 0;
max-width: 100vw;
}
.content__scheme.opened {
border-top: 2px solid #000000;
padding-top: 40px;
padding-bottom: 40px;
}
}
@media (max-width: 980px) {
.page__contacts h1 {
font-size: 120px;
}
.content__phones, .content__schedule {
padding-left: 10px;
padding-right: 10px;
}
.content__phones .phone {
font-size: 60px;
}
.page__phones .content {
grid-template-columns: 2fr 1fr;
}
.schedule ul li span:first-child {
width: 130px;
}
}
@media (max-width: 800px) {
.page__contacts .content {
flex-wrap: wrap;
gap: 60px 0;
}
.page__contacts h1 {
font-size: 90px;
width: 100%;
box-sizing: border-box;
padding-left: 70px;
text-indent: -70px;
}
.page__phones .content {
grid-template-columns: 1fr;
}
.page__contacts .content .title__descript {
padding-left: 70px;
}
.content__phones {
padding-top: 40px;
padding-bottom: 60px;
}
.content__phones .phone {
font-size: 30px;
width: 100%;
box-sizing: border-box;
max-width: none;
}
.content__phones .email {
font-size: 18px;
margin-top: 20px;
margin-bottom: 40px;
}
.page__phones .content h3 {
font-size: 22px;
}
.content__schedule {
padding-top: 60px;
border-left: none;
border-top: 2px solid #000000;
}
.schedule ul li {
width: 500px;
max-width: calc(100vw - 20px);
box-sizing: border-box;
display: flex;
justify-content: space-between;
}
.social {
margin-top: 40px;
gap: 0 40px;
}
.content__scheme {
grid-template-columns: 1fr;
grid-row: auto;
gap: 30px;
padding-left: 10px;
padding-right: 10px;        
margin-left: 0;
max-width: 100vw;
}
.content__scheme.opened {
border-top: 2px solid #000000;
max-height: 2300px;
}
.content__phones, .content__schedule {
grid-row: auto;
grid-column: auto;
}
.scheme__button button {
font-size: 18px;
}
}
@media (max-width: 640px) {
.page__contacts h1 {
font-size: 40px;
}
}
@font-face {
font-family: 'Gilroy';
src: url(//ozz.clinic/wp-content/themes/stomatologiya/fonts/Gilroy-Regular.ttf);
}
@font-face {
font-family: 'Gilroy Black';
src: url(//ozz.clinic/wp-content/themes/stomatologiya/fonts/Gilroy-Black.ttf);
}
@font-face {
font-family: 'Gilroy Bold';
src: url(//ozz.clinic/wp-content/themes/stomatologiya/fonts/Gilroy-Bold.ttf);
}
@font-face {
font-family: 'Gilroy ExtraBold';
src: url(//ozz.clinic/wp-content/themes/stomatologiya/fonts/Gilroy-ExtraBold.ttf);
}
@font-face {
font-family: 'Gilroy Medium';
src: url(//ozz.clinic/wp-content/themes/stomatologiya/fonts/GilroyMedium/font.woff2) format('woff2'), url(//ozz.clinic/wp-content/themes/stomatologiya/fonts/GilroyMedium/font.woff) format('woff');
}
body, html {
padding: 0;
margin: 0;
overflow-x: hidden;
width: 100%;
font-family: 'Roboto', sans-serif;
font-style: normal;
font-size: 16px;
scroll-behavior: smooth;
}
a {
color: #ffc107;
text-decoration: none;
}
.page {
border-top: 2px solid #000000;
}
h1 {
font-family: 'Gilroy ExtraBold', sans-serif;
font-weight: normal;
font-size: 96px;
line-height: 100%;
text-indent: -315px;
margin-bottom: 40px;
padding-left: 35px;
}
h2 {
font-family: 'Gilroy Medium', sans-serif;
font-size: 64px;
font-weight: 500;
line-height: 1;
}
h3 {
font-size: 24px;
line-height: 1;
}
button {
cursor: pointer;
font-family: 'Roboto', sans-serif;
}
.text__image {
display: none;
}
.content {
width: 1240px;
max-width: calc(100% - 40px);
margin: 0 auto;
}
.content .title {
display: grid;
grid-template-columns: 280px 1fr;
gap: 0 40px;
}
.content .title .title__image {
position: relative;
max-width: 100%;
border: none;
padding-right: 10px;    
}
.content .title .title__image img {
max-width: 100%;
}
.content .title .title__text {
padding: 26px 22px;
font-size: 20px;
font-family: 'Gilroy ExtraBold', sans-serif;
border: 2px solid #000000;
align-self: start;
text-transform: uppercase;
line-height: normal;
background: #ffffff;
}
.content .text {
display: grid;
grid-template-columns: 280px 600px 1fr;
gap: 0 40px;
}
.content .text .text__main p {
line-height: 140%;
margin-top: 10px;
}
.content .text .text__main p:first-child {
margin-top: 0;
}
.content .text .text__btns {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 10px 0;
}
.content .text .text__btns a {
text-decoration: none;
color: #000000;
text-align: center;
padding: 10px 0;
font-weight: 700;
font-size: 18px;
border: 2px solid #000000;
box-sizing: border-box;
width: 160px;
background: #ffffff;
}
.content .text .text__btns a:hover {
background: #ffc107;
}
.service__item {
padding: 20px 0;
border-bottom: 2px solid #000000;
cursor: pointer;
}
.service__item:hover {
background: #ffc107;
}
.service__item.opened {
background: #ffc107;
}
.service__item:last-child {
border: none;
}
.service__item_inner {
width: 1240px;
max-width: calc(100% - 40px);
margin: 0 auto;
display: grid;
grid-template-columns: 280px 1fr;
gap: 0 40px;
overflow: hidden;
}
.service__item input {
position: absolute;
z-index: -1;
opacity: 0;
}
.service__item label {
font-family: 'Gilroy Bold';
line-height: normal;
font-size: 36px;
text-transform: uppercase;
cursor: pointer;
}
.service__text {
display: flex;
justify-content: space-between;
position: relative;
font-weight: normal;
line-height: 140%;
max-height: 0;
padding: 0;
transition: all 0.35s;
}
.service__text p {
margin-top: 0;
max-width: 600px;
}
.service__text .service__btn {
display: flex;
align-items: center;
align-self: flex-start;
font-weight: 700;
}
.service__btn a {
margin-left: 20px;
font-size: 1px;
line-height: normal;
display: flex;
align-items: center;
}
.service__btn a:hover {
background: #000000;
}
.service__btn a:hover .service__btn_text {
background: #ffc107;
}
.service__btn a:hover svg path {
stroke: #ffffff;
}
.service__btn a .service__btn_text {
padding-right: 20px;
display: flex;
align-items: center;
color: #000000;
font-size: 18px;
height: 40px;
}
.service__item input:checked ~.service__text {
max-height: 500px;
transition: all 0.35s;    
padding-top: 20px;
}
.service__item_icon {
display: none;
}
.page__adv { background-color: #d9d9d9; }
.title__table {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 40px 40px;
}
.adv__item .adv__title {
font-family: 'Gilroy', sans-serif;
line-height: 110%;
font-size: 30px;
text-transform: uppercase;
}
.adv__item .adv__title .adv__title_num::before {
content: '/';
}
.adv__item .adv__title .adv__title_text {
font-family: 'Gilroy ExtraBold', sans-serif;
margin-top: 10px;
border-bottom: 2px solid #000000;
margin-bottom: 20px;
}
.adv__item .adv__text-inner {
padding: 20px;
border: 2px solid #ffc107;
background: #fff;
height: calc(100% - 98px);
box-sizing: border-box;
}
.page__testimonials {
background: #ffc107;
}
.page__testimonials .content .title .title__text {
background: transparent;
}
.page__testimonials .content .title {
grid-template-columns: 280px 280px 1fr;
}
.page__testimonials .title__description {
line-height: 140%;
}
.slide__item.swiper-slide {
background: #fff;
border: 2px solid #000000;
max-width: 280px;
height: 380px;
display: flex;
box-sizing: border-box;
}
.slide__item .text__block {
width: 240px;
padding: 20px;
}
.slide__item .text__block .name {
font-weight: 700;
font-size: 18px;
line-height: 23px;
}
.slide__item .text__block .sub {
font-weight: 400;
color: #7e7e82;
line-height: 23px;
}
.slide__item .text__block .text {
padding-top: 60px;
}
.slide__item .image__block, .slide__item .image__block img {
max-width: 0;
}
.content .text__block .text {
display: block;
}
.page__feedback .content {
display: grid;
grid-template-columns: 1fr 600px;
gap: 0 40px;
}
.page__feedback .title {
display: flex;
flex-direction: column;
max-width: 415px;
}
.page__feedback .content .title .title__feed {
font-family: 'Gilroy ExtraBold', sans-serif;
font-size: 30px;
margin-bottom: 40px;
text-transform: uppercase;
}
.page__feedback .content .title .title__text {
width: 236px;
margin-bottom: 80px;
}
.page__feedback .content .title .title__link {
font-size: 20px;
line-height: 25px;
}
.page__video .content {
display: flex;
padding: 80px 0;
}
.page__video video {
width: 100%;
}
.form {
display: flex;
flex-direction: column;
gap: 40px 0;
}
.form-survey {
margin-top: 60px;
margin-bottom: 120px;
}
.form__row {
display: flex;
gap: 0 40px;
}
.form__item {
display: flex;
flex-direction: column;
width: 100%;
position: relative;
}
.form__item-input {
width: 100%;
gap: 30px;
flex-wrap: wrap;
}
.form__item-input, .form__item-input label {
display: flex;
}
.form__item label, .form__item-input label {
font-size: 18px;
line-height: 25px;
}
.form__item-input label {
margin-top: 24px;
align-items: center;
cursor: pointer;
}
.form__item.checkbox {
width: auto;
}
.form__item.checkbox input, .form__item-input input {
display: none;
}
.form__item.checkbox label {
font-size: 16px;
width: auto;
display: flex;
justify-content: space-between;
}
.form__item.checkbox label a {
margin: 0 8px;
}
.form__item.checkbox label::before, .form__item-input label::before {
content: '';
width: 24px;
height: 24px;
border: 2px solid #000000;
margin-right: 15px;
margin-top: 3px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
}
.form__item-input label::before {
border-radius: 50%;
}
.form__item.checkbox label div {
max-width: calc(100% - 43px);
}
.form__item input, .form__item-input input {
border: none;
outline: none;
font-size: 20px;
margin-top: 15px;
border-bottom: 2px solid #000000;
border-radius: 0;
}
.form__item input::placeholder {
font-size: 18px;
color: #d9d9d9;
font-family: 'Roboto', sans-serif;
}
.form__item.checkbox input:checked ~label::before {
content: '\2714';
}
.form__item-input input[type="radio"]:checked +label::before {
content: '\2714';
}
.form__item-label {
font-size: 24px;
font-weight: 500;
}
.form__item textarea {
width: 100%;
height: 100px;
border: 2px solid #000000;
margin-top: 15px;
margin-bottom: -20px;
font-size: 20px;
font-family: 'Gilroy', sans-serif;
border-radius: 0;
box-sizing: border-box;
padding: 10px;
}
.form__item textarea::placeholder {
font-family: 'Roboto', sans-serif;
font-size: 18px;
color: #d9d9d9;
}
.form__row button {
font-size: 18px;
font-weight: 700;
padding: 10px 34px;
background: #ffc107;
border: 2px solid #000000;
cursor: pointer;
color: #000000;
}
.form__row button:hover {
background: #ffffff;
}
.form__row button:disabled {
pointer-events: none;
opacity: 0.5;
}
.form__item.invalid input{
border-color: #ff0000;
}
.form__item.invalid::after{
content: attr(data-error);
color: #ff0000;
font-size: 14px;
position: absolute;
bottom: -20px;
right: 0;
}
footer {
padding-top: 60px;
padding-bottom: 20px;
background: #000000;
color: #fff;
font-size: 14px;
line-height: 18px;
}
footer a {
color: #fff;
text-decoration: none;
}
.arrow, .arrow_up {
cursor: pointer;
}
.footer__title {
font-family: 'Gilroy Bold', sans-serif;
font-size: 18px;
margin-bottom: 10px;
}
.footer__row {
width: 1240px;
max-width: calc(100% - 24px);
display: grid;
grid-template-columns: 1fr 600px;
gap: 0 40px;
margin: 0 auto;
margin-bottom: 30px;
}
.footer__row:first-child, .footer__row:last-child {
display: flex;
justify-content: space-between;
}
.footer__row:last-child {
color: #ffffff50;
padding-top: 20px;
border-top: 1px solid #ffffff50;
}
.footer__row:last-child a {
text-decoration: underline;
margin-left: 8px;
}
.footer__row:last-child .brandy {
white-space: nowrap;
}
.footer__links {
display: flex;
flex-direction: column;
justify-content: flex-end;    
}
.footer__links a {
font-size: 14px;
text-decoration: underline;
margin-bottom: 20px;
}
.footer__links a:hover {
color: #d9d9d9;
}
.footer__links span {
max-width: 380px;
margin-bottom: 20px;
}
.footer__col {
display: flex;
justify-content: space-between;
}
.footer__contacts, .footer__schedule {
width: 290px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.footer__schedule {
width: 230px;
}
.footer__schedule ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer__schedule ul li { 
display: flex;
justify-content: space-between;
}
.footer__text p:last-child {
margin-top: auto;
margin-bottom: 0;
}
.overlay__message {
display: none;
position: fixed;
z-index: 100;
bottom: 20px;
left: calc(50% - 200px);
max-width: calc(100% - 24px);
width: fit-content;
box-sizing: border-box;
padding: 20px 30px;
background: #ffffff;
border: 1px solid #d9d9d9;
align-items: center;
justify-content: space-between;
}
.overlay__message.active {
display: flex;
animation: reveal 1000ms ease-in-out 1 normal forwards;
gap: 10px;
}
.page__title {
display: flex;
justify-content: center;
align-items: center;
height: 60vh;
min-height: 480px;
}
.page__title.page__docs {
height: auto;
max-height: 60vh;
align-items: flex-start;
}
.page__title.page__docs.page__vacancy {
min-height: 320px;
}
.icon-marker {
width: 86px;
height: 115px;
cursor: pointer;  
position: relative;
transform: translate(-50%, -100%);
}
.page__docs .title__list {
font-size: 20px;
line-height: 140%;
}
.page__docs .title__list .list__caption {
font-weight: 500;
font-size: 24px;
}
@media (max-width: 1240px) {
.page__adv .content .title {
grid-template-columns: 1fr;
}
.page__adv .content .title .title__text {
width: 236px;
}
.page__adv .content .title .title__table {
margin-top: 40px;
}
}
@media (max-width: 1140px) {
.page__title {
max-height: 440px;
min-height: 420px;
}
.page__title.page__docs {
align-items: center;
}
}
@media (max-width: 1023px) {
h2 {
font-size: 54px;
}
.service__item label {
font-size: 30px;
}
.service__item input:checked ~.service__text {
max-height: 1500px;
}
.service__text {
flex-direction: column;
}
.service__item_inner {
grid-template-columns: 20% 1fr;
}
.title__table {
grid-template-columns: 1fr 1fr;
margin-top: 40px;
}
.page__testimonials .content .title {
grid-template-columns: 280px 100px 1fr;
}
.page__feedback .content {
grid-template-columns: 1fr;
}
.form-survey {
margin-bottom: 60px;
}
}
@media (max-width: 800px) {
h2 {
font-size: 30px;
}
h3 {
font-size: 18px;
}
.content {
max-width: calc(100% - 20px);
position: relative;
}
.content .title, .content .text, .title__table {
grid-template-columns: 1fr;
}
.content .title .title__text {
padding: 20px;
font-size: 16px;
width: 186px;
font-family: 'Gilroy ExtraBold', sans-serif;
}
.content .text .text__main p {
padding-left: 70px;
}
.content .text .text__main p:first-child {
padding-left: 0;
}
.text__image {
display: grid;
grid-template-columns: 70px 1fr;
margin-bottom: 40px;
}
.text__image img {
max-width: 100%;
border: 2px solid #000000;
}
.content .text .text__btns {
margin-left: 70px;
align-items: flex-start;
}
.content .text .text__btns a {
padding: 8px 0;
}
.service__item_inner {
max-width: calc(100% - 20px);
grid-template-columns: 60px 1fr;
gap: 0 10px;
}
.service__item label {
font-size: 20px;
max-width: calc(100% - 35px);
display: block;
font-family: 'Gilroy ExtraBold', sans-serif;
}
.service__item {
position: relative;
}
.service__item_icon {
position: absolute;
top: 20px;
right: 10px;
display: block;
width: 15px;
height: 15px;
border-right: 2px solid #000000;
border-bottom: 2px solid #000000;
transform: rotate(45deg);
transition: all linear 0.3s;
}
.service__item.opened .service__item_icon {
transform: rotate(225deg);
transition: all linear 0.3s;
}
.page__adv {
padding-top: 80px;
padding-bottom: 40px;
background: linear-gradient(#fff, transparent 1px), linear-gradient(90deg, #fff, transparent 1px);
background-size: 40px 40px;
background-color: #d9d9d9;
}
.title__table {
margin-top: 40px;
}
.page__testimonials .content .title {
grid-template-columns: 1fr;
}
.title__description {
margin-top: 40px;
margin-bottom: 40px;
max-width: 292px;
}
.form {
gap: 40px 0;
}
.form__row {
gap: 40px;
flex-wrap: wrap;
}
.form__item textarea {
box-sizing: border-box;
}
.form__item.checkbox label {
flex-wrap: wrap;
justify-content: flex-start;
}
.form__item-input {
flex-wrap: wrap;
gap: 12px;
}
.form__item-label {
font-size: 18px;
}
.form__item-input label {
width: 100%;
}
footer {
padding-bottom: 30px;
}
.footer__row:not(:first-child) {
grid-template-columns: 1fr;
margin-bottom: 0;
}
.footer__col {
order: 0;
flex-wrap: wrap;
}
.footer__links {
order: 1;
}
.footer__contacts, .footer__schedule {
width: 100%;
}
.footer__schedule {
margin: 60px 0;
}
.footer__schedule ul {
max-width: 475px;
}
}