
/*----------------------------------------------------------------------------------------
 PAGE BASE CSS
----------------------------------------------------------------------------------------*/

:root {
  --colored: #ff0a03;
}

/*----------------------------------------------------------------------------------------
 CUSTOM BACKGROUNDS
----------------------------------------------------------------------------------------*/

.bg-white {
    background: #ffffff;
}
.bg-light {
    background: #f9f9f9;
}
.bg-grey {
    background: #f7f7f7;
}
.bg-works {
    background: #0F1316;
}
.bg-black {
    background: #000000;
}

/*----------------------------------------------------------------------------------------
 MAIN PAGE WRITE TEXT CSS
----------------------------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    display: inline-block;
}

/*----------------------------------------------------------------------------------------
 POINTER rgba(228, 15, 15, 0.25);
----------------------------------------------------------------------------------------*/

.pointer {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 100;
    top: 50%;
    left: 50%;
    opacity: 0;
}
.pointer .pointer-circle {
    position: absolute;
    top: 55%;
    transform: scale(1) translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all .5s cubic-bezier(.37, .01, 0, .98);
}
.pointer.hide .pointer-circle {
    background: rgba(255, 255, 255, 0.1);
    transition: all .3s;
    opacity: 1;
    width: 70px;
    height: 70px;
}

/*----------------------------------------------------------------------------------------
 BROGRESS BAR
----------------------------------------------------------------------------------------*/

.page-progress-container {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 1px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    color: rgb(255, 0, 0);
}
.page-progress-bar {
    -webkit-transition: width 0s;
    -moz-transition: width 0s;
    -o-transition: width 0s;
    transition: width 0s;
    background: #e72323;
    width: 0%;
    height: 1px;
}

/*----------------------------------------------------------------------------------------
 HEADER BACKGROUNDS
----------------------------------------------------------------------------------------*/

