@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-color: #00448C;
    --red-color: #E4003A;
    --dark-red-color: #b5002d;
}

body {
    background-color: #FFF;
    background-image: url("../img/bg.png");
    background-size: cover;
    background-position: center bottom;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
}

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

a, button {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

input {
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-weight: normal;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    padding: 0;
    margin: 0;
}

img {
    vertical-align: bottom;
}

.main-btn {
    display: inline-block;
    color: #FFF;
    background: var(--red-color);
    padding: 20px 60px;
    font-weight: 700;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
}

.main-btn:hover {
    background: var(--dark-red-color);
}

.main-blue-btn {
    display: inline-block;
    color: #FFF;
    background: var(--main-color);
    padding: 20px 60px;
    font-weight: 700;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
}

.main-title {
    position: relative;
    text-transform: uppercase;
    color: #0D0D0D;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
}

.main-title__count {
    position: absolute;
    top: -100px;
    left: 0;
    font-size: 150px;
    color: transparent;
    -webkit-text-stroke: 2px var(--main-color);
}

.main-title__name {
    padding-left: 50px;
    position: relative;
}

.main-title-2 {
    text-transform: uppercase;
    color: #0D0D0D;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.form-group {
    margin-bottom: 30px;
}

.form-control {
    border: none;
    border-bottom: 1px solid var(--main-color);
    padding: 10px;
    width: 100%;
    background: none;
}

/*HEADER*/
.header {
    position: relative;
    z-index: 10;
}
.header-top {
    background: var(--main-color);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-phones {
    display: flex;
    align-items: center;
}

.header-phones__icon {
    width: 16px;
    height: 16px;
}

.header-phones__icon svg {
    width: 16px;
    height: 16px;
}

.header-phone {
    color: #FFF;
    font-weight: 700;
    line-height: 1;
    margin-left: 15px;
}

.header-phone:hover {
    text-decoration: underline;
}

.header-top__right {
    display: flex;
    align-items: center;
}

.header-top__menu {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.header-top__menu li {
    margin-left: 40px;
    position: relative;
}

.header-top__menu li a {
    color: #FFF;
    font-weight: 700;
}

.header-top__menu li a:hover {
    text-decoration: underline;
}

.header-top__menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--main-color);
    z-index: 1;
    display: none;
}

.header-top__menu li .sub-menu li {
    margin-left: 0;
}

.header-top__menu li .sub-menu li {
    padding: 10px 15px;
}

.header-top__menu li:hover .sub-menu {
    display: block;
}

.header-top__menu .menu-item-has-children {
    padding-right: 15px;
}

.header-top__menu .menu-item-has-children::before {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    transform: rotate(45deg);
}

.header-top.fixed {
    margin-bottom: 88px;
}

.header-bottom {
    background: #FFF;
    padding: 10px 0;
    border-bottom: 5px solid var(--main-color);
}

.header-bottom.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-bottom__wrap {
    display: flex;
    align-items: center;
}

.header-bottom__list {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-bottom__list li {
    margin-left: 10px;
    position: relative;
}

.header-bottom__list li a {
    color: #0D0D0D;
    font-weight: 700;
    font-size: 12px;
}

.header-bottom__list li a:hover {
    text-decoration: underline;
}

.header-bottom__list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFF;
    width: 200px;
    display: none;
    padding-top: 15px;
}

.header-bottom__list .sub-menu li {
    margin: 0;
}

.header-bottom__list .sub-menu li {
    padding: 5px 15px;
    line-height: 1;
}

.header-bottom__list .menu-item-has-children {
    padding-right: 12px;
}

.header-bottom__list .menu-item-has-children::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #0D0D0D;
    border-bottom: 2px solid #0D0D0D;
    transform: rotate(45deg);
}

.header-bottom__list .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.header-bottom__list .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    display: none;
    padding-top: 0;
}

.header-bottom__list .sub-menu .menu-item-has-children::before {
    right: 10px;
    top: calc(50% - 3px);
    transform: rotate(-45deg);
}

.header__logo img {
    width: 150px;
}

/*INDEX PAGE*/

.welcome {
    padding: 100px 0;
    background: var(--main-color);
    color: #FFF;
    text-align: right;
    min-height: 600px;
}

.welcome__wrap {
    position: relative;
}

.welcome__image {
    position: absolute;
    top: -30px;
    left: 0;
    width: 500px;
}

.welcome__info {
    position: relative;
}

.welcome__title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
}

.welcome__subtitle {
    font-size: 24px;
    margin-bottom: 10px;
}

.welcome__content {
    font-weight: 300;
    width: 325px;
    text-align: left;
    margin-left: auto;
    margin-bottom: 40px;
}

.welcome__content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.welcome__content ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 2px;
    height: 2px;
    background: #FFF;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.welcome-2 {
    text-align: left;
}

.welcome-2 .welcome__content {
    margin-left: 0;
}

.welcome-2 .welcome__image {
    left: auto;
    right: 0;
}

.welcome-2 .welcome__title {
    margin-left: 0;
}

.welcomeform__title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-welcome__content-right p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #FFFFFF;
    padding-top: 15px;
}

.about {
    padding-top: 150px;
}

.about__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about__info {
    width: 410px;
}

.about__info p {
    margin-bottom: 20px;
}

