* {
    margin: 0;
    padding: 0
}

a {
    text-decoration: none
}

ul {
    list-style: none
}

.menu-btn {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative
}

.menu-btn span,
.menu-btn span::after,
.menu-btn span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    background-color: black
}

.menu-btn span::after,
.menu-btn span::before {
    content: "";
    display: block;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.menu-btn span::before {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

.menu-btn span::after {
    -webkit-transform: translateY(5px);
    transform: translateY(5px)
}

.menu-btn-active span {
    height: 0
}

.menu-btn-active span::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.menu-btn-active span::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.header {
    background-color: #f4c948;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: fixed;
    height: auto;
    max-height: 111px;
    overflow: hidden;
    width: 100%;
    top: 0;
    z-index: 10
}

.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.row-navbar {
    max-width: 1490px;
    width: 100%
}

.row {
    max-width: 1680px;
    width: 100%
}

.contact-form-padding {
    padding-top: 50px !important;
}

.navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0
}

.single-post-comments {
    margin-right: 20px;
}

.navbar-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.navbar-phone {
    font-family: "ProximaNovaBold";
    font-size: 20px;
    color: #000000
}

.button {
    text-transform: uppercase;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    border: none;
    cursor: pointer
}

.button-callback {
    color: #ffffff;
    background-color: #252525;
    padding: 10px 25px
}

.navbar-phone {
    margin-right: 30px
}

.menu-btn-text {
    position: absolute;
    display: inline;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #000000;
    top: 16px;
    right: -40px
}

#btn-show {
    margin-left: 60px
}

.main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.main-menu-left-column {
    width: 55vw;
    min-height: 660px;
    background-image: url("../img/ads-logo-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    background-size: contain;
    -webkit-box-shadow: -16px 0px 16px rgba(0, 0, 0, 0.2);
    box-shadow: -16px 0px 16px rgba(0, 0, 0, 0.2)
}

.main-menu-right-column {
    width: 44vw;
    min-height: 660px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.left-menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.left-menu-inner-column:first-child {
    margin-right: 140px
}

.left-menu-inner-column {
    margin-top: 80px
}

.left-menu-inner-column ul {
    margin-top: 45px
}

.left-menu-inner-column ul li {
    margin-top: 30px
}

.left-menu-inner-column ul li a {
    padding: 8px 12px;
    font-family: "ProximaNovaRegular";
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    -webkit-transition: .1s all;
    transition: .1s all
}

.left-menu-inner-column ul li a:hover {
    outline: 1px solid #f4c948
}

.left-menu-active-item {
    outline: 1px solid #f4c948
}

.left-menu-inner-column-title {
    font-family: "ProximaNovaSemiBold";
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    margin-left: 10px
}

.callback-form-submit {
    font-family: "ProximaNovaSemiBold";
    font-size: 12px;
    color: white;
    padding: 13px 22px;
    border: 1px solid #f4c948;
    background-color: transparent;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 40px;
    -webkit-transition: .5s all;
    transition: .5s all
}

.callback-form-submit:hover {
    -webkit-transition: .5s all;
    transition: .5s all;
    background-color: #f4c948;
    color: #383838
}

.right-menu-callback-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 258px;
    width: 100%
}

.right-menu-navbar {
    width: 285px;
    background-color: #333333;
    height: 100%
}

.right-menu-navbar ul li {
    border-top: 1px solid #414141;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.right-menu-navbar ul li:last-child {
    border-bottom: 1px solid #414141
}

.right-menu-navbar ul li a {
    font-family: "ProximaNovaRegular";
    font-size: 16px;
    color: white;
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0
}

.right-menu-navbar-active a {
    color: #f4c948 !important
}

.right-menu-navbar-active {
    position: relative
}

.right-menu-navbar-active:before {
    content: '';
    width: 36px;
    height: 1px;
    background-color: #f4c948;
    position: absolute;
    top: 50%;
    left: 45px
}

.right-menu-navbar-subinfo {
    width: 190px;
    margin: 0 auto;
    margin-top: 50px
}

.right-menu-navbar-subinfo-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 20px
}

.right-menu-navbar-subinfo-item img {
    margin-right: 15px
}

.right-menu-navbar-subinfo-item span,
.right-menu-navbar-subinfo-item a {
    color: white;
    font-family: "ProximaNovaRegular";
    font-size: 14px
}

.right-menu-navbar-social {
    width: 190px;
    margin: 0 auto
}

.right-menu-navbar-social {
    margin-top: 55px
}

.right-menu-navbar-social a:not(:last-child) {
    margin-right: 20px
}

.right-menu-navbar ul {
    padding-top: 88px
}

.right-menu-callback-form {
    background-color: #383838;
    width: 100%
}

.right-menu-callback-form form {
    width: 260px;
    margin-left: 97px;
    margin-top: 88px
}

.right-menu-callback-form form label {
    font-family: "ProximaNovaLight";
    font-size: 13px;
    color: white;
    font-weight: 300
}

.right-menu-callback-form form input {
    background-color: #2e2e2e;
    padding: 14px 15px;
    border: none;
    color: white;
    font-family: "ProximaNovaRegular";
    font-size: 16px;
    outline: none
}

.callback-form-title {
    color: white;
    font-size: 24px;
    font-family: "ProximaNovaSemiBold";
    margin-bottom: 30px
}

.callback-form-text {
    color: white;
    font-family: "ProximaNovaLight";
    font-size: 16px;
    margin-bottom: 32px
}

.form-item-group input {
    width: 228px;
    margin-top: 5px
}

.form-item-group-phone {
    margin-top: 20px
}

.navbar-contact {
    overflow: hidden;
    -webkit-transition: .3s all;
    transition: .3s all
}

.navbar {
    position: relative;
    overflow: hidden
}

.button-close-navbar {
    position: absolute;
    right: 0;
    -webkit-transform: translateY(250%);
    transform: translateY(250%);
    -webkit-transition: .3s all;
    transition: .3s all;
    z-index: 3;
    cursor: pointer
}

.transform-show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .6s all;
    transition: .6s all
}

.transform-hide {
    -webkit-transform: translateY(-250%);
    transform: translateY(-250%);
    -webkit-transition: .6s all;
    transition: .6s all
}

.main-menu-container {
    position: fixed;
    z-index: 4;
    left: -200%;
    -webkit-transition: .6s;
    transition: .6s
}

.show-main-menu {
    left: 0;
    -webkit-transition: .6s;
    transition: .6s;
    z-index: 100;
}

.sticky-body {
    padding-top: 110px
}

.sticky-body-open {
    padding-top: 80px !important
}