.all-header {
    background: url(../img/header.jpg) #000 50% 50% no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}
.all-header:after {
    background-color: rgba(5,13,18, 0.0);
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.page-header .all-inner-::before {
    background: url(../img/iarrows.svg) 50% 50% no-repeat;
    position: absolute;
    display: block;
    content: "";
    width: 622px;
    height: 464px;
    right: 0px;
    top: -140px;
    z-index: -1;
    opacity: 1.25;
}
.page-header .all-inner::before {
    background: url(../img/iArrow.svg) 50% 50% no-repeat;
    position: absolute;
    display: block;
    content: "";
    width: 358px;
    height: 397px;
    right: 0px;
    top: -115px;
    z-index: -1;
    opacity: 1.25;
}
.page-header .all-inner.ibot::before {
    background: url(../img/ibot.svg) 50% 50% no-repeat;
    position: absolute;
    display: block;
    content: "";
    width: 358px;
    height: 397px;
    right: 0px;
    top: -115px;
    z-index: -1;
    opacity: 1.25;
}
.page-header .all-inner::after {
    background: #E40F0F;
    position: absolute;
    display: block;
    content: "";
    width: 100px;
    height: 220px;
    left: -10px;
    top: -50px;
    z-index: -1;
}
.page-header .no-after::after {
    display: none;
}

/*----------------------------------------------------------------------------------------
 HEADER LINES
----------------------------------------------------------------------------------------*/

.lines {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    z-index: 0;
}
.lines .line {
    position: relative;
    width: 20%;
    height: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.lines .line::after {
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 2px;
    right: -1px;
    top: -50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF0303 75%, #FF0303 100%);
    -webkit-animation: run 7s 0s infinite;
    animation: run 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.lines .line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.lines .line:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
@-webkit-keyframes run {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}
@keyframes run {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

/*----------------------------------------------------------------------------------------
 WORKS LINES
----------------------------------------------------------------------------------------*/

.works-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    z-index: 0;
}
.works-lines .line {
    position: relative;
    width: 20%;
    height: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.works-lines .line::after {
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 2px;
    right: -1px;
    top: -50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF0303 75%, #FF0303 100%);
    -webkit-animation: run-two 14s 7s infinite;
    animation: run-two 14s 7s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.works-lines .line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.works-lines .line:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
@-webkit-keyframes run-two {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}
@keyframes run-two {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

/*----------------------------------------------------------------------------------------
 MAIN MENU PAGE CSS
----------------------------------------------------------------------------------------*/

.fixed-menu {
    background-color: #fff;
    height: 64px;
    padding: 0px 30px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1)
}
.fixed-menu.navbar .email-us a span {
    color: #222;
}
.fixed-menu.navbar .contact-us a {
    background-image: linear-gradient(90deg, #333 50%, transparent 50%);
    color: #333;
}
.fixed-menu.navbar .languages a.active {
    color: #111;
}
.fixed-menu.navbar .email-us {
    color: #333;
}
.fixed-menu.navbar .email-us a {
    color: #333;
}
.fixed-menu.navbar .sandwich-nav b {
    color: #333;
}
.fixed-menu.navbar .sandwich-nav .circle {
    border: 2px solid #242424;
}
.fixed-menu .sandwich-btn span {
    background: #333;
}
.black-mobile {
    display: none;
}
.fixed-menu .white-mobile {
    display: none;
}
.fixed-menu .black-mobile {
    display: inline-block;
}
.navbar .email-us {
    display: inline-block;
}

/*----------------------------------------------------------------------------------------
 SPECIAL EFFECTS
----------------------------------------------------------------------------------------*/

.onshow-effect span {
    opacity: 0;
    -webkit-transition: opacity 0.5s linear 0.5s;
    -o-transition: opacity 0.5s linear 0.5s;
    transition: opacity 0.5s linear 0.5s;
}
.onshow-effect.animated span {
    opacity: 1;
}
.onshow-effect:after {
    display: block;
    content: '';
    position: absolute;
    z-index: 5;
    left: 0%;
    right: 100%;
    top: 0;
    height: 100%;
    background: #ff0a03;
    -webkit-transition: right 0.5s ease-in-out, left 0.5s ease-in-out 0.5s;
    -o-transition: right 0.5s ease-in-out, left 0.5s ease-in-out 0.5s;
    transition: right 0.5s ease-in-out, left 0.5s ease-in-out 0.5s;
}
.onshow-effect.animated:after {
    left: 100%;
    right: 0%;
}
.onshow-effect.white:after {
    background: #fff;
}

/*----------------------------------------------------------------------------------------
 ALL BUTTONS
----------------------------------------------------------------------------------------*/

/* btn red border */

a.btn-border {
    transition-duration: 0.2s;
    position: relative;
    display: inline-flex;
    z-index: 1;
    height: 50px;
    padding: 0 20px;
    font-weight: 700;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    color: #212529;
}
a:hover.btn-border {
    text-decoration: none;
    color: #212529;
}
a.btn-border:before {
    transition: all 0.3s ease-out 0s;
    background-color: #ffffff;
    border: 2px solid #ff0a03;
    border-radius: 40px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 55%;
    z-index: -1;
}
a:hover.btn-border:before {
    width: 100%;
}

/* btn opener */

a.btn-opener {
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: -1px 4px 30px 0px rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 10;
    padding: 15px 32px;
    margin: 0px;
    font-weight: 400;
    font-size: 15px;
    text-shadow: 1px 1px 1px rgba(103, 8, 10, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    color: #fff;
}
a:hover.btn-opener {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.0);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: -1px 4px 30px 0px rgba(255, 255, 255, 0.24);
    text-decoration: none;
}
a.btn-opener:before {
    content: '';
    background-color: rgba(255, 255, 255, 0.07);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -115%;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
    -webkit-transition: all .5s;
    transition: all .5s;
}
a:hover.btn-opener:before {
    left: -20%;
    width: 140%;
}

/* btn red line */

.btn-line {
    display: inline-block;
    border-radius: 3px;
    text-transform: uppercase;
    text-align: center;
    max-width: 290px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    transition: all .5s ease;
    padding: 10px 20px;
    background-color: #d62626;
    text-decoration: none;
    color: #fff!important;
    cursor: pointer;
}
.btn-line:hover {
    transition: all .5s ease;
    background-color: #d62626;
    -webkit-box-shadow: -1px 4px 30px 0px rgba(255, 14, 14, 0.64);
    box-shadow: -1px 4px 30px 0px rgba(255, 14, 14, 0);
    text-decoration: none;
    color: #fff;
}
.btn-line::after {
    position: absolute;
    content: '';
    width: 40px;
    bottom: 0;
    background: linear-gradient(-92deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .3));
    height: 99%;
    left: 0;
    -webkit-transform: skewX(-42deg) translateX(-15vw);
    transform: skewX(-42deg) translateX(-15vw);
    z-index: 1;
    color: #fff;
    will-change: transform;
}
.btn-line:hover:after {
    -webkit-transform: skewX(-42deg) translateX(25vw);
    transform: skewX(-42deg) translateX(25vw);
    -webkit-transition: 1.2s ease;
    transition: 1.2s ease;
}
.btn-line.big-btn {
    display: inline-block;
    border-radius: 3px;
    text-transform: uppercase;
    text-align: center;
    width: 250px;
    margin-top: 50px;
    padding: 15px;
    background-color: #e72323;
    color: #fff!important;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

/*----------------------------------------------------------------------------------------
 ALL BUTTONS
----------------------------------------------------------------------------------------*/

a.hover-me {
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    background: #ff0e0e;
    -webkit-box-shadow: -1px 4px 30px 0px rgba(255, 14, 14, 0.64);
    box-shadow: -1px 4px 30px 0px rgba(255, 14, 14, 0.64);
    border: 1px solid #ff0e0e;
    border-radius: 35px;
    display: inline-block;
    height: 58px;
    margin: 0px;
    padding: 0 50px;
    text-align: center;
    text-transform: uppercase;
    line-height: 54px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}
a:hover.hover-me {
    background: transparent;
    text-decoration: none;
    color: #fff;
}

/*----------------------------------------------------------------------------------------
 SECTION ABOUT
----------------------------------------------------------------------------------------*/

.about-block {
    background: #FFFFFF;
    width: 100%;
    padding: 100px 0;
}
.about-block .img-block {
    width: 100%;
}
.about-block .bg-title {
    z-index: 2;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .6rem;
    margin-right: -.6rem;
    color: #111;
    margin-bottom: 110px;
    position: relative;
}
.about-block .bg-title:before {
    content: attr(data-text);
    position: absolute;
    font-weight: 700;
    font-size: 200px;
    letter-spacing: -.06em;
    text-align: center;
    opacity: .25;
    top: -120px;
}
.about-block .about-title {
    margin-bottom: 30px;
}
.about-block .about-text {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 26.6px;
    text-align: left;
    opacity: .9;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
    color: #000;
}
.about-block .btn-line {
    padding: 12px 30px;
}

/*----------------------------------------------------------------------------------------
 INFO
----------------------------------------------------------------------------------------*/

.our-company {
    padding: 130px 0;
    width: 100%;
}
.our-company .head-text {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 34px;
    line-height: 48px;
}
.our-company .red-text {
    color: #f33333;
}
.our-company .small-text {
    color: #1B1B1B;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    margin-top: 50px;
}
.our-company .info-block {
    padding: 15px 0;
}
.our-company .info-text {
    font-size: 16px;
    line-height: 22px;
    color: #3d3d3d;
}
.our-company .advantage {
    padding-top: 50px;
}
.our-company .advantage-name {
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #f33333;
}
.our-company .advantage-desc {
    font-size: 16px;
    line-height: 22px;
    color: #3d3d3d;
}
@media screen and (max-width: 1200px) {
    .our-company .head-text {
        font-size: 32px;
    }
}
@media screen and (max-width: 992px) {
    .our-company .info-block {
        padding: 10px 0;
    }
    .our-company .advantage-name {
        font-size: 14px;
        padding-bottom: 0;
    }
}
@media screen and (max-width: 768px) {
    .our-company .info-block {
        padding: 10px 0;
    }
    .our-company .advantage-name {
        font-size: 14px;
    }
    .our-company .head-text {
        font-size: 31px;
        line-height: 41px;
    }
    .our-company .advantage {
        padding-top: 10px;
    }
}

/*----------------------------------------------------------------------------------------
 SECTION GRIDS
----------------------------------------------------------------------------------------*/

.more-services {
    display: none;
}
.grids-block h4 {
    padding-top: 20px;
}
.grids-block img {
    height: 84px;
    max-width: 100px;
    position: relative;
    margin-bottom: 0px;
    top: 0;
    transition-duration: 0.4s;
}
.grids-block .features-item {
    padding: 15px 25px 15px 25px;
    margin-bottom: 30px;
    transition-duration: 0.4s;
    background: #fff;
    border-radius: 4px;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.grids-block .features-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10);
}
.grids-block .features-item:hover img {
    top: -8px;
}
.grids-block .features-item p {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    color: #3d3d3d;
}
.grids-block.img-74 img {
    height: 74px;
}

/*----------------------------------------------------------------------------------------
 SWIPER WORKS GRIDS
----------------------------------------------------------------------------------------*/

.swiper-works-container {
    padding-top: 0px;
    padding-bottom: 20px;
    overflow: hidden;
    width: 100%;
}
.swiper-works-container .swiper-slide {
    padding-left: 15px;
    padding-right: 15px;
}
.swiper-works-pagination {
    display: none;
    width: 10%;
    min-width: 150px;
    bottom: 30px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 400;
    color: rgb(255, 255, 255);
}
.swiper-works-pagination .swiper-pagination-current {
    font-weight: 600;
    color: #E50909;
}
.swiper-works-pagination .swiper-pagination-total {
    opacity: 0.5;
}
.adv-pagination-line {
    background-color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    width: 50px;
    height: 1px;
    margin: 5px 15px;
}
.swiper-works-next,
.swiper-works-prev {
    top: 55px;
    color: #ffffff;
    width: 40px;
    transition: 0.5s;
    z-index: 10;
}
.swiper-works-next:active,
.swiper-works-prev:active {
    background-color: #E50909;
    color: #fff;
    outline: none;
}
.swiper-works-next:hover,
.swiper-works-prev:hover {
    background-color: #E50909;
    color: #fff;
    transition: 0.5s;
}
.swiper-works-prev {
    right: 55px;
}
.swiper-works-next {
    right: 15px;
}
.swiper-works-next:after,
.swiper-works-prev:after {
    font-size: 25px;
}
.works-slider figure {
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
    margin: 0;
    transform-style: preserve-3d;
}
.works-slider figure * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.works-slider figure:hover .thumb {
    box-shadow: 4px 21px 44px -13px rgba(0, 0, 0, 0.75);
}
.works-slider {
    padding-top: 90px;
}
.works-slider .work-desc p {
    font-weight: 300;
    color: #b6bac1;
}
.work-desc a {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #f90e0e;
}
@media (max-width: 992px) {
    .swiper-works-container {
        padding-bottom: 100px;
    }
    .swiper-works-pagination {
        display: block;
    }
    .swiper-works-next,
    .swiper-works-prev {
        top: auto;
        bottom: 25px;
    }
}

/*----------------------------------------------------------------------------------------
 SWIPER REVIEWS
----------------------------------------------------------------------------------------*/

.swiper-review-container {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    padding-bottom: 20px;
}
.swiper-review-pagination {
    width: 10%;
    min-width: 150px;
    bottom: 30px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-weight: 600;
}
.swiper-review-pagination .swiper-pagination-current {
    color: #E50909;
}
.swiper-review-pagination .swiper-pagination-total {
    opacity: 0.5;
}
.review-pagination-line {
    background-color: rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: 50px;
    height: 1px;
    margin: 5px 15px;
}
.swiper-review-next,
.swiper-review-prev {
    bottom: 25px;
    color: #000000;
    width: 40px;
    transition: 0.5s;
    z-index: 10;
}
.swiper-review-next:active,
.swiper-review-prev:active {
   background-color: #E50909;
   color: #fff;
   outline: none;
}
.swiper-review-next:hover,
.swiper-review-prev:hover {
    background-color: #E50909;
    color: #fff;
    transition: 0.5s;
}
.swiper-review-prev {
    right: 40px;
}
.swiper-review-next {
    right: 0px;
}
.swiper-review-next:after,
.swiper-review-prev:after {
    font-size: 25px;
}
.slide-reviews {
    position: relative;
    text-align: left;
}
.slide-reviews .slide-logo {
    display: block;
    max-width: 300px;
    height: auto;
}
.slide-reviews h6 {
    padding: 5px 0 7px 0;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #000000;
}
.slide-reviews p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.5);
}
.slide-reviews-text {
    padding: 27px 10px 27px 10px;
    font-size: 16px;
    line-height: 22px;
    color: #2d2d2d;
}
.slide-reviews-links {
    margin-top: 27px;
}
.slide-reviews-links a {
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #ff0000;
}
.slide-reviews-links a:before {
    content: "";
    width: 0;
    height: 2px;
    background: #ff0000;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
  .slide-reviews-links a:hover {
    text-decoration: none;
}
  .slide-reviews-links a:hover:before {
    width: 100%;
}
.mfp-bottom-bar {
    display: none;
}
@media (max-width: 992px) {
    .swiper-review-pagination {
        padding-left: 15px;
    }
    .swiper-review-prev {
        right: 55px;
    }
    .swiper-review-next {
        right: 15px;
    }
}
/* new style */
.review-container {
    padding-top: 100px;
    padding-bottom: 80px;
    width: 100%;
}
.review-container .red-text {
    color: #f33333;
}

/*----------------------------------------------------------------------------------------
 SWIPER CLIENTS
----------------------------------------------------------------------------------------*/

.clients-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 80px;
}
.swiper-clients-container {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 120px;
}
.swiper-clients-pagination {
    width: 10%;
    min-width: 150px;
    bottom: 30px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-weight: 600;
}
.swiper-clients-pagination .swiper-pagination-current {
    color: #E50909;
}
.swiper-clients-pagination .swiper-pagination-total {
    opacity: 0.5;
}
.clients-pagination-line {
    background-color: rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: 50px;
    height: 1px;
    margin: 5px 15px;
}
.swiper-clients-next,
.swiper-clients-prev {
    bottom: 25px;
    color: #000000;
    width: 40px;
    transition: 0.5s;
    z-index: 10;
}
.swiper-clients-next:active,
.swiper-clients-prev:active {
   background-color: #E50909;
   color: #fff;
   outline: none;
}
.swiper-clients-next:hover,
.swiper-clients-prev:hover {
    background-color: #E50909;
    color: #fff;
    transition: 0.5s;
}
.swiper-clients-prev {
    right: 40px;
}
.swiper-clients-next {
    right: 0px;
}
.swiper-clients-next:after,
.swiper-clients-prev:after {
    font-size: 25px;
}
/* new style */
.clients-container .red-text {
    color: #f33333;
}
.swiper-clients-container .clients-logo {
    -moz-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    transition-duration: 0.3s;
}
.swiper-clients-container .clients-logo:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0);
    -moz-transition: all 0.03s;
    -webkit-transition: all 0.03s;
    -o-transition: all 0.03s;
    transition: all 0.03s;
}
.swiper-clients-container .clients-logo img {
    -moz-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
    filter: grayscale(1);
}
  .swiper-clients-container .clients-logo:hover img {
    -moz-transition: all 0.03s;
    -webkit-transition: all 0.03s;
    -o-transition: all 0.03s;
    transition: all 0.03s;
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
}
@media (max-width: 992px) {
    .swiper-clients-pagination {
        padding-left: 15px;
    }
    .swiper-clients-prev {
        right: 55px;
    }
    .swiper-clients-next {
        right: 15px;
    }
}

/*----------------------------------------------------------------------------------------
 SECTION STEPS
--------------------------------------------------------------------------------------- */

.more-steps {
    display: none;
}
.steps-block {
    width: 100%;
    padding: 80px 0px 80px 0px;
    cursor: default;
}
.steps-block .steps-mb {
    transition-duration: 0.4s;
    background: #fff;
    border-radius: 4px;
    padding: 25px 15px 25px 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.steps-block .steps-mb:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10);
}
.steps-block .step-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.steps-block .step-num {
    background: rgba(255, 255, 255, 0);
    display: flex;
    width: 50px;
    margin-top: 2px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    z-index: 1;
    transition: 0.6s;
}
.steps-block .step-circle {
    background: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #da0b0b;
}
.steps-block .step-slick {
    margin-top: 15px;
    margin-left: 12px;
    color: transparent;
    font-weight: 600;
    position: relative;
    top: -40px;
    -moz-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
}
.steps-block .step-item:hover .step-slick {
    color: #9DA0A2;
    top: 0;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.steps-block .rotated {
    writing-mode: tb-rl;
    transform: rotate(-180deg);
}
.steps-block .step-title {
    padding: 10px 0 5px;
    font-size: 20px;
    font-weight: 600;
}
.steps-block p {
    max-width: 320px;
    font-weight: 400;
    font-size: 16px;
}
.steps-block .step-item:hover .step-num-NO {
    animation: radial-pulse 1s 1;
}
@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 11, 11, 0.5);
    }
    100% {
        box-shadow: 0 0 0 30px rgba(218, 11, 11, 0);
    }
}