.about__counts {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-count {
    width: 50%;
    margin-bottom: 40px;
}

.about-count__value {
    font-size: 60px;
    font-weight: 700;
    color: #0D0D0D;
}

.about-count__value span {
    color: var(--red-color);
    font-size: 20px;
    margin-left: 3px;
}

.about-count__text {
    font-size: 14px;
    color: #0D0D0D;
}

.benefits {
    padding-top: 150px;
}

.benefits-single {
    background: #FFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    padding: 20px 15px;
    height: 100%;
}

.benefits-single__title {
    font-size: 18px;
    color: #0D0D0D;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefits-single__text {
    font-size: 14px;
    color: #0D0D0D;
    font-weight: 300;
}

.services {
    padding-top: 30px;
    padding-bottom: 100px;
}

.services .col-lg-8 .col-md-4 {
    margin-bottom: 30px;
}

.services__image {
    width: 100%;
}

.services-single {
    background: #FFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    padding: 40px 15px;
    display: block;
    color: #0D0D0D;
    height: 100%;
}

.services-single__title {
    text-transform: uppercase;
    font-size: 18px;
    color: #0D0D0D;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-single__text {
    font-size: 14px;
}

.outsourcing {
    padding: 50px 0;
    background: var(--main-color);
    color: #FFF;
}

.outsourcing .row {
    align-items: center;
}

.outsourcing__image {
    width: 90%;
}

.outsourcing__title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.outsourcing__content ul {
    margin-bottom: 30px;
}

.outsourcing__content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
    font-weight: 300;
}

.outsourcing__content ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 2px;
    height: 2px;
    background: #FFF;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.prices {
    padding-top: 150px;
    padding-bottom: 100px;
}

.prices-single {
    border: 10px solid #00448C;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    background: #FFF;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #0D0D0D;
    position: relative;
    padding: 0 20px;
    transition: none;
}

.prices-single::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 10px;
    border-color: transparent transparent transparent #00448C;
}

.prices-single__title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.prices-single:hover {
    border-color: #FFF;
    color: #FFF;
    background: var(--red-color);
}

.prices-single:hover::before {
    border-color: transparent transparent transparent #FFF;
}

.clients > .container > .row {
    align-items: center;
    margin-bottom: 50px;
}

.clients__title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 50px;
    color: #0D0D0D;
    margin-bottom: 30px;
}

.clients__carousel .item {
    padding: 0 15px;
}

