@font-face {
  font-family: 'Tahoma';
  src: url(../fonts/tahoma.ttf) format("truetype");
  font-weight: 100;
  font-style: normal;
}

a {
  color: black;
}

a:hover {
  color: black;
  text-decoration: none;
}

body {
  font-family: Tahoma;
}

h1 {
  text-transform: uppercase;
}

/* хлебные крошки */
.breadcrumb {
  background-color: white;
}

.breadcrumb-item.active {
  color: black;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: black;
}

.breadcrumb-item a:hover {
  color: #c3232a;
}

/* замена кнопки input своей кнопкой */
input[type=file] {
  opacity: 0;
  overflow: hidden;
  z-index: -1;
  position: absolute;
}

.label {
  width: 180px;
  height: 50px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  display: block;
  font: 14px/50px Tahoma;
  transition: all 0.18s ease;
  border: 1px solid #333;
  color: #333;
  position: absolute;
  top: 190px;
  left: 100px;
}

.label:hover {
  color: white;
  background: #333;
}

/* валидация формы */

.form__error {
  color: red;
  text-align: center;
  font-size: 12px;
  display: block;
  margin-top: 3px;
  display: none;
}

input:valid:not(:placeholder-shown) {
  border-color: green;
}

input:invalid:not(:placeholder-shown) {
  border-color: red;
}

input:invalid:not(:placeholder-shown)+.form__error {
  display: block;
}

/* модальное окно */

.modal-body {
  padding-right: 50px;
  padding-left: 50px;
}

.modal .modal-header {
  border-bottom: 0px;
}

.modal p {
  color: #333333;
  font-size: 10px;
  font-weight: 400;
  padding-top: 50px;
}

.modal .form-control {
  border: 0px;
  border-bottom: 1px solid #999;
  border-left: 1px solid #999;
  border-radius: 0px 0px 0px 15px;
}

.modal .close {
  color: #ff9933;
  opacity: 1;
}

.modal .close:hover {
  opacity: 0.5;
}

.modal .modal-content {
  height: 506px;
  border-radius: 10px;
}

.modal .modal-title {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 12%;
}

.modal .button_block {
  padding-top: 71px;
}

/* модальное окно exit_menu*/
.modal_exit_menu .modal-title {
  padding-top: 20px;
  padding-bottom: 20px;
}

.modal_exit_menu .button_block {
  padding-top: 50px;
}

/* выпадающее меню */

.sidebar_left .navbar-nav {
  line-height: 2;
}

.exit_menu .top_phone {
  line-height: 50px;
}

.top_phone .red {
  font-weight: 700;
  font-size: 17px;
}

.navbar-nav .nav-link {
  color: #c3232a;
}

a:not([href]):not([tabindex]) {
  color: #c3232a;
}

.dropdown_menu .dropdown_item a {
  color: black;
}

.exit_menu i {
  font-size: 25px;
  padding-top: 11px;
}

.right-toggler p {
  border-radius: 10px;
  border: 1px solid #c3232a;
  background-color: white;
  padding: 5px 10px;
  text-transform: uppercase;
  transition: 0.33s all ease;
  margin-top: 8px;
  font-weight: bold;
}

.right-toggler p:hover {
  background-color: #c3232a;
  color: white;
}

.exit_menu {
  background-color: white;
  height: 50px;
  -webkit-box-shadow: 0px 2px 10px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 10px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 10px -5px rgba(0, 0, 0, 0.75);
  z-index: 9;
  display: none;
}

/* левое выпадающее меню */

#sidebar-toggler-left {
  display: none;
}

#sidebar-left {
  padding-left: 20px;
  background: white;
  display: block;
  position: fixed;
  list-style: none;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
  top: 50px;
  left: -100%;
  width: 150px;
  transition: left .5s;
  -webkit-box-shadow: -2px 10px 10px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -2px 10px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -2px 10px 10px 0px rgba(0, 0, 0, 0.75);
}

#sidebar-toggler-left:checked+#sidebar-left {
  left: 0;
}

/* правое выпадающее меню */

#sidebar-toggler-right {
  display: none;
}

