.page{
	margin-bottom: 0;
}

.wpcf7-spinner{
	display: none;
}

.current-menu-item a{
	color: #2090D9 !important;
	text-decoration: underline !important;
}

#content_mob .table-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
	margin-top: 10px;
}

#content_mob .table-content {
    margin-right: 10px !important;
    white-space: nowrap !important;
	word-wrap: break-word !important;
}

#content_mob .table-content:last-child {
    margin-right: 0 !important;
}

.navbar-toggler-icon {
  background-image: url("/wp-content/themes/sofmar/assets/img/menu.svg") !important;
  background-repeat: no-repeat !important;
}

.back{
	display: inline-block;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	text-align: left;
	color: #0B1432;
	cursor: pointer;
	margin-top: 25px;
	margin-bottom: 15px;
	margin-left: 25px;
	border: 2px #000000 solid;
	border-radius: 6px;
	padding: 8px 16px 8px 16px;
}

.back i{
	margin-right: 8px;
}

.notranslate{
	padding: 3px 10px;
	border-radius: 6px;
	border: 1px solid rgba(51, 63, 72, 0.25);
	background: #E8ECF2;
	color: #0B1432;
}

.gt-current-lang{
	background-color: #FFFFFF;
}




#main .images-block .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#main .col-lg-5, #main .col-lg-7 {
  height: 100%;
}

#main .desc-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#main .desc-block .col-md-6 {
  height: 50%;
}

#main .desc-block .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.ml-4{
	margin-left: 40px;
}


.row {
  display: flex;
  flex-direction: row;
/*   justify-content: space-between; */
   justify-content: flex-start;
}

.col-lg-5, .col-lg-7 {
  height: 100%;
}


@media screen and (max-width:576px) {
    .back {
    margin-left: 0;   
        }
	.post-img{
	margin-bottom: 20px;
}
}

@media (min-width: 1921px) {
  .container-fluid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Стили для выпадающего меню */
    .sub-menu {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	padding: 10px 30px 10px 30px !important;
	margin-bottom: 0;
}

.menu-item:hover > .sub-menu {
    display: block;
}

.sub-menu li a{
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 2;
	display: block;
	margin-right: 0 !important;
}

.navbar .sub-menu li:not(:last-child){
	margin-right: 0 !important;
}

.navbar .sub-menu li:last-child{
	margin-right: 0 !important;
}


/* Поворачиваем стрелку вниз по умолчанию */
.menu-item-has-children > a::after {
    content: '\f107'; /* Unicode символ для стрелки вниз (можно заменить на любой другой символ или изображение) */
    font-family: 'FontAwesome'; /* Убедитесь, что ваша тема поддерживает иконки FontAwesome или замените на другой способ отображения иконок */
    display: inline-block;
    margin-left: 5px; /* Расстояние между текстом и стрелкой */
    font-size: 12px; /* Размер стрелки */
}

/* Поворачиваем стрелку вверх при наведении */
.menu-item-has-children:hover > a::after,
.menu-item-has-children:focus > a::after {
    transform: rotate(-180deg);
}



.services-contact input{
    border: 1px #0B1432 solid;
    border-radius: 0;
    padding: 12px 16px 12px 16px;
    width: 80%;
}

.form-hr{
	  border: none;
    height: 2px;
    background-color: #0B1432;
    width: 80%;
    margin: 0 auto; 
}

#simple-page img.aligncenter {
    display: block !important;
    margin: 0 auto !important;
}

/* OTHER */
.whatsapp-contact i{
	color: #15960B;
	font-size: 20px;
	font-weight: 600;
}

.viber-contact i{
	color: #774E96;
	font-size: 20px;
	font-weight: 600;
}

.whatsapp-contact a i{
border-bottom: none !important;
}

.viber-contact a i{
border-bottom: none !important;
}

#simple-page tr, #simple-page td, #simple-page th{
	border: 1px #000 solid;
}


/* WHATSAP */
.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 20px;
    transform: translate(-50%, -50%);
    background: #25D366; /* цвет кнопки */
    border-radius: 50%;
    width: 55px; /* ширина кнопки */
    height: 55px; /* высота кнопки */
    color: #fff;
    text-align: center;
    line-height: 53px; /* центровка иконки в кнопке */
    font-size: 35px; /* размер иконки */
    z-index: 9999;
}

.whatsapp-button a {
    color: #fff;
}

.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366; /* цвет анимированных волн от кнопки */
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.whatsapp-button:after {
    animation-delay: .5s;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #0B1432; /* Устанавливаем нужный цвет */
    border-radius: 50%; /* Если хотите сделать их круглыми */
}

.carousel-indicators [data-bs-target] {
    background-color: #0B1432; /* Цвет индикаторов */
}

.carousel-indicators .active {
    background-color: #0B1432; /* Цвет активного индикатора */
    opacity: 1; /* Убедитесь, что активный индикатор хорошо виден */
}