/*----------------------------------------------------------------------------------------
 SECTION STAGES
----------------------------------------------------------------------------------------*/

.stages-block {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 120px 0;
    min-height: 350px;
}
.stages-block .stages-item {
    color: #535353;
    padding: 25px;
    min-height: 200px;
    position: relative;
    line-height: 1.6;
    margin-bottom: 25px;
    border-radius: 5px;
    background-color: #EDEDED;
    margin: 0 18px;
    max-height: 290px;
}
.stages-block .stages-content {
    z-index: 1;
    position: relative;
    min-width: 296px;
    min-height: 100px;
}
.stages-block .stages-title {
    margin-bottom: .5rem;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 1rem;
}
.stages-content p {
    font-size: 16px;
}
.stages-item:before,
.stages-item:after {
    content: '';
    position: absolute;
}
.stages-item::before {
    margin-top: 0;
    top: 0;
    left: -5px;
    background-color: #EDEDED;
    width: 50px;
    height: 100%;
    border-radius: 5px;
    -webkit-transform: skewX(-12deg);
    -ms-transform: skewX(-12deg);
    transform: skewX(-12deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.stages-item::after {
    margin-top: 0;
    top: 0;
    right: -5px;
    width: 50px;
    height: 100%;
    background-color: #EDEDED;
    border-radius: 5px;
    -webkit-transform: skewX(-12deg);
    -ms-transform: skewX(-12deg);
    transform: skewX(-12deg);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
}
.stages-item.add-red,
.stages-last::before {
    background-color: #CD2122;
    font-size: 1rem;
    color: #fff;
}
.stages-first::before,
.stages-last::after {
    display: none;
}
.stages-icon {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: -20px;
    top: 50%;
    font-size: 42px;
    color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 992px) {
    .stages-item::before,
    .stages-item::after {
        display: none;
    }
    .stages-item {
        margin: 5px 20px;
    }
}
@media (min-width: 993px) and (max-width: 1200px) {
    .stages-content p {
        max-width: 250px;
    }
}

/*----------------------------------------------------------------------------------------
 SECTION QUESTIONS
----------------------------------------------------------------------------------------*/

.questions-block {
    width: 100%;
}
.questions-block .wrapper-faq {
    width: 100%;
    padding: 80px 0;
    font-size: 15px;
}
.questions-block .container-faq {
    width: 100%;
    max-width: 1240px;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}
.questions-block .container-faq .faq-inner {
    padding-right: 15px;
    padding-left: 15px;
}
.questions-block .title-faq {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    width: 100%;
    background: 0 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 16px 16px;
}
.questions-block .btn-link {
    width: 100%;
}
.questions-block .btn-link:hover,
.questions-block .btn-link:focus {
    text-decoration: none;
}
.questions-block .btn-link,
.questions-block .faq-inner p {
    color: #fff;
}
.questions-block .toggle {
    margin-top: 15px;
    -webkit-transition: background-color .2s;
    -o-transition: background-color .2s;
    transition: background-color .2s;
    background-color: #090a0c;
}
.questions-block .toggle-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.questions-block .toggle>.toggle-title .active,
.questions-block .toggle:hover {
    background-color: #212329;
}
.questions-block .faq-num {
    font-size: 20px;
    width: 30px;
    font-weight: 600;
    color: #da0b0b;
}
.questions-block .h3-faq-row .separator {
    display: block;
    width: 40px;
    height: 2px;
    margin: 0 20px 0 14px;
    background-color: #a7a7a7;
}
.questions-block .h3-faq-row {
    display: flex;
    align-items: center;
    padding: 9px 16px;
}
.questions-block .h3-faq-row {
    margin-top: 0;
    margin-bottom: 0;
}
.questions-block .h3-faq-row p {
    font-size: 20px;
    margin: 0;
    padding-left: 10px;
    white-space: normal;
}
.questions-block .toggle-inner p {
    line-height: 25px;
    opacity: .6;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 22px 10% 38px 13%;
    margin-bottom: 0;
}
.questions-block .btn-link,
.questions-block .card-body {
    padding: 0;
}
.questions-block .card-header {
    border-bottom: none;
    padding: 6px 0px 6px 0px;
}
.questions-block .wrapper-faq button.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3% 0 0;
}

/* -------------Collapse btn-icon ------------- */

.questions-block .container-faq .toggle .btn-icon {
    position: relative;
    display: block;
    width: 40px;
    height: 2px;
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
}
.questions-block .card-body ul {
    padding: 0;
    margin-left: 20px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #3d3d3d;
    padding: 22px 10% 22px 13%;
}
.questions-block .card-body ul li {
    list-style-image: url(https://itop.media/assets/img/marker.jpg);
    padding: 8px;
    margin: 0;
    line-height: 16px;
}
.questions-block .toggle .btn-icon:before,
.questions-block .toggle .btn-icon::after {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    content: "";
    background-color: #818698;
}
.questions-block .toggle .btn-icon:before {
    right: 18px;
}
.questions-block .toggle .btn-icon::after {
    right: 0;
}
.questions-block .toggle .collapsed .btn-icon:before {
    transform: rotate(25deg);
    right: 18px;
}
.questions-block .toggle .collapsed .btn-icon:after {
    transform: rotate(155deg);
    right: 0;
}
/* White accordion */
.questions-block.white .toggle {
    background-color: #fff;
    border: 0px;
}
.questions-block.white .toggle>.toggle-title .active,
.questions-block.white .toggle:hover {
    background-color: #fbfbfb;
}
.questions-block.white .toggle-inner p {
    color: #111;
}
.questions-block.white .btn-link,
.questions-block.white .faq-inner p {
    color: #111;
}
.questions-block.white .toggle-inner p {
    opacity: 1;
}
@media screen and (max-width: 1024px) {
    .questions-block .faq-num::before {
        width: 40px;
    }
    .questions-block .btn {
        text-align: left;
    }
    .questions-block .container-faq .toggle .btn-icon {
        width: 22px;
    }
    .questions-block .faq-num {
        font-size: 25px;
    }
    .questions-block .h3-faq-row .separator {
        width: 20px;
    }
    .questions-block .toggle-inner p {
        padding: 5px 80px 5px 11%;
    }
    .questions-block .toggle .toggle-title {
        width: 100%;
    }
    .questions-block .toggle .collapsed .btn-icon:before {
        right: 9px;
    }
    .questions-block .toggle .btn-icon:before {
        right: 10px;
    }
}
@media screen and (max-width: 540px) {
    .questions-block .h3-faq-row .separator {
        display: none;
    }
}
@media screen and (max-width: 450px) {
    .questions-block .toggle-inner p {
        padding: 5px 80px 5px 13%;
    }
}
@media screen and (max-width: 400px) {
    .questions-block .toggle-title .separator {
        margin: 0 10px 0 14px;
    }
    .questions-block .toggle .toggle-title .title-name {
        max-width: 250px;
    }
}
@media screen and (max-width: 360px) {
    .questions-block .h3-faq-row p {
        max-width: 230px;
    }
}

/*----------------------------------------------------------------------------------------
 SECTION TABLE PRICES
----------------------------------------------------------------------------------------*/

.price-table {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 100px;
}
.price-table table {
    background-color: #fff;
    border-collapse: collapse;
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    color: #000;
}
.price-table th {
    position: sticky;
    top: -1px;
}
.price-table th,
.price-table td {
    border: 1px solid #ffffff;
    border-collapse: collapse;
    padding: 15px 5px 15px 5px;
    word-wrap: break-word;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.price-table .sticky-price th {
    background: #fff;
    z-index: 2;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
}
.sticky-parent-NO tr:nth-child(odd){
   background-color: #F9F9F9;
}
.price-table .first-th-NO {
    background: #101010cf!important;
    z-index: 2;
}
.price-table .table-sep {
    background: #f7f7f7;
}
.price-table .price-name {
    padding: 15px 35px;
    padding-left: 35px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.price-table .price-name.font-add {
    font-size: 22px;
    font-weight: 600;
}
.price-table .check,
.price-table .uncheck {
    font-size: 18px;
}
.price-table .check {
    color: #fa0000;
}
.price-table .uncheck {
    color: #948f8f;
}
.price-table .p {
    text-align: center;
    font-size: 13px;
    padding-top: 130px;
}
.price-table .thead-price {
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    overflow: hidden;
}
.price-table .thead-currency {
    font-size: 15px;
    padding-left: 2px;
    line-height: 22px;
    color: #000;
}
.price-table .thead-period {
    font-size: 14px;
    font-weight: 400;
    text-shadow: 0px 0px 1px #fff;
    color: #000;
}
.price-table .table-head-fix {
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
}
@media screen and (max-width: 768px) {
    .price-table .thead-period {
        display: none;
    }
    .price-table .sticky-price th {
        font-size: 22px;
    }
    .price-table .table-sep td:not(:first-child) {
        display: none;
    }
    .price-table .check {
        color: #fa0000;
        font-size: 20px;
    }
    .price-table tr {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
    }
    .price-table td {
        color: #000;
    }
    .price-table .price-name {
        padding: 15px 5px;
        text-align: center;
    }
    .price-table td,
    .price-table th {
        display: block;
        width: 25%;
        font-size: 18px;
    }
    .price-table th:first-child,
    .price-table td:first-child {
        background: rgba(100%, 100%, 100%, 0.05);
        width: 100%;
    }
    .price-table th:first-child {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .price-table .btn-line {
        font-size: 11px;
        padding: 12px 10px;
    }
    .price-table .btn-line:hover:after {
        -webkit-transform: skewX(-42deg) translateX(26vw);
        transform: skewX(-42deg) translateX(26vw);
    }
    .price-table .btn-line::after {
        -webkit-transform: skewX(-42deg) translateX(-16vw);
        transform: skewX(-42deg) translateX(-16vw);
    }
}
@media screen and (max-width: 768px) {
    .price-table .smm-tbody td,
    .price-table .smm-tbody th {
        width: 20%;
    }
}

/*----------------------------------------------------------------------------------------
 TOOLTIPS
----------------------------------------------------------------------------------------*/

.tooltip-light {
    -moz-transition: all .7s ease-in;
    -webkit-transition: all .7s ease-in;
    -o-transition: all .7s ease-in;
    transition: all .7s ease-in;
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    top: 2px;
    margin-left: 5px;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    opacity: 1.0;
    font-family: 'paperIcons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
}
.tooltip-light:before {
    content: "\e95a";
}
.tooltip-light:hover {
    -moz-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
    text-decoration: none;
    cursor: help;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    opacity: 1.0;
}
.tooltip-dark {
    -moz-transition: all .7s ease-in;
    -webkit-transition: all .7s ease-in;
    -o-transition: all .7s ease-in;
    transition: all .7s ease-in;
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    top: 2px;
    margin-left: 5px;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    opacity: 1.0;
    font-family: 'paperIcons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
}
.tooltip-dark:before {
    content: "\e95a";
}
.tooltip-dark:hover {
    -moz-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
    text-decoration: none;
    cursor: help;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    opacity: 1.0;
}
#tooltip {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border: 1px solid #9C0C0E;
    -webkit-border-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 5%, rgba(156, 12, 14, 1) 55%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%) 1 stretch;
    -moz-border-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 5%, rgba(156, 12, 14, 1) 55%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%) 1 stretch;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 5%, rgba(156, 12, 14, 1) 55%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%) 1 stretch;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    padding: 20px 28px 20px 28px;
    position: absolute;
    font: 400 13px 'Roboto', sans-serif, Verbana, tahoma, 'Poiret One', cursive;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.98);
    text-align: center;
    line-height: 20px;
    z-index: 100;
    color: #282C31;
}
#tooltip::after {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid rgba(156, 12, 14, 1);
    bottom: -7px;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -7px;
    position: absolute;
    width: 0;
}
#tooltip.top::after {
    border-bottom: 7px solid rgba(255, 255, 255, 0.98);
    border-top-color: transparent;
    bottom: auto;
    top: -14px;
}
#tooltip.left::after {
    left: 10px;
    margin: 0;
}
#tooltip.right::after {
    left: auto;
    margin: 0;
    right: 10px;
}

