/*=======================================================================
[01] TEMPLATE FONTS
=========================================================================*/
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,700|Poppins:300,400,500,600,700');


html ,body{
    /*background-color: #201e29;*/
    color: #808080;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0;
    overflow-x: hidden !important;
}

.box {
    overflow-x: hidden !important;
}

a{
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
a:hover{
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
ul,
ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
button{
    border: none;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
p{
    margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Oswald', sans-serif;
    margin: 0 0 15px;
    font-weight: 400;
    text-transform: uppercase;
    color: #262330;
}
h6{
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .7px;
}
h5{
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
}
h4{
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0;
}
h3{
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.2px;
}
h2{
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 2.5px;
}
h1{
    font-size: 107px;
    line-height: 107px;
    letter-spacing: 2.5px;
}
a:focus, input:focus, select:focus, textarea:focus, button:focus{
    box-shadow: none !important;
    outline: none !important;
}

.noPadding {
    padding: 0px !important;
}
.noPaddingLeft {
    padding-left: 0px !important;
}
.noPaddingTop {
    padding-top: 0px !important;
}
.noPaddingRight {
    padding-right: 0px !important;
}
.noPaddingBottom {
    padding-bottom: 0px !important;
}
.noMargin {
    margin: 0px !important;
}
.noMarginLeft {
    margin-left: 0px !important;
}
.noMarginTop {
    margin-top: 0px !important;
}
.noMarginRight {
    margin-right: 0px !important;
}
.noMarginBottom {
    margin-bottom: 0px !important;
}

.color_white {
    color: #fff;
}
.color_red {
    color: #e43d4e;
}
.color_red a {
    color: #e43d4e;
}
.color_gray {
    color: #808080;
}
.bg_black {
    background: #34313f;
}
.bg_black2 {
    background: #292633;
}

.overlay90,
.overlay80 {
    position: relative;
}
.overlay90:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 35, 48, .9);
    content: '';
}
.overlay80:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 35, 48, .8);
    content: '';
}

.sections {
    padding: 120px 0;
    position: relative;
}

.line-border {
    width: 50px;
    height: 2px;
    background: #e43d4e;
    display: inline-block;
}

.action-btn, input[type='submit']:disabled {
    color: grey;
    border-color: grey;
}