.sticky {
    font-size: 24px;
    line-height: 48px;
    max-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding-left: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: fixed;
    width: 100%;
    top: 0
}

.sticky .menu-btn-text {
    top: 3px
}

.sticky .logo-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.mm-slideout {
    z-index: auto
}

.mobile-navbar-logo {
    width: 70%;
    padding: 10px
}

.mm-listitem:after {
    content: none
}

.mm-listitem a {
    font-weight: bold;
    font-family: "ProximaNovaBold";
    font-size: 21px;
    color: rgba(0, 0, 0, 0.75) !important
}

.mm-panels>.mm-panel,
.mm-navbar_sticky {
    background-color: #fff;
    border-bottom: 1px solid #f2f2f2
}

.mm-navbar__title span {
    font-family: "ProximaNovaBold";
    color: #282828
}

.modal-bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: none
}

.contact-us-modal-wrapper {
    position: fixed;
    display: none;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 20%;
    height: 100vh;
    width: 100%;
    z-index: 99999;
}

.contact-us-modal form {
    background-color: #fff
}

.contact-us-modal {
    width: 400px;
    margin: 0 auto
}

.contact-us-modal .consultation-form-inner {
    position: relative;
    padding: 20px
}

.contact-us-modal .consultation-form-group {
    margin-top: 10px
}

.contact-us-modal .consultation-submit-button {
    margin-top: 10px
}

.contact-us-modal .consultation-form-group input {
    margin-right: 0
}

.close-modal {
    position: absolute;
    right: 20px;
    top: -35px;
    font-size: 38px
}

.main-title {
    font-family: "Play";
    font-weight: 700;
    font-size: 70px;
    color: #f4c948
}

.main-background {
    min-height: 660px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-text {
    font-family: "ProximaNovaRegular";
    font-size: 28px;
    color: #f3f3f3;
    margin-top: 65px
}

.main-text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    min-height: 660px;
    padding: 0 150px 0 150px
}

.main-text-container-breadcrumbs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.main-text-inner {
    max-width: 1000px;
    width: 100%
}

.main-callback-form {
    background-color: rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    height: 660px
}

.main-callback-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.main-callback-form label {
    font-family: "ProximaNovaLight";
    font-size: 16px;
    color: white;
    font-weight: 300
}

.main-callback-form input {
    background-color: #272727;
    padding: 14px 15px;
    border: none;
    color: white;
    font-family: "ProximaNovaLight";
    text-transform: none;
    font-size: 16px;
    outline: 1px solid #373737;
    width: 225px
}

.main-callback-form input::-webkit-input-placeholder {
    color: white
}

.main-callback-form input:-ms-input-placeholder {
    color: white
}

.main-callback-form input::-ms-input-placeholder {
    color: white
}

.main-callback-form input::placeholder {
    color: white
}

.main-callback-form form {
    width: 256px;
    margin-left: 94px
}

.main-callback-form-title {
    color: white;
    font-size: 24px;
    font-family: "ProximaNovaSemiBold";
    margin-bottom: 30px
}

.main-callback-form-submit {
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #000000;
    background-color: #f4c948;
    border: none;
    text-transform: uppercase;
    width: 100%;
    font-weight: 700;
    padding: 17px 0;
    margin-top: 30px;
    cursor: pointer
}

.title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.page-title {
    text-transform: uppercase;
    font-family: "ProximaNovaSemiBold";
    font-size: 18px;
    color: #252525
}

.title-line {
    border: 1px solid #f4c948;
    width: 160px;
    margin-right: 30px
}

.second-background {
    background-color: #f7f7f7
}

.title-padding {
    padding: 60px 0 30px 0
}

.pain-card-title {
    font-family: "ProximaNovaBold";
    color: #252525;
    font-size: 24px;
    margin-bottom: 20px
}

.pain-card-text {
    font-family: "ProximaNovaRegular";
    font-size: 16px;
    color: #666666;
    line-height: 18px
}

.pain-card-text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 30px
}

.pain-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 415px;
    min-height: 180px;
    background-color: #fff;
    padding: 53px 64px;
    margin-top: 30px
}

.pains-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.consultation-form-title {
    font-family: "ProximaNovaExtrabld";
    font-size: 30px;
    color: #1f1f1f;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.consultation-form-text {
    font-family: "ProximaNovaRegular";
    font-size: 18px;
    color: #1f1f1f;
    text-align: center;
    margin-bottom: 45px
}

.consultation-form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.consultation-form {
    border: 10px solid #f4c948;
    padding: 40px 0;
    margin-top: 80px;
    margin-bottom: 90px
}

.consultation-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.consultation-form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.consultation-form-group label {
    font-family: "ProximaNovaRegular";
    font-size: 13px;
    color: #000000
}

.consultation-form-group input,
.consultation-form-group textarea {
    background-color: #fff;
    border: 1px solid #ececec;
    font-family: "ProximaNovaLight";
    font-size: 16px;
    color: #000000;
    padding: 12px 15px;
    margin-right: 13px;
    width: 256px
}

.consultation-submit-button {
    border: 1px solid #f4c948;
    background-color: #f8d25e;
    color: black;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    width: 286px;
    height: 46px;
    text-transform: uppercase;
    cursor: pointer
}

.solution-section {
    background-color: #262626
}

.solution-section .page-title {
    color: white
}

.solution-item-text {
    font-family: "ProximaNovaRegular";
    font-size: 14px;
    line-height: 18px;
    color: white;
    -webkit-transition: .4s all;
    transition: .4s all
}

.solution-item {
    width: 540px;
    height: 330px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin-top: 30px
}

.solution-item-title {
    font-family: "ProximaNovaBold";
    color: #f4c948;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    -webkit-transition: .4s all;
    transition: .4s all
}

.solution-item-inner {
    width: 450px;
    height: 142px;
    position: relative;
    z-index: 3
}

.solution-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(244, 201, 72, 0.6);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: .4s all;
    transition: .4s all
}

.solution-item:hover {
    cursor: pointer;
    -webkit-transition: .4s all;
    transition: .4s all
}

.solution-item:hover .solution-item-title {
    color: #252525;
    -webkit-transition: .4s all;
    transition: .4s all
}

.solution-item:hover .solution-item-text {
    color: #000000;
    -webkit-transition: .4s all;
    transition: .4s all
}

.solution-item:hover .solution-background {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .4s all;
    transition: .4s all
}

.solution-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px
}

.service-item-title {
    font-family: "ProximaNovaBold";
    color: #f4c948;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    -webkit-transition: .5s all;
    transition: .5s all
}