/*----------------------------------------------------------------------------------------
 PAGE PATTERNS BACKGROUND
----------------------------------------------------------------------------------------*/

.line-header::before {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkAQMAAABKLAcXAAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMAGovxNEIAAAAoSURBVDhPYxBEAgIMSkhAgcEFCTgwdCCBBoZRfaP6RvWN6hvVR5Y+APADQlQnmrINAAAAAElFTkSuQmCC);
    box-shadow: inset 0 0 188px 0 rgba(0, 0, 0, 0.35);
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.darkness-bg::before {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkAQMAAABKLAcXAAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMAGovxNEIAAAAoSURBVDhPYxBEAgIMSkhAgcEFCTgwdCCBBoZRfaP6RvWN6hvVR5Y+APADQlQnmrINAAAAAElFTkSuQmCC);
    box-shadow: inset 0 0 188px 0 rgba(0, 0, 0, 0.35);
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

/*----------------------------------------------------------------------------------------
 CUSTOM BG
----------------------------------------------------------------------------------------*/

.natural-bg {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(https://itop.media/assets/img/bg.png) #090E17 center center;
    box-shadow: inset 0 0 188px 0 rgba(0, 0, 0, 0.0);
}
.natural-bg-::before {
    background: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)), url(https://itop.media/assets/img/natural-bg.png) center center;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
}

/*----------------------------------------------------------------------------------------
 SERVICES GRIDS
----------------------------------------------------------------------------------------*/

.services-content {
    background: #f7f7f7;
    padding-top: 110px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 90px;
    cursor: default;
}
.services-content .col-md-4 {
    padding-right: 0px;
    padding-left: 0px;
}
.services-content .features-item {
    position: relative;
    display: block;
    padding: 25px 35px 25px 35px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    transition-duration: 0.4s;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}
.services-content .features-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10);
}
.services-content .features-item .number-bg {
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    position: absolute;
    right: 30px;
    top: 20px;
    z-index: 0;
    font-size: 60px;
    font-weight: 900;
    color: #EAEAEA;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #EAEAEA;
}
.services-content .features-item:hover .number-bg {
    -moz-transition: all 0.03s;
    -webkit-transition: all 0.03s;
    -o-transition: all 0.03s;
    transition: all 0.03s;
    -webkit-text-stroke-color: #ff1717;
}
.services-content img {
    transition-duration: 0.4s;
    position: relative;
    margin-bottom: 10px;
    top: 0;
}
.services-content .features-item:hover img {
    top: -8px;
}
.services-content .features-item h4 {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #212529;
}
.services-content .features-item p {
    font-size: 16px;
    line-height: 22px;
    color: #3d3d3d;
}
.services-content .features-item a {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0px;
}
.services-content button {
    margin-top: 20px;
}

/*----------------------------------------------------------------------------------------
 AWARDS Playfair+Display
----------------------------------------------------------------------------------------*/

.awards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 80px;
}
.awards .text-area {
    margin-top: 30px;
}
.awards .head-text {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 34px;
    line-height: 48px;
    color: #000;
}
.awards .red-text {
   color: #f33333;
}
.awards .small-text {
    color: #1B1B1B;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    margin-top: 50px;
}
.awards-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.awards-box {
    width: 50%;
    display: flex;
}
.awards-box p {
    margin-left: 25px;
    align-self: flex-end;
    padding-bottom: 25px;
}
.awards .odometer {
    font-size: 106px;
    line-height: 108px;
    color: #f33333;
    margin-bottom: 15px;
}

/* media queries */

@media screen and (max-width: 1200px) {
    .awards .head-text {
        font-size: 34px;
    }
    .awards .odometer {
        font-size: 90px;
    }
    .awards .awards-box p {
        margin-left: 20px;
    }
}
@media screen and (max-width: 992px) {
    .awards .awards-row {
        margin-top: 35px;
    }
}
@media screen and (max-width: 768px) {
    .awards .awards-row {
        padding: 0 15px;
    }
    .awards .awards-box p {
        margin-left: 10px;
    }
}
@media screen and (max-width: 576px) {
    .awards .head-text {
        font-size: 30px;
        line-height: 37px;
    }
    .awards .awards-box {
        width: 100%;
    }
    .awards .odometer {
        font-size: 84px;
    }
    .awards .awards-box p {
        margin-left: 20px;
    }
}

/*----------------------------------------------------------------------------------------
 ODOMETR COUNTER
----------------------------------------------------------------------------------------*/

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    position: relative;
}
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    position: relative;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
    display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
    position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -ms-transition: -ms-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -ms-transition: -ms-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1.1em;
}
.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
    text-align: center;
}

/*----------------------------------------------------------------------------------------
 FORM AJAX LOADER
----------------------------------------------------------------------------------------*/

#ajax-loader {
    background: url(../img/loader.gif) 50% 50% no-repeat;
    border: 1px solid rgba(221,224,225,0.7);
    position: absolute;
    display: block;
    z-index: 100;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    cursor: default;
    opacity: 0.5;
}

/*----------------------------------------------------------------------------------------
 MODAL CUSTOM
----------------------------------------------------------------------------------------*/