.clients-single {
    /*height: 160px;*/
    background: #FFF;
    margin-bottom: 30px;
    margin-right: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clients-single img {
    max-width: 80%;
}

.clients__arrow {
   /* position: absolute;
    top: 50%;
    transform: translateY(-50%);*/
    cursor: pointer;
}

.clients__arrow-prev {
    left: 0;
}

.clients__arrow-next {
    right: 0;
    margin-left: 50px;

}


.experts__carousel .item {
 /*   padding: 0 15px;*/
}

.experts-single {
    /*height: 160px;*/
    background: #FFF;
    margin-bottom: 30px;
    margin-right: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.experts-single img {
    max-width: 80%;
}

.experts__arrow {
   /* position: absolute;
    top: 50%;
    transform: translateY(-50%);*/
    cursor: pointer;
}

.experts__arrow-prev {
    left: 0;
}

.experts__arrow-next {
    right: 0;
    margin-left: 50px;

}

.review__arrow {
    /* position: absolute;
     top: 50%;
     transform: translateY(-50%);*/
     cursor: pointer;
 }

.review__arrow-prev {
    left: 0;
}

.review__arrow-next {
    right: 0;
    margin-left: 50px;

}


.warranty {
    padding-top: 150px;
}

.warranty-single {
    background: #FFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    margin: 0 15px 15px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.warranty-single__icon {
    width: 40px;
    flex-shrink: 0;
}

.warranty-single__icon img {
    width: 100%;
}

.warranty-single__info {
    padding-left: 30px;
}

.warranty-single__title {
    text-transform: uppercase;
    color: var(--red-color);
    font-weight: 700;
    font-size: 20px;
}

html:lang(en-US) .warranty-single {
    height: 164px;
}

.warranty-single__text {
    font-size: 14px;
}

.warranty__wrap {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.warranty__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.warranty__arrow-prev {
    left: 0;
}

.warranty__arrow-next {
    right: 0;
}

.warranty__arrow svg {
    width: 25px;
}

.socials {
    padding-top: 100px;
}

.socials__title {
    text-transform: uppercase;
    font-weight: 700;
    color: #0D0D0D;
    font-size: 32px;
}

.socials__subtitle {
    font-weight: 300;
    font-size: 26px;
    color: #0D0D0D;
    opacity: .6;
    margin-bottom: 30px;
}

.socials-single {
    display: flex;
    align-items: center;
    color: #FFF;
    height: 90px;
    padding: 0 20px;
    justify-content: space-between;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.socials-single svg {
    width: 50px;
}

.socials-single--facebook {
    background: #395996;
}

.socials-single--instagram {
    background: #BC2A8D;
}

.socials-single--telegram {
    background: #61A8DE;
}

.socials-single--youtube {
    background: #ff1000;
}

.news {
    padding-top: 30px;
    padding-bottom: 150px;
}

.news-single {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.news-single__image {
    width: 50%;
    flex-shrink: 0;
    padding-right: 5px;
    height: auto;
}

.news-single__info {
    padding-left: 5px;
}

.news-single__title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.news-single__text {
    font-size: 11px;
    margin-bottom: 10px;
}

.news-single__more svg {
    width: 40px;
}

.news__all {
    text-align: center;
}

.news__all .main-btn {
    width: 300px;
}

.contacts {
    padding-top: 150px;
    padding-bottom: 100px;
    background-image: url("../img/contacts-bg.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 700px;
}

.contacts-single {
    font-weight: 300;
    color: var(--main-color);
    margin-bottom: 30px;
}

.contacts-single strong {
    font-weight: 700;
}

.contacts-social {
    display: flex;
    align-items: center;
}

.contacts-social li {
    margin-right: 20px;
}

.contacts-social li a svg {
    width: 35px;
    height: 35px;
    fill: var(--main-color);
    transition: .3s ease-in-out;
}

.contacts-social li a:hover svg {
    fill: var(--red-color);
}

.footer__top {
    background: var(--main-color);
    padding: 30px 0;
}

.footer__logo img {
    width: 169px;
}

.footer__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__list {
    display: flex;
    align-items: center;
}

.footer__list li {
    margin: 0 10px;
}

.footer__list li a {
    color: #FFF;
    font-weight: 700;
    font-size: 22px;
}

.footer__list li a:hover {
    text-decoration: underline;
}

.footer-phones {
    display: flex;
    align-items: center;
}

.footer-phones__list li:first-child {
    margin-bottom: 5px;
}

.footer-phones__list li a {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
}

.footer-phones__list li a:hover {
    text-decoration: underline;
}

.footer-phones__icon {
    margin-right: 10px;
}

.footer-phones__icon svg {
    width: 24px;
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
}

.footer__policy {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 300;
}

.footer__copyright {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 300;
    margin-top: 10px;
}

/*ABOUT PAGE*/
.about-company {
    padding-top: 100px;
}

.about-company__wrap {
    display: flex;
}

.about-company .main-title-2 {
    width: 300px;
    flex-shrink: 0;
}

.about-company__text {
    padding-left: 30px;
}

.about-company__text p {
    margin-bottom: 30px;
}

.about-company-single {
    text-align: center;
    padding: 0 30px;
}

.about-company-single__icon {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background: var(--main-color);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-company-single__icon img {
    height: 50%;
}

.about-company-single__title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
}

.about-company-single__text {
    font-size: 14px;
    text-align: justify;
}

.about-services {
    padding-top: 100px;
}

.about-services__images {
    width: 100%;
}

.about-services .main-title-2 {
    margin-bottom: 20px;
}

.about-services__list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
    font-weight: 300;
    color: #0D0D0D;
    font-size: 18px;
}

.about-services__list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #0D0D0D;
    opacity: .6;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.experts {
    padding-top: 100px;
}


.experts-single_wrap{
    display: flex;
    justify-content: space-between;
}

.experts-single {
    display: block;
    margin-bottom: 30px;
    color: #000;
    background: #FFFFFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    padding: 30px 15px;
}

.experts-single__info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.experts-single__image {
   /* width: 60px;
    flex-shrink: 0;
    margin-right: 10px;*/
}

.experts-single__image img {
    width: 300px;
   /* border-radius: 100%;
    object-fit: cover;*/
}

.experts-single__bio{
}

.experts-single__name {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-left: solid 5px #E4003A;
    padding-left: 10px;    
}

.experts-single__profession {
    font-size: 14px;
    font-weight: 300;
    border-left: solid 5px #E4003A;
    padding-left: 10px;    
}

.experts-single__text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    margin-top: 20px;
    
}

/*accounting-services*/
.benefits--accounting-services {
    padding-top: 100px;
}

.accounting-services-all {
    padding-top: 100px;
}

.accounting-services-all .col-lg-3 {
    margin-bottom: 30px;
}

.accounting-services-all-single {
    display: block;
    background: #FFFFFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    padding: 30px;
    color: #0D0D0D;
    height: 100%;
}

.accounting-services-all-single__title {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.accounting-services-all-single__text {
    font-size: 14px;
    margin-bottom: 20px;
}

.accounting-services-all-single__more svg {
    width: 70px;
}

.warranty--accounting-services {
    padding-top: 100px;
    padding-bottom: 100px;
}

.clients--accounting-services {
    padding-top: 100px;
    padding-bottom: 100px;
}

.how-we-work {
    padding-bottom: 50px;
}

.how-we-work-single {
    background: #FFFFFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    margin-bottom: 65px;
    padding: 45px 30px 30px 30px;
    position: relative;
    height: 175px;
}

.how-we-work-single__icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 30px;
    top: -35px;
}

.how-we-work-single__image {
    width: 30px;
}

.how-we-work-single__title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-we-work-single__text {
    font-size: 14px;
    font-weight: 300;
}

/*news-page*/
.news-page {
    padding: 100px 0;
}

.news-page__title {
    color: var(--red-color);
    font-size: 28px;
    text-transform: capitalize;
    padding-left: 30px;
    border-left: 5px solid var(--red-color);
    font-weight: 700;
}

.news-page-single {
    padding: 30px 0;
    border-bottom: 2px solid #000;
}

.news-page-single__date {
    font-size: 18px;
    color: #0D0D0D;
    margin-bottom: 10px;
}

.news-page-single__info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.news-page-single__image {
    width: 500px;
    height: auto;
    flex-shrink: 0;
    margin-right: 30px;
}

.news-page-single__title {
    color: var(--main-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.news-page-single__text {
    text-align: justify;
}

/*single news*/
.single-news {
    padding: 100px 0;
}

.single-news__head {
    padding-bottom: 100px;
    padding-top: 50px;
    position: relative;
}

.single-news__image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 60%;
    max-height: 100%;
    object-fit: cover;
}

.single-news__title {
    color: #FFF;
    background: var(--main-color);
    padding: 30px 100px 30px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 20px;
    width: 50%;
    font-weight: 700;
}

.single-news__title::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    width: 1000px;
    background: var(--main-color);
}

.single-news__content {
    padding-top: 50px;
}

.single-news__content p {
    margin-bottom: 20px;
}

.similar-news {
    padding-top: 0;
    padding-bottom: 100px;
}

/*blog*/
body.blog {
    padding: 0;
}
.blog {
    padding: 50px 0;
}

.blog-single {
    display: flex;
    align-items: center;
}

.blog-single__left {
    width: 50%;
    flex-shrink: 0;
    position: relative;
}

.blog-single__image {
    display: block;
    overflow: hidden;
}

.blog-single__image img {
    width: 100%;
    height: auto;
    transition: 2s ease-in-out;
}

.blog-single__image:hover img {
    transform: scale(1.3);
}

.blog-single__btns {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.blog-single__btns a {
    width: 50%;
    text-align: center;
    padding: 20px 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}

.blog-single__btns a:first-child {
    background: var(--main-color);
}

.blog-single__btns a:last-child {
    background: var(--red-color);
}

.blog-single__right {
    padding: 0 30px;
}

.blog-single__title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-single__title a {
    color: #0D0D0D;
}

.blog-single__title a:hover {
    color: var(--red-color);
}

.blog-single__content p {
    margin-bottom: 20px;
}

.blog-single__more {
    display: inline-block;
    margin-bottom: 20px;
}

.blog-single__more svg {
    width: 150px;
}

.blog-single:nth-child(2n + 1) .blog-single__left {
    order: 1;
}

/*prices*/
.prices-welcome {
    background: url("../img/prices-welcome.png") no-repeat center;
    background-size: cover;
}
.prices-welcome .welcome__title {
    text-transform: uppercase;
}

.prices-welcome .welcome__content {
    width: 400px;
}

.popular-services {
    padding-top: 50px;
}

.popular-services__image {
    width: 100%;
}

.popular-services-single {
    margin-bottom: 80px;
}

.popular-services-single .main-title__name {
    display: block;
}

.popular-services-single .main-title {
    margin-bottom: 10px;
    line-height: 1.2;
}

.popular-services-single .main-title__count {
    line-height: 1;
    top: -50px
}

.benefits-prices {
    padding: 100px 0;
}

.tariffs {
    padding-top: 100px;
}

.tariffs-list li {
    margin-bottom: 30px;
}

.tariffs-list li a {
    display: block;
    font-weight: 700;
    color: rgba(13, 13, 13, 0.4);
    background: rgba(13, 13, 13, 0.1);
    width: 100%;
    padding: 25px 0;
    text-align: center;
}

.tariffs-list li a.active {
    background: var(--main-color);
    color: #FFF;
}

.tariffs__block {
    padding: 30px;
    background: #FFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    display: none;
}

.tariffs__block.active {
    display: block;
}

.tariffs-single {
    margin-bottom: 30px;
}

.tariffs-single:last-child {
    margin-bottom: 0;
}

.tariffs-single__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
}

.tariffs-single__title {
    font-size: 16px;
    font-weight: 300;
}

.tariffs-single__title span {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
}

.tariffs-single__price {
    color: var(--red-color);
    font-size: 32px;
    font-weight: 700;
}

.tariffs-single__price span {
    color: #0D0D0D;
    font-size: 18px;
}

.tariffs-single__btn {
    width: 70px;
    height: 70px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tariffs-single__btn svg {
    width: 24px;
}

.tariffs-single.active .tariffs-single__head {
    background: var(--main-color);
}

.tariffs-single.active .tariffs-single__head,
.tariffs-single.active .tariffs-single__price,
.tariffs-single.active .tariffs-single__price span {
    color: #FFF;
}

.tariffs-single__body {
    padding: 30px;
    background: #E5E6E6;
    color: rgba(13, 13, 13, 0.6);
    display: none;
}

.tariffs-single__body ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 10px;
}

.tariffs-single__body ul li:last-child {
    margin-bottom: 0;
}

.tariffs-single__body ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 2px;
    height: 2px;
    background: rgba(13, 13, 13, 0.6);;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.tariffs-single.active .tariffs-single__body {
    display: block;
}

/*contacts-page*/
.contacts-page {
    padding: 100px 0;
}

.contacts-page-contacts {
    background: var(--main-color);
    padding: 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    color: #FFF;
    margin-bottom: 30px;
}

.contacts-page-contacts-single {
    margin-bottom: 15px;
}

.contacts-page-contacts-single:last-child {
    margin-bottom: 0;
}

.contacts-page__map {
    height: 100%;
    border: 2px solid var(--main-color);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.contacts-page__map iframe {
    width: 100%;
    height: 100%;
}

/*sales*/
.key-benefit .main-title-2 {
    margin-bottom: 20px;
}
.key-benefit__image {
    width: 100%;
}

.key-benefit__text {
    font-size: 28px;
}

.key-benefit__text p {
    margin-bottom: 40px;
}

.key-benefit-single {
    padding: 15px;
    background: #FFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
}

.key-benefit-single__title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    height: 67px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.key-benefit-single__text {
    font-size: 12px;
    margin-bottom: 10px;
}

.key-benefit-single__more svg {
    width: 70px;
}

.profit {
    padding-top: 100px;
}

.profit .main-title-2 {
    margin-bottom: 0px;
}

.profit__subtitle {
    color: rgba(13, 13, 13, 0.6);
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 300;
}

.profit__wrap {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.profit__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.profit__arrow-prev {
    left: 0;
}

.profit__arrow-next {
    right: 0;
}

.profit__arrow svg {
    width: 25px;
}

.profit-single {
    margin: 0 20px 20px 20px;
    padding: 30px;
    opacity: 0.5;
}

.profit-carousel .slick-center .profit-single {
    background: #FFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    opacity: 1;
}

.profit-single__percent {
    color: var(--red-color);
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.profit-single__text {
    font-size: 14px;
}

.reviews {
    padding: 50px 0;
}

.reviews .col-md-4 {
    margin-bottom: 30px;
}

.reviews-single {
    background: #FFF;
    box-shadow: 4px 8px 7px rgb(0 81 131 / 40%);
    padding: 20px 15px;
    height: 100%;
}

.reviews-single__title {
    font-size: 18px;
    color: #0D0D0D;
    font-weight: 700;
    margin-bottom: 10px;
}

.reviews-single__text {
    font-size: 14px;
    color: #0D0D0D;
    font-weight: 300;
}

/*.reviews-single {
    border: 2px solid var(--main-color);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    display: block;
    color: #0D0D0D;
    background: #FFF;
    position: relative;
}

.reviews-single__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.reviews-single__title {
    padding: 30px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.reviews-single__text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .7);
    color: #FFF;
    opacity: 0;
    transition: .3s ease-in-out;
}

.reviews-single:hover .reviews-single__text {
    opacity: 1;
}
*/
.clients2 {
    padding-bottom: 50px;
}

.clients2-single {
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    background: #FFF;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients2 .col-md-4 .clients2-single {
    height: 350px;
}

.clients2 .col-md-3 .clients2-single {
    height: 255px;
}

.clients2-single img {
    max-width: 80%;
    height: auto;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background: var(--main-color);
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    width: 30px;
    height: 30px;
}

.pagination li a.active {
    color: rgba(255, 255, 255, .6);
}

/*account-recovery*/
.account-recovery {
    padding-top: 50px;
}

.account-recovery .main-title-2 {
    margin-bottom: 20px;
}

.account-recovery p {
    margin-bottom: 40px;
    font-size: 18px;
    padding-right: 20px;
}

.account-recovery__image {
    width: 100%;
}

.popular-services .main-title {
    margin-bottom: 40px;
}

.popular-services .main-title__name {
    height: 68px;
    display: flex;
    align-items: flex-end;
}

.result {
    padding-top: 50px;
}

.result .row {
    align-items: center;
}

.result__image {
    width: 100%;
}

.result__title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.result__main-text ul {
    margin-left: 30px;
}

.result__main-text ul li {
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    padding-left: 10px;
}

/* .result__main-text ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background: rgba(13, 13, 13, 0.6);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
} */

/* .result__main-text ul li a {
    color: var(--red-color);
    text-decoration: underline;
} */

.result__main-text ul .benefits-single {
    display: block;
    padding: 10px;
}

.result__main-text ul .benefits-single__title {
    margin-bottom: 0;
    font-size: 14px;
}

.result__text {
    color: var(--main-color);
    font-weight: 700;
}

.account-recovery-warranty {
    padding-top: 50px;
}

.politic {
    padding: 50px 0;
}

.politic__title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
}

.politic__content a {
    color: var(--main-color);
}

.lang-ua,
.lang-ru,
.lang-en {
    display: none;
}

html[lang=ua] .lang-ua,
html[lang=ru-RU] .lang-ru,
html[lang=en-US] .lang-en {
    display: initial;
}

.consultation-popup,
.result-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.consultation-popup.active,
.result-popup.active {
    opacity: 1;
    visibility: visible;
}

.consultation-popup-bg,
.result-popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
}

.consultation-popup__wrap,
.result-popup__wrap {
    background: #FFF;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    max-height: 90vh;
    overflow: auto;
    position: relative;
}

.consultation-popup__close,
.result-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    display: block;
}

.consultation-popup__close svg,
.result-popup__close svg {
    width: 100%;
    height: 100%;
}

.consultation-popup__title,
.result-popup__title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.no-scroll {
    overflow: hidden;
}

.header__burger {
    display: none;
}

.mobile-sidebar, .mobile-sidebar-bg {
    display: none;
}

#bingc-phone-button svg.bingc-phone-button-circle circle.bingc-phone-button-circle-inside {
    fill: #47a447 !important;
}
#bingc-phone-button:hover svg.bingc-phone-button-circle circle.bingc-phone-button-circle-inside {
    fill: #47a447 !important;
}
#bingc-phone-button div.bingc-phone-button-tooltip {
    background: #47a447 !important;
}
#bingc-phone-button div.bingc-phone-button-tooltip svg.bingc-phone-button-arrow polyline {
    fill: #47a447 !important;
}
#bingc-passive > div.bingc-passive-overlay {
    background: #47a447 !important;
}
#bingc-active {
    background: #47a447 !important;
}