.service-item-text {
    font-family: "ProximaNovaLight";
    font-size: 16px;
    color: white;
    text-align: center;
    line-height: 21px;
    position: relative;
    z-index: 3
}

.service-button {
    background-color: #f4c948;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: black;
    text-transform: uppercase;
    padding: 18px 60px;
    opacity: 0;
    position: absolute;
    bottom: 50px;
    cursor: pointer;
    transition: .5s all;
    z-index: 3
}

.services-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px
}

.services-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    width: 33%;
    min-height: 390px;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.service-item-inner {
    max-width: 345px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .5s all;
    transition: .5s all
}

.service-background {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    background-color: rgba(80, 80, 80, 0.4);
    -webkit-transition: .5s all;
    transition: .5s all
}

.services-item:hover .service-background {
    -webkit-transition: .5s all;
    transition: .5s all;
    -webkit-transform: scale(0.9);
    transform: scale(0.9)
}

.services-item:hover .service-button {
    opacity: 1;
    transition: .5s all;
}

.services-item:hover .service-item-title {
    -webkit-transition: .5s all;
    transition: .5s all;
    color: white
}

.clients-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.client-item {
    width: 256px;
    height: 240px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 20px;
}

.how-we-work-section {
    background-image: url("../img/how-we-work-section.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.how-we-work-section .page-title {
    color: white
}

.consultation-form-invert .consultation-form-title,
.consultation-form-invert .consultation-form-text,
.consultation-form-invert label,
.consultation-form-invert input {
    color: white !important;
}

.consultation-form-invert label {
    margin-bottom: 5px
}

.consultation-form-invert input {
    background-color: transparent
}

.how-we-work-slider-title {
    font-family: "ProximaNovaBold";
    color: #000000;
    font-size: 24px;
    margin-bottom: 20px
}

.how-we-work-slider-text-item {
    font-family: "ProximaNovaRegular";
    color: #000000;
    font-size: 16px
}

.how-we-work-slider-text {
    max-width: 445px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.how-we-work-slider-item {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url("../img/slider-1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    max-width: 859px;
    width: 100%;
    height: 300px
}

.how-we-work-slider-item img {
    margin-right: 30px;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.how-we-work-slider-item:nth-child(2n) {
    background-image: url("../img/slider-2.png") !important;
}

.how-we-work-slider-item:nth-child(2n) .how-we-work-slider-title {
    color: #f4c948
}

.how-we-work-slider-item:nth-child(2n) .how-we-work-slider-text-item {
    color: white
}

.how-we-work-slider-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.how-we-work-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 50px
}

.slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    bottom: -50px
}

.slick-dots li {
    border: 1px solid #4e4e4e !important;
    border-radius: 50% !important;
    height: 30px;
    width: 30px
}

.slick-dots .slick-active {
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #f4c948 !important;
    border-radius: 50% !important
}

.slick-dots .slick-active button {
    top: 14px !important;
    left: 14px !important
}

.slick-dots li {
    background-color: #262626;
    z-index: 3
}

.slick-dots li button {
    color: white !important;
    font-size: 12px !important;
    position: relative !important;
    top: 5px !important;
    left: 5px !important
}

.slider-consultation-form {
    margin-top: 120px
}

.slick-dots:after {
    content: '';
    width: 95%;
    left: 10px;
    height: 1px;
    background-color: #4e4e4e;
    position: absolute;
    z-index: 2
}

.show-main-menu-mini {
    top: 80px
}

.mm-menu_offcanvas {
    z-index: 11
}

.vertical-text {
    -webkit-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    font-size: 60px;
    color: #252525;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.competencies {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 60px 0 90px 0
}

.competencies-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.competencies-card {
    background-color: #fff;
    width: 635px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 245px;
    margin-top: 30px
}

.competencies-card:nth-child(2n+1) {
    margin-right: 30px
}

.competencies-card-inner {
    max-width: 435px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.vertical-text-title {
    font-family: "ProximaNovaBold";
    font-weight: bold;
    font-size: 82px
}

.breadcrumbs {
    border-bottom: 1px solid #4c4c4c;
    margin-bottom: 82px;
    padding-bottom: 20px;
    padding-left: 10px;
    margin-top: 30px
}

.breadcrumbs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.breadcrumbs ul li {
    font-size: 12px;
    font-family: "Play";
    margin-right: 40px;
    position: relative
}

.breadcrumbs ul li a {
    font-family: "Play";
    font-weight: 400;
    color: #999999
}

.breadcrumbs ul li:not(:last-child):after {
    content: '/';
    font-family: "Play";
    font-weight: 400;
    color: #666666;
    position: absolute;
    right: -20px
}

.main-text-breadcrumb-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.breadcrumb-active {
    color: #666666
}

.cases-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px
}

.case-item {
    max-width: 33%;
    width: 100%;
    min-height: 392px;
    background-color: #1f1f1f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .5s all;
    transition: .5s all;
    cursor: pointer
}

.case-item:hover {
    -webkit-transition: .5s all;
    transition: .5s all;
    background-color: #262626
}

.case-item-title {
    font-family: "ProximaNovaRegular";
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-bottom: 35px
}

.case-item-text {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    color: #999999;
    text-align: center;
    margin-bottom: 40px
}

.case-item-button {
    font-family: "ProximaNovaBold";
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #f4c948;
    padding: 12px 40px
}

.case-item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 350px
}

.second-title-line {
    border-color: #262626
}

.products-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1492px;
    width: 100%;
    margin-top: 30px
}

.product-item:hover .product-item-left {
    background-color: #f4c948;
    -webkit-transition: .8s all;
    transition: .8s all;
    cursor: pointer;
    position: relative
}

.product-item:hover .product-item-left:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: #fff;
    right: 0
}

.product-item-left {
    background-color: #fff;
    -webkit-transition: .8s all;
    transition: .8s all;
    min-height: 243px;
    max-width: 952px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
}

.product-item-right {
    min-height: 243px;
    background-color: #f4c948;
    -webkit-transition: .8s all;
    transition: .8s all;
    max-width: 540px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.product-item-title {
    text-transform: uppercase;
    font-family: "ProximaNovaBold";
    color: #252525;
    font-size: 27px;
    margin-bottom: 10px
}

@media (max-width: 1500px) {
    .warranty-container {
        justify-content: center !important;
    }
    .warranty-item {
        max-width: 100% !important;
    }
}

.product-item-text {
    font-family: "ProximaNovaRegular";
    color: #252525;
    font-size: 16px
}

.product-item-left-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 720px
}

.product-item-price {
    font-family: "ProximaNovaBold";
    font-size: 30px
}

.product-item-price-currency {
    font-size: 14px;
    text-transform: uppercase
}