.modal-order-overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(0, 0, 0, .55);
    transition: all .3s;
    overflow: scroll;
    overflow-x: hidden;
    cursor: pointer;
}
.modal-order {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 520px;
    min-width: 320px;
    height: auto;
    z-index: 2000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate(-50%, -50%);
    opacity: 0;
    overflow: unset;
    transition: opacity .5s;
    cursor: default;
}
.modal-order-show .modal-order {
    visibility: visible;
    display: block;
    opacity: 1;
}
.modal-order-show.modal-order-overlay {
    opacity: 1;
    visibility: visible;
    display: block;
}
.modal-order-content {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(94, 86, 86, .1);
    border-radius: 5px;
    transform: scale(.7);
    opacity: 0;
    transition: all .3s;
    position: relative;
    padding: 65px 16px 75px;
    min-height: 500px;
    text-align: center;
    border: none;
}
.modal-order-show .modal-order-content {
    transform: scale(1);
    opacity: 1;
}
.modal-order-close {
    background-color: #fff;
    position: absolute;
    display: block;
    top: 12px;
    right: 12px;
    width: 29px;
    height: 29px;
    padding: 5px;
    border: none;
    cursor: pointer;
}
.modal-order-close svg {
    width: 19px;
    height: 19px;
    fill: none;
    pointer-events: none;
    stroke: #c4c4c4;
    stroke-width: 3px;
    transition: stroke .4s ease
}
.modal-order-close:hover svg {
    stroke: #ff0000;
}
.modal-order-desc {
    display: none;
    background-color: #f9f9f9;
    border: 1px solid #fff;
    padding: 20px 25px 20px 25px;
    margin-bottom: 30px;
    font-weight: 18px;
    font-size: 18px;
    line-height: 22px;
    color: #3d3d3d;
}
.modal-order-resp {
    display: none;
}
.modal-order-title {
    font-weight: 900;
    line-height: normal;
    font-size: 40px;
    color: #2b2b2b;
    margin-bottom: 40px;
    padding: 0 20px
}
.modal-order-content .form-wrap {
    max-width: 380px;
    margin: 0 auto
}
.modal-order-content .form-element {
    position: relative;
    text-align: left;
    margin-bottom: 33px
}
.form-element-bar {
    position: relative;
    height: 1px;
    background: #dadada;
    display: block
}
.form-element-bar:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    background: #f00;
    height: 1px;
    display: block;
    transform: scale(0);
    transition: transform .3s ease
}
.form-element-field {
    opacity: 0.001;
    transition: opacity .3s ease;
    border: none;
    display: block;
    background-color: #fff;
    box-shadow: none;
    width: 100%;
    height: 50px;
    padding: 0px;
    line-height: normal;
    font-size: 16px;
    color: #2b2b2b
}
.form-element-field:focus~.form-element-label {
    transform: translateY(-10px) translateY(-6px) translateY(-2px) scale(.8);
    cursor: pointer;
    pointer-events: auto;
}
.form-element-field:focus,
.form-element-field.has-value,
.form-element:focus {
    opacity: 1
}
.form-element-label {
    line-height: normal;
    font-size: 16px;
    color: #999;
    z-index: 1;
    position: absolute;
    transform-origin: left center;
    transition: transform .3s ease, color .3s linear;
    top: 5px;
    pointer-events: none
}
.message textarea {
    min-height: 80px;
    border-bottom: 1px solid #dadada;
    transition: 0.4s;
    resize: none;
}
.message textarea:focus {
    border-bottom: 1px solid #f00;
    transition: 0.4s;
}
.form-element-message {
    margin: 50px auto 35px;
    border-bottom: 1px solid #dadada;
}
.form-element-field.has-value~.form-element-label {
    transform: translateY(-10px) translateY(-6px) translateY(-2px) scale(.8);
    cursor: pointer;
    pointer-events: auto;
}
textarea.form-element-field.has-value~.form-element-label {
    transform: translateY(-30px) scale(.8);
}
.message .form-element-field:focus~.form-element-label {
    transform: translateY(-30px) scale(.8);
}
.form-element-field:focus~.form-element-bar:after {
    transform: scale(1)
}
.form-element-field:focus~.form-element-label {
    transform: translateY(-10px) translateY(-6px) translateY(-2px) scale(.8);
    cursor: pointer;
    pointer-events: auto
}
.form-element:focus~.form-element-bar:after {
    transform: scale(1)
}
.form-element:focus~.form-element-label {
    transform: translateY(-10px) translateY(-6px) translateY(-2px) scale(.8);
    cursor: pointer;
    pointer-events: auto;
}
.modal-order-content .send-btn:before,
.modal-order-content .send-btn:hover:before {
    transition: all 1s cubic-bezier(.19, 1, .22, 1)
}
.modal-order-content .send-btn {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 18px 42px 17px;
    background-color: #ff2121;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    border: 0px;
    width: 100%;
    color: #fff;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
}
.modal-order-content .send-btn:before {
    content: "";
    background: #fff;
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    width: 50px;
    z-index: 1
}
.modal-order-content .send-btn:hover:before {
    left: 110%
}
@media only screen and (max-width:992px) {
    .modal-order {
        width: 100%;
    }
}
@media only screen and (max-width:667px) {
    .modal-order-overlay {
        overflow: unset;
        height: 100%;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        z-index: 900;
    }
    .modal-order {
        transform: unset;
        position: relative;
        left: 0;
        padding: 0;
        min-height: 100vh;
        max-width: 100%;
        right: 0;
        top: 0;
        bottom: 0;
    }
    .modal-order-content {
        height: 100vh;
        padding: 50px 30px 50px 30px;
    }
    .modal-order-close {
        top: 5px;
        right: 5px;
    }
    .modal-order-title {
        font-size: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0px;
    }
    .message textarea {
        height: 100px;
    }
}

/*----------------------------------------------------------------------------------------
 SCROLLBAR
----------------------------------------------------------------------------------------*/

.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.nano>.nano-content {
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.nano>.nano-content::-webkit-scrollbar {
    display: none;
}
.nano>.nano-content:focus {
    outline: 0 !important;
}
.nano>.nano-pane {
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 4px;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.7s;
}
.nano>.nano-pane>.nano-slider {
    background-color: rgba(0, 116, 255, 0.5);
    position: relative;
    margin: 0;
    border-radius: 0;
    opacity: 0.85;
}
.nano.nano-hide {
    display: none !important;
}
.has-scrollbar>.nano-content::-webkit-scrollbar {
    display: block;
}
.nano:hover>.nano-pane,
.nano-pane.active,
.nano-pane.flashed {
    opacity: 0.99;
}
.rates-nano .pace .pace-progress,
.rates-nano.nano>.nano-pane>.nano-slider {
    background-color: #F33340;
}

/*----------------------------------------------------------------------------------------
 RATES BLOCK
----------------------------------------------------------------------------------------*/

.rates-block {
    padding: 100px 0px 120px 0px;
}
.rates-block-item {
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    padding: 70px 60px 70px 60px;
    border: 0.5px solid rgb(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 400px;
    font-weight: 500;
    font-size: 16px;
    color: #3d3d3d;
}
.rates-block-item:hover {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 0.5px solid rgb(227, 21, 21, 1.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.rates-block-item h3 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 30px;
    color: #202633;
}
.rates-block-desc {
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #3d3d3d;
}
.rates-block-price {
    margin: 40px auto 40px;
}
.rates-block-price span {
    padding-right: 8px;
    font-weight: 600;
    font-size: 44px;
    color: #F33340;
}
.rates-block-btn a {
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    background: #fff;
    border: 1px solid #F33340;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 45px;
    padding: 0px 50px 0px 30px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 16px;
    color: #F33340;
}
.rates-block-item:hover .rates-block-btn a {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #da1c1c;
    text-decoration: none;
    color: #fff;
}
.rates-block-btn a:hover {
    transition: all .5s ease;
    background: #da1c1c;
    text-decoration: none;
    color: #fff;
}
.rates-block-btn a::before {
    position: absolute;
    content: '';
    width: 40px;
    bottom: 0;
    background: linear-gradient(-92deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .3));
    height: 99%;
    left: 0;
    -webkit-transform: skewX(-42deg) translateX(-15vw);
    transform: skewX(-42deg) translateX(-15vw);
    will-change: transform;
    z-index: 1;
    color: #fff;
}
.rates-block-btn a:hover:before {
    -webkit-transform: skewX(-42deg) translateX(25vw);
    transform: skewX(-42deg) translateX(25vw);
    -webkit-transition: 1.2s ease;
    transition: 1.2s ease;
}
.rates-block-btn a::after {
    background: url(../img/arrow-rates-red.svg) no-repeat;
    position: absolute;
    content: '';
    width: 15px;
    height: 10px;
    right: 20px;
}
.rates-block-item:hover .rates-block-btn a::after {
    background: url(../img/arrow-rates-white.svg) no-repeat;
    transition: 0.5s;
    content: '';
}
@media (max-width:1200px) {
    .rates-block-item {
        padding: 50px 45px 50px 45px;
    }
}
@media (max-width:992px) {
    .rates-block-item {
        margin-bottom: 15px;
        padding: 40px 35px 40px 35px;
    }
}

/*----------------------------------------------------------------------------------------
 RATES MODAL
----------------------------------------------------------------------------------------*/

#info-loader {
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url(../img/loader.gif) #fff center center no-repeat;
    position: absolute;
    display: block;
    height: 99%;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 50px;
    z-index: 100;
    cursor: default;
}
.modal-ice {
    background: #FFFFFF;
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    display: block;
    height: 99%;
    padding: 45px 50px 45px 50px;
    z-index: 100;
    border-radius: 3px;
    border: 0px;
}
.modal-ice ul {
    margin: 0;
    padding: 0;
}
.modal-ice ul li {
    margin: 0;
    padding: 0;
    padding-bottom: 5px;
    list-style: none;
    font-size: 14px;
}
h3.rates-info-header {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 30px;
    color: #202633;
}

.rates-info-price span {
    padding-right: 8px;
    line-height: 1.2;
    font-weight: 600;
    font-size: 44px;
    color: #F33340;
}
.rates-info-desc {
    background-color: #fefefe;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #3d3d3d;
}
.rates-block-item .modal-close {
    background: url(../img/close-form.png) #fff bottom center no-repeat;
    border: 1px solid rgb(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    width: 44px;
    height: 44px;
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 300;
    -webkit-transition: border-color .3s ease-in, -webkit-transform 600ms;
    -moz-transition: border-color .3s ease-in, -moz-transform 600ms;
    -ms-transition: border-color .3s ease-in, -ms-transform 600ms;
    -o-transition: border-color .3s ease-in, -o-transform 600ms;
    transition: border-color .3s ease-in, transform 600ms;
}
.rates-block-item:hover .modal-close {
    border-color: rgb(227, 21, 21, 1);
}
.rates-block-item .modal-close:hover {
    -webkit-transform: rotate(360deg) scale(1.10);
    -moz-transform: rotate(360deg) scale(1.10);
    -ms-transform: rotate(360deg) scale(1.10);
    -o-transform: rotate(360deg) scale(1.10);
    transform: rotate(360deg) scale(1.10);
    -webkit-transition: border-color 0.3s, -webkit-transform 600ms;
    -moz-transition: border-color 0.3s, -moz-transform 600ms;
    -ms-transition: border-color 0.3s, -ms-transform 600ms;
    -o-transition: border-color 0.3s, -o-transform 600ms;
    transition: border-color 0.3s, transform 600ms;
}

/*----------------------------------------------------------------------------------------
 PAGE SHOP BACKGROUNDS
----------------------------------------------------------------------------------------*/

.shop-price {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 1;
}

/*----------------------------------------------------------------------------------------
 SAY HELLO
----------------------------------------------------------------------------------------*/

.say-hello {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 120px 0;
    background: #fff;
}
.say-hello .contact-box h3 {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}
.say-hello .contact-box {
    background: rgba(203, 23, 23, 1);
    border-radius: 2px;
    width: 100%;
    padding: 15%;
    margin-bottom: 30px;
    color: #fff;
}
.say-hello .contact-box span {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.say-hello .contact-box a {
    display: inline-block;
}
.say-hello .map-link {
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    color: #ff0000;
}
.say-hello .alert {
    width: 100%;
    float: left;
    border-radius: 0;
    border: none;
    padding: 30px 20px;
}
.say-hello .alert-danger {
    background: #CB1717;
    color: #fff;
}
.say-hello .alert-success {
    background: #268000;
    color: #fff;
}
.say-hello form {
    width: 100%;
}
.say-hello form input[type=text] {
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
    border-radius: 2px;
}
.say-hello form input[type=text]:hover,
.say-hello form input[type=text]:focus {
    background-color: #FFFFFF;
    border: 1px solid #000;
    color: #000;
}
.say-hello form textarea {
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
    border-radius: 2px;
}
.say-hello form textarea:hover,
.say-hello form textarea:focus {
    background-color: #FFFFFF;
    border: 1px solid #000;
    color: #000;
}
.say-hello form label {
    font-size: 15px;
    color: #717171;
}
.say-hello form label span {
    position: relative;
}
.say-hello form label span.required:after {
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background-color: red;
    top: 0;
    right: -10px;
}
.say-hello #success-Contact,
.say-hello #error-Contact {
    display: none;
}
.say-hello #contact label.error {
    width: 100%;
    float: left;
    color: #f50c1a;
    margin-top: 10px;
}
.say-hello #contact input.error {
    width: 100%;
    border: 2px solid #f50c1a;
}
.say-hello #contact textarea.error {
    width: 100%;
    border: 2px solid #f50c1a;
}