#sidebar-right {
  padding-right: 20px;
  background: white;
  display: block;
  position: fixed;
  list-style: none;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
  top: 50px;
  width: 250px;
  transition: right .5s;
  -webkit-box-shadow: 0px 10px 10px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 10px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 10px -2px rgba(0, 0, 0, 0.75);
  z-index: 10;
  text-align: right;
  right: -100%;
}

#sidebar-toggler-right:checked+#sidebar-right {
  right: 0;
}

/* .sidebar-right_click{
  right: 0!important;
} */

/* бургер кнопка */

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.hamRotate360.active {
  transform: rotate(360deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham5 .top {
  stroke-dasharray: 40 82;
}

.ham5 .bottom {
  stroke-dasharray: 40 82;
}

.ham5.active .top {
  stroke-dasharray: 14 82;
  stroke-dashoffset: -72px;
}

.ham5.active .bottom {
  stroke-dasharray: 14 82;
  stroke-dashoffset: -72px;
}

/* выпадающий список */

.nav-item:hover .sidebar-right .dropdown-menu {
  display: block;
}

.sidebar-right .dropdown {
  justify-content: flex-end;
}

/*---------------------------------- ГЛАВНАЯ -----------------------------------------------*/

/* футер */

/* верхний навбар */

.vk {
  position: absolute;
  left: 90%;
  bottom: 11px;
  color: white;
  background-color: #9a9a9a;
  padding: 1px 5px;
  border-radius: 7px;
}

.navbar_no1 .navbar-collapse {
  background-color: #313131;
  height: 50px;
}

.navbar_no1 .navbar-nav {
  padding: 0px 5%;
}

.navbar_no1 .navbar-nav a {
  text-transform: uppercase;
}

.navbar_no1 .navbar-nav a {
  color: #adb5bd;
  font-size: 12px;
  transition: .33s all ease;
}

.navbar_no1 .navbar-nav a:hover {
  color: white;
  border-bottom: 0px;
}

.navbar_no1 .navbar-nav .active>.nav-link {
  color: white;
}

.sidebar_left .navbar-nav .nav-link a {
  color: #c3232a;
}

.navbar_no1 .navbar-nav .nav-link {
  color: #ccc;
}

.navbar_no1 .navbar-nav .nav-link:hover {
  color: white;
}

/* блок с контактами */

.top_phone p,
.top_time p,
.top_adress p {
  font-size: 15px;
}

.top_phone p {
  margin: 1px;
}

.top_phone .red:hover {
  color: #c3232a;
}

.red {
  color: #c3232a;
}

.white {
  color: white;
}

.top_button .button {
  border-radius: 10px;
  border: 1px solid #c3232a;
  background-color: white;
  padding: 10px 26px;
  text-transform: uppercase;
}

.top_button .button:hover {
  background-color: #c3232a;
  color: white;
}

.contact_us .button_block button {
  border-radius: 10px;
  border: 1px solid #c3232a;
  background-color: white;
  padding: 10px 26px;
  text-transform: uppercase;
  transition: 0.33s all ease;
}

.contact_us .button_block button:hover {
  background-color: #c3232a;
  color: white;
}

button:focus {
  outline: 0px;
}

/* навбар под контактами */
.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0px;
}

.show .nav-item a {
  color: red;
}

.dropdown-toggle-split {
  padding-left: 0px;
  padding-top: 8px;
  padding-right: 0px;
  border: 0px;
  background-color: #ed143d00;
}

.dropdown {
  display: flex;
}

.fa-chevron-down {
  font-size: 10px;
}

.icon-rotates.rotate {
  -moz-transition: rotate(180deg);
  -webkit-transition: rotate(180deg);
  transition: rotate(180deg);
}

.dropdown.show .icon-rotates {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.navbar_no2 .navbar-collapse {
  background-color: #c3232a;
  height: 50px;
}

.navbar_no2 .navbar-nav .dropdown-menu .nav-item a {
  color: black;
}

.navbar_no2 .navbar-nav .dropdown-menu .nav-item a:hover {
  color: #c3232a;
}

.navbar_no2 .navbar-nav .nav-item a {
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.dropdown-menu {
  padding-left: 10px;
  padding-right: 10px;
}

.dropdown-menu:hover .navbar_no2 .navbar-nav .nav-item a {
  color: black;
}

.navbar_no2 .navbar-nav .nav-item:hover .navbar_no2 .navbar-nav .nav-item a {
  color: black;
}

.navbar_no2 .navbar-nav .nav-item:hover .dropdown-toggle:empty::after {
  color: black;
}

.navbar_no2 .dropdown-toggle:empty::after {
  padding-bottom: 3px;
  color: white;
}

.navbar_no2 .navbar-nav .nav-link {
  color: white;
  font-size: 14px;
}

/* выпадающее меню */

.dropdown-menu {
  border-radius: 0px;
  margin-top: 5px;
  transition: .33s all ease;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: white;
  color: #c3232a;
}

.sidebar-right .dropdown-menu {
  position: relative;
}

.sidebar-right .dropdown {
  display: block;
}

.sidebar-right .nav-link {
  float: right;
}

.navbar_no2 .dropdown-toggle {
  position: relative;
  /* width: 200px;
  margin-left: -15px;
  margin-top: 10px;
  display: inline-flex;
  height: 25px; */
  border: 0px;
  background-color: #c3232a00;
}

.sidebar-right .dropdown-toggle::before {
  content: "";
  position: absolute;
  width: 200px;
  margin-left: -15px;
  margin-top: 0px;
  display: inline-flex;
  height: 40px;
}

/* .dropdown-menu.show{
  display: contents;
} */
.sidebar-right .dropdown-menu .nav-item a {
  float: inherit;
}

.sidebar-right .dropdown-toggle:empty::after {
  margin-right: 10px;
}

/* .sidebar-right .dropdown-toggle::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
} */
.sidebar-right .dropdown-menu {
  /* float: right; */
  text-align: right;
}

.sidebar-right .dropdown-menu .nav-item a {
  color: black;
}

/* футер конец */

.top_time {
  width: 18%;
}

.top_time i,
.top_adress i {
  font-size: 33px;
}

.top_adress {
  width: 17%;
}

/* слайдер верхний */

.slides_top .owl-carousel .owl-nav.disabled {
  display: block;
}

.slides_top .owl-prev {
  position: absolute;
  top: 45%;
  background-size: cover;
  background-image: url("../images/next.png") !important;
  transform: rotate(180deg);
  font-size: 0;
  line-height: 0;
  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: transparent;
  transition: .33s all ease;
  cursor: pointer;
  left: 50px;
}

.slides_top .owl-next {
  position: absolute;
  top: 45%;
  background-size: cover;
  background-image: url("../images/next.png") !important;
  font-size: 0;
  line-height: 0;
  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: transparent;
  transition: .33s all ease;
  cursor: pointer;
  right: 50px;
}

.owl-prev:hover {
  opacity: 0.5;
}

.owl-next:hover {
  opacity: 0.5;
}

.slides_top .slide_2 .main_img,
.slides_top .slide_1 .main_img,
.slides_top .slide_4 .main_img,
.slides_top .slide_3 .main_img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* первый слайд */

.slides_top .slide_1 .main_img {
  margin-top: -16px;
  height: 400px;
  background-color: #333;
}

.slides_top .slide_1 .title_in_img {
  margin-top: 16px;
  padding-top: 150px;
  margin-right: 15%;
  white-space: nowrap;
}

.slides_top .slide_1 .title_1 p {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 30px;
  float: right;
  padding: 3px 15px 5px 15px;
  border-right: 4px solid #c3232a;
  font-weight: bold;
}

.slides_top .slide_1 .title_2 p {
  margin-left: 30%;
  background-color: rgba(0, 20, 113, 0.5686274509803921);
  color: white;
  float: right;
  padding: 3px 15px 5px 15px;
}

.slides_top .slide_1 .title_in_img a {
  float: right;
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px;
  color: white;
  border-right: 3px solid #c3232a;
  padding: 3px 15px 5px 15px;
}

.slides_top .slide_1 .title_in_img a:hover {
  opacity: 0.5;
}

.slides_top .slide_1 .button_in_img {
  margin-left: 15%;
}

.slides_top .slide_1 .button_in_img button {
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px;
  color: white;
  border: 1px solid #c3232a;
  padding: 13px 50px;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 20px;
}

.slides_top .slide_1 .button_in_img button:hover {
  background-color: #c3232a;
}

/* второй слайд */

.slides_top .slide_2 .main_img {
  margin-top: -16px;
  height: 400px;
}

.slides_top .slide_2 .main_img2 {
  margin-top: -16px;
  height: 400px;
}

.slides_top .slide_2 .title_in_img {
  margin-top: 16px;
  padding-top: 150px;
  white-space: nowrap;
  align-items: center;
}

.slides_top .slide_2 .title_1 p {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 30px;
  padding: 3px 15px 5px 15px;
  border-top: 4px solid #c3232a;
  font-weight: bold;
  float: left;
}

.slides_top .slide_2 .title_in_img a {
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px;
  color: white;
  border-left: 3px solid #c3232a;
  padding: 3px 15px 5px 15px;
  float: left;
}

.slides_top .slide_2 .title_in_img a:hover {
  opacity: 0.5;
}

.slides_top .slide_2 .button_in_img button {
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px;
  color: white;
  border: 1px solid #c3232a;
  padding: 13px 50px;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 20px;
}

.slides_top .slide_2 .button_in_img button:hover {
  background-color: #c3232a;
}

/* третий слайд */

.slides_top .slide_3 .main_img {
  margin-top: -16px;
  height: 400px;
}

.slides_top .slide_3 .title_in_img {
  margin-top: 16px;
  padding-top: 140px;
  margin-left: 140px;
  white-space: nowrap;
}

.slides_top .slide_3 .title_1 p {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 30px;
  float: left;
  padding: 3px 15px 5px 15px;
  border-left: 4px solid #c3232a;
  font-weight: bold;
}

.slides_top .slide_3 .title_2 p {
  margin-left: 140px;
  background-color: rgba(0, 20, 113, 0.5686274509803921);
  color: white;
  float: left;
  padding: 3px 15px 5px 15px;
}

.slides_top .slide_3 .title_in_img a {
  float: left;
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px;
  color: white;
  border-left: 3px solid #c3232a;
  padding: 3px 15px 5px 15px;
  margin-left: 240px;
}

.slides_top .slide_3 .title_in_img a:hover {
  opacity: 0.5;
}

.slides_top .slide_3 .button_in_img {
  margin-right: 140px;
}

.slides_top .slide_3 .button_in_img button {
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px;
  color: white;
  border: 1px solid #c3232a;
  padding: 13px 50px;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 20px;
}

.slides_top .slide_3 .button_in_img button:hover {
  background-color: #c3232a;
}

/* третий слайд */

.slides_top .slide_4 .main_img {
  margin-top: -16px;
  height: 400px;
  /* background: url(../images/slide3.jpg) center center; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slides_top .slide_4 .title_in_img {
  margin-top: 16px;
  padding-top: 150px;
  margin-left: 140px;
  white-space: nowrap;
}

.slides_top .slide_4 .title_1 p {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 25px;
  padding: 3px 15px 5px 15px;
  border-left: 4px solid #c3232a;
  float: left;
}

.slides_top .slide_4 .title_2 p {
  background-color: rgba(0, 20, 113, 0.5686274509803921);
  color: white;
  padding: 3px 15px 5px 15px;
  float: left;
  font-size: 20px;
}

.slider_min .title_2 p {
  white-space: pre-wrap;
  font-size: 15px !important;
}

.slides_top .slide_4 .button_in_img {
  text-align: center;
  margin-right: 140px;
}

.slides_top .slide_4 .title_in_img a {
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px;
  color: white;
  border-left: 3px solid #c3232a;
  padding: 3px 15px 5px 15px;
  float: left;
}

.slides_top .slide_4 .title_in_img a:hover {
  opacity: 0.5;
}

.slides_top .slide_4 .button_in_img button {
  /* position: absolute; */
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px;
  color: white;
  border: 1px solid #c3232a;
  padding: 13px 50px;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 20px;
}

.slides_top .slide_4 .button_in_img button:hover {
  background-color: #c3232a;
}

/* блок основные услуги */

.o_services .container {
  padding-left: 0px;
}

.service img,
.block_services_3 img {
  object-fit: cover;
}

/* затемнение картинок в блоке */

.black {
  position: relative;
}

.black::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: auto;
  height: 200px;
  width: 450px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all ease .5s;
}

.block_services_2 .black::before {
  height: 200px;
  width: 300px;
}

.block_services_3 .black::before {
  height: 425px;
  width: 300px;
  bottom: 20px;
}

.block_services_4 .black::before {
  height: 200px;
  width: 350px;
}

/* / */

.service,
.block_services_3 {
  position: relative;
}

.text_service {
  position: absolute;
  left: 30px;
  bottom: 40px;
  padding: 13px 0;
  width: 340px;
  background-color: rgba(251, 251, 251, 0.8705882352941177);
  border-left: 4px solid #c3232a;
}

.block_services_3 .text_service {
  width: 240px;
}

.block_services_4 .text_service {
  width: 85%;
}

.text_service p {
  margin-bottom: 0;
  line-height: 1.2;
  padding-left: 15px;
}

.block_services_2 .text_service {
  width: 250px;
}

.block_services_1 .service img {
  height: 200px;
  width: 450px;
  margin: 0px 10px 25px 10px;
}

.block_services_1 .service_1:hover .black::before {
  background-color: rgba(0, 0, 0, 0.0);
}

.block_services_1 .service_2:hover .black::before {
  background-color: rgba(0, 0, 0, 0.0);
}

.block_services_2 .service_3:hover .black::before {
  background-color: rgba(0, 0, 0, 0.0);
}

.block_services_2 .service_4:hover .black::before {
  background-color: rgba(0, 0, 0, 0.0);
}

.block_services_3:hover .black::before {
  background-color: rgba(0, 0, 0, 0.0);
}

.block_services_4 .service_5:hover .black::before {
  background-color: rgba(0, 0, 0, 0.0);
}

.block_services_4 .service_6:hover .black::before {
  background-color: rgba(0, 0, 0, 0.0);
}

.block_services_4 .service_7:hover .black::before {
  background-color: rgba(0, 0, 0, 0.0);
}

.block_services_2 .service img {
  height: 200px;
  width: 300px;
  margin: 0px 10px 25px 10px;
}

.block_services_3 img {
  height: 425px;
  width: 300px;
  margin: 0px 10px 20px 10px;
}

.block_services_4 .service img {
  height: 200px;
  width: 350px;
  margin: 0px 10px 25px 10px;
}

/* блок о компании */


.advantages p {
  width: 80%;
}

.o_company {
  background-color: #f8f9fa;
}

.img_company img {
  height: 250px;
  width: 350px;
  background: url(../images/companyimg.jpg) center center;
  object-fit: cover;
}

/* слайд с дипломами */

.owl-carousel .owl-item img {
  object-fit: cover;
}

.slides_1 {
  width: 70%;
}

.slides_1 .owl-carousel .owl-nav.disabled {
  display: block;
}

.slides_1 .owl-prev span,
.owl-next span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  font-size: 0;
  line-height: 0;
  opacity: 1;
  width: 25px;
  height: 25px;
  background-color: transparent;
  transition: .33s all ease;
  cursor: pointer;
}

.slides_1 .owl-next span {
  border-top: 1px solid;
  border-right: 1px solid;
  border-color: #ff9832;
  right: -40px;
}

.slides_1 .owl-prev span {
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-color: #ff9832;
  left: -40px;
}

.slides_1 .owl-prev span:hover {
  border-color: transparent transparent #c3232a #c3232a;
}

.slides_1 .owl-next span:hover {
  border-color: #c3232a;
}

/* слайд с отзывами */

.slides_2 .owl-carousel .owl-dots.disabled {
  display: block;
}

.reviews {
  background-color: #f8f9fa;
}

.slides_2 {
  width: 80%;
}

.slides_2 .cards {
  background-color: white;
  padding: 30px;
  margin-top: 70px;
  padding-top: 75px;
}

.slides_2 .cards img {
  border-radius: 70px;
  height: 120px;
  width: 120px;
  position: absolute;
  top: 8px;
  right: 30%;
  -webkit-box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.slides_2 .owl-dots {
  text-align: center;
}

.slides_2 .owl-carousel button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 30px;
  border: 1px solid #66666663;
  margin: 40px 10px 40px 10px;
}

.slides_2 button.owl-dot.active {
  background-color: #ff9832;
}

/* футер */
.footer_phone_list a:hover {
  color: white;
}

.footer_phone_list .red:hover {
  color: #c3232a;
  ;
}

.footer_year a {
  color: white;
}

.footer_year a:hover {
  text-decoration: underline;
}

.footer_map {
  width: 65%;
}

iframe {
  width: 100%;
  height: 100%;
}

.blackout {
  background: url(../images/footer.jpg) center center;
  object-fit: cover;
  position: relative;
}

.blackout::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.footer_contacts {
  position: relative;
  z-index: 1;
  color: white;
}

.footer_contacts i {
  font-size: 25px;
}

.footer_logo {
  line-height: 20;
  margin: auto;
}

/*---------------------------------- АКЦИИ -----------------------------------------------*/

.stocks {
  padding-bottom: 100px;
}

.stock {
  width: 340px;
  height: 500px;
  -webkit-box-shadow: 0px 5px 15px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 5px 15px -4px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 5px 15px -4px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  border-radius: 30px;
  padding-bottom: 30px;
}

.stock img {
  height: 50%;
  width: 100%;
}

.stocks p {
  text-align: center;
}

/*----------------------------------- ПРАЙС ----------------------------------------------*/

.price {
  padding-bottom: 300px;
}

/*----------------------------------- ФОТОГАЛЕРЕЯ ----------------------------------------*/

.gallery_1 img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.gallery_title {
  background-color: #000c42;
  border-left: 4px solid #c3232a;
  position: absolute;
  bottom: -10%;
  padding-bottom: 15px;
  padding-top: 15px;
  width: 250px;
  z-index: 1;
  margin-left: 25px;
}

.gallery_photo {
  position: relative;
  margin-bottom: 70px;
  padding: 0 20px;
}

.gallery_1 p {
  margin: 0px;
  color: white;
  margin-left: 10px;
}

.gallery_1 p:hover {
  color: white;
}

/*---------------------------------------- ОТЗЫВЫ ---------------------------------------*/
.reviews_button {
  padding-bottom: 10%;
}

.reviews_button button {
  float: right;
  background-image: linear-gradient(to left, #c3232a, #fd9a32);
  color: white;
  border-radius: 7px;
  border: 0px;
  padding: 5px 10px;
  -webkit-box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.4);
}

.reviews_button button:hover {
  opacity: 0.8;
}

.reviews_page {
  background-color: #f8f9fa;
}

.reviews_page .breadcrumb {
  background-color: #f8f9fa;
}

.cards_reviews {
  position: relative;
  background-color: white;
  margin: 10px;
  padding: 25px;
  margin-top: 70px;
  padding-top: 80px;
  width: 350px;
  margin-bottom: auto;
}

.cards_reviews img {
  border-radius: 70px;
  height: 120px;
  width: 120px;
  position: absolute;
  top: -60px;
  right: 33%;
  -webkit-box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  background-color: white;
}

.title_2 {
  color: #7c8790;
}

/* формы */

.comment-form-url {
  padding-bottom: 25px;
}

.comment-form {
  /* position: relative; */
}

.form-group_1 {
  width: 40%;
  float: left;
}

.form-group_2 {
  float: right;
  position: absolute;
  right: 0px;
  bottom: 211px;
  padding-right: 100px;
  width: 50%;
}

.form-group_3 {
  padding-top: 105px;
}

.text-primary {
  color: black !important;
}

.form-submit {
  text-align: end;
}

.comment-respond {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 20px;
}

.comment-form-cookies-consent {
  display: none;
}

.form_img {
  object-fit: cover;
  padding: 20px;
  position: relative;
}

.form_img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  filter: blur(0px);
  background: url(../images/photo.png) center center;
  z-index: -1;
  background-repeat: no-repeat;
}