.prices-new {
    padding: 100px 0;
}

.prices-new-single {
    background: #FFFFFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    height: 100%;
    position: relative;
    margin: 0 15px;
}

.prices-new-single__image {
    width: 100%;
    height: 183px;
    object-fit: cover;
}

.prices-new-single__wrap {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 183px);
}

.prices-new-single__title {
    font-size: 24px;
    margin-bottom: 33px;
    text-align: center;
    font-weight: 700;
}

.prices-new-single__prices {
    margin-bottom: 46px;
    text-align: center;
}

.prices-new-single__price {
    text-align: center;
    font-size: 24px;
}

.prices-new-single__price span {
    font-size: 48px;
    color: var(--red-color);
    font-weight: 700;
}

.prices-new-single__old-price {
    display: inline-block;
    margin-top: 10px;
    color: #9E9E9E;
    font-size: 24px;
    position: relative;
}

.prices-new-single__old-price span {
    font-size: 36px;
    font-weight: 500;
}

.prices-new-single__old-price::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: -5px;
    width: calc(100% + 10px);
    height: 2px;
    background: #9E9E9E;
}

.prices-new-single__text {
    color: #0D0D0D;
    opacity: 0.6;
    font-size: 14px;
}

.prices-new-single__text ul li {
    padding-left: 10px;
    margin-bottom: 10px;
    position: relative;
}