/*----------------------------------------------------------------------------------------
 BUTTON FILE
----------------------------------------------------------------------------------------*/

.btn-file {
    border: 1px solid #b1b1b1;
    border-radius: 2px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
    text-align: left;
    width: 100%;
    height: 58px;
    padding: 0 20px;
    line-height: 54px;
    font-size: 14px;
    color: #888f96;
}
.btn-file:hover {
    background-color: #FFFFFF;
    border: 1px solid #000;
    color: #000;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}
.btn-file .icon-attach_file {
    display: inline-block;
    position: relative;
    bottom: -2px;
    margin-right: 4px;
    font-size: 18px;
}

/*----------------------------------------------------------------------------------------
 BUTTON EFFECT
----------------------------------------------------------------------------------------*/

.btn-effect {
    background: #000;
    border: 1px solid #000;
    box-shadow: none !important;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: block;
    outline: none;
    color: #fff;
}
.btn-effect:hover {
    border: 1px solid #c20607;
    color: #fff;
}
.btn-effect .btn-effect-text {
    transition: all .3s ease-out;
    background: transparent;
    position: relative;
    display: block;
    padding: 10px 20px;
    z-index: 3;
}
.btn-effect:hover .btn-effect-text {
    color: #fff;
}
.btn-effect .btn-bg-color {
    transition: width 0.4s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #c20607;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    z-index: 1;
}
.btn-effect:hover .btn-bg-color {
    width: 225%;
    height: 562.5px;
}
.btn-effect .icon {
    position: relative;
    margin-right: 10px;
    top: 0px;
}

/*----------------------------------------------------------------------------------------
 DESIGN GRIDS
----------------------------------------------------------------------------------------*/

.about-size .bg-title::before {
    top: -90px;
    font-size: 170px;
}
.grids-simple .col-lg-4 {
    padding-bottom:30px;
}
.grids-simple .features-item:hover h4 {
    position: relative;
}
.grids-simple  .features-item {
    padding: 25px 25px 25px 25px;
    transition-duration: 0.4s;
    background: #fff;
    border-radius: 4px;
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
}
.grids-simple .features-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10);
}
.grids-simple-NO .features-item h4::before {
    background: url(https://itop.media/assets/img/design/logo.png) center center no-repeat;
    position: absolute;
    display: block;
    content: "";
    bottom: 3px;
    right: -30px;
    width: 21px;
    height: 19px;
    -moz-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    -webkit-transform: scale(0) rotate(195deg);
    -moz-transform: scale(0) rotate(195deg);
    -o-transform: scale(0) rotate(195deg);
    transform: scale(0) rotate(195deg);
}
.grids-simple-NO .features-item:hover h4::before {
    -moz-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}
.grids-simple .features-item {
    padding: 20px 25px 25px 25px;
}
.grids-simple .icon-item {
    display: block;
    width: 100%;
}
.grids-simple img {
    height: 74px;
    margin-bottom: 10px;
}
.grids-simple h4 {
    margin-bottom: 10px;
}
.grids-simple a {
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 0px;
    color: #9a9a9a;
}
.grids-simple .features-item:hover a {
    color: #ff0000;
}
.grids-simple .features-item p {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    color: #3d3d3d;
    margin-bottom: 15px;
}

/*----------------------------------------------------------------------------------------
 CALL TO ACTION bg-min.jpg
----------------------------------------------------------------------------------------*/

.call-to-action {
    background: url(../img/bg_cta_1.png) #181C1F center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 100px 0;
}
.call-to-action-col {
    font-size: 14px;
    color: #c4c4c4;
}
.call-to-action-col h2 {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
    font-size: 48px;
    color: #fff;
    line-height: 1.3;
}
.call-to-action-btn {
    position: relative;
    margin-top: 20px;
}
.call-to-action-btn a {
    background: #da1c1c;
    border-radius: 2px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 310px;
    height: 50px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}
.call-to-action-btn a:hover {
    box-shadow: 0 5px 30px 0 rgba(255, 0, 0, 1);
    text-decoration: none;
    color: #000;
}
.call-to-action-btn a::before {
    transition: all .5s cubic-bezier(.46, .45, .12, .98);
    transform-origin: left center;
    transform: scaleX(0);
    background: rgba(255, 255, 255, 1.2);
    position: absolute;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.call-to-action-btn a:hover::before {
    transform: scaleX(1);
}
.call-to-action-btn a span {
    position: relative;
    z-index: 1;
}
.call-to-action-btn a:hover.call-to-action-btn a span {
    transition: 0.4s;
    color: #000;
}
@media (max-width:992px) {
.call-to-action h2 {
    font-size: 31px;
    line-height: 37px;
    }
}

/*----------------------------------------------------------------------------------------
 HOME HEADER BLOCK
----------------------------------------------------------------------------------------*/

.main-header-red {
    padding: 15px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 55px;
    line-height: 38px;
    color: #ff0c0c;
    letter-spacing: .0em;
    -webkit-text-fill-color: #0000008c;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ff0000;
}
.typer-block {
    display: block;
    min-height: 128px;
}
.main-header {
    display: block;
    font-size: 55px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
    letter-spacing: .02em;
    font-weight: 800;
    color: #fff;
    padding: 15px 0px 15px 0px;
    margin-bottom: 0px;
    border-radius: 4px;
    position: relative;
    line-height: 38px;
    text-transform: uppercase;
    text-align: left;
}
.typed-text {
    display: inline-block;
    position: relative;
}
.typed-text {
    display: inline-block;
    font-size: 55px;
    letter-spacing: .02em;
    font-weight: 800;
    color: #fff;
    padding: 0px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    position: relative;
    line-height: 38px;
    text-transform: uppercase;
    text-align: left;
}
.typed-text span {
    background: rgba(255, 14, 14, 0.88);
    display: inline-block;
    font-size: 50px;
    letter-spacing: .02em;
    font-weight: 800;
    color: #fff;
    padding: 13px 15px 13px 15px;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
    margin-right: 15px;
    border-radius: 1px;
    position: relative;
    line-height: 38px;
    text-transform: uppercase;
    text-align: left;
}
.typed-text .typer-focus {
    text-shadow: 1px 1px 1px rgba(255,255,255, 0.5) !important;
    background: #FFFFFF !important;
    color: #000 !important;
}
.typed-text .typed-into {
    text-shadow: 1px 1px 1px rgba(255,255,255, 0.5);
    background: #fff;
    color: #000;
}
.typed-text .into-focus-NO {
    text-shadow: 1px 1px 1px rgba(0,0,0, 0) !important;
    background: rgba(0, 0, 0, 0.88) !important;
    color: #ffe500 !important;
}
.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
    color: #fff;
    position: relative;
    font-weight: 400 !important;
    font-size: 88px;
    bottom: -15px;
    left: -12px;
    padding: 0px;
    margin: 0px;
    line-height: 54px;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* typer mobile fix */
@media only screen and (max-width: 720px) {
    .video-hero .inner {
        margin-top: 50px;
    }
    .typer-block {
        display: block;
        min-height: 150px;
    }
    .typed-text {
        text-align: center;
    }
    .typed-mobile {
        display: block !important;
        text-align: center;
    }
    .main-header {
        text-align: center;
        font-size: 30px;
        font-weight: 800;
    }
    .typed-text span {
        background: rgba(0, 0, 0, 0);
        padding: 10px 15px 10px 15px;
        margin: 15px 15px 0px 15px;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    .typed-text .typed-into {
        -moz-transform: rotate(36deg);
        -o-transform: rotate(36deg);
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
        background: rgba(0, 0, 0, 0.62);
        border: 1px solid #ff0e0e;
        font-weight: 300;
        font-size: 30px;
        margin: 0px auto;
        margin-bottom: 10px;
        color: #ffffff;
    }
    .typed-cursor {
        display: none;
    }
    .video-hero a {
        display: block;
        max-width: 280px;
        margin: 0px auto;
    }
}

/*----------------------------------------------------------------------------------------
 BASIC STYLES
----------------------------------------------------------------------------------------*/

.header-title {
    display: block;
    font-size: 55px;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
    letter-spacing: .05em;
    font-weight: 800;
    color: #fff;
    padding: 15px 0px 15px 0px;
    margin-bottom: 10px;
    border-radius: 4px;
    position: relative;
    line-height: 37px;
    text-transform: uppercase;
    text-align: left;
}
.block-title-align {
    text-align: left;
}
.block-title.white {
    color: white;
}
.span-red {
    color: #f33333;
}
.span-very-red {
    color: #ff2020;
}
.span-red-action {
    font-size: 35px;
    font-weight: 900;
    color: #f91b1b;
}
.block-title {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
    text-transform: uppercase;
}
.block-title-line {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
    text-transform: uppercase;
}
.awards .head-text {
    margin-left: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 34px;
    line-height: 48px;
    color: #000;
}
@media screen and (max-width: 1200px) {
    .block-title {
        font-size: 34px !important;
    }
}
@media screen and (max-width: 1200px) {
    .page-header .all-inner {
        margin-left: 0px;
        margin-right: 0px;
    }
}
@media screen and (max-width: 768px) {
    .page-header .all-inner {
        margin-left: 0px;
        margin-right: 0px;
    }
    .header-title {
        margin-top: 30px;
        margin-bottom: 0px;
        font-size: 28px !important;
        line-height: 37px;
    }
    .page-header .all-inner::before, .page-header .all-inner::after {
        display: none;
    }
    .block-title {
        font-size: 31px !important;
        line-height: 37px;
    }
    .span-red-action {
        margin-top: 0px;
        padding: 0px !important;
        font-size: 18px !important;
    }
}

/*----------------------------------------------------------------------------------------
 RORKS FOLIO
----------------------------------------------------------------------------------------*/

.work-desc {
    text-align: center;
}
.work-desc h4 {
    padding-top: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #3d3d3d;
}
.work-desc p {
    font-size: 16px;
    line-height: 22px;
    color: #6c6c6c;
}
.work-desc a {
    position: relative;
    display: inline-block;
    margin-top: 25px;
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
}
.work-desc a:before {
    content: "";
    width: 0;
    height: 2px;
    background: #ff0000;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.work-desc a:hover {
    text-decoration: none;
}
.work-desc a:hover:before {
    width: 100%;
}

/*----------------------------------------------------------------------------------------
 PPC RATES
----------------------------------------------------------------------------------------*/

.new-rates {
    padding: 100px 0px 120px 0px;
}
.custom-row {
    display: flex;
    flex-wrap: wrap;
}
.custom-row.no-padding-bloc .col-item {
    background: #fff;
    border: 0.5px solid rgb(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    padding: 40px;
}
.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-bottom: 40px;
}
.price-line::after {
    position: absolute;
    content: '';
    width: calc(100% - 20px);
    left: 10px;
    bottom: 0;
    height: 1px;
    background: rgb(0, 0, 0, 0.1);
}
.price-line .name {
    font-weight: 800;
    font-size: 22px;
    line-height: 1.4;
    text-transform: uppercase;
}
.price-line .price {
    font-weight: 800;
    font-size: 40px;
    line-height: 1.4;
    color: #FF0000;
    text-shadow: 0 4px 20px rgba(255, 0, 0, 0.0);
}
.info-line {
    padding-top: 50px;
    padding-bottom: 20px;
    text-align: left;
    position: relative;
}
.info-line::after {
    position: absolute;
    content: '';
    bottom: 0;
    width: calc(100% - 20px);
    left: 10px;
    height: 1px;
    background-color: rgb(0, 0, 0, 0.1);
}
.dots-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}
.dots-list li {
    position: relative;
    clear: both;
    margin: 0 0 2px 0;
    padding: 0;
    padding-left: 15px;
    font-size: 15px;
    line-height: 22px;
    color: #000;
}
.dots-list li::after {
    position: absolute;
    content: '';
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50px;
    background-color: #ff0000;
}
.col-item .btn-more {
    display: inline-block;
    position: relative;
    margin-top: 50px;
    margin-left: 15px;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    color: #888;
}
.col-item .btn-more::after {
    border-bottom: 1px dotted rgba(72, 77, 85, .15);
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    content: '';
    width: 100%;
    bottom: 0;
    left: 0;
}
.col-item .btn-more:hover::after {
    -moz-transition: all 0.01s;
    -webkit-transition: all 0.01s;
    -o-transition: all 0.01s;
    transition: all 0.01s;
    border-bottom: 1px dotted #fff;
}
.rates-block-btn {
    padding-top: 30px;
    padding-left: 15px;
    text-align: left;
}
.rates-block-btn a {
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    background: #da1c1c;
    border: 1px solid #F33340;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 45px;
    padding: 0px 50px 0px 30px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}
.rates-block-item:hover .rates-block-btn a {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #da1c1c;
    text-decoration: none;
    color: #fff;
}
.rates-block-btn a:hover {
    transition: all .5s ease;
    background: #da1c1c;
    text-decoration: none;
    color: #fff;
}
.rates-block-btn a::before {
    position: absolute;
    content: '';
    width: 40px;
    bottom: 0;
    background: linear-gradient(-92deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .3));
    height: 99%;
    left: 0;
    -webkit-transform: skewX(-42deg) translateX(-15vw);
    transform: skewX(-42deg) translateX(-15vw);
    will-change: transform;
    z-index: 1;
    color: #fff;
}
.rates-block-btn a:hover:before {
    -webkit-transform: skewX(-42deg) translateX(25vw);
    transform: skewX(-42deg) translateX(25vw);
    -webkit-transition: 1.2s ease;
    transition: 1.2s ease;
}
.rates-block-btn a::after {
    background: url(../img/arrow-rates-white.svg) no-repeat;
    position: absolute;
    content: '';
    width: 15px;
    height: 10px;
    right: 20px;
}
.rates-block-item:hover .rates-block-btn a::after {
    transition: 0.5s;
    content: '';
}
.hide-list {
    display: none;
}
@media screen and (max-width: 991px) {
    .custom-row.no-padding-bloc .col-item {
        width: 100%;
        margin-bottom: 15px;
    }
    .custom-row.no-padding-bloc .col-lg-4 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .rates-block-btn {
        padding-top: 10px;
        text-align: center;
    }
}

/*----------------------------------------------------------------------------------------
 PPC CASES
----------------------------------------------------------------------------------------*/

.ppc-section {
    padding: 100px 0px 120px 0px;
}
.section-text-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.ppc-slider-item {
    border: 1px solid #E6E1E1;
}
.ppc-img-block img {
    width: 100%;
}
.ppc-info-block {
    padding: 30px;
}
.ppc-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 58px;
    padding-bottom: 16px;
}
.ppc-title a {
    color: #000;
}
.ppc-desc {
    font-size: 14px;
    line-height: 1.2;
    padding-bottom: 30px;
    border-bottom: 1px solid #E6E1E1;
}
.ppc-number-line {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}
.ppc-number-line .ppc-number-col {
    padding-right: 30px;
}
.ppc-number-line .ppc-number-col:last-child {
    padding-right: 0;
}
.number-col-name {
    font-size: 13px;
    line-height: 12px;
    color: #787878;
}
.number-col-num {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.3;
    color: #F91D1D;
    padding-top: 16px;
}
@media screen and (max-width:520px) {
    .ppc-info-block {
        padding: 15px;
    }
    .number-col-num {
        font-size: 20px;
    }
}