.product-item-right-inner {
    max-width: 360px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.consultation-form-white {
    background-color: white
}

.services-page-title {
    font-size: 60px
}

.carry-item-text {
    font-family: "ProximaNovaBold";
    font-size: 18px;
    color: #252525
}

.carry-item {
    border: 5px solid #f4c948;
    max-width: 370px;
    width: 100%;
    min-height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px
}

.carries-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px
}

.carries-container img {
    margin-right: 30px
}

.carry-item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 255px
}

.how-we-work-slider-title {
    text-transform: uppercase
}

.slider-invert .how-we-work-slider-title {
    color: #000000 !important
}

.slider-invert .how-we-work-slider-text-item {
    color: #000000 !important
}

.slider-invert .slick-dots li {
    background-color: #fff
}

.slider-invert .slick-dots li button {
    color: black !important
}

.slider-invert .slick-dots:after {
    background-color: #dedede
}

.slider-invert .slick-dots li {
    border: 1px solid #e9e9e9 !important
}

.slider-invert .slick-dots li.slick-active button:before {
    content: none !important
}

.business-section {
    padding-bottom: 50px
}

.projects-section {
    background-image: url(../img/projects-bg.png)
}

.project-item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    outline: none
}

.project-item-image-smm {
    max-width: 280px;
    height: auto;
}

.seo-text {
    font-family: "ProximaNovaRegular";
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    max-height: 100px;
    overflow: hidden;
    transition: .5s all;
}

.seo-text img {
    max-width: 100%;
    height: auto;
}

.seo-text p {
    line-height: 26px;
    margin: 10px 0;
}

.seo-text ul {
    width: 100%;
    padding-left: 40px;
    list-style: circle outside !important;
}

.seo-text h2,
.seo-text h3,
.seo-text h4 {
    margin: 20px 0;
}

.seo-text ul li {
    margin-top: 10px;
}

.show-more-btn {
    margin-top: 10px;
    margin-bottom: 30px;
    font-family: "ProximaNovaRegular";
    font-size: 16px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    text-decoration: underline;
    outline: none;
}

.project-item-image {
    width: 245px;
    height: 530px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    border-radius: 10px;
}

.project-item p {
    max-width: 240px
}

.project-title {
    color: white;
    font-family: "ProximaNovaBold";
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 25px
}

.project-text {
    text-align: center;
    color: #737373;
    font-family: "ProximaNovaRegular";
    font-size: 14px
}

.projects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px
}

.projects-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px
}

.advantage-item {
    border: 5px solid #f4c948;
    max-width: 350px;
    width: 100%;
    min-height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: white;
    margin-top: 20px
}

.advantage-item-inner {
    max-width: 223px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.advantage-item-title {
    font-family: "ProximaNovaBold";
    color: #252525;
    font-size: 44px
}

.advantage-item-text {
    font-family: "ProximaNovaRegular";
    color: #252525;
    font-size: 16px;
    text-align: center
}

.advantages-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1492px;
    width: 100%
}

.advantages-outer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px
}

.warranty-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 730px;
    width: 100%;
    min-height: 240px;
    background-color: white;
    margin-top: 30px
}

.warranty-item-inner {
    max-width: 423px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.warranty-item-inner img {
    margin-right: 30px
}

.warranty-item-title {
    font-family: "ProximaNovaBold";
    color: #252525;
    font-size: 24px;
    margin-bottom: 10px
}

.warranty-item-text {
    font-family: 'ProximaNovaRegular';
    color: #252525;
    font-size: 18px
}

.warranty-outer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.warranty-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1492px;
    width: 100%
}

.warranty-section {
    padding-bottom: 80px
}

.btn-juliet {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    top: -80px;
    outline: none
}

.post-information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 280px;
    width: 100%;
    margin-top: 80px
}

.post-information p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.post-information img {
    margin-right: 10px
}

.post-information span {
    font-family: 'ProximaNovaRegular';
    font-size: 13px;
    color: #f3f3f3
}

.second-callback-form-style .main-callback-form-title {
    text-transform: uppercase
}

.second-callback-form-style .main-callback-form-title {
    margin-bottom: 10px
}

.callback-form-subtitle {
    font-family: 'ProximaNovaRegular';
    font-size: 18px;
    color: white;
    margin-bottom: 20px
}

.callback-form-person-text {
    font-size: 14px;
    color: white;
    font-family: 'ProximaNovaRegular'
}

.callback-form-person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.callback-form-person img {
    margin-right: 20px
}

.single-blog-left {
    max-width: 1230px;
    width: 100%
}

.single-blog-left-inner {
    max-width: 1012px;
    width: 100%
}

.single-blog-left-inner p {
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    color: #000000;
    margin-top: 20px
}

.single-blog-left-inner h2,
.single-blog-left-inner h1,
.single-blog-left-inner h3,
.single-blog-left-inner h4,
.single-blog-left-inner h5,
.single-blog-left-inner h6 {
    font-family: "Play", sans-serif;
    font-weight: bold !important;
    color: #000000 !important;
}

.single-blog-left-inner h2,
.single-blog-left-inner h1 {
    font-size: 48px;
    margin-top: 70px
}

.single-blog-left-inner h3 {
    font-size: 36px;
    margin-top: 60px
}

.single-blog-left-inner h4 {
    font-size: 30px;
    margin-top: 70px
}

.single-blog-left-inner h5,
.single-blog-left-inner h6 {
    font-size: 24px
}

.single-blog-left-inner h5 {
    margin-top: 70px
}

.single-blog-left-inner h6 {
    margin-top: 40px
}

.single-blog-left-inner img {
    max-width: 100%
}

.single-blog-left-inner div {
    margin-top: 30px
}

.single-blog-left-inner div>img {
    float: left;
    margin-right: 30px
}

.single-blog-left-inner div>p:first-child {
    margin-top: 0 !important
}

.single-blog-left-inner ul {
    margin-top: 35px;
    padding-left: 15px;
    list-style-image: url(../img/rectangle-list.png)
}

.single-blog-left-inner ul li {
    font-family: 'ProximaNovaRegular', sans-serif !important;
    font-size: 16px !important;
    padding-left: 20px !important;
    margin-top: 30px !important;
}

.single-blog-left-inner ol li {
    font-family: 'ProximaNovaRegular', sans-serif !important;
    font-size: 16px !important;
    padding-left: 20px !important;
    margin-top: 30px !important;
}

.single-blog-left-inner ol {
    margin-left: 30px !important;
}

.single-blog-left-inner ol li {
    margin-top: 30px
}

.single-blog-left-inner ol {
    counter-reset: item;
    margin-left: 0;
    padding-left: 0
}