.prices-new-single__text ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0px;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background: #0D0D0D;
    opacity: 0.6;
}

.prices-new-single__text {
    margin-bottom: 30px;
}

.prices-new-single .main-btn {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.prices-new-single__stock {
    position: absolute;
    top: -24px;
    right: -15px;
    background: var(--red-color);
    padding: 10px 30px;
    color: #FFF;
    border-radius: 10px 0 0 10px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
}

.prices-new__carousel .slick-list {
    padding: 24px 0;
}

.prices-new__carousel .slick-track {
    display: flex !important;
}

.prices-new__carousel .slick-slide {
    height: inherit !important;
}

.prices-new__wrap {
    position: relative;
}

.prices-new__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    cursor: pointer;
}

.prices-new__arrow svg {
    width: 100%;
    display: flex;
}

.prices-new__arrow--prev {
    right: calc(100% + 5px);
}

.prices-new__arrow--next {
    left: calc(100% + 5px);
}

.prices-new__carousel .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prices-new__carousel .slick-dots li {
    width: 18px;
    height: 18px;
    margin: 0 10px;
    display: flex;
}

.prices-new__carousel .slick-dots button {
    width: 100%;
    height: 100%;
    border: none;
    background: #D9D9D9;
    border-radius: 100%;
    font-size: 0;
}

