@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@font-face {
	font-family: "Times New Roman Cyr";
	src: url("../fonts/times-new-roman-cyr/times-new-roman-cyr.eot"); /* IE9 Compat Modes */
	src: url("/webfonts/rubick/times-new-roman-cyr.woff") format("woff"), /* Modern Browsers */
		url("/webfonts/rubick/times-new-roman-cyr.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}
/* @font-face{font-display:swap;font-weight:300;font-style:normal;font-family:'Rubik-Light';src:local('Rubik Light'),local(Rubik-Light),url(/webfonts/rubick/Rubiklight.woff2) format("woff2"),url(/webfonts/rubick/Rubiklight.woff) format("woff"),url(/webfonts/rubick/Rubiklight.ttf) format("truetype");} */
/* @font-face{font-display:swap;font-weight:500;font-style:normal;font-family:'Rubik-Medium';src:local('Rubik Medium'),local(Rubik-Medium),url(/webfonts/rubick/Rubikmedium.woff2) format("woff2"),url(/webfonts/rubick/Rubikmedium.woff) format("woff"),url(/webfonts/rubick/Rubikmedium.ttf) format("truetype");} */
.whatsapp-icon {
  color: #dfc56f; /* WhatsApp green color */
   /* font-size: 24px; Adjust the size as needed */
}
html {
  box-sizing: border-box;
  height: 100%;
}

@media (min-width: 1200px) {
.header_logo_img{min-width: 145px;}
}

*,
*::after,
*::before {
  box-sizing: inherit;
}


body {
  display: none;
  /* display: flex; */
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  height: 100%;
}

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

.header {
  flex: 0 0 auto;
  background-color: #062d4c;
  margin-top: 75px;
}

.header h1 {
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

.main {
  background-color: #fafafa;
  flex: 1 0 auto;
}

.footer {
  background-color: #212429;
  flex: 0 0 auto;
}
.footer_boot p{
  margin-bottom: 1rem;

}

.footer_boot hr {
  background-color: white;
}
.footer_line {
  background-color: #5f5f5f !important;
}
.footer_icons:hover i{
  color:black;
}
.content {
  padding: 50px 0;
}

span, a , div, p  {
  font-family: "Times New Roman Cyr" ;
}

p {
  margin-bottom: 40px;
  
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.footer .content {
  color: #fff;
}
.header_yur_help{
  word-spacing: 5px;
}
.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 75px;
  background-color: #062d4c;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
  z-index: 1;
}

.navbar__wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.hamb {
  display: none;
}

.popup {
  display: none;
}

.logo {
  text-decoration: none;
  color: #dfc56f;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.menu > li > a {
  text-decoration: none;
}

.navbar__wrap .menu {
  display: flex;
}

.navbar__wrap .menu > li {
  display: flex;
  align-items: stretch;
}

.navbar__wrap .menu > li > a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-family: 'Times New Roman Cyr';
  color: #dfc56f;
  font-weight: 700;
}

.navbar__wrap .menu > li > a:hover {
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 570px) {
  .specialization_item_mobile{
    height: 210px !important;
  }
}

@media (max-width: 1000px) {
  .navbar__wrap .menu {
    display: none;
  }
  .hamb {
    display: flex;
    align-items: center;
  }
  .hamb__field {
    padding: 10px 20px;
    cursor: pointer;
  }
  .bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: #fff;
    transition: 0.2s;
  }
  .popup {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    display: flex;
    transition: 0.3s;
  }
  .popup.open {
    left: 0;
  }
  .popup .menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 50px 0;
    overflow: auto;
  }
  .popup .menu > li {
    width: 100%;
  }
  .popup .menu > li > a {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
    color: #3f3f3f;
  }
  .popup .menu > li > a:hover {
    background-color: rgba(122, 82, 179, 0.1);
  }
  .hamb__field.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamb__field.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamb__field.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  body.noscroll {
    overflow: hidden;
  }
}

.specialization_item_text{
  text-align: justify;
}

.specialization_item{
  border: 1px solid;
  background-color: white;
  height: 290px;
  /* width: 360px; */
  border-radius: 5px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  padding: 1.5rem;
  border-style: solid;
  box-shadow: 0px 0px 14px 0px rgba(69,69,69,0.1);
  cursor: default;
}




.specialization_item:hover{
  scale: 1.05;
  /* box-shadow: 0px 0px 14px 0px rgb(153 153 153); */
  box-shadow: 0px 0px 14px 0px rgb(225 200 117);
}