.single-blog-left-inner ol li {
    display: block;
    margin-bottom: .5em;
    padding-left: 40px
}

.single-blog-left-inner ol li::before {
    position: relative;
    right: 20px;
    display: inline-block;
    content: counter(item);
    counter-increment: item;
    padding: 0 12px;
    background-color: #f4c948;
    color: black;
    font-size: 12px;
    margin-left: -2em;
    border-radius: 50%;
    font-family: 'ProximaNovaRegular'
}

.single-blog-right {
    max-width: 264px;
    width: 100%
}

.single-blog-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 10px
}

.more-posts-list {
    margin-top: 30px;
    margin-top: 35px;
    padding-bottom: 30px;
    padding-left: 15px;
    list-style-image: url(../img/rectangle-list.png)
}

.more-posts-list a {
    color: #000000;
    font-size: 16px;
    font-family: 'ProximaNovaRegular';
    border-bottom: 1px solid #737373
}

.more-posts-list li {
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    padding-left: 20px;
    margin-top: 30px
}

.share-post-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px
}

.pluso-more {
    display: none !important;
}

.share-post-list li:not(:last-child) {
    margin-right: 5px
}

.single-blog-right-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 10px;
    margin-top: 30px;
    max-width: 180px;
    border-bottom: 1px solid #e2e2e2
}

.single-blog-right-list li:not(:last-child) {
    margin-right: 20px
}

.sidebar-callback-form-style {
    background-color: transparent
}

.sidebar-callback-form-style form {
    margin-left: 0
}

.sidebar-callback-form-style p {
    color: black !important
}

.sidebar-callback-form-style .form-item-group label {
    color: #A2A2A2
}

.sidebar-callback-form-style .form-item-group input {
    background-color: #fff;
    color: black !important
}

.categories-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 50px;
    padding-left: 100px
}

.category-title {
    font-family: "ProximaNovaSemiBold";
    font-size: 24px;
    color: white;
    margin-bottom: 40px
}

.categories-wrapper {
    background-color: rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    min-height: 660px
}

.categories-list li:not(:first-child) {
    margin-top: 20px
}

.category-active a {
    color: #f4c948 !important
}

.categories-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.categories-list li a {
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    color: white
}

.categories-list li a span {
    font-family: 'ProximaNovaRegular';
    color: #5A5A5A;
    font-size: 16px
}

.blog-posts-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.post-item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    max-width: 1300px;
    margin-top: 40px;
    width: 100%;
    position: relative;
}

.post-item .post-information {
    margin-top: 10px
}

.post-tag {
    background-color: #f4c948;
    color: black;
    margin-top: 0 !important;
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    padding: 5px 10px;
    display: inline-block
}

.post-item-inner {
    position: relative;
    z-index: 3;
    padding: 40px 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 380px
}

.single-blog-left-inner-post {
    max-width: 1012px;
    width: 100%
}

.post-text-title {
    font-family: 'ProximaNovaSemiBold';
    color: white;
    font-size: 33px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block
}

.post-text-description {
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    color: white;
    margin-bottom: 20px
}

.pagination nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px
}

.pagination nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.pagination nav ul li:not(:last-child) {
    margin-right: 15px
}

.pagination nav ul li a {
    font-family: 'ProximaNovaRegular';
    color: black;
    font-size: 16px;
    display: block
}

.pagination nav ul li.active span {
    background-color: #f4c948;
    font-family: 'ProximaNovaRegular';
    font-size: 18px;
    border-radius: 50%;
    padding: 8px 15px
}

.post-item:last-child {
    margin-bottom: 40px;
}

.contact-form-second-theme {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.contact-form-second-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.second-form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 180px;
    height: 100%;
    width: 100%
}

.second-form-inputs {
    max-width: 350px
}