.action-btn, input[type='submit'] {
    border: 3px solid #fff;
    color: #fff;
    display: inline-block;
    font-family: "Oswald",sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    letter-spacing: 0.7px;
    line-height: 53px;
    padding: 0 46px;
    text-transform: uppercase;
    background: transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.action-btn:hover, input[type='submit']:hover {
    color: #e43d4e;
    border-color: #e43d4e;
}

.action-btn:disabled, input[type='submit']:disabled {
    color: grey;
    border-color: grey;
}

.br{
    border-right: 1px solid #3a3942;
}
.bb{
    border-bottom: 1px solid #3a3942;
}

.text-danger {
    color: #e43d4e;
}

.text-success {
    color: #aed13b;
}

input[type="password"] {
    -webkit-text-security: disc;
}

/*=======================================================================
[02] HEADER
=========================================================================*/
.header {
    background: #292633;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.navigation ul {
    display: block;
    z-index: 9;
}

.navigation ul li{
    display: inline-block;
    line-height: 1;
    margin-right: 78px;
    position: relative;
}
.navigation ul li:before{
    width: 0;
    height: 2px;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: #e43d4e;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.navigation ul li.active:before{
    width: 100%;
}
.navigation ul li:hover > a,
.navigation ul ul.sub-menu li:hover > a,
.navigation ul ul.sub-menu ul.sub-menu li:hover > a{
    color: #e43d4e;
}
.navigation ul li:last-of-type{
    margin-right: 0;
}
.navigation ul li a {
    color: #fff;
    display: block;
    font-family: "Oswald",sans-serif;
    font-weight: 400;
    padding: 50px 0 49px;
    text-transform: uppercase;
    font-size: 16px;
}
.navigation ul ul.sub-menu {
    position: absolute;
    width: 200px;
    background: #fff;
    padding-left: 40px;
    z-index: 9;
    left: 50%;
    margin-left: -61px;
    padding-top: 16px;
    padding-bottom: 16px;
    visibility: hidden;
    opacity: 0;
    top: 130px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.navigation ul li:hover ul.sub-menu{
    visibility: visible;
    opacity: 1;
    top: 118px;
}
.navigation ul ul.sub-menu li{
    margin: 0;
    display: block;
    margin: 20px 0;
    position: relative;
}
.navigation ul ul.sub-menu li a{
    padding: 0;
    color: #262330;
}
.navigation ul ul.sub-menu ul.sub-menu {
    background: #262330;
    position: absolute;
    margin: 0;
    left: 100%;
    top: -20px;
    visibility: hidden;
    opacity: 0;
}
.navigation ul ul.sub-menu li:hover ul.sub-menu{
    visibility: visible;
    opacity: 1;
    top: -37px;
}
.navigation ul ul.sub-menu ul.sub-menu li{}
.navigation ul ul.sub-menu ul.sub-menu li a{
    color: #fff;
}
.fixed-header {
    left: 0;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 999;
    background: #201e29;
    top: 0;
}
.fixed-header .navigation ul li a{
    padding: 40px 0 39px;
}
.fixed-header .navigation ul.sub-menu{
    top: 120px;
}
.fixed-header .navigation ul li:hover ul.sub-menu {
    top: 98px;
}
.fixed-header .navigation ul ul.sub-menu ul.sub-menu{
    top: 0;
}

/*=======================================================================
[02] INFO HEADER
=========================================================================*/

.info-header {
    background: rgba(38, 35, 48, .8);
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 0;
    right: 0;
}

.logo {
    margin-top: 20px;
    width: 100px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
}

.info {
    padding: 30px 0 22px;
}


.info-item {
    display: inline-block;
    position: relative;
    text-align: left;
    vertical-align: top;
}

.info-item li {
    margin-bottom: 5px;
}

.info-item:last-of-type{
    margin-right: 0;
}
.info-item i{
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #fff;
    top: -2px;
}
.info-item h6,
.info-item h3{
    margin: 0;
    line-height: 1;
}

.info-item h6 {
    color: #e43d4e;
    margin-bottom: 7px;
}

.info-item h3 {
    color: #fff;
}

.social {
    padding: 33px 0;
    text-align: right;
}
.social a {
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    line-height: 1;
    margin-right: 5px;
    text-align: center;
    width: 40px;
}

.social a:last-of-type {
    margin-right: 0;
}
.social a:hover {
    color: #e43d4e;
    border-color: #e43d4e;
}

a {
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
a:hover{
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
@media (min-width: 576px) {
    .container, 
    .container-sm {
        max-width: 1400px;
    }
}

@media (min-width: 768px) {
    .container, 
    .container-sm, 
    .container-md {
        max-width: 1400px;
    }
}

@media (min-width: 992px) {
    .container, 
    .container-sm, 
    .container-md, 
    .container-lg {
        max-width: 1400px;
    }
}

@media (min-width: 1200px) {
    .container, 
    .container-sm, 
    .container-md, 
    .container-lg,
    .container-xl {
        max-width: 1400px;
    }
}
/*=======================================================================
[02] WELCOME
=========================================================================*/
.welcome-bg {
    width: 100%;
    height: 864px;
    position: relative;
    background: url("/uploads/welcome/welcome_1.jpg") no-repeat;
    -moz-background-size: cover; /* Firefox 3.6+ */
    -webkit-background-size: cover; /* Safari 3.1+ и Chrome 4.0+ */
    -o-background-size: cover; /* Opera 9.6+ */
    background-size: cover;
}

.welcome-wrapper {
    position: absolute;
    padding-left: 100px;
    padding-top: 300px;
    overflow: hidden;
    font-size: 16px;
    visibility: visible;
    text-align: left;
}

.welcome-wrapper h2 {
    color: #fff;
    margin: 0;
}

.welcome-wrapper p {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}

.welcome-wrapper .title {

}

.welcome-wrapper .sub-title {
    margin-top: 10px;
}

.welcome-wrapper .btn {
    margin-top: 50px;
}

/*=======================================================================
[02] LEAD
=========================================================================*/

.send-lead-bg {
    background: #34313f;
}

.lead-form {
    background: #292633;
    text-align: center;
}

.service-item {
    padding-left: 50px;
    position: relative;
}
.service-item i{
    position: absolute;
    left: 0;
    top: -9px;
    color: #e43d4e;
    font-size: 41px;
}
.service-item h3,
.service-item h3 a {
    color: #fff;
    margin-bottom: 26px;
}
.service-item h3 a:hover {
    color: #e43d4e;
}

.section-title {
    margin-bottom: 55px;
    margin-right: 30px;
    position: relative;
    z-index: 1;
}
.section-title p:last-of-type{
    margin-bottom: 50px;
}
.section-title.border-section {
    border-bottom: 1px solid #494653;
}
.title-head {
    overflow: hidden;
    padding-bottom: 45px;
}
.title-head h1 {
    color: #e43d4e;
    display: inline-block;
    float: left;
    position: relative;
    padding-right: 13px;
    margin: 0;
}
.title-head h2 {
    margin: 0;
}
.section-title2 {
    margin-bottom: 60px;
}
.section-title2 h2 {
    margin-bottom: 32px;
    line-height: .89;
}
.section-title3 {
    margin-bottom: 36px;
}


.lead-form-header {
    background: #e43d4e;
    padding: 28px 0;
}

.lead-form-header h3 {
    margin: 0;
    line-height: 1;
    color: #fff;
}

.lead-form-content input[type="checkbox"] {
    margin-right: 10px;
}

.lead-form-content input[type="text"],
.lead-form-content input[type="date"],
.lead-form-content input[type="email"],
.lead-form-content textarea {
    height: 50px;
    background: #34313f;
    border: none;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    border: 1px solid #34313f;
}

.lead-form-content textarea {
    height: 100px;
    resize: none;
    margin-bottom: 20px;
}
.lead-form-content input[type="submit"]{
    width: 100%;
}

.lead-form-content input[type="text"],
.lead-form-content input[type="date"],
.lead-form-content input[type="email"],
.lead-form-content textarea {
    color: #fff;
    opacity: 1;
}

.lead-form-content input[type="text"]:input-placeholder,
.lead-form-content input[type="date"]:input-placeholder,
.lead-form-content input[type="email"]:input-placeholder,
.lead-form-content textarea:input-placeholder {
    color: #fff;
    opacity: 1;
}
.lead-form-content input[type="text"]::-webkit-input-placeholder,
.lead-form-content input[type="date"]::-webkit-input-placeholder,
.lead-form-content input[type="email"]::-webkit-input-placeholder,
.lead-form-content textarea::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
}
.lead-form-content input[type="text"]:-moz-placeholder ,
.lead-form-content input[type="date"]:-moz-placeholder ,
.lead-form-content input[type="email"]:-moz-placeholder ,
.lead-form-content textarea:-moz-placeholder {
    color: #fff;
    opacity: 1;
}
.lead-form-content input[type="text"]::-moz-placeholder,
.lead-form-content input[type="date"]::-moz-placeholder,
.lead-form-content input[type="email"]::-moz-placeholder,
.lead-form-content textarea::-moz-placeholder{
    color: #fff;
    opacity: 1;
}
.lead-form-content input[type="text"]:-ms-input-placeholder,
.lead-form-content input[type="date"]:-ms-input-placeholder,
.lead-form-content input[type="email"]:-ms-input-placeholder,
.lead-form-content textarea:-ms-input-placeholder{
    color: #fff;
    opacity: 1;
}

.lead-form-content input[type="text"].reqError,
.lead-form-content input[type="date"].reqError,
.lead-form-content input[type="email"].reqError,
.lead-form-content textarea.reqError{
    border: 1px solid #e43d4e;
}

/*=======================================================================
[02] CALL
=========================================================================*/

.call-action-bg {
    background: url("/uploads/welcome/welcome_1.jpg") no-repeat fixed center center/cover;
    padding-top: 60px;
    padding-bottom: 85px;
}

.call-content {
    border: 10px solid rgba(255, 255, 255, 0.1);
    padding: 46px 0 48px;
    position: relative;
}
.call-content h2{
    margin: 0;
}
.call-content i {
    background: #fff;
    border-radius: 50%;
    color: #34313f;
    height: 60px;
    width: 60px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -35px;
    text-align: center;
    padding: 23px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.call-content i:hover{
    color: #e43d4e;
    cursor: pointer;
}

.phone-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.phone-link:hover {
    color: #e43d4e;
    text-decoration: underline;
}

/* Улучшение для мобильных устройств */
@media (max-width: 767px) {
    .phone-link {
        font-size: 16px;
        padding: 3px 6px;
        margin: 2px 0;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .phone-link:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.98);
    }
    
    .phone-numbers {
        display: block;
        margin-top: 5px;
    }
}

/*=======================================================================
[02] PRICES
=========================================================================*/

.price-item {
    text-align: center;
    background: #292633;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px; /* Фиксированная минимальная высота */
    position: relative;
}

.price-item-header {
    background: #fff;
    margin: 0;
    padding: 20px 0; /* Уменьшаем заголовок */
    cursor: pointer;
    transition: all 300ms ease;
}

.price-item-header:hover {
    color: #e43d4e;
}

.price-item-price {
    background: #e43d4e;
    color: #fff;
    font-size: 50px; /* Уменьшаем размер цены */
    font-weight: 700;
    line-height: 1;
    padding-top: 10px;
    padding-bottom: 5px;
}

.price-item-content {
    padding: 0 60px 60px; /* Увеличиваем нижний padding для места под кнопку */
    flex: 1;
    overflow: hidden; /* Скрываем выходящий контент */
}

.price-item-content ul {
    padding: 18px 0 5px; /* Уменьшил верхний отступ с 20px до 18px, нижний до 5px */
    margin: 0;
}

.price-item-content ul li {
    border-bottom: 1px solid #3f3c48;
    padding: 12px 0; /* Увеличил с 8px до 12px - больше расстояние между элементами */
    line-height: 1.3; /* Немного увеличил межстрочный интервал */
    font-size: 14px;
}

.price-item-content ul li:last-of-type {
    border-bottom: none;
}

/* Для длинных текстов */
.price-item-content ul li.long-item {
    font-size: 13px;
    line-height: 1.25; /* Чуть больше для читаемости */
    padding: 10px 0; /* Увеличил и для длинных элементов */
}

.price-category-label {
    text-align: center;
    color: #bbb;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.price-category-label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #e43d4e;
    display: block;
    margin: 5px auto 0;
}

/* Кнопка фиксируется снизу блока */
.price-item-footer {
    position: absolute;
    bottom: 20px; /* Фиксированное расстояние от низа */
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 60px; /* Такие же отступы как у content */
    margin: 0;
}

/* Чтобы все блоки в ряду были одинаковой высоты */
.row.justify-content-start {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Растягиваем все колонки на одну высоту */
}

.col-lg-3, .col-md-6, .col-sm-12 {
    display: fl
}

/* Мобильная версия */
@media (max-width: 767px) {
    .col-sm-12 {
        margin-bottom: 50px; /* Увеличил с 40px до 50px */
    }
    
    .col-sm-12:last-child {
        margin-bottom: 0;
    }
    
    .price-item {
        margin-bottom: 10px; /* Для мобильных уменьшаем отступ между блоками */
    }
    
    .price-item-content {
        padding: 0 25px 30px; /* Увеличил нижний padding для мобильных */
    }
    
    .price-item-content ul {
        padding: 20px 0 12px; /* Увеличил нижний padding списка на мобильных */
    }
    
    .price-item-content ul li {
        padding: 10px 0;
    }
    
    .price-item-content ul li:last-of-type {
        margin-bottom: 8px; /* Увеличил отступ после последнего пункта */
    }
    
    .price-item-footer {
        margin-top: 12px;
    }
    
    /* Подписи категорий для мобильных - УВЕЛИЧИВАЕМ ОТСТУП СВЕРХУ */
    .price-category-label {
        margin: 30px 0 12px 0; /* Увеличил верхний отступ до 30px */
        font-size: 12px;
        letter-spacing: 2px;
    }
}

/* Убираем границу у третьего блока на мобильных */
@media (max-width: 767px) {
    .col-sm-12:nth-child(3) .price-item {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .col-sm-12:nth-child(3) .price-item {
        border-bottom: 2px solid #444;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

.price-item.minimal-plan .price-item-price {
    background: #2db9c5;
}

.price-item.standart-plan .price-item-price {
    background: #e43d4e;
}
.price-item.maximal-plan .price-item-price {
    background: #aed13b;
}
.price-item.highest-plan .price-item-price {
    background: #7a197a;
}

.price-item.special-plan .price-item-price {
    background: #d18d32;
}

.price-item .action-btn {
    padding-left: 30px;
    padding-right: 30px;
}

.price-item.minimal-plan a.action-btn:hover{
    color: #2db9c5;
    border-color: #2db9c5;
}

.price-item a.action-btn:hover{
    color: #e43d4e;
    border-color: #e43d4e;
}

.price-item.maximal-plan a.action-btn:hover{
    color: #aed13b;
    border-color: #aed13b;
}
.price-item.highest-plan a.action-btn:hover{
    color: #7a197a;
    border-color: #7a197a;
}

.price-item.special-plan a.action-btn:hover{
    color: #d18d32;
    border-color: #d18d32;
}

.price-item.normal .action-btn:hover{
    border-color: #e43d4e;
    color: #e43d4e;
}

/*=======================================================================
[02] SERVICES
=========================================================================*/

.services-bg {
    background: url("/uploads/welcome/welcome_2.jpg") no-repeat fixed center center/cover;
    padding-top: 100px;
    padding-bottom: 85px;
}

.service-special-item {
    min-height: 350px;
    padding: 79px 34px;
    text-align: center;
}
.service-special-item i {
    font-size: 42px;
    color: #e43d4e;
    margin-bottom: 35px;
}
.service-special-item h3 {
    color: #fff;
}

/*=======================================================================
[02] NEWS
=========================================================================*/

.announces-location {
    padding-bottom: 10px;
    display: flex;
}
.announces-location li {
    padding: 19.5px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.announces-location span {
    text-align: right;
    padding-left: 15px;
    float: right;
}
.announces-location a:hover {
    color: #fff;
    cursor: pointer;
}

/*=======================================================================
[02] GALLERY
=========================================================================*/

.gallery-bg {
    background: url("/uploads/welcome/welcome_1.jpg") no-repeat fixed center center/cover;
    /*padding-top: 60px;*/
    /*padding-bottom: 85px;*/
}


.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-item-image:before{
    width: 100%;
    height: 100%;
    background: rgba(52, 49, 63, .5);
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.gallery-item-image img {
    width: 100%;
    height: auto;
}
.gallery-item-hover {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.gallery-item:hover .gallery-item-hover {
    visibility: visible;
    opacity: 1;
}
.gallery-item-title {
    transform: translate3d(0, 30px, 0);
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
}
.gallery-item-tag {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.gallery-item-title {
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    color: #ffffff;
}

.gallery-item:hover .gallery-item-tag,
.gallery-item:hover .gallery-item-title {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}
.gallery-item-tag {
    margin-bottom: 25px;
}
.gallery-item-tag a {
    background: #fff;
    border-radius: 50%;
    color: #34313f;
    display: inline-block;
    font-size: 18px;
    height: 60px;
    padding: 20px 0;
    text-align: center;
    width: 60px;
    line-height: .8;
}
.gallery-item-tag a:hover{
    color: #e43d4e;
}
.gallery-item-tag a.popUp{
    margin-right: 5px;
    background: #e43d4e;
    color: #fff;
}
.gallery-item-tag a.popUp:hover{
    color: #34313f;
}
.gallery-item-title {
    margin: 0 0 18px;
}
.gallery-item-title a:hover{
    color: #e43d4e;
}
.gallery-item-title a{
    color: #fff;
}

/*=======================================================================
[02] CONTACTS
=========================================================================*/

.contacts-bg {
    background: url("/uploads/welcome/welcome_1.jpg") no-repeat;
    padding-top: 60px;
    padding-bottom: 85px;
}

.contacts .widget {
    margin-bottom: 55px;
}
.contacts .widget-title {
    color: #fff;
    margin-bottom: 35px;
}
.contacts-map {
    color:#c00;font-size:16px;
    font-weight:bold;
    width: 100%;
    margin-bottom: 35px;
}
.contacts-address .address-item{
    padding-left: 41px;
    position: relative;
    margin-bottom: 17px;
}
.contacts-address .address-item i{
    position: absolute;
    left: 0;
    top: 2px;
    color: #e43d4e;
    font-size: 19px;
}
.address-item a {
    color: #e43d4e;
}

.contacts-map iframe {
    width: 100%;
    height: 400px;
}

.work-hour {
    padding-bottom: 10px;
}
.work-hour li{
    border-top: 1px solid #423e49;
    padding: 19.5px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.work-hour li:last-of-type{
    border-bottom: 1px solid #423e49;
}
.work-hour li span{
    float: right;
}
.work-hour li:hover{
    color: #fff;
    cursor: pointer;
}

.social {
    padding: 33px 0;
    text-align: right;
}
.social-bottom a {
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    line-height: 1;
    margin-right: 5px;
    text-align: center;
    width: 40px;
}

.social-bottom a:last-of-type {
    margin-right: 0;
}
.social-bottom a:hover {
    color: #e43d4e;
    border-color: #e43d4e;
}

/*=======================================================================
[02] Авторизация
=========================================================================*/
.login-form-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: #201e29 url("/uploads/welcome/welcome_1.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.login-form {
    position: relative;
    width: 50%;
    padding-top: 250px;
    padding-right: 65px;
    padding-left: 65px;
}

.login-form form {
    padding: 50px 40px;
    background-color: rgba(64, 61, 75, 0.6);
}

.login-form h1 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    font-size: 20px;
}

.login-image {
    width: 50%;
    position: relative;
    -moz-background-size: cover; /* Firefox 3.6+ */
    -webkit-background-size: cover; /* Safari 3.1+ и Chrome 4.0+ */
    -o-background-size: cover; /* Opera 9.6+ */
    background-size: cover;
}

.login-form .input {
    height: 50px;
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
    display: block;
    background: transparent;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    padding: 0 25px;
    border: none;
    outline: none;
}

.login-form button {
    width: 100%;
}

.wrap-input {
    width: 100%;
    position: relative;
}

.focus-input {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #e43d4e;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}

.input:focus + .focus-input {
    visibility: visible;
    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.sidebar {
    z-index: 1;
    position: absolute;
    width: 250px;
    top: 50px;
}

.sidebar-page-wrapper {
    margin: 0 0 0 250px;
    padding-top: 50px;
    position: relative;
}

.page-wrapper {
    margin: 25px;
    width: 100%;
    background-color: rgba(64, 61, 75, 0.6);
}

.page-wrapper h1 {
    color: #fff;
}

.admin-bg {
    top: 0;
    bottom: 0;
    width: 100%;
    position: absolute;
    background: #201e29 url("/uploads/welcome/welcome_1.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.form-horizontal {
    width: 100%;
}

.form-horizontal div {
    display: inline-block;
    width: 100%;
}


.news-list .btn-wrapper {
    padding-bottom: 50px;
}

.news-list h1 {
    font-size: 32px;
}

.news-list ul {
    padding: 40px 25px;
    width: 100%;
}

.news-list a {
    color: #fff;
}

.news-list a:hover {
    color: #e43d4e;
}


.wrapper {
    display: flex;
    align-items: stretch;
}

.sidebar {
    min-width: 250px;
    max-width: 250px;
    transition: all 0.3s;
}


.modal-content {
    padding: 15px;
    background-color: rgba(64, 61, 75, 0.6);
}

.modal-content h5 {
    color: #e43d4e;
}

.modal-content p {
    color: #fff;
}

.modal-content span {
    color: #fff;
}