/*----------------------------------------------------------------------------------------
 FOOTER
----------------------------------------------------------------------------------------*/

.footer {
    background: #0f1316;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 70px;
    color: #fff;
}
.footer-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    z-index: 0;
}
.footer-lines .line {
    position: relative;
    width: 20%;
    height: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.footer .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}
.footer .links ul {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0 -30px;
}
.footer .links ul li {
    margin-left: 30px;
    margin-right: 24px;
}
.footer .links ul li a {
    transition: 0.4s ease-in-out;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}
.footer .links ul li a:hover {
    text-decoration: none;
}
.footer .links ul li a:before {
    content: "";
    width: 0;
    height: 2px;
    background: #ff0000;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.footer .links ul li a:hover:before {
    width: 100%;
}
.footer .links .horiz-line {
    background: rgb(187, 187, 187);
    width: 100%;
    height: 1px;
    max-width: 160px;
}
.footer .contacts,
.footer .desc,
.footer .slogan {
    padding: 54px 0px 54px 0px;
}
.footer .contacts,
.footer .desc {
   max-width: 300px;
}
.footer h2 {
    width: 100%;
    text-transform: uppercase;
    max-width: 200px;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
}
.footer p {
    width: 100%;
    margin-bottom: 0.1rem;
    opacity: 0.75;
}
.footer p.title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}
.footer .contacts {
    margin-right: 0px;
}
.footer .copywrite .desc {
    font-weight: 400;
    font-size: 14px;
    color: #cecece;
}
.footer .copywrite .desc p {
    margin-bottom: 0px;
}
.footer .social ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    margin: 0 -15px;
}
.footer .social ul li {
    margin: 0 15px;
}
.footer .social ul li a {
    transition: 0.4s ease-in-out;
    display: inline-block;
    position: relative;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 14px;
    color: #cecece;
}
.footer .social ul li a:hover {
    text-decoration: none;
    color: #ffffff;
}
.footer .social ul li a:before {
    content: "";
    width: 0;
    height: 2px;
    background: #ff0000;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.footer .social ul li a:hover:before {
    width: 100%;
}
/*------ footer media ------*/
@media only screen and (max-width: 1200px) {
    .js-pointer {
        display: none ! important;
    }
    .page-header .all-inner::before {
        right: 20px;
    }
    .footer .links ul li a {
        letter-spacing: 0.2px;
        font-weight: 600;
        font-size: 13px;
    }
    .footer .links .horiz-line {
        max-width: 60px;
    }
    .footer .main-link {
        display: none;
    }
}
@media (max-width: 992px) {
    .footer .links,
    .footer .social {
        flex-direction: column;
        align-items: flex-start;
    }
    .horiz-line,
    .links .logo {
        display: none;
    }
}
@media (max-width: 768px) {
    .footer .container {
        padding-left: 25px;
    }
    .footer .py-4, .footer .py-5 {
        padding-top: 0px!important;
        padding-bottom: 0px!important;
    }
    .footer .links ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: left;
        text-align: left;
        margin: 0px;
        margin-bottom: 25px;
    }
    .footer .links ul li {
        margin: 0px;
        margin-top: 15px;
    }
    .footer .main-link {
        display: block;
    }
    .footer .desc,
    .footer .slogan {
        padding: 24px 0px 24px 0px;
    }
    .footer .contacts {
        padding: 14px 0px 24px 0px;
    }
    .footer .social ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: left;
        text-align: left;
        margin: 0px;
        margin-bottom: 25px;
        padding: 0px;
    }
    .footer .social ul li {
        margin: 0px;
        margin-top: 15px;
    }
}