.prices-new__carousel .slick-dots li.slick-active button {
    background: #b5b5b5;
}

.telegram-btn {
    position: fixed;
    top: 180px;
    right: 2.5%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0088CC;
    border-radius: 100%;
}

.telegram-btn svg {
    display: block;
    fill: #FFF;
}

.menu-header-bottom-container {
    margin-left: auto;
}

.header-social {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.header-social svg {
    width: 15px;
    height: 15px;
    display: block;
}

.header-social a {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social a.header-social-single--facebook {
    background: #395996;
}

.header-social a.header-social-single--instagram {
    background: #BC2A8D;
}

.header-social a.header-social-single--telegram {
    background: #61A8DE;
}

.header-social a.header-social-single--youtube {
    background: #ff1000;
}

.header-social a.header-social-single--telegram svg {
    margin-left: -2px;
}

.header-social li {
    margin: 0 2px;
}



/* Service new */


/* Welcome */
.main-title-3 {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 59px;
    text-transform: uppercase;
    padding-bottom: 40px;
}

.service-welcome {
    background-image: url('/wp-content/uploads/2023/05/group-221.jpeg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0px 160px 0px;
}

.service-welcome__content-left li {
    /* font-family: 'Ubuntu'; */
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.service-welcome__content-left li::before {
    content: url('/wp-content/uploads/2023/05/group-222.svg');
    margin-right: 10px;
}

.service-welcome__content-left .main-btn {
    margin: 100px 0px 40px 0px;
}

.service-welcome__content-left h1 {
    max-width: 860px;
    color: #fff;
}

.service-welcome__content-left p {
    background: #FFFFFF;  
    padding: 20px 0px 20px 65px;
}

.service-welcome__content-left p:not(:last-child) {
    margin-bottom: 24px;
}

.service-welcome__content {
    display: flex;
}

.service-welcome__content-right {
    background: #002955;
    border-radius: 10px;
    padding: 35px;
}

.service-welcome__content-right h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 39px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.service-welcome__content-right h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    padding: 20px 0px 65px 0px;
}

.service-welcome__content-right h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    padding-bottom: 80px;
}

.service-welcome__content-right h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    padding-top: 35px;
    max-width: 340px;

}

.service-welcome__form {
    padding-bottom: 30px;
    border-bottom: 1px solid #FFFFFF;
}

/* Welcome */


/* Choose us */

.choose-us {
    padding: 90px 0px;
}

.choose-us__content h2 {
    color: #0D0D0D;
    padding-bottom: 90px;
}

.choose-us__text {
    display: flex;
}

.choose-us__text:not(:last-child) {
    margin-bottom: 40px;
}

.choose-us__text-left, .choose-us__text-right {
    min-height: 300px;
    padding: 30px 20px 30px 30px;
}

.mobile {
    display: none;
}

.choose-us__text-left {
    background: #D9D9D9;
    border-radius: 10px;
    width: 45%;
}

.choose-us__text-right {
    background: #00448C;
    border-radius: 10px;
    width: calc(55% + 15px);
    margin-left: -15px;
}

.choose-us__text-left h3, .choose-us__text-right h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 39px;
}

.choose-us__text-left h3 {
    text-transform: uppercase;
    color: #E4003A;
}

.choose-us__text-right h3 {
    color: #fff;
}

.choose-us__text-left p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 134.9%;
    color: #0D0D0D;
    padding-top: 35px;
}

.choose-us__text-right p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #FFFFFF;
    padding-top: 15px;
}

/* Choose us */

/* How it works */

.how-it-works {
    padding-bottom: 90px;
}

.how-it-works .main-title-3 {
    color: #0D0D0D;
    padding-bottom: 90px;
}

.how-it-works__left-text h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #E4003A;
}

.how-it-works__left-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 134.9%;
    color: #0D0D0D;
}

.how-it-works__left-text:not(:last-child) {
    margin-bottom: 55px;
}

.how-it-works__right-text {
    background: #FFFFFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    border-radius: 10px;
    padding: 25px 40px 1px 40px;
}

.how-it-works__right-text h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #0D0D0D;
    padding-bottom: 10px;
}

.how-it-works__right-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 134.9%;
    color: #0D0D0D;
    padding-bottom: 30px;
}

.how-it-works__right img {
    width: 100%;
}

.how-it-works__right h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-transform: uppercase;
    color: #0D0D0D;
    padding-bottom: 60px;
}