.contact_form .button_block {
  border-radius: 7px;
  border: 1px solid #c3232a;
  background-color: white;
  padding: 6px 21px;
}

.contact_form .button_block:hover {
  background-color: #c3232a;
  color: white;
}

input[type="file" i] {
  user agent stylesheet. background: red;
}

.contact_form {
  background-color: white;
  border-radius: 30px;
  margin: 0 10%;
  filter: blur(0px);
}

.form_inputs {
  padding: 0 85px;
}

.textarea {
  padding: 30px 85px;
}

.name input {
  width: 400px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

.service input {
  width: 400px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

.textarea textarea {
  width: 825px;
  height: 150px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

.textarea p {
  margin: 0px;
}

.modal .button_block button {
  border-radius: 10px;
  background-color: #ff9933;
  padding: 10px 43px;
  border: 0px;
  color: white;
}

.modal .button_block button:hover {
  opacity: 0.5;
}

/*------------------------------------------ ФОТОГАЛЕРЕЯ-2 --------------------------------------*/

.sentence img {
  width: 100%;
}

.photo_2 h2 {
  text-decoration: underline;
  text-decoration-color: #c3232a;
}

.sentence:hover h3 {
  text-decoration: underline;
}

.sentence_img {
  height: 200px;
  overflow: hidden;
  text-align: center;
}

.sentence a img {
  height: 100%;
  object-fit: cover;
}

.sentence_text p {
  font-size: 14px;
}

/*------------------------------------------ ФОТОГАЛЕРЕЯ-3 --------------------------------------*/

.fotorama__arr {
  background-color: #999;
  border-radius: 16px;
}

.photo_3 h2 {
  text-decoration: underline;
  text-decoration-color: #c3232a;
}

/*------------------------------------------ УСЛУГА --------------------------------------*/

/* слайдер верхний */

.our_work .owl-prev {
  position: absolute;
  top: 45%;
  background-size: cover;
  background-image: url("../images/next.png") !important;
  transform: rotate(180deg);
  font-size: 0;
  line-height: 0;
  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: transparent;
  transition: .33s all ease;
  cursor: pointer;
  left: 50px;
}

.our_work .owl-next {
  position: absolute;
  top: 45%;
  background-size: cover;
  background-image: url("../images/next.png") !important;
  font-size: 0;
  line-height: 0;
  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: transparent;
  transition: .33s all ease;
  cursor: pointer;
  right: 50px;
}

.our_work .owl-prev:hover {
  opacity: 0.5;
}

.our_work .owl-next:hover {
  opacity: 0.5;
}

.our_work {
  background-color: #f8f9fa;
}

.our_work .owl-carousel {
  margin-bottom: -25px;
}

.our_work .owl-carousel .owl-prev,
.our_work .owl-carousel .owl-next {
  top: 38%;
}

.button_bottom button {
  border-radius: 10px;
  border-color: white;
  border: 1px solid #c3232a;
  background-color: white;
  padding: 8px 20px;
}

.button_bottom button:hover {
  background-color: #c3232a;
  color: white;
}

html {
  scroll-behavior: smooth;
}

.service_description_1,
.service_description_2 {
  padding-left: 5%;
}

.service_page i {
  color: #00ab83;
  font-size: 35px;
}

/* Картинка */

.work_image {
  height: 500px;
  overflow: hidden;
}

.work_image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  background-position: center;
}

/*  */

.work_button button {
  border-radius: 10px;
  border-color: white;
  border: 1px solid #c3232a;
  background-color: white;
  padding: 8px 20px;
}

.work_button button:hover {
  background-color: #c3232a;
  color: white;
}


/* Слайдер дипломы */

.slides_4 {
  margin-bottom: -65px;
}

.slides_4 p {
  padding-top: 20px;
}

.slides_4 .button {
  position: relative;
  z-index: 2;
  margin-top: -50px;
}

.slides_4 .cards img {
  object-fit: cover;
}

.slides_4 .owl-prev span,
.slides_4 .owl-next span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  font-size: 0;
  line-height: 0;
  opacity: 1;
  width: 25px;
  height: 25px;
  background-color: transparent;
  transition: .33s all ease;
  cursor: pointer;
}

.slides_4 .owl-next span {
  border-top: 3px solid;
  border-right: 3px solid;
  border-color: #ff9832;
  right: -40px;
}

.slides_4 .owl-prev span {
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #ff9832;
  left: -40px;
}

.slides_4 .owl-prev span:hover {
  border-color: transparent transparent #c3232a #c3232a;
}

.slides_4 .owl-next span:hover {
  border-color: #c3232a;
}

/* слайдер услуги */
/*
.slides_service .owl-carousel .owl-nav.disabled {
  display: block;
}
.slides_service .owl-prev span, .slides_top .owl-next span{
  position: absolute;
  top: 45%;
  transform: translateY(-50%) rotate(45deg);
  font-size: 0;
  line-height: 0;
  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: transparent;
  transition: .33s all ease;
  cursor: pointer;
}
.slides_service .owl-next span{
  border-top: 1px solid;
  border-right: 1px solid;
  border-color: #c3232a;
  right: 50px;
}
.slides_service .owl-prev span{
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-color: #c3232a;
  left: 50px;
}
.slides_service .owl-prev span:hover{
  border-color: transparent transparent #ff9832 #ff9832;
}
.slides_service .owl-next span:hover{
  border-color: #ff9832;
} */
.slides_service .crumbs {
  position: absolute;
  z-index: 2;
  color: white;
  padding-left: 8%;
}

.slides_service .crumbs .breadcrumb {
  background-color: #99999900;
}

.slides_service .crumbs .breadcrumb a {
  color: white;
}

/*------------------------------------------ КОНТАКТЫ --------------------------------------*/

.contacts_map {
  height: 500px;
}

#login {
  display: none;
}