/* MySocial Widget */

.mysocial-cont {
    position: fixed;
    bottom: 20px;
    left: 40px;
    z-index: 1000;
}
.mysocial,
.mysocial:before,
.fab {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
}
.mysocial:after {
    display: block;
    position: absolute;
    border: 50%;
    border-radius: 50%;
    border: 1px solid #e31616;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    animation: pulse 2s infinite;
}
.mysocial {
    position: relative;
    height: 50px;
    width: 50px;
    background: #e31616;
    z-index: -1;
    transition: 0.39s;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.mysocial:before,
.mysocial:after {
    content: '';
    will-change: transform;
}
.mysocial:before {
    background: url('../img/widget/messbtn.svg') center/23px no-repeat;
    z-index: 5;
    transition: 0.3s;
    box-shadow: 0px 0px 0px 2px rgba(227, 22, 22, 0.5);
}
.mysocial.active {
    width: 45px;
    height: 45px;
}
.mysocial.active:before {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    background: url('../img/widget/cancel2.svg') center/23px no-repeat;
    background-color: rgb(243,51,51);
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.0);
}
.mysocial.active:after {
    display: none;
}
.fab {
    display: block;
    transition: 0.3s;
    -webkit-animation: 0.3s down forwards;
    animation: 0.3s down forwards;
    opacity: 0;
    will-change: animation;
    pointer-events: none;
}
.fab:hover {
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.3);
}

/*
.fab.viber {
    background: #2fc6f6 url('../img/widget/viber.png') center/46px no-repeat;
    top: -126px;
}
.fab.telegram {
    background: #2fc6f6 url('../img/widget/btntele.png') center/56px no-repeat;
    top: -66px;
}

.fab.facebook {
    background: #ffffff url('../img/widget/messenger.png') center/32px no-repeat;
    top: -5px;
}

*/

.fab.viber {
    background: #2fc6f6 url('../img/widget/viber.png') center/46px no-repeat;
    top: -66px;
}
.fab.telegram {
    background: #2fc6f6 url('../img/widget/btntele.png') center/56px no-repeat;
    top: -5px;
}
/*background: #00A2FF*/
.fab.active {
    -webkit-animation: 0.48s up forwards;
    animation: 0.48s up forwards;
    pointer-events: all;
}
.fab.active:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.fab.active:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.fab.active:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.fab.no {
    -webkit-animation: none;
    animation: none;
}
.mysocial-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -5;
    background-color: rgb(0, 0, 0, 0.5);
    transition: 0.3s;
}
.mysocial-bg-active {
    z-index: 50;
    transition: 0.3s;
    opacity: 1;
}
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
@-webkit-keyframes up {
    50% {
        -webkit-transform: translateY(-170%);
        transform: translateY(-170%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%)
    }
}
@keyframes up {
    50% {
        -webkit-transform: translateY(-170%);
        transform: translateY(-170%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%)
    }
}
@-webkit-keyframes down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: 0
    }
}
@keyframes down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: 0
    }
}
@media (max-width: 768px) {
    .mysocial-cont {
    position: fixed;
    bottom: -15px;
    right: 10px;
    left: auto;
}
.mysocial span {
    display: none!important;
}
}

/*----------------------------------------------------------------------------------------
 TECHNO FULL PAGE SLIDER
----------------------------------------------------------------------------------------*/

.techno-slider {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 80px;
}
.techno-block {
    margin-bottom: 80px;
}
.techno-arrow-block {
    margin-left: auto;
    display: flex;
}
.techno-head {
    display: flex;
    align-items: center;
    padding: 13px 20px 13px 25px;
    margin-bottom: 50px;
    border: 1px solid #F1F1F1;
}
.techno-title {
    font-weight: 600;
    font-size: 34px;
    line-height: 1.471em;
    text-transform: uppercase;
}
.techno-arrow {
    width: 32px;
    height: 32px;
    background: #F8F8F8;
    border-radius: 2px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 1px
}
.techno-arrow::after {
    width: 100%;
    height: 100%;
}
.techno-arrow-next::after {
    content: '';
    background: url(../img/tech/arrow_right_web.svg) no-repeat center center;
}
.techno-arrow-prev::after {
    content: '';
    background: url(../img/tech/arrow_left_web.svg) no-repeat center center;
}
.techno-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}
.techno-slider .techno-img {
    margin-bottom: 34px;
    height: 64px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.techno-slider .swiper-slide p {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

/*----------------------------------------------------------------------------------------
 TECH REPLEY SLIDER
----------------------------------------------------------------------------------------*/

.tech-slider {
    background: radial-gradient(26.01% 82.5% at 27.08% 153.1%, #202427 0%, rgba(32, 36, 39, 0) 100%), radial-gradient(36.3% 188.77% at 113.98% -36.6%, #202427 0%, rgba(32, 36, 39, 0) 90.62%), #0F1316;
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 80px;
}
.tech-title {
    font-weight: 600;
    font-size: 34px;
    line-height: 1.471em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 29px;
}
.tech-title .text-red {
    color: #ff1d1d;
}
.tech-swiper {
    height: 172px;
}
.tech-swiper .swiper-wrapper,
.techno-slide {
    height: 100%;
}
.tech-slide,
.tech-slide a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tech-slide a {
    height: 100%;
    border: 1px solid transparent;
    width: 100%;
    transition: all .3s ease
}
.tech-slide a:hover {
    text-decoration: none;
    border-color: #fff;
}
.tech-slide a:hover span {
    color: #fff;
}
.tech-img {
    margin-bottom: 34px;
    height: 64px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-slide span,
.tech-slide a span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    text-align: center;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
    transition: all .3s ease
}
.tech-slide a span:last-child {
    border-bottom: 1px solid transparent;
}
.tech-slide a:hover span:last-child {
    border-color: #FFF;
}

/*----------------------------------------------------------------------------------------
 TECHNO SLIDER MEDIA FIX
----------------------------------------------------------------------------------------*/

@media only screen and (max-width:1400px) {
    .tech-swiper {
        height: 155px;
    }
    .techno-slider {
        padding-top: 100px;
    }
}
@media only screen and (max-width:1200px) {
    .tech-swiper {
        height: 135px;
    }
    .techno-slider {
        padding-top: 80px;
    }
}
@media only screen and (max-width:767px) {
    .techno-slider {
        padding-top: 60px;
    }
    .techno-block {
        margin-bottom: 60px;
    }
    .tech-title,
    .techno-title {
        font-size: 28px;
    }
    .techno-img {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width:576px) {
    .tech-title,
    .techno-title {
        font-size: 28px;
        text-align: left;
    }
}

/* ABOUT REED MORE TEXT
-----------------------------------------------------------*/
.about-grey {
    background: #f7f7f7!important;
}
.card-text {
    padding: 20px 24px 20px 24px;
}
.card-text .inner {
    position: relative;
    overflow: hidden;
    height: 300px;
}
/* .card-text .inner p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #2f3133;
} */
.card-text .gradient {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(247,247,247, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(247,247,247, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(247,247,247, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#F7F7F7', GradientType=0);
    position: absolute;
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
}
.card-text .inner h1 {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
    text-transform: uppercase;
}
.card-text .inner h2, .card-text .inner h3 {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 44px;
    text-transform: uppercase;
}

/* 
.dots-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}
.dots-list li {
    border: 1px solid rgba(241, 244, 246, 1.0);
    position: relative;
    clear: both;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #2f3133;
}
.dots-list li::after {
    position: absolute;
    content: '';
    left: 2px;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -3px;
    border-radius: 50px;
    background-color: #ffc107;
} */