.specialization_item_title span {
  color: #10172c;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 500;
  text-align: center;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
.specialization_item_img{
  text-align: right;
}
.specialization_item_img img {
  margin-bottom: 0px;
  width: 40px;
  height: 40px;
}

.specialization_item-title{
  color: #10172c;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 500;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}


.about_title span {
  font-weight: 700;
  font-size: 17px;
  color: #b9a66a;
  text-transform: uppercase;
}

.contacts_address_title span{
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.contacts_address_text span {
  font-size:18px;
}
.contacts_address_text a {
  font-size:18px;
}
.contacts_address_text i {
  font-size:18px;
}

.btn-consultation{
background-color: #dfc56f;
padding:1rem;
}

.btn-consultation span{
  color: black;
  text-transform: uppercase;
  font-family: 'Times New Roman Cyr';
  font-size: 17px;
}

.btn-consultation:hover  .btn-consultation_text{
color: white;
}
.order_consultation_title {
  text-align: center;
  margin-bottom: 3rem;
}
.order_consultation_title span{
  font-family: 'Times New Roman Cyr';
  font-size: 32px;
  color: #b9a66a;
}

.order_consultation_form_input{
    width: 90%;
    color: black;
    background-color: white;
    border-radius: 5px;
    border: 1px solid #dfc56f;
    padding: 1rem;
}

.order_consultation_form_btn{
  color: #ffffff;
  background-color: #dfc56f;
  border-radius: 8px;
  -moz-border-radius: 8px;
  font-family: 'Times New Roman Cyr';
  color: black;
  text-transform: uppercase;
  padding: 0.75rem 4rem;
  -webkit-border-radius: 8px;

}

.order_consultation_form_btn:hover{
  color:white;
}
.order_consultation_form_btn:focus{
  border:1px solid black;
}

.order_consultation_form_btn:focus {
  outline: none !important;
  box-shadow: none !important;
  }

/* кнопка вверх */
  .btn-up {
    position: fixed;
    background-color: #6a6969;
    right: 20px;
    bottom: 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
    z-index: 10;
  }

  .btn-up::before {
    content: "";
    width: 40px;
    height: 40px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
  }

  .btn-up_hide {
    display: none;
  }

  .btn-up:hover{
    background-color: #6a696996;

  }
  /* end */

/* */
/* CSS анимация линии с левого края */
/* линия для ссылок хедера */
.navbar .menu li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 75%;
  left: 0;
  transition: transform 0.3s;
  transform: scaleX(0);
  transform-origin: right;
  background-color: #fff;
}

.navbar .menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar .menu li a {
    outline: none; /* Убираем границу вокруг ссылок  */
}

.navbar .menu li {
  position: relative;
  transition: 0.3s;
}

/* енд линия */

.noscroll .header_logo_img{
  display:none !important;
}


/* дизайн списка */
.list6b {
  padding:0;
  list-style: none;
}
.list6b li{
  padding:6px;
  font-size: 18px;
}
.list6b li:before {
  padding-right:10px;
  font-weight: bold;
  font-size: 20px;
  color: #e1c876;
  content: "\2714";
  transition-duration: 0.5s;
}
/* .list6b li:hover:before {
  color: #337AB7;
  content: "\2714";
}   */





.list6a {
  padding:0;
  list-style: none;
}
.list6a li{
  padding:4px;
  font-size:18px
}
.list6a li:before {
  padding-right:10px;
  font-weight: bold;
  color: #ff1111;
  font-size:25px;
  content: "\2606";
  transition-duration: 0.5s;
}


/* Блок 50/50 на главной */
.hero-about { min-height: 50vh; }
.hero-photo img { display:block; }

/* На широких экранах чуть выше */
@media (min-width: 992px) {
  .hero-about { min-height: 70vh; }
}

.page-title { line-height: 1.2; }
@media (max-width: 991.98px) {
  .page-title { font-size: 22px; margin-bottom: 8px; }
}


/* аккуратная ширина и типографика блока текста */
.about-copy {
  max-width: 640px;        /* чтобы строки были читаемыми */
  margin: 0 auto;          /* центрируем внутри колонки */
  font-size: 18.5px;
  line-height: 1.8;
  color: #1e293b;          /* чуть контрастнее */
  text-align: justify;        /* читается лучше, чем justify на таких строках */
}
.about-copy p { margin-bottom: 1rem; }

/* список — ровные маркеры и отступы */
.about-list {
  margin: 0 0 0.5rem 1.1rem;
  padding: 0;
  list-style: disc;
}
.about-list li { margin: 0 0 .4rem 0; }

/* на очень узких экранах уменьшим размеры чуть-чуть */
@media (max-width: 576px) {
  .page-title { font-size: 28px !important; }
  .about-copy { font-size: 17px; line-height: 1.7; }
}

.about-copy {
  font-size: 18.5px;
  line-height: 1.8;
  color: #1e293b;
  text-align: justify;
}
.about-copy p { margin-bottom: 1rem; }
.about-list { margin-left: 1.2rem; list-style: disc; }
.about-list li { margin-bottom: .4rem; }

@media (max-width: 576px) {
  .page-title { font-size: 28px !important; margin-top:0 !important; }
}

/* чтобы на мобильных ничего не налезало */
@media (max-width: 991.98px) {            /* Bootstrap breakpoint lg↓ */
  .page-title { margin-top: 0 !important; } /* отменяем -20px */
  .hero-photo img { height: auto !important; } /* картинка по содержимому */
  .col-lg-6.mb-lg-0 { margin-bottom: 1rem; }   /* чуть воздуха под фото */
}

/* Заголовок: без смещения по умолчанию */
.page-title {
  color:#062d4c;
  font-weight:700;
  font-size:36px;
  line-height:1.2;
  margin-top: 0;            /* критично для мобилок */
}

/* Фото на мобилках не «резиновая» высота */
.hero-photo img {
  display:block;
  height:auto;              /* важно для iPhone */
}

/* На десктопе можно чуть поднять заголовок (если нужно визуально) */
@media (min-width: 992px) {
  .page-title { margin-top: -14px; }  /* аккуратнее, чем -20px */
}

/* На планшетах/мобилках — строго без смещения и с отступом под фото */
@media (max-width: 991.98px) {
  .page-title { margin-top: 0 !important; font-size: 28px; }
  .col-lg-6.mb-lg-0 { margin-bottom: 1rem; } /* воздух между фото и текстом */
}

.hero-photo img {
  width: 100%;
  height: auto !important;   /* гарантируем, что не тянется */
  object-fit: contain !important; /* чтобы ничего не обрезало */
}

.page-title {
  margin-top: 0 !important;  /* убираем отрицательный отступ */
  font-size: 32px;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .page-title {
    font-size: 26px;
    margin-top: 0 !important;
  }
  .about-copy {
    font-size: 16px;
    line-height: 1.6;
  }
}