#email {
  display: none;
}

/* Страница дополнительная ---------------------------------------------------*/
.dop-class-nav {
  list-style-type: none;
  padding-left: 0;
}

.dop-class-nav .nav-link {
  padding: 0;
}

.dop-style-dop-menu {
  font-weight: 900;
  color: #c3232a;
}

.dop-style-dop-menu-two {
  font-weight: 900;
  color: #c3232a;
  margin-top: 15px;
  pointer-events: none;
}

.dop-style-dop-menu-three {
  font-weight: 500;
  font-style: italic;
  color: #c3232a;
  pointer-events: none;
}

.menu-dop-block {
  border-right: 1px solid #f0e6e6;
}

#pageInfo {
  font-size: 14pt;
}

.title-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#pageInfoBlock h1 {
  color: #c3232a;
}

.button-custom {
  border-radius: 10px;
  border: 1px solid #c3232a;
  background-color: white;
  padding: 10px 26px;
  text-transform: uppercase;
}

.button-custom:hover {
  background-color: #c3232a;
  color: white;
}

#styleAllBlock {
  border-top: 1px solid #f4e7e7;
  border-bottom: 1px solid #f4e7e7;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  #styleAllBlock img {
    width: 450px;
    height: 130px;
  }
}

#styleMobileImg {
  margin: 15px 0 15px 0;
}

@media (max-width: 992px) {
  #styleAllBlock img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  #pageInfo {
    padding: 0 0;
  }

  #mobileBlock {
    padding: 0;
  }

  #styleMobileImg {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 15px 0 15px 0;
  }

  .menu-dop-block {
    border-bottom: 1px solid #f4e7e7;
    border-right: none;
    margin-bottom: 25px;
  }
}

.active>.nav-link {
  text-decoration: underline;
}

#pageInfo th {
  line-height: 20px;
}

#pageInfo thead {
  border-bottom: 1px solid rgb(201, 201, 201);
}

/* Кнопка открытия закрытия меню */
@media (min-width: 992px) {
  #toggleBlockMenu {
    display: none !important;
  }
}

@media (max-width: 992px) {
  #toggleBlockMenu {
    width: 100%;
  }
}

#TopUp {
  transition: 1s;
}

#TopUp .dop-classes {
  transition: 1s;
}

.dop-classes {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}