/* How it works */

/* Prices */

.service-prices {
    padding-bottom: 90px;
}

.service-prices__top {
    display: flex;
    align-items: center;
    padding-bottom: 60px;
}

.service-prices .main-title-3 {
    color: #0D0D0D;
    padding-bottom: 0px;
}

.service-prices__info-block {
    background: #FFFFFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
}

.service-prices__info-block img {
    width: 100%;
}

.service-prices__info-block h3 {
    text-align: center;
}

.service-prices__price {
    padding: 35px 0px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    text-align: center;
}

.service-prices__text {
    padding: 40px 30px 50px 30px;
}

.service-prices__text .main-btn {
    margin-top: 40px;
    padding: 20px 30px;
    width: 100%;
    text-align: center;
}

.service-prices__text h3 {
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 133%;
    color: #0D0D0D;
}

.service-prices__text h3 span {
    font-weight: 700;
    text-transform: uppercase;
}

.service-prices__text ul li {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #0D0D0D;
    opacity: 0.6;
}

.service-prices__price span {
    font-style: normal;
    font-weight: 500;
    font-size: 45px;
    line-height: 66%;
    color: #E4003A;
}

.service-prices__text ul li:not(:last-child) {
    margin-bottom: 24px;
}

/* Prices */

/* Problems solve */

.problems-solve {
    padding: 90px 0px;
    background-image: url('/wp-content/uploads/2023/05/group-222.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 650px;
}

.problems-solve .main-title-3 {
    color: #FFFFFF;
    padding-bottom: 40px;
}

.problems-solve ul li {
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 39px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    max-width: 480px;
}

.problems-solve ul li:not(:last-child) {
    margin-bottom: 35px;
}

.problems-solve ul li:before {
    content: url('/wp-content/uploads/2023/05/group-222-2.svg');
    margin-right: 5px;
}

/* Problems solve */

.about-problem {
    padding: 50px 0px;
}

.about-problem__right {
    background: #FFFFFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    border-radius: 10px;
    padding: 20px 25px 35px 40px;
}

.about-problem__right img {
    max-width: 30%;
}

.about-problem__right svg {
    width: 100%;
}

.about-problem__left h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 131%;
    color: #0D0D0D;
    padding-bottom: 70px;
}

.about-problem__left h2 span {
    color: #E4003A;
}

.about-problem__left p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #0D0D0D;
}

.about-problem__left p:last-child {
    padding-top: 40px;
}

.about-problem__right h3, .about-problem__right h3 span {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 131%;
    color: #0D0D0D;
    padding: 20px 0px;
    position: relative;
}

.about-problem__right h3::before {
    content: ' ';
    height: 100%;
    width: 32px;
    background: #E4003A;
}

.about-problem__right h3 span {
    color: #E4003A;
}

.about-problem__right p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 134.9%;
    color: #0D0D0D;
    padding-bottom: 25px;
}

.about-problem__right-text {
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 29px;
    color: #0D0D0D;
    padding-bottom: 20px;
    display: block;
}

/* Problems solve */

/* Testimonials */

.services-testimonials {
    padding-bottom: 60px;
}

.services-testimonials__nav, .service-prices__nav {
    display: flex;
}

.services-testimonials__slick-prev, .services-testimonials__slick-next,
.service-prices__slick-prev, .service-prices__slick-next, .clients__slick-next, .clients__slick-prev {
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.services-testimonials__slick-prev, .service-prices__slick-prev {
    margin: 0px 40px;
}

.service-prices__slick .slick-slide, .services-testimonials__slick .slick-slide {
    margin-bottom: 15px;
}

.services-testimonials h2.main-title-3 {
    text-transform: uppercase;
    color: #0D0D0D;
    padding-bottom: 0px;
    /* padding-bottom: 80px; */
}

.services-testimonials__top {
    padding-bottom: 60px;
    display: flex;
    align-items: center;
}

.services-testimonials__block {
    background: #FFFFFF;
    box-shadow: 4px 8px 7px rgba(0, 81, 131, 0.4);
    padding: 25px 30px 30px 25px;
}

.services-testimonials__info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.services-testimonials__name {
    margin-left: 10px;
}

.services-testimonials__name h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 133%;
    color: #0D0D0D;
}

.services-testimonials__name p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    color: #0D0D0D;
}

.services-testimonials__text p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #0D0D0D;
    padding-bottom: 40px;
}

.services-testimonials__block span {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #0D0D0D;
}

/* Testimonials */

/* Cases */

.services-cases {
    padding-bottom: 60px;
}

.services-cases h2.main-title-3 {
    text-transform: uppercase;
    color: #0D0D0D;
    padding-bottom: 30px;
}

.services-cases__block {
    margin-bottom: 24px;
}

.services-cases__block h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;    
    text-transform: uppercase;
    color: #0D0D0D;
    padding-bottom: 16px;
}
.services-cases__block p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #0D0D0D;
    padding-bottom: 35px;
}

/* Cases */


/* Form */

.form-feedback {
    background-image: url('/wp-content/uploads/2023/05/group-228.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    /* background: #00448C; */
    padding: 50px 0px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

/* .form-feedback::after {
    content: url('/wp-content/uploads/2023/05/group-208.svg');
    position: absolute;
    bottom: 0%;
    right: 0%;
} */


.form-feedback h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-bottom: 60px;
}

.form-group.new {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    max-width: 445px;
    padding-bottom: 5px;
    margin-bottom: 40px;
}

.form-group.new .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -35px;
}

.form-group.new input {
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    /* opacity: 0.6; */
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
}

.form-group.checkbox label input {
    width: 34px;
    height: 34px;
    margin-right: 12px;
}