.form-column-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.contact-form-second-form {
    max-width: 920px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.contact-form-second-form-title {
    font-family: 'ProximaNovaBold';
    font-size: 48px;
    color: black;
    text-transform: uppercase
}

.contact-form-second-form-subtitle {
    font-family: 'ProximaNovaRegular';
    font-size: 36px;
    color: black;
    margin-top: 5px
}

.form-column-group label {
    font-family: "ProximaNovaRegular";
    font-size: 13px;
    color: #333333;
    margin-bottom: 3px
}

.contact-form-second-theme-container {
    padding-top: 100px
}

.contact-form-second-theme-container form {
    margin-top: 50px;
    width: 100%
}

textarea {
    resize: none
}

.form-column-group input {
    font-family: "ProximaNovaLight";
    font-size: 16px;
    color: #333333;
    padding: 14px 15px;
    border: 1px solid black
}

.form-column-group small {
    font-family: "ProximaNovaLight";
    color: #999999;
    font-size: 13px;
    margin-bottom: 10px
}

.form-column-group textarea {
    border: 1px solid black;
    height: 100%;
    min-height: 160px;
    max-width: 519px;
    width: 100%;
    font-family: "ProximaNovaLight";
    font-size: 16px;
    padding: 10px
}

.form-column:first-child {
    margin-right: 30px
}

.form-column {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.second-form-button-wrapper {
    margin-top: 35px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.second-form-button-wrapper button {
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: black;
    background-color: #f4c948;
    padding: 17px 46px;
    border: none;
    cursor: pointer;
    text-transform: uppercase
}

.team-section {
    background-color: #262626;
    padding-bottom: 70px
}

.team-section-title {
    color: white;
    text-transform: uppercase;
    font-family: "ProximaNovaBold";
    font-size: 48px
}

.team-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.team-item-image {
    background-position: center;
    background-size: cover;
    height: 470px;
    width: 100%;
    background-repeat: no-repeat
}

.team-item {
    max-width: 350px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 50px
}

.team-item-name {
    color: white;
    font-family: 'ProximaNovaSemiBold';
    font-size: 24px;
    margin-top: 20px
}

.team-item-role {
    font-family: 'ProximaNovaRegular';
    color: #999999;
    font-size: 16px;
    margin-top: 2px
}

.contact-page-title {
    color: white;
    text-transform: uppercase;
    font-family: 'ProximaNovaBold';
    font-size: 48px;
    letter-spacing: 2px
}

.contact-page-item {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.contact-page-item img {
    margin-right: 20px
}

.contact-page-item-text-title {
    color: white;
    font-family: 'ProximaNovaBold';
    font-size: 24px
}

.contact-page-item-text-subtitle {
    color: #999999;
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    margin-top: 6px
}

.contact-form-second-invert {
    background-color: #f7f7f7
}

.review-title {
    font-family: 'ProximaNovaBold';
    color: #252525;
    font-size: 48px;
    text-transform: uppercase;
    margin-top: 80px
}

.review-item {
    border: 3px solid #f5f5f5;
    max-width: 730px;
    width: 100%;
    position: relative;
    -webkit-transition: .8s all;
    transition: .8s all;
    margin-top: 50px
}

.review-item:hover {
    border: 3px solid #f4c948;
    -webkit-transition: .8s all;
    transition: .8s all
}

.review-item:before {
    content: '';
    width: 160px;
    height: 2px;
    background-color: #f4c948;
    position: absolute;
    top: 89px;
    left: 0
}

.review-bottom {
    border-top: 1px solid #eeeeee
}

.review-inner {
    max-width: 492px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 200px;
    margin-top: 80px;
    margin-bottom: 40px
}

.reviews-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px
}

.review-section-title {
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    color: black
}

.review-sitename {
    font-family: 'ProximaNovaBold';
    font-size: 24px;
    color: black;
    margin-top: 20px;
    margin-bottom: 10px
}

.review-link {
    font-family: 'ProximaNovaRegular';
    font-size: 15px;
    color: black;
    text-decoration: underline
}

.review-main-text {
    margin-top: 30px;
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    color: black
}

.review-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.review-bottom-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.review-bottom-logo img {
    margin-right: 40px
}

.review-bottom-name {
    font-family: 'ProximaNovaBold';
    color: black;
    font-size: 16px
}

.review-bottom-section {
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    color: #999999;
    margin-top: 3px
}

.review-bottom-date {
    font-family: 'ProximaNovaRegular';
    font-size: 14px;
    color: #252525;
    margin-top: 10px
}

.review-read-more img {
    margin-right: 10px
}

.review-read-more a {
    font-family: 'ProximaNovaRegular';
    color: #252525;
    text-decoration: underline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer {
    background-color: #f4c948;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 50px 0
}

.footer-inner {
    max-width: 1470px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer-logo-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3
}

.footer-logo-column a {
    font-family: "ProximaNovaRegular";
    font-size: 16px;
    color: black;
}

.footer-logo-column img {
    margin-bottom: 50px
}

.footer-logo-column-text {
    font-family: "ProximaNovaSemiBold";
    font-size: 16px;
    color: black;
    margin-bottom: 40px
}

.footer-center-nav-column-title {
    font-family: "ProximaNovaSemiBold";
    color: black;
    font-size: 16px;
    position: relative;
    margin-bottom: 30px
}

.footer-center-nav-column-title:before {
    content: '';
    background-color: black;
    height: 2px;
    width: 15px;
    position: absolute;
    left: -30px;
    top: 50%
}

.footer-center-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 8;
    -ms-flex-positive: 8;
    flex-grow: 8
}

.footer-center-nav-column {
    max-width: 280px
}

.footer-center-nav-column:first-child {
    margin-right: 50px
}

.footer-center-nav-column ul li {
    margin-bottom: 23px
}

.footer-center-nav-column ul li a {
    font-family: "ProximaNovaRegular";
    color: black;
    font-size: 16px
}

.footer-right-nav-active:after {
    content: '';
    height: 2px;
    width: 15px;
    background-color: black;
    position: absolute;
    top: 50%;
    right: -28px
}

.footer-right-nav ul li {
    margin-bottom: 35px;
    position: relative;
    text-align: right
}

.footer-right-nav ul li a {
    font-family: "ProximaNovaSemiBold";
    font-size: 16px;
    color: black
}

.team-item-image-inner {
    position: relative;
    overflow: hidden;
    transition: .5s all;
    height: 100%;
    width: 100%;
    transition: .5s all;
}

.team-item-image-inner p {
    font-family: "ProximaNovaSemiBold";
    font-size: 16px;
    color: black;
    padding: 0 10px;
    text-align: center;
    line-height: 25px;
}

.team-item-image-background {
    height: 100%;
    width: 100%;
    transition: .5s all;
    background-color: rgba(244, 201, 72, 0.6);
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
}

.team-item-image-inner:hover .team-item-image-background {
    transition: .5s all;
    transform: translateY(0);
}

@media screen and (max-width: 1550px) {
    .competencies-card {
        width: 550px
    }
    .main-menu-left-column {
        max-width: 100%;
        width: 100%;
        padding: 0 10px
    }
    .footer-inner {
        width: 90%
    }
    .left-menu-inner-column:first-child {
        margin-right: 50px !important
    }
    .main-menu-right-column {
        width: 100%
    }
    .right-menu-callback-form form {
        margin-left: 20px;
        max-width: 260px;
        width: 100%
    }
    .show-main-menu {
        width: 100%;
        position: fixed
    }
    .main-menu {
        width: 100%
    }
    .navbar {
        padding-left: 10px;
        padding-right: 10px
    }
    .main-text-inner {
        padding: 10px
    }
    .pains-wrapper {
        padding: 0 10px
    }
    .pain-card {
        width: 35%
    }
    .solution-item {
        width: 33%
    }
    .solution-container {
        padding: 0 10px
    }
    .client-item {
        margin-top: 10px;
        width: 33%
    }
}

@media (max-width: 1450px) {
    .team-section {
        padding: 0 10px;
        padding-bottom: 70px
    }
    .row-navbar {
        width: 96% !important
    }
}

@media (max-width: 1300px) {
    .single-blog-right {
        margin-left: 10px
    }
    .competencies-card:nth-child(2n+1) {
        margin-right: 15px
    }
    .competencies-card {
        width: 500px
    }
    .competencies-container {
        padding: 0 10px
    }
    .breadcrumbs {
        padding-left: 10px;
        margin-bottom: 20px
    }
}

@media screen and (max-width: 1200px) {
    .second-form-button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .second-form-button-wrapper button {
        width: 100%
    }
    .main-title {
        font-size: 50px !important;
    }
    .main-text-inner {
        padding: 0 10px
    }
    .main-text {
        font-size: 21px
    }
    .main-callback-form {
        max-width: 400px
    }
    .main-menu-container {
        display: none !important
    }
    .services-item {
        width: 50%
    }
    .footer-inner {
        width: 90%
    }
    .footer-center-nav {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
    .footer-logo-column {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
    .competencies-card {
        width: 100% !important
    }
    .competencies-container {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }
    .competencies-card:nth-child(2n+1) {
        margin-right: 0 !important
    }
    .reviews-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .review-bottom {
        padding: 20px 20px
    }
}

@media screen and (max-width: 1100px) {
    .contact-page-title {
        font-size: 28px
    }
    .contact-page-item {
        margin-top: 30px;
        margin-bottom: 10px
    }
    .contact-page-item-text-title {
        font-size: 18px
    }
    .team-section-title {
        font-size: 28px
    }
    .team-item {
        margin-top: 20px
    }
    .contact-form-second-theme {
        padding: 50px 10px
    }
    .contact-form-second-theme img {
        display: none
    }
    .contact-form-second-form-title {
        font-size: 24px;
        text-align: center;
        width: 100%
    }
    .contact-form-second-form-subtitle {
        font-size: 18px;
        text-align: center;
        width: 100%
    }
    .contact-form-second-theme-container form {
        margin-top: 15px
    }
    .contact-form-second-theme-container {
        padding-top: 0
    }
    .form-column-group {
        margin-top: 20px
    }
    .second-form-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .second-form-inputs {
        margin-right: 0;
        max-width: 100%
    }
    .form-column:first-child {
        margin-right: 0
    }
    .form-column-group textarea {
        max-width: 97%
    }
    .product-item-title {
        font-size: 21px
    }
    .product-item-text {
        font-size: 14px
    }
    .product-item-right {
        padding: 0 10px;
        width: 33%
    }
    .product-item-left {
        padding: 0 10px
    }
    .pain-card {
        width: 100%
    }
    .consultation-form form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .consultation-form-group input {
        margin-right: 0
    }
    .consultation-form-group {
        margin-top: 10px
    }
    .consultation-submit-button {
        margin-top: 10px;
        width: 100%;
    }
    .solution-item {
        width: 48%
    }
}

@media screen and (max-width: 712px) {
    .form-column-group textarea {
        max-width: 93%
    }
    .main-background {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: auto
    }
    .main-callback-form {
        max-width: 100%;
        height: auto;
        padding: 20px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .main-callback-form form {
        margin-left: 0 !important
    }
    .main-callback-form {
        margin-top: 20px
    }
    .main-title {
        text-align: center
    }
    .main-text {
        text-align: center
    }
    .main-text-inner {
        margin-top: 10px;
        width: auto
    }
}

@media screen and (max-width: 850px) {
    .review-title {
        margin-top: 40px;
        font-size: 28px
    }
    .review-item {
        margin-top: 20px
    }
    .review-inner {
        max-width: 420px;
        margin-left: 40px;
        margin-top: 40px
    }
    .review-item:before {
        display: none
    }
    .team-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .categories-container {
        margin-top: 20px;
        padding-left: 10px
    }
    .categories-wrapper {
        margin-top: 10px;
        min-height: 650px
    }
    .post-item-inner {
        padding: 20px
    }
    .post-text-title {
        font-size: 24px
    }
    .post-text-description {
        font-size: 14px
    }
    .post-item {
        min-height: 350px
    }
    .post-item-inner {
        height: 300px
    }
    .warranty-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .warranty-item-title {
        font-size: 21px
    }
    .warranty-item-text {
        font-size: 16px
    }
    .warranty-item-inner img {
        max-width: 90%;
        margin-right: 20px
    }
    .warranty-item-inner {
        padding: 0 10px
    }
    .advantages-outer-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .advantages-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .carries-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .main-text-container {
        min-height: 300px
    }
    .cases-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .case-item {
        max-width: 100%
    }
    .services-item:hover .service-background {
        -webkit-transition: .5s all;
        transition: .5s all;
        -webkit-transform: scale(0.95);
        transform: scale(0.95)
    }
    .main-title {
        font-size: 32px !important;
    }
    .main-text {
        font-size: 18px;
        margin-top: 20px;
    }
    .header-digit-active {
        display: block;
    }
    .main-callback-form {
        max-width: 320px
    }
    .main-callback-form form {
        margin-left: 40px
    }
    .main-callback-form-title {
        font-size: 21px
    }
    .services-item {
        width: 100%
    }
    .client-item {
        width: 50%
    }
    .how-we-work-slider-item {
        height: 200px
    }
    .how-we-work-slider-item img {
        width: 40px;
        -ms-flex-item-align: center;
        align-self: center;
        margin-right: 10px;
        opacity: 0
    }
    .footer-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .footer-center-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .footer-right-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .footer-logo-column {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .pain-card {
        padding: 10px
    }
    .header {
        max-height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .navbar-contact {
        display: none
    }
    .logo-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .logo-link img {
        height: 43px;
        width: 64px;
    }
    .sticky-body {
        padding-top: 60px
    }
    .navbar-column {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%
    }
    #btn-show {
        margin-left: 0;
        position: fixed;
        left: 0
    }
    .menu-btn-text {
        display: none
    }
    .solution-item {
        width: 100%
    }
    .competencies {
        position: relative
    }
    .competencies .vertical-text {
        position: absolute;
        top: 100px
    }
    .competencies .vertical-text-title {
        font-size: 50px
    }
    .competencies-card {
        width: 70% !important;
        padding: 0 10px
    }
    .competencies-container {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
    .how-we-work-slider-text-item {
        font-size: 12px
    }
    .single-blog-right {
        display: none
    }
    .single-blog-left-inner h2,
    .single-blog-left-inner h1,
    .single-blog-left-inner h3,
    .single-blog-left-inner h4,
    .single-blog-left-inner h5,
    .single-blog-left-inner h6 {
        font-size: 28px !important;
        margin-top: 30px !important;
        text-align: center !important;
    }
}

@media screen and (max-width: 600px) {
    .review-inner {
        margin-left: 5px
    }
    .review-bottom-logo img {
        margin-right: 0
    }
    .review-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .review-bottom-logo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .client-item {
        width: 100%
    }
    .how-we-work-slider-title {
        margin-bottom: 10px;
        font-size: 21px
    }
}

@media (max-width: 480px) {
    .competencies .vertical-text {
        display: none
    }
    .competencies-card {
        width: 100% !important;
        padding: 0
    }
    .competencies-card-inner {
        padding: 0 10px
    }
}

@media (max-width: 1100px) {
    .main-text-container {
        padding: 0 60px 0 60px;
    }
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #cef;
    border-color: #cef transparent #cef transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-response {
    font-family: "ProximaNovaRegular";
    font-size: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 22px 0;
}

.post-background {
    position: absolute;
    z-index: 2;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
}

.cookie-wrapper {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    bottom: -130px;
    left: 0;
    width: 100%;
    background: #4149F2;
    color: #fff;
    padding: 1.5em 13em 1.5em 2em;
    cursor: pointer;
    transition: all .3s;
}

.cookie-wrapper p {
    font-family: "ProximaNovaRegular";
}

.cookie-wrapper button {
    font-family: "ProximaNovaRegular";
    background: rgba(255, 255, 255, .2);
    font-size: 18px;
    border-radius: 50px;
    border: none;
    color: inherit;
    outline: 0;
    display: block;
    cursor: pointer;
    padding: 6px 50px;
    transition: all .3s;
}

.popup-callback-form {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    top: 0;
}

.main-callback-form {
    min-height: 687px;
}

@media (max-width: 600px) {
    .main-callback-form {
        min-height: auto;
    }
    .contact-us-modal-wrapper {
        top: 0;
    }
    .contact-us-modal {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .cookie-wrapper p {
        font-size: 12px;
        max-width: 200px;
    }
    .cookie-wrapper {
        justify-content: flex-start;
    }
    .cookie-wrapper button {
        padding: 6px 22px;
    }
}

.competencies-landing .competencies-card {
    margin-right: 30px !important;
}

.competencies-landing .competencies-card {
    width: 31%;
    transition: 1s all;
}

.competencies-landing .competencies-container {
    justify-content: flex-start;
}

.competencies-landing {
    padding: 0 0 90px 0;
}

.competencies-landing .competencies-card:hover {
    transition: 1s all;
    box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.5) inset;
}

.single-blog-form {
    background-color: transparent;
}

.single-blog-form label,
.single-blog-form p {
    color: #000000;
}

.single-blog-form input,
.single-blog-form input::placeholder {
    background-color: transparent;
    color: #000000;
}

.single-blog-form {
    transition: .5s top;
}

.single-blog-form-sticky {
    position: fixed;
    top: 10%;
    max-width: 260px;
    background-color: #fff;
    transition: .5s top;
}

.popup-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 999;
}

.popup-success-inner {
    border: 10px solid #f4c948;
    padding: 40px 8px;
    background-color: #fff;
    max-width: 400px;
    min-height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup-success-inner p {
    font-family: "ProximaNovaRegular", sans-serif;
    font-size: 16px;
    margin: 40px 0;
    text-align: center;
}

.popup-success-inner button {
    max-width: 200px;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid #f4c948;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

@media (max-width: 800px) {
    .single-blog-right .single-blog-form {
        display: none;
    }
    .single-blog-container {
        padding: 0 20px;
    }
}

.popup-success-wrapper {
    z-index: 999999;
}

.header-digit-active {
    font-family: "Play";
    color: #f4c948;
    font-weight: 700;
    font-size: 48px;
}

@media (max-width: 600px) {
    .main-text-container {
        padding: 0;
    }
}

.popup-integrated-inner {
    max-height: 100vh;
    overflow-y: auto;
}

.advantages-container-apps .advantage-item-inner {
    max-width: 288px;
    padding: 10px 0;
}

.advantages-container-apps .advantage-item-text {
    margin-top: 10px;
}

.consultation-form-invert input,
.consultation-form-invert label,
.consultation-form-invert p {
    color: #252525 !important;
}

.apps-how-produce-icon {
    width: 104px;
    height: 104px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 2px solid #ffcc33;
    border-radius: 50%;
}

.apps-how-produce-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apps-how-produce-item p {
    font-family: "ProximaNovaRegular", sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.apps-how-produce-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 60px;
}

.apps-how-product-dots {
    display: flex;
    max-width: 156px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: space-between;
}

.apps-how-product-dot {
    width: 4px;
    height: 4px;
    border-radius: 30px;
    background-color: #222;
}

.apps-consultation-form p.consultation-form-title,
.apps-consultation-form p.consultation-form-text {
    color: #252525 !important;
}

.apps-consultation-form {
    margin-bottom: 0 !important;
    margin-top: 60px !important;
}

@media (max-width: 800px) {
    .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout {
        transform: none !important;
    }
    .transform-show {
        display: block !important;
        position: fixed !important;
        right: 20px;
    }
    .button-close-navbar {
        display: none;
    }
    .apps-how-produce-container {
        flex-direction: column;
    }
    .apps-how-product-dots {
        flex-direction: column;
        margin-top: 10px;
        margin-bottom: 20px;
        height: 60px;
        align-items: center;
    }
    .service-button {
        opacity: 1;
    }
}

.seo-text-open {
    max-height: 100% !important;
}

.seo-text {
    max-height: 200px;
    overflow: hidden;
}

.col-3 {
    max-width: 25%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.col-4 {
    max-width: 33.3%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row-wrap {
    display: flex;
    flex-wrap: wrap;
}

.example-item {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.example-item img {
    max-width: 100%;
    height: auto;
    padding: 30px 0;
}

.example-item-text {
    position: absolute;
    background-color: rgba(244, 201, 72, 0.9);
    height: 100%;
    padding: 30px 20px;
    max-width: 70%;
    width: 70%;
    transform: translateX(-100%);
    transition: .5s all;
    z-index: 10;
}

.header-phone {
    display: none;
}

.example-item-text a,
.example-item-text p {
    font-family: "ProximaNovaSemiBold";
    font-size: 16px;
    color: black;
}

.example-item-site {
    margin-bottom: 10px;
    display: block;
}

.example-item:hover img {
    transition: .5s all;
    transform: translateY(-10px);
}

.example-item img {
    transition: .5s all;
}

.example-item:hover .example-item-text {
    transition: .5s all;
    transform: translateX(0);
}

.contact-page {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.last-works-slider {
    display: flex;
    justify-content: center;
}

.last-works-slider li {
    background-color: #fff;
    border: 1px solid #e9e9e9 !important;
}

.last-works-slider .slick-dots li button {
    color: black !important;
}

.last-works-slider .slick-list {
    margin-bottom: 40px;
}

@media (max-width: 1360px) {
    .col-3 {
        max-width: 33.3%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-page-item-text-title {
        font-size: 21px;
    }
    .contact-page-item {
        margin-top: 50px;
    }
    .contact-map {
        max-width: 50%;
        width: 100%;
    }
    .contact-page .main-text-inner {
        max-width: 47%;
    }
    .contact-map iframe {
        max-width: 100%;
    }
}

@media (max-width: 800px) {
    .contact-map {
        max-width: 100%;
    }
    .contact-page .main-text-inner {
        max-width: 100%;
    }
    .header-phone {
        display: block;
    }
    .col-4 {
        max-width: 50%;
    }
    .col-3 {
        max-width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .row-wrap .team-item-image {
        height: 220px;
    }
    .row-wrap .team-item {
        max-width: 170px;
    }
    .examples .col-4 {
        max-width: 100%;
    }
    .example-item {
        margin-top: 0;
    }
    .slider-invert .how-we-work-slider-title {
        font-size: 16px;
    }
    .carry-item {
        max-width: 330px;
    }
}