@charset "utf-8";

body {
    font-family: 'Montserrat', sans-serif;
    color: #2A3E4C;
    font-size: 17px;
    line-height: 1.6;
}

h1,
.title-h1 {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
}

h2,
.title-h2 {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
}

h3,
.title-h3 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
}

h4,
.title-h4 {
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
}

h5,
.title-h5 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

h6,
.title-h6 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

@media(max-width: 991px) {

    h1,
    .title-h1 {
        font-size: 40px;
    }

    h2,
    .title-h2 {
        font-size: 40px;
    }

    h3,
    .title-h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    h4,
    .title-h4 {
        font-size: 23px;
        margin-bottom: 20px;
    }

    h5,
    .title-h5 {
        font-size: 20px;
    }

    h6,
    .title-h6 {
        font-size: 18px;
    }
}

@media(max-width: 767px) {

    h1,
    .title-h1 {
        font-size: 35px;
        margin-bottom: 25px;
    }

    h2,
    .title-h2 {
        font-size: 35px;
        margin-bottom: 25px;
    }

    h3,
    .title-h3 {
        font-size: 25px;
    }

    h4,
    .title-h4 {
        font-size: 21px;
    }

    h5,
    .title-h5 {
        font-size: 19px;
        margin-bottom: 15px;
    }

    h6,
    .title-h6 {
        font-size: 17px;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px) {

    h1,
    .title-h1 {
        font-size: 30px;
    }

    h2,
    .title-h2 {
        font-size: 30px;
    }

    h3,
    .title-h3 {
        font-size: 22px;
    }

    h1 br,
    .title-h1 br,
    h2 br,
    .title-h2 br,
    h3 br,
    .title-h3 br {
        display: none;
    }
}

a {
    color: #F34B1D;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: #F34B1D;
}

.btn {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    padding: 0 20px 1px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    background: #F34B1D;
    text-align: center;
    transition: all 300ms ease-out;
}

.btn:hover {
    background: #FF610C;
    color: #fff;
}

.btn.btn-lg {
    height: 60px;
    font-size: 17px;
    padding: 0 35px;
    border-radius: 30px;
}

.btn.btn-xlg {
    height: 80px;
    font-size: 20px;
    padding: 0 45px;
    min-width: 300px;
    max-width: 100%;
    border-radius: 40px;
}

.full-width {
    width: 100%;
}

.anim-link {
    position: relative;
    overflow: hidden;
}

.anim-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 150%;
    height: 100%;
    -webkit-transform: skewX(-50deg);
    transform: skewX(-50deg);
    background: -webkit-gradient(linear, right top, left top, from(rgba(121, 117, 117, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(121, 117, 117, 0))) no-repeat -2em 0%;
    background: linear-gradient(to left, rgba(121, 117, 117, 0), rgba(255, 255, 255, 0.8), rgba(121, 117, 117, 0)) no-repeat -2em 0%;
    background-size: 3em 100%;
    animation: move-blick 6s linear infinite;
    animation-delay: 1s;
}

.anim-link span {
    position: relative;
    z-index: 5;
}

@keyframes move-blick {
    0% {
        background-position: 0% 0%;
    }

    30% {
        background-position: 110% 0%;
    }

    100% {
        background-position: 110% 0%;
    }
}

@media(max-width: 499px) {
    .btn.btn-xlg {
        height: 70px;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 17px;
        min-width: 100%;
    }

    .btn.btn-lg {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 15px;
    }
}

@media(max-width: 399px) {
    .btn.btn-xlg {
        height: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .btn.btn-lg {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 15px;
    }
}

.btn.whatsapp-btn {
    background: #4CAF50;
    color: #fff;
}

.btn.whatsapp-btn:hover {
    background: #4CAF50;
    color: #fff;
    filter: brightness(115%);
}

.btn.whatsapp-btn img {
    margin-left: 10px;
}

.overflow-block {
    overflow: hidden;
}

.section {
    padding: 60px 0 50px;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

.pt40 {
    padding-top: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pt70 {
    padding-top: 70px;
}

.pt80 {
    padding-top: 80px;
}

.pt90 {
    padding-top: 90px;
}

.pt100 {
    padding-top: 100px;
}

@media(max-width: 767px) {
    .pt40 {
        padding-top: 40px;
    }

    .pt50 {
        padding-top: 40px;
    }

    .pt60 {
        padding-top: 40px;
    }

    .pt70 {
        padding-top: 50px;
    }

    .pt80 {
        padding-top: 60px;
    }

    .pt90 {
        padding-top: 70px;
    }

    .pt100 {
        padding-top: 80px;
    }
}

.gray-bg {
    background: #f9fafb;
}

.section h2 span {
    color: #F34B1D;
}

.more-link {
    text-transform: uppercase;
    position: relative;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}

.more-link:after {
    content: "";
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url(../images/more-link-arrow.svg) 0 0 / 100% no-repeat;
    margin-left: 9px;
    position: relative;
    top: -1px;
    transition: all ease-out 300ms;
}

.more-link:hover:after {
    transform: translateX(5px);
}

/** Header **/
.header {
    position: relative;
    background: linear-gradient(180deg, rgba(18, 18, 18, .03) 0, rgba(248, 248, 248, 0) 100%);
}

.header-media {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.header-img {
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: left center, top center, center 101%, right center;
    background-size: 65% 100%, 100% 250px, 100% 15%, auto 100%;
}

.header-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
}

.header-inner {
    position: relative;
    display: flex;
    flex-direction: column;
}

.index-template .header-inner {
    min-height: 100vh;
}

.header-main {
    padding: 15px 0;
}

.header-main-inner {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
    padding: 10px 30px;
    border-radius: 60px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .09);
}

.header-logo {
    height: 100%;
    width: 250px;
    display: flex;
    align-items: center;
}

.header-logo {
    display: inline-block;
    height: 100%;
}

.header-logo img {
    max-height: 100%;
}

.header-logo .logo-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.header-logo .logo-inner img {
    max-width: 70px;
}

.header-logo .logo-body {
    width: calc(100% - 70px);
    padding-left: 10px;
}

.header-logo .logo-title {
    color: #5c5e60;
    font-weight: 800;
    font-size: 24px;
}

.header-logo .logo-title span {
    color: #F34B1D;
}

.header-contacts {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 270px;
}

.header-contacts>.btn {
    margin-left: 30px;
}

.header-contacts .social-nav {
    margin-left: 15px;
}

.header-contacts-dropdown .title-h6 {
    margin-bottom: 10px;
}

.header-contacts-dropdown-close {
    display: none;
}

.header-contacts-dropdown .social-nav {
    margin-left: 0;
}

.header-contacts-title {
    position: relative;
}

.header-contacts-title:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.header-contacts-title a {
    color: #2A3E4C;
    font-weight: 600;
    font-size: 17px;
    padding-right: 15px;
    position: relative;
}

.header-contacts-title a:after {
    content: "";
    border-top: 4px solid #000;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    position: absolute;
    right: 3px;
    top: 8px;
}

.header-contacts-dropdown-wrapper {
    position: relative;
}

.header-contacts-dropdown {
    background: #fff;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    padding: 20px;
    width: 280px;
    top: 0;
    left: -20px;
    top: -20px;
    display: none;
}

.header-main-wrapper-push {
    display: none;
}

@media(min-width: 992px) {
    .header-contacts-dropdown-wrapper:hover .header-contacts-dropdown {
        display: block;
    }

    .fix-panel-true .header-main-wrapper.pred_fixed {
        position: fixed;
        bottom: 100%;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 600;
        box-shadow: 0 2px 7px rgba(0, 0, 0, .09);
        transition: transform .2s;
    }

    .fix-panel-true .header-main-wrapper.fixed {
        transform: translateY(100%);
    }

    .fix-panel-true .header-main-wrapper.pred_fixed .header-main-inner {
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
    }

    .fix-panel-true .header-main-wrapper.pred_fixed+.header-main-wrapper-push {
        display: block;
    }
}

.header-phone {
    margin-bottom: 10px;
}

.header-phone a {
    color: #2A3E4C;
    font-weight: 600;
    font-size: 17px;
}

.header-phone a:hover {
    color: #F34B1D;
}

.header-phone-description {
    font-size: 0.8em;
    line-height: 1.584em;
    color: #999;
    margin-top: -2px;
}

.header-contacts-dropdown-btn {
    padding: 10px 0 20px;
}

.header-contacts-dropdown-items .item {
    margin-bottom: 14px;
}

.header-contacts-dropdown-items .item-title {
    font-size: 0.8em;
    line-height: 1.584em;
    color: #999;
}

.header-contacts-dropdown-items .item-value {
    line-height: 1.2;
    font-size: 15px;
}

.social-nav {
    display: flex;
}

.social-nav li {
    margin-right: 6px;
    display: inline-block;
}

.social-nav li:last-of-type {
    margin-right: 0;
}

.social-nav a {
    position: relative;
    width: 36px;
    height: 36px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
}

.social-nav .telegram-btn a {
    background-color: #0D83BE;
}

.social-nav .whatsapp-btn a {
    background-color: #2CC54E;
}

.social-nav .viber-btn a {
    background-color: #7360F2;
}

.social-nav .chat-app-btn a {
    background-color: #0077FF;
}

.social-nav .inst-btn a {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.social-nav .youtube-btn a {
    background-color: #FF0000;
}

.social-nav a:hover {
    transform: scale(1.03);
    filter: brightness(110%);
}

.social-nav .telegram-btn a:hover {
    animation: radial-pulse-telegram 1.4s infinite;
}

.social-nav .whatsapp-btn a:hover {
    animation: radial-pulse-whatsapp 1.4s infinite;
}

.social-nav .chat-app-btn a:hover {
    animation: radial-pulse-vk 1.4s infinite;
}

.social-nav .inst-btn a:hover {
    animation: radial-pulse-inst 1.4s infinite;
}

.social-nav .youtube-btn a:hover {
    animation: radial-pulse-youtube 1.4s infinite;
}

@keyframes radial-pulse-telegram {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 136, 204, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

@keyframes radial-pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0px rgba(76, 175, 80, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

@keyframes radial-pulse-vk {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 119, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

@keyframes radial-pulse-inst {
    0% {
        box-shadow: 0 0 0 0px rgba(227, 86, 61, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

@keyframes radial-pulse-youtube {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

.header-content {
    flex: 1 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 65px 0 70px;
}

.header-content-inner {
    width: 60%;
}

.header-subtitle {
    font-size: 22px;
}

.header-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    justify-content: space-between;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}

.header-features .col {
    width: 33.3333%;
    margin: 25px 0;
    padding: 0 15px;
}

.header-features .item {
    display: flex;
    flex-wrap: wrap;
}

.header-features .item-icon {
    width: 39px;
    height: 39px;
    background: url(../images/header-features-icon-bg.png) 50% 50% / contain no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-features .item-body {
    width: calc(100% - 39px);
    padding-left: 20px;
}

.header-features .item-title {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
}

/* pralki-page overrides */
.pralki-page .header-features,
.index-template .header-features {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.pralki-page .header-features .col,
.index-template .header-features .col {
    width: 320px;
    margin: 25px 30px 25px 0;
    padding: 0 15px;
}

.pralki-page .header-features .item,
.index-template .header-features .item {
    flex-wrap: nowrap;
    align-items: center;
}

.pralki-page .header-features .item-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: none;
    border-radius: 0;
}

.pralki-page .header-features .item-icon img {
    width: 52px;
    height: 52px;
    display: block;
}

.pralki-page .header-features .item-body,
.index-template .header-features .item-body {
    width: auto;
    padding-left: 15px;
}

.header-content h1 {
    font-weight: 600;
}

.header-content h1 span {
    color: #F34B1D;
    font-weight: bold;
}

@media(min-width:1300px) {
    .header-content h1 {
        font-size: 38px;
    }
}

@media(min-width:1500px) {
    .header-content h1 {
        font-size: 46px;
    }
}

.header-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-bottom .btn {
    margin-right: 30px;
}

.header-bottom .call-time {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-bottom .call-time-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.header-bottom .call-time-title {
    max-width: calc(100% - 42px);
    text-transform: uppercase;
    font-weight: 600;
}


@media(max-width: 1299px) {
    .header-contacts>.btn {
        margin-left: 15px;
    }
}

@media(max-width: 1199px) {
    .header-features .item-title {
        font-size: 15px;
    }

    .header-features .item-title br {
        display: none;
    }

    .header-features .item-body {
        padding-left: 15px;
    }
}

@media(max-width: 991px) {
    .header-media {
        background-color: #fff;
    }

    .header-img {
        background-position: right 0 top 0;
        background-size: cover;
    }

    .header-inner {
        padding-top: 70px;
    }

    .header-main {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        background: #fff;
        z-index: 1000;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }

    .header-main-inner {
        min-height: 1px;
        height: 70px;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
    }

    .header-contacts {
        width: auto;
    }

    .header-content-inner {
        width: 100%;
        padding: 4vw;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 4vw;
    }

    .header-contacts-dropdown {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: auto;
        z-index: 200;
        border-radius: 0;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
        border-top: 1px solid #eee;
    }

    .header-contacts-title:after {
        display: none;
    }

    .header-contacts-title-overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .header-contacts-dropdown-btn .btn.full-width {
        width: auto;
    }

    .header-contacts-dropdown-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }
}

@media(max-width: 767px) {
    .header-features {
        flex-direction: column;
    }

    .header-features .col {
        margin: 10px 0;
        width: auto;
    }

    .header-features .item-title {
        font-weight: 500;
    }

    .header-logo .logo-inner img {
        width: 35px;
    }

    .header-logo .logo-body {
        width: calc(100% - 35px);
        padding-left: 5px;
    }

    .header-logo .logo-title {
        font-size: 20px;
    }

    .header-subtitle {
        font-size: 18px;
    }

    .header-bottom .btn {
        margin-right: 0;
        width: 100%;
    }

    .header-bottom .call-time {
        width: 100%;
        margin-top: 5vw;
        text-align: center;
        justify-content: center;
    }
}

@media(max-width: 599px) {
    .header-contacts-title a {
        font-size: 12px;
    }

    .header-contacts-title a:after {
        top: 5px;
    }

    .header-logo {
        width: 100px;
    }

    .header-logo .logo-title {
        font-size: 18px;
    }

    .header-main-inner {
        height: 60px;
    }

    .header-inner {
        padding-top: 60px;
    }

    .header-contacts-dropdown {
        top: 60px;
    }
}

@media(max-width: 499px) {
    .header-bottom .call-time-icon {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }

    .header-bottom .call-time-title {
        font-size: 13px;
        max-width: calc(100% - 30px);
    }
}

@media(max-width: 359px) {
    .header-contacts-title a {
        font-size: 10px;
    }

    .header-contacts-title a:after {
        top: 4px;
    }
}

/* top menu */
.top-menu {
    display: flex;
    width: calc(100% - 520px);
    padding: 0 30px;
    justify-content: center;
}

.top-menu>ul {
    display: flex;
    visibility: hidden;
    opacity: 0;
}

.top-menu.loaded>ul {
    visibility: visible;
    opacity: 1;
}

.top-menu.loaded>ul {
    visibility: visible;
    opacity: 1;
}

.top-menu li {
    position: relative;
    line-height: 1.2;
}

.top-menu a {
    color: #000;
    font-weight: 500;
}

.top-menu a:hover {
    color: #F34B1D;
}

.top-menu>ul>li>a {
    font-size: 14px;
    margin: 0 18px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.top-menu li.down>a:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    vertical-align: middle;
    margin: -5px 0 0 8px;
    transition: all ease-out 300ms;
}

.top-menu ul ul li.down>a {
    position: relative;
    padding-right: 25px;
    width: 100%;
}

.top-menu ul ul li.down>a:after {
    transform: rotate(-45deg);
    position: absolute;
    right: 12px;
    top: 18px;
}

.top-menu li.down.active>a:after,
.top-menu li.down>a:hover:after {
    border-color: #F34B1D;
}

.top-menu ul ul {
    display: none;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    width: 240px;
    z-index: 300;
    background: #fff;
    padding: 15px 20px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.top-menu ul ul:before {
    content: "";
    height: 30px;
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
}

.top-menu li:hover>ul {
    display: block;
}

.top-menu ul ul li+li {
    margin-top: 5px;
}

.top-menu ul ul a {
    color: #000;
    display: inline-block;
    padding: 7px 0;
    font-size: 15px;
}

.top-menu ul ul ul {
    top: 0;
    left: 100%;
    border-radius: 5px;
}

.top-menu .top-menu-more-list {
    display: none;
}

.top-menu .top-menu-more-list.active {
    display: block;
}

.top-menu-more-list>li>ul {
    left: auto;
    right: 0;
}

.top-menu-more-list>li:first-of-type {
    width: 40px;
    height: 100%;
}

.top-menu-more-list>li>span {
    display: block;
    width: 40px;
    height: 100%;
    cursor: pointer;
    background: url(../images/burger.svg) 50% 50% no-repeat;
}

@media(max-width: 1299px) {
    .top-menu {
        padding: 0 15px;
    }

    .top-menu>ul>li>a {
        font-size: 13px;
        margin: 0 15px;
    }

    .top-menu>ul>li.down>a:after {
        width: 5px;
        height: 5px;
        margin: -7px 0 0 6px;
    }

    .top-menu ul ul a {
        font-size: 13px;
    }

    .top-menu ul ul li.down>a:after {
        width: 5px;
        height: 5px;
    }
}

@media(max-width: 991px) {
    .top-menu {
        display: none;
    }
}

/* /. top menu */

/** /. Header **/


/* num-section */
.nums {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.nums .col {
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.nums .item {
    height: 100%;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 30px;
    position: relative;
    z-index: 5;
    background: #F9FAFB;
}

.nums .item-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 76px;
    line-height: 1.2;
    color: #F34B1D;
}

.nums .item-text {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
}

@media(max-width: 1559px) {
    .nums {
        margin-left: -8px;
        margin-right: -8px;
    }

    .nums .col {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
}

@media(max-width: 1299px) {
    .nums .item {
        padding: 25px;
    }

    .nums .item-title {
        margin-bottom: 15px;
        font-size: 56px;
    }

    .nums .item-text {
        font-size: 16px;
        line-height: 1.4;
    }
}

@media(max-width: 991px) {
    .nums {
        margin-top: 0;
    }

    .nums .item {
        padding: 20px 25px;
        border-radius: 3vw;
    }

    .nums .item-title {
        font-size: 46px;
    }

    .nums .item-text {
        font-size: 15px;
    }
}

@media(max-width: 767px) {
    .nums .item {
        padding: 20px;
    }

    .nums .item-title {
        margin-bottom: 10px;
        font-size: 36px;
    }

    .nums .item-text {
        font-size: 12px;
    }
}

@media(max-width: 599px) {
    .nums .col {
        width: 100%;
        margin-bottom: 15px;
    }

    .nums .item-title {
        font-size: 15vw;
    }

    .nums .item-text {
        font-size: 5vw;
    }
}

/* /. num-section */


/* about-section */
.about-section-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.about-section-inner .content-block {
    width: calc(100% - 700px);
    padding-right: 50px;
}

.about-section-inner .img-block {
    width: 700px;
    display: inline-flex;
    justify-content: flex-end;

}

.about-section-inner .img-block-inner {
    position: relative;
    padding-bottom: 160px;
}

.about-section-inner .img-block .img1 {
    width: 520px;
    height: 470px;
    max-width: 100%;
}

.about-section-inner .img-block .img1 img {
    border-radius: 30px;
}

.about-section-inner .img-block .img2 img {
    border-radius: 30px 0 30px 30px;
}

.about-section-inner .img-block img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about-section-inner .img-block .img2 {
    width: 360px;
    height: 430px;
    border: 20px solid #fff;
    position: absolute;
    bottom: 0;
    right: 65%;
}

@media(max-width:1559px) {
    .about-section-inner .content-block {
        width: calc(100% - 560px);
        padding-right: 30px;
        padding-top: 10px;
    }

    .about-section-inner .img-block {
        width: 560px;
    }

    .about-section-inner .img-block .img1 {
        width: 460px;
        height: 400px;
    }

    .about-section-inner .img-block .img2 {
        width: 280px;
        height: 340px;
        border: 14px solid #fff;
        right: 60%;
    }
}

@media(max-width:1229px) {
    .about-section-inner .content-block {
        width: calc(100% - 470px);
        padding-top: 0;
    }

    .about-section-inner .img-block {
        width: 470px;
    }

    .about-section-inner .img-block .img1 {
        width: 400px;
        height: 400px;
    }

    .about-section-inner .img-block .img2 {
        width: 250px;
        height: 300px;
        border: 10px solid #fff;
        right: 55%;
    }
}

@media(max-width:991px) {
    .about-section-inner .content-block {
        width: 100%;
        padding-right: 0;
        order: 2;
        padding-top: 40px;
    }

    .about-section-inner .img-block {
        width: 700px;
    }

    .about-section-inner .img-block-inner {
        padding-bottom: 160px;
    }

    .about-section-inner .img-block .img1 {
        width: 520px;
        height: 470px;
    }

    .about-section-inner .img-block .img2 {
        width: 360px;
        height: 430px;
        border: 20px solid #fff;
        right: 65%;
    }
}

@media(max-width:767px) {
    .about-section-inner .img-block {
        width: 100%;
        display: block;
    }

    .about-section-inner .img-block-inner {
        padding-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .about-section-inner .img-block .img1 {
        width: 48%;
        height: 40vw;
    }

    .about-section-inner .img-block .img2 {
        position: static;
        width: 48%;
        height: 40vw;
        border: none;
    }

    .about-section-inner .img-block .img1 img,
    .about-section-inner .img-block .img2 img {
        border-radius: 5px;
    }
}

.about-repairs {
    margin-top: 20px;
}

.about-repairs-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-repairs-cols {
    display: flex;
    flex-wrap: wrap;
}

.about-repairs-list {
    width: 50%;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.about-repairs-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.4;
    list-style: none !important;
}

.about-repairs-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F34B1D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.about-repairs-list li::marker {
    display: none;
    content: none;
}

@media(max-width: 499px) {
    .about-repairs-list {
        width: 100%;
    }
}

/* / about-section */

/* tabs */
.boxes {
    width: 100%;
    overflow: hidden;
}

.box {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    z-index: -10;
}

.box.visible {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.mobile-tab-header-wrapper {
    display: none;
}

@media(max-width: 767px) {
    .mobile-tab-header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        height: 60px;
        padding: 0 20px;
        color: #ffffff;
        background: #2A3E4C;
        width: 100%;
        position: relative;
        font-weight: 600;
        font-size: 16px;
        border-radius: 2vw;
    }

    .mobile-tab-header {
        width: calc(100% - 36px);
        padding-right: 10px;
        line-height: 1.3;
    }

    .mobile-tab-header-wrapper .item-icon {
        position: relative;
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff;
        color: #fff;
        transition: all ease-out 300ms;
    }

    .mobile-tab-header-wrapper .item-icon:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background-color: #fff;
        animation: pulse_2_small 2s linear infinite;
    }

    .mobile-tab-header-wrapper .item-icon:after {
        content: "+";
        font-size: 26px;
        font-weight: normal;
        position: relative;
        z-index: 2;
        color: #2A3E4C;
    }

    .mobile-tab-header-wrapper.active .item-icon {
        transform: rotate(45deg);
    }

    .gallery-section ul.tabs {
        position: relative;
        display: none;
        border: none;

    }

    .gallery-section ul.tabs li {
        width: 100%;
        margin-bottom: 10px;
    }

    .gallery-section ul.tabs li.current {
        display: none;
    }

    .gallery-section ul.tabs li span {
        height: 50px;
        background: #F9FAFB;
        border: 1px solid #eee;
        border-radius: 2vw;
    }

    .gallery-section .mobile-tab-header-wrapper.active+ul.tabs {
        display: block;
    }
}

@media(min-width: 768px) {
    .gallery-section .tabs {
        display: flex !important;
    }
}

/* /. tabs */


/* Reviews */
.reviews {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.reviews .col {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    width: 50%;
}

.reviews .item {
    padding: 30px 40px 30px 260px;
    border-radius: 30px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #eeeeee;
    background: #F9FAFB;
}

.reviews .item-img {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.reviews .video-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.reviews .video-block a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
}

.reviews .video-block a:after {
    content: "";
    background: url(../images/play.svg) 0 0 no-repeat;
    width: 53px;
    height: 53px;
    position: absolute;
    top: calc(50% - 26px);
    left: calc(50% - 26px);
    transition: all ease-out 300ms;
}

.reviews .video-block:hover a:after {
    transform: scale(1.2);
}

.reviews .item-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviews .star-block {
    line-height: 0;
}

.reviews .item-body {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews .item-footer .btn {
    margin: 30px 0 0;
}

.reviews .item-date,
.reviews-modal .item-date {
    color: #999;
    font-size: 13px;
}

.reviews .item-title,
.reviews-modal .item-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.reviews .item-subtitle,
.reviews-modal .item-subtitle {
    color: #F34B1D;
    font-weight: 600;
}

.reviews .item-body,
.reviews-modal .item-body {
    padding-top: 10px;
}

.reviews-carousel>div:not(:first-of-type) {
    display: none;
}

.reviews-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.reviews-carousel .slick-slide {
    height: inherit;
}

.reviews-carousel .slick-slide>div {
    height: 100%;
}

.star-block .icon {
    color: #ced4da;
}

.star-block[data-rating="1"] .icon:nth-child(-n+1),
.star-block[data-rating="2"] .icon:nth-child(-n+2),
.star-block[data-rating="3"] .icon:nth-child(-n+3),
.star-block[data-rating="4"] .icon:nth-child(-n+4),
.star-block[data-rating="5"] .icon:nth-child(-n+5) {
    color: #f5b04d
}

.fancybox_modal .reviews .item {
    box-shadow: none;
    padding: 0;
    display: block;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.fancybox_modal .reviews .item-img {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 20px;
    margin-top: 0;
}

.fancybox_modal .reviews .item-header {
    display: block;
}

.fancybox_modal .reviews .item-date {
    margin-bottom: 15px;
}


@media(max-width: 1299px) {
    .reviews {
        margin-left: -10px;
        margin-right: -10px;
    }

    .reviews .item-body {
        font-size: 14px;
    }

    .reviews .col {
        padding-left: 10px;
        padding-right: 10px;
    }

    .reviews .item {
        padding: 30px 20px 30px 250px;
    }

    .reviews .item-img {
        left: 20px;
        top: 20px;
    }
}

@media(max-width: 1199px) {
    .reviews .item-img {
        width: 150px;
    }

    .reviews .item {
        padding: 30px 20px 30px 190px;
    }
}

@media(max-width:991px) {
    .reviews .col {
        width: 100%;
    }

    .reviews .item {
        border-radius: 4vw;
    }
}

@media(max-width: 599px) {
    .reviews-modal {
        padding-top: 60px;
    }
}

@media(max-width:499px) {
    .reviews .item-img {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 15px;
        width: 100%;
    }

    .reviews .item {
        padding: 20px;
    }
}

@media(max-width: 429px) {
    .reviews .item-header {
        display: block;
    }

    .reviews .item-date {
        margin-bottom: 15px;
    }
}

.slick-arrows-top {
    padding-top: 20px;
}

.slick-arrows-top-section h2 {
    padding-right: 120px;
}

.slick-arrows-top .slick-next {
    right: 10px;
    top: -82px;
}

.slick-arrows-top .slick-prev {
    left: auto;
    right: 64px;
    top: -82px;
}

@media(max-width:767px) {
    .slick-arrows-top-section h2 {
        padding-right: 0;
    }

    .slick-arrows-top {
        padding-top: 70px;
    }

    .slick-arrows-top .slick-next {
        right: auto;
        top: 0;
        left: 60px;
    }

    .slick-arrows-top .slick-prev {
        left: 5px;
        right: auto;
        top: 0;
    }
}

/* /. Reviews */


/* faq */
.accordion {
    margin-bottom: 20px;
}

.accordion .item-body {
    display: none;
    padding: 35px 35px 15px;
    font-size: 20px;
}

.accordion .item {
    margin-bottom: 10px;
}

.accordion .item-head {
    min-height: 66px;
    padding: 15px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #F9FAFB;
    color: #000000;
    border-radius: 12px;
    border: 1px solid #eee;
    font-weight: 600;
    transition: all ease-out 300ms;
}

.accordion .item-title {
    font-size: 22px;
    line-height: 1.35;
    width: calc(100% - 50px);
}

.accordion .item-icon {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F34B1D;
    color: #fff;
    transition: all ease-out 300ms;
}

.accordion .item-icon:after {
    content: "+";
    font-size: 26px;
    font-weight: normal;
    position: relative;
    z-index: 2;
}

.accordion .item.active .item-icon {
    transform: rotate(45deg);
}

.accordion .item-icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #F34B1D;
    animation: pulse_2_small 2s linear infinite;
}

@keyframes pulse_2_small {
    0% {
        -webkit-transform: scale(.8);
        transform: scale(.8);
        opacity: .8
    }

    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0
    }
}

.accordion .item:hover .item-head,
.accordion .item.active .item-head {
    background: #E0E9F0;
    border-color: #E0E9F0;
}

@media(max-width: 991px) {
    .accordion .item-head {
        min-height: 80px;
        padding: 12px 24px;
    }

    .accordion .item-title {
        font-size: 20px;
    }

    .accordion .item-body {
        font-size: 16px;
        padding: 24px 24px 4px;
    }
}

@media(max-width: 767px) {
    .accordion .item-head {
        min-height: 70px;
        padding: 10px 20px;
    }

    .accordion .item-title {
        font-size: 16px;
    }

    .accordion .item-body {
        padding: 20px 20px 0;
        font-size: 14px;
    }
}

/* /. faq */

/* services */
.services {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}

.services .col {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    width: 25%;
}

.services .item {
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #2A3E4C;
}

.services .item:hover {
    border-color: #2A3E4C;
}

.services .item-img {
    text-align: center;
    height: 204px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .item-img img {
    max-height: 100%;
}

.services .item-inner {
    flex: 1 0 auto;
    display: flex;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.services .item-title {
    font-size: 19px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 10px;
}

.services .item-price {
    font-weight: 600;
    font-size: 26px;
}

.services .item-footer {
    padding-top: 30px;
}

@media(max-width: 1559px) {
    .services {
        margin-left: -8px;
        margin-right: -8px;
    }

    .services .col {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }

    .services .item {
        padding: 1.8vw;
    }

    .services .item-inner,
    .services .item-footer {
        padding-top: 1.5vw;
    }

    .services .item-img {
        height: 13vw;
    }

    .services .item-price {
        font-size: 1.8vw;
    }

    .services .item-title {
        font-size: 1.5vw;
    }
}

@media(max-width: 1199px) {
    .services .btn.btn-lg {
        height: 4.5vw;
        font-size: 1.4vw;
        padding: 0 1.4vw;
    }
}

@media(max-width: 991px) {
    .services-section {
        padding-top: 60px;
    }

    .services .col {
        width: 33.3333%;
    }

    .services .item {
        padding: 2.4vw;
        border-radius: 4vw;
    }

    .services .item-img {
        height: 19vw;
    }

    .services .item-inner,
    .services .item-footer {
        padding-top: 2.25vw;
    }

    .services .item-price {
        font-size: 2.7vw;
    }

    .services .item-title {
        font-size: 2vw;
    }

    .services .btn.btn-lg {
        height: 6vw;
        font-size: 2vw;
        padding: 0 2vw;
    }
}

@media(max-width: 767px) {
    .services .col {
        width: 50%;
    }

    .services .item {
        padding: 4vw;
    }

    .services .item-img {
        height: 30vw;
    }

    .services .item-inner,
    .services .item-footer {
        padding-top: 3.5vw;
    }

    .services .item-price {
        font-size: 4vw;
    }

    .services .item-title {
        font-size: 3.2vw;
    }

    .services .btn.btn-lg {
        height: 8vw;
        font-size: 2.7vw;
        padding: 0 2vw;
    }
}

@media(max-width: 399px) {
    .services .col {
        width: 100%;
    }

    .services .item {
        padding: 8vw;
        border-radius: 8vw;
    }

    .services .item-img {
        height: 50vw;
    }

    .services .item-inner,
    .services .item-footer {
        padding-top: 6vw;
    }

    .services .item-price {
        font-size: 8vw;
    }

    .services .item-title {
        font-size: 6vw;
    }

    .services .btn.btn-lg {
        height: 16vw;
        font-size: 5vw;
        padding: 0 3vw;
    }
}

/* /. services */

/* .logotypes-carousel */
.logotypes-carousel.slick-arrows-top .slick-next {
    right: 5px;
}

.logotypes-carousel.slick-arrows-top .slick-prev {
    right: 60px;
}

.logotypes-carousel {
    margin: 0 -5px 20px;
}

.logotypes-carousel>div:not(:first-of-type) {
    display: none;
}

.logotypes-carousel .col {
    width: 16.6666%;
    padding: 5px;
}

.logotypes-carousel .item {
    height: 100%;
    max-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vw;
    border: 1px solid #eee;
    border-radius: 15px;
}

.logotypes-carousel .item:hover {
    border-color: #A0A0A0;
}

.logotypes-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.logotypes-carousel .slick-slide {
    height: inherit;
}

.logotypes-carousel .item img {
    max-height: 100%;
}

@media(max-width: 991px) {
    .logotypes-carousel .col {
        width: 20%;
    }
}

@media(max-width: 767px) {
    .logotypes-carousel .col {
        width: 25%;
    }
}

@media(max-width: 599px) {
    .logotypes-carousel .col {
        width: 33.3333%;
    }
}

@media(max-width: 499px) {
    .logotypes-carousel .col {
        width: 50%;
    }
}

/* /. logotypes-carousel */


/* steps section */
.steps-section-inner {
    display: flex;
    flex-wrap: wrap;
}

.steps-section-inner .col1 {
    width: 44%;
    padding-right: 2vw;
}

.steps-section-inner .col2 {
    width: 56%;
    padding-left: 2vw;
}

.steps-section-content {
    position: sticky;
    top: 30px;
}

.fix-panel-true .steps-section-content {
    top: 120px;
}

.steps .item {
    background: #F9FAFB;
    border: 1px solid #eee;
    border-radius: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 30px;
}

.steps .item:last-child {
    margin-bottom: 0;
}

.steps .item-num {
    font-weight: bold;
    font-size: 70px;
    width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps .item-num img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.steps .item-num svg {
    width: 52px;
    height: 52px;
    color: #F34B1D;
    flex-shrink: 0;
}

.steps .item-title {
    width: calc(100% - 100px);
    padding-left: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
}

@media(max-width: 991px) {
    .steps-section-inner .col1 {
        width: 50%;
    }

    .steps-section-inner .col2 {
        width: 50%;
    }

    .steps-section-content {
        top: 100px;
    }

    .fix-panel-true .steps-section-content {
        top: 100px;
    }

    .steps .item {
        border-radius: 4vw;
        margin-bottom: 3vw;
        padding: 1.5vw 3vw;
    }

    .steps .item-num {
        font-size: 6.5vw;
        width: 10vw;
    }

    .steps .item-title {
        width: calc(100% - 10vw);
        padding-left: 2vw;
        font-size: 1.9vw;
    }
}

@media(max-width: 767px) {
    .steps-section-inner .col1 {
        width: 100%;
        margin-bottom: 6vw;
        padding-right: 0;
    }

    .steps-section-inner .col2 {
        width: 100%;
        padding-left: 0;
    }

    .steps-section-content {
        position: static;
    }

    .steps .item {
        padding: 2vw 4vw;
    }

    .steps .item-num {
        font-size: 8vw;
        width: 12vw;
    }

    .steps .item-title {
        width: calc(100% - 12vw);
        font-size: 3vw;
    }
}

@media(max-width: 499px) {
    .steps .item {
        padding: 3vw 6vw;
    }

    .steps .item-num {
        font-size: 10vw;
        width: 14vw;
    }

    .steps .item-title {
        width: calc(100% - 14vw);
        font-size: 4vw;
    }
}

/* /. steps section */

/* application-block */
.application-block {
    background: linear-gradient(45deg, #e0e9f0, #f9fafb);
    border-radius: 30px;
    padding: 50px;
}

.application-block form {
    display: flex;
    flex-wrap: wrap;
    margin: 60px -8px 20px;
}

.application-block .form-col {
    width: 33.3333%;
    padding-left: 8px;
    padding-right: 8px;
}

.application-block .form-control {
    background: #fff;
    border: none;
}

.application-block .agreement-wrapper {
    padding-left: 30px;
}

@media(max-width: 1559px) {
    .application-block {
        padding: 4vw;
    }
}

@media(max-width: 991px) {
    .application-block {
        border-radius: 4vw;
        padding: 6vw;
    }

    .application-block .form-col {
        width: 100%;
    }

    .application-block .form-col+.form-col {
        margin-top: 2vw;
    }

    .application-block form {
        margin: 6vw 0 2vw;
    }

    .application-block .agreement-wrapper {
        padding-left: 0;
        padding-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* /. application-block */

/* gallery-section */
.gallery-section .tabs {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 20px;
}

.gallery-section .tabs li {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.gallery-section .tabs li>span {
    display: flex;
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #F9FAFB;
    border-radius: 20px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    cursor: pointer;
    transition: all ease-out 300ms;
}

.gallery-section .tabs li>span:hover {
    background: #E0E9F0;
}

.gallery-section .tabs li.current>span {
    background: #2A3E4C;
    color: #fff;
}

.gallery-section .box {
    padding: 30px 0 0;
}

.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.portfolio-gallery .col {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.portfolio-gallery .item {
    display: block;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.portfolio-gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-gallery .item>span {
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 50%;
    background-color: #F34B1D;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    opacity: 0;
}

.portfolio-gallery .item>span svg {
    object-fit: cover;
    fill: #fff;
}

.portfolio-gallery .item:hover>span {
    opacity: 1;
}

.portfolio-gallery .item>span:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.portfolio-gallery .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(49, 185, 57, 0) 29.64%, #F34B1D 100%);
    transition: 0.3s;
    opacity: 0;
}

.portfolio-gallery .item:hover:after {
    opacity: 1;
}

@media(max-width: 1559px) {
    .gallery-section .tabs {
        margin-left: -8px;
        margin-right: -8px;
        padding-top: 16px;
    }

    .gallery-section .tabs li {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }

    .gallery-section .tabs li>span {
        height: 70px;
        border-radius: 1vw;
        padding: 0 10px;
        font-size: 16px;
    }

    .gallery-section .box {
        padding-top: 5vw;
    }

    .portfolio-gallery {
        margin-left: -8px;
        margin-right: -8px;
    }

    .portfolio-gallery .col {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }

    .portfolio-gallery .item {
        height: 18vw;
    }
}

@media(max-width: 991px) {
    .gallery-section .tabs li {
        width: 50%;
    }

    .portfolio-gallery .item {
        border-radius: 2vw;
    }
}

@media(max-width: 499px) {
    .gallery-section .tabs li {
        width: 100%;
    }

    .portfolio-gallery .col {
        width: 50%;
    }

    .portfolio-gallery .item {
        height: 36vw;
    }
}

/* /. gallery-section */


/* get-consultation-section */
.btn.telegram-btn {
    background: #0D83BE;
    color: #fff;
}

.btn.chat-app-btn {
    background: #0077FF;
    color: #fff;
}

.get-consultation-section-inner {
    position: relative;
    min-height: 550px;
    padding: 60px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.get-consultation-section .section-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.get-consultation-section .section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.get-consultation-section .section-person {
    position: absolute;
    right: 1vw;
    top: 1vw;
    bottom: 0;
    width: 34%;
}

.get-consultation-section .section-person img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}

.get-consultation-section .person-information {
    position: absolute;
    bottom: 70px;
    left: 15px;
    background: rgba(255, 255, 255, .2);
    padding: 1vw;
    border-radius: 10px;
    text-align: right;
}

.get-consultation-section .person-name {
    text-transform: uppercase;
    font-size: 1.3vw;
    font-weight: bold;
}

.get-consultation-section .person-post {
    font-size: 1vw;
}

.get-consultation-section .section-body {
    position: relative;
    z-index: 10;
}

.get-consultation-section .section-body-inner {
    padding-right: 500px;
}

.get-consultation-section .form-title {
    color: #676767;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 30px;
    padding-top: 20px;
    font-weight: 600;
}

.get-consultation-section .form-control {
    height: 82px;
    border-color: #fff;
    background: #fff;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 0;
    border-radius: 40px;
}

.get-consultation-section .btn-xlg {
    height: 82px;
    min-width: 100%;
}

.get-consultation-section .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.get-consultation-section .form-row .col {
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
}

.get-consultation-section .agreement {
    margin-top: 35px;
}

.get-consultation-section .agreement a {
    color: #000;
    text-decoration: underline;
}

.get-consultation-section .agreement a:hover {
    color: #000;
    text-decoration: none;
}

.get-consultation-section .mess-block {
    padding-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.get-consultation-section .mess-block-title {
    margin-right: 30px;
    color: #676767;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.get-consultation-section .mess-buttons a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 0 15px;
    margin-right: 7px;
}

.get-consultation-section .mess-buttons a svg {
    max-width: 100%;
    max-height: 100%;
}

.get-consultation-section .mess-buttons a:hover {
    transform: scale(1.03);
}

.get-consultation-section .mess-buttons a.telegram-btn:hover {
    animation: radial-pulse-telegram 1.4s infinite;
}

.get-consultation-section .mess-buttons a.whatsapp-btn:hover {
    animation: radial-pulse-whatsapp 1.4s infinite;
}

@media(max-width: 1559px) {
    .get-consultation-section .section-person {
        width: 35%;
        right: 0;
    }

    .get-consultation-section .section-body {
        width: 75%;
    }

    .get-consultation-section .section-body-inner {
        padding-right: 0;
    }

    .get-consultation-section .person-information {
        left: auto;
        right: 15px;
        bottom: 60px;
    }
}

@media(max-width: 1399px) {
    .get-consultation-section-inner {
        position: relative;
        min-height: 1px;
    }

    .get-consultation-section .section-person {
        bottom: 0;
    }

    .get-consultation-section .person-information {
        bottom: 50px;
    }

    .get-consultation-section h2 {
        font-size: 3vw;
    }

    .get-consultation-section .form-title {
        padding-top: 0;
    }

    .get-consultation-section .form-control,
    .get-consultation-section .btn-xlg {
        height: 72px;
    }

    .get-consultation-section .btn.btn-xlg {
        font-size: 1.5vw;
        padding-left: 10px;
        padding-right: 10px;
    }

    .get-consultation-section .form-title br {
        display: none;
    }
}

@media(max-width: 1199px) {
    .get-consultation-section .form-wrapper {
        width: 550px;
        max-width: 100%;
    }

    .get-consultation-section .form-row .col {
        width: 100%;
        margin-bottom: 10px;
    }

    .get-consultation-section .btn.btn-xlg {
        font-size: 18px;
    }

    .get-consultation-section .form-control {
        text-align: center;
    }

    .get-consultation-section .section-person {
        top: 2vw;
        width: 50%;
    }

    .get-consultation-section .section-body {
        width: 50%;
    }
}

@media(max-width: 1099px) {
    .get-consultation-section .mess-block-title {
        margin-right: 0;
        width: 100%;
        margin-bottom: 30px;
    }
}

@media(max-width: 991px) {
    .get-consultation-section-inner {
        padding: 6vw;
        border-radius: 4vw;
    }

    .get-consultation-section .section-person {
        top: 20vw;
        width: 45%;
    }

    .get-consultation-section .section-body {
        width: 55%;
    }

    .get-consultation-section .person-name {
        font-size: 2vw;
    }

    .get-consultation-section .person-post {
        font-size: 1.8vw;
    }

    .get-consultation-section .form-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-top: 10px;
    }

    .get-consultation-section .mess-block-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .get-consultation-section .mess-block {
        padding-top: 0;
    }

    .get-consultation-section h2 {
        font-size: 3.5vw;
    }
}

@media(max-width: 767px) {
    .get-consultation-section .section-body {
        width: 100%;
    }

    .get-consultation-section .section-person {
        display: none;
    }

    .get-consultation-section .form-wrapper {
        width: 100%;
        text-align: center;
    }

    .get-consultation-section .form-control {
        border-color: #ddd;
    }

    .get-consultation-section h2 {
        font-size: 35px;
        text-align: center;
    }

    .get-consultation-section .mess-buttons {
        width: 100%;
    }
}

@media(max-width: 499px) {
    .get-consultation-section h2 {
        font-size: 7vw;
    }
}

/* /. get-consultation-section*/

/* footer */
.footer-top {
    margin-bottom: 60px;
    padding-top: 30px;
}

.footer-bottom {
    margin-bottom: 90px;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-inner .col1 {
    width: calc(100% - 50px);
    padding-right: 20px;
}

.footer-bottom-inner .col2 {
    width: 50px;
}

.footer-phone-wrapper {
    width: 100%;
    overflow: hidden;
    padding-top: 40px;
}

.footer-phone {
    margin-bottom: 0.5vw;
    display: inline-block;
    position: relative;
}

.footer-phone a,
.footer-phone .typed-cursor {
    font-weight: 600;
    font-size: 70px;
    color: #F34B1D;
}

.footer-phone a:hover,
.footer-phone a:hover+.typed-cursor {
    color: #000;
}

.footer-phone .item-animate {
    position: absolute;
    top: -30px;
    right: -100px;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    background-color: #F34B1D;
    animation-name: wobble;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    white-space: nowrap;
    opacity: 0;
    transform: rotate(18deg);
    transition: all ease-out 300ms;
}

.footer-phone .item-animate:after {
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 16px;
    border-top-color: #F34B1D;
    border-width: 9px;
    margin-left: -1px;
    margin-top: -1px;
}

.footer-phone .item-animate.active {
    opacity: 1;
}

@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}


.footer-address {
    font-size: 25px;
    margin-bottom: 1vw;
    line-height: 1.4;
}

.footer-schedule {
    font-size: 25px;
    line-height: 1.4;
}

.footer-top-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-top-inner .col1 {
    width: 75%;
    padding-right: 25px;
}

.footer-top-inner .col2 {
    width: 25%;
    padding-left: 25px;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.footer-social-title {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.footer-top-inner .social-nav {
    justify-content: flex-end;
}

.footer-top-inner .social-nav a {
    width: 60px;
    height: 60px;
}

.footer .social-nav li:not(:last-of-type) {
    margin-right: 10px;
}

.typed-donor {
    opacity: 0;
    position: absolute;
    z-index: -100;
}

.footer-bottom a {
    color: #777;
    text-decoration: underline;
    display: inline-block;
    line-height: 1.2;
}

.footer-bottom a:hover {
    color: #000;
    text-decoration: none;
}

@media(max-width: 1199px) {

    .footer-phone a,
    .footer-phone .typed-cursor {
        font-size: 5vw;
    }

    .footer-social-title,
    .footer-address,
    .footer-schedule {
        font-size: 20px;
    }

    .footer-top {
        padding-top: 0;
        margin-bottom: 40px;
    }

    .footer-bottom {
        margin-bottom: 60px;
    }
}

@media(max-width: 991px) {
    .footer-top-inner .col1 {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer-top-inner .col2 {
        width: 100%;
        padding-left: 0;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-top-inner .social-nav {
        justify-content: flex-start;
    }

    .footer-phone {
        margin-bottom: 5vw;
    }

    .footer-phone a,
    .footer-phone .typed-cursor {
        font-size: 8vw;
    }

    .footer-social-title {
        font-weight: 600;
    }
}

@media(max-width: 699px) {
    .footer-phone .item-animate {
        display: none;
    }

    .footer-social-title,
    .footer-address,
    .footer-schedule,
    .copyright {
        font-size: 4vw;
    }

    .footer-social-title {
        margin-bottom: 4vw;
    }

    .footer-top {
        margin-bottom: 4vw;
    }

    .footer .social-nav {
        display: flex;
        margin-bottom: 4vw;
    }
}

/* footer services nav (service pages) */
.footer-col1-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col1-left {
    width: 35%;
}

.footer-col1-middle {
    width: 40%;
}

.footer-col1-right {
    width: 25%;
    padding-left: 20px;
}

.footer-services-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-services-nav-title {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-services-nav li {
    margin-bottom: 8px;
}

.footer-services-nav a {
    font-size: 17px;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-services-nav a:hover {
    color: #F34B1D;
}

.footer-services-nav a.active {
    color: #F34B1D;
    font-weight: 600;
    pointer-events: none;
}

@media(max-width: 1199px) {
    .footer-services-nav-title {
        font-size: 20px;
    }

    .footer-services-nav a {
        font-size: 15px;
    }
}

@media(max-width: 767px) {

    .footer-col1-left,
    .footer-col1-middle,
    .footer-col1-right {
        width: 100%;
        padding-left: 0;
    }

    .footer-col1-middle,
    .footer-col1-right {
        margin-top: 25px;
    }
}

/* /. footer services nav */

/* /. footer */

/* Breadcrumbs */
.breadcrumb {
    margin: 35px 0;
    font-size: 15px;
}

.breadcrumb>li {
    display: inline;
    color: #000;
    white-space: nowrap;
}

.breadcrumb>li>a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.breadcrumb>li>a:after {
    content: '';
    display: inline-block;
    background: url(../images/breadcrumb-arrow.svg) 0 0 no-repeat;
    margin-left: 4px;
    margin-right: 0px;
    width: 20px;
    height: 17px;
    position: relative;
    top: -2px;
}

.breadcrumb>li>a:hover {
    color: #000;
}

.breadcrumb span,
.breadcrumb a {
    display: inline-block;
}

.breadcrumb span:first-letter,
.breadcrumb a:first-letter {
    text-transform: capitalize;
}

@media(max-width: 991px) {
    .breadcrumb {
        display: flex;
        overflow: auto;
        margin-bottom: 25px;
    }
}

/* /. Breadcrumbs */

/* services--usterki — після всіх базових стилів */
.services--usterki .col {
    width: 25%;
    margin-bottom: 10px;
}

.services--usterki .item {
    padding: 10px;
    cursor: default;
    border-radius: 12px;
    display: block;
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.services--usterki .item:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.services.services--usterki .item-img {
    height: auto !important;
    min-height: 0 !important;
    width: 55% !important;
    margin: 0 auto !important;
    display: block;
    text-align: center;
}

.services--usterki .item-img img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
}

.services.services--usterki .item-inner,
.services.services--usterki .item-footer {
    padding-top: 6px;
    flex-direction: column;
}

.services--usterki .item-title {
    font-size: 13px;
    font-weight: 600;
    margin-top: 0;
    text-align: center;
    line-height: 1.3;
}

@media(max-width: 1559px) {
    .services.services--usterki .item-img {
        height: auto;
        width: 78%;
    }

    .services.services--usterki .item-inner,
    .services.services--usterki .item-footer {
        padding-top: 6px;
    }

    .services--usterki .item-title {
        font-size: 1.1vw;
    }
}

@media(max-width: 991px) {
    .services--usterki .col {
        width: 25%;
    }

    .services.services--usterki .item-img {
        height: auto;
        width: 75%;
    }

    .services.services--usterki .item-inner,
    .services.services--usterki .item-footer {
        padding-top: 6px;
    }

    .services--usterki .item-title {
        font-size: 1.5vw;
    }
}

@media(max-width: 767px) {
    .services--usterki .col {
        width: 50%;
    }

    .services.services--usterki .item-img {
        height: auto;
        width: 70%;
    }

    .services.services--usterki .item-inner,
    .services.services--usterki .item-footer {
        padding-top: 6px;
    }

    .services--usterki .item-title {
        font-size: 3vw;
    }
}

@media(max-width: 399px) {
    .services--usterki .col {
        width: 50%;
    }

    .services.services--usterki .item-img {
        height: auto;
        width: 65%;
    }

    .services.services--usterki .item-inner,
    .services.services--usterki .item-footer {
        padding-top: 6px;
    }

    .services--usterki .item-title {
        font-size: 4vw;
    }
}

/* /. services--usterki */

.services-subtitle {
    font-size: 16px;
    color: #555;
    margin-top: -10px;
    margin-bottom: 30px;
}

.services--usterki .item-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-top: 4px;
}

@media(max-width: 767px) {
    .services--usterki .col {
        width: 50%;
    }
}

/* /. usterki-grid */

/* rotate-text */
.rotate-text {
    white-space: nowrap;
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    -webkit-perspective: 300px;
    perspective: 300px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.rotate-text>b {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    font-weight: inherit;
    white-space: nowrap;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.rotate-text>b.is-visible {
    position: relative;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: cd-rotate-1-in 0.6s ease both;
    animation: cd-rotate-1-in 0.6s ease both;
}

.rotate-text>b.is-hidden {
    position: absolute;
    opacity: 0;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: cd-rotate-1-out 0.6s ease both;
    animation: cd-rotate-1-out 0.6s ease both;
}

@-webkit-keyframes cd-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: rotateX(-10deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes cd-rotate-1-in {
    0% {
        transform: rotateX(180deg);
        opacity: 0;
    }

    60% {
        transform: rotateX(-10deg);
        opacity: 1;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes cd-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }

    60% {
        -webkit-transform: rotateX(-20deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }
}

@keyframes cd-rotate-1-out {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }

    60% {
        transform: rotateX(-20deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(180deg);
        opacity: 0;
    }
}

/* /. rotate-text */

/* Custom FancyBox Policy Size */
.fancybox-slide--ajax .fancybox-content {
    max-width: 800px;
    height: auto !important;
    max-height: 90vh;
    padding: 40px;
    border-radius: 10px;
}

.fancybox-slide--ajax .fancybox-close-small {
    right: 15px;
    top: 15px;
}

.policy-modal .fancybox-content {
    max-width: 800px;
    padding: 40px !important;
    border-radius: 12px;
    margin: 40px auto;
    background: #fff;
    pointer-events: auto;
    max-height: 80vh !important;
}

.policy-modal .fancybox-button--close {
    right: 10px !important;
    top: 10px !important;
    color: #000;
}

/* Call Button Custom Adjustments */
.header-bottom .call-btn span {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.header-bottom .call-btn svg {
    width: 28px;
    height: 28px;
}

@media(max-width: 991px) {
    .header-bottom .call-btn span {
        font-size: 21px;
    }
}

.index-template .header-features .item-icon {
    flex-shrink: 0;
}