.form-group.checkbox .wpcf7-checkbox > span {
    margin-left: 0px;
}

.form-group.checkbox .wpcf7-checkbox .wpcf7-list-item-label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 229%;
    color: #FFFFFF;
}

.form-feedback__wrapper {
    position: relative;
    z-index: 2;
}

.form-group.first-screen {

}

.form-group.first-screen label input {
    background: #FFFFFF;
    border-radius: 10px;
    min-height: 50px;
}

.form-group.first-screen label span {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 142.4%;    
    color: #FFFFFF;    
}

.form-group.first-screen input {
    border-bottom: none;
}

.service-welcome__form .main-btn {
    width: 100%;
}

.how-it-works__right-text form input {
    background: #D9D9D9;
    border-radius: 10px;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 142.4%;
    color: #000000;
    min-height: 80px;
    border: none;
    padding-left: 20px;
    width: 100%;
}

.how-it-works__right-text .main-btn {
    padding: 20px 45px;
    width: 100%;
}

.form-group.how-it-work {
    display: flex;
}

.form-group.how-it-work > span {
    width: 200px;
    min-width: 200px;
    margin-right: 25px;
}

.form-group.about-problem-form input {
    background: #D9D9D9;
    border-radius: 10px;
    min-height: 80px;
    border: none;
}

.about-problem__right form p {
    padding-bottom: 0px;
}

.about-problem__right .main-btn {
    width: 100%;
}

/* Form */


/* Seo block */

.seo-block {
    padding: 60px 0px;
}

.seo-block__content {
    max-height: 240px;
    overflow-x: hidden;
    padding-right: 25px;
}

.seo-block p {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #0D0D0D;
}

.seo-block ul {
    list-style: initial;
    padding-left: 25px;
    margin: 25px;
    padding-top: 25px;  
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #0D0D0D;      
}


.seo-block__content::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  .seo-block__content::-webkit-scrollbar-track {
    background: #fff;
  }
  
  .seo-block__content::-webkit-scrollbar-thumb {
    background: #00448C;
  }
  
  .seo-block__content::-webkit-scrollbar-thumb:hover {
    opacity: .6;
  }

  .page-template-service-child-new-php {
    background-image: url('/wp-content/uploads/2023/05/1614582891_60-p-belii-fon-sovremennii-67-1-scaled.jpeg')
  }
  
/* Seo block */

/*Breadcrumbs*/

.breadcrumbs {
    margin: 10px;
}

.breadcrumbs  a {
    color: #0D0D0D;
    font-weight: 700;
    font-size: 12px;
}



/*Swiper.js*/


.swiper {

}

.image-slider__image img {
    /*max-width: 100%;*/
}

.swiper-wrapper {
    min-width: 0;
}

.image-slider__image {
    padding: 40px;
    display: flex;
}

.swiper-button-prev, .swiper-button-next{
    color: var(--main-color);
}

.swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    background-color: var(--main-color);
}





.slick-dots {
	display: flex;
	flex-grow: 1;
    justify-content: center;
	margin: 0;
	padding: 1rem 0;
	
	list-style-type: none;
}

.slick-dots li {
    margin: 0 0.25rem;
}

.slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    
    border: none;
    border-radius: 100%;
    background: var(--swiper-pagination-bullet-inactive-color,#999999);
   
    
    text-indent: -9999px;
}

li.slick-active button {
    background-color: var(--main-color);
}

.buttons_wrap{
    display: flex;
    padding-top: 30px;
}

.experts_buttons_wrap{
    display: flex;
}

.experts_slick-dots {
	display: flex;
	flex-grow: 1;
    justify-content: center;
	margin: 0;
	padding: 1rem 0;
	
	list-style-type: none;
}

.experts_slick-dots li {
    margin: 0 0.25rem;
}

.experts_slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    
    border: none;
    border-radius: 100%;
    background: var(--swiper-pagination-bullet-inactive-color,#999999);
   
    
    text-indent: -9999px;
}

li.experts_slick-active button {
    background-color: var(--main-color);
}


.review_buttons_wrap{
    display: flex;
    padding-top: 50px;
}

.review_slick-dots {
	display: flex;
	flex-grow: 1;
    justify-content: center;
	margin: 0;
	padding: 1rem 0;
	
	list-style-type: none;
}

.review_slick-dots li {
    margin: 0 0.25rem;
}

.review_slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    
    border: none;
    border-radius: 100%;
    background: var(--swiper-pagination-bullet-inactive-color,#999999);
   
    
    text-indent: -9999px;
}

li.review_slick-active button {
    background-color: var(--main-color);
}

.glsr-review-author{
    font-weight: bold;
}

/* Flip client logo card*/
/*
.wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 140px;
  }
  .card {
    width: 140px;
    height: 140px;
    position: relative;
    perspective: 1000px;
  }

  .front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    backface-visibility: hidden;

  }
  .front {
    border-color: #000;
  }
  .back {
    border-color: #000;
    transform: rotateY(180deg);
  }
  .card:hover .front {transform: rotateY(180deg);}
  .card:hover .back {transform: rotateY(360deg);}
  */


  .wrap {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding-top: 140px;*/
  }

  .card {
    width: 130px;
    height: 130px;
    position: relative;
    perspective: 1000px;
  }

  .front, .back {
    position: absolute;
   /* width: 100%;*/
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    backface-visibility: hidden;
    font-size: 12px;
    padding: 25px;
  }
  .front {
    border-color: #000;
  }
  .back {
    border-color: #000;
    transform: rotateY(180deg);
  }
  .card:hover .front {transform: rotateY(180deg);}
  .card:hover .back {transform: rotateY(360deg);}