#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%
}

    #preloader:before {
        content: "";
        width: 80px;
        height: 80px;
        border: 3px solid #e42530;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        animation-name: LoaderCicle;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear
    }

    #preloader:after {
        content: "";
        width: 80px;
        height: 80px;
        border: 3px solid #e42530;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        animation-name: LoaderCicle;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-delay: 1s
    }

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }

    10% {
        width: 10px;
        height: 10px;
        opacity: 1
    }

    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1
    }

    100% {
        width: 70px;
        height: 70px;
        opacity: 0
    }
}

a:hover, a:active {
    color: #e42530;
    text-decoration: none
}

.h-100vh {
    height: 100vh
}

.primary-overlay[data-overlay-dark]:before {
    background: #e42530
}

.secondary-overlay[data-overlay-dark]:before {
    background: #1f2732
}

.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(31,39,50,0.76);
    background: linear-gradient(-90deg, black, #1f2732 35%);
}

.text-primary, .text-primary-hover:hover {
    color: #e42530 !important
}

.bg-primary {
    background-color: #e42530 !important
}

.text-secondary, .text-secondary-hover:hover {
    color: #1f2732 !important
}

.bg-secondary {
    background-color: #1f2732 !important
}

.text-dark, .text-dark-hover:hover {
    color: #1f2732 !important
}

.border-primary-color {
    border-color: #e42530 !important
}

.border-secondary-color {
    border-color: #1f2732 !important
}

.form-control {
    border-radius: 0
}

.primary-shadow {
    box-shadow: 0 0 70px rgba(0,0,0,0.08)
}

.text-white-hover:hover {
    color: #fff !important
}

.text-white-hover-light:hover {
    color: rgba(255,255,255,0.65) !important
}

.min-vh-100 {
    min-height: 100vh
}

.border-top-radius-10 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.image-hover {
    position: relative;
    display: block;
    overflow: hidden
}

    .image-hover:before {
        position: absolute;
        top: 0;
        left: -100%;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,0)), to(rgba(255,255,255,0.3)));
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
        -webkit-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        transform: skewX(-25deg)
    }

    .image-hover:hover:before {
        -webkit-animation: shine 1s;
        animation: shine 1s
    }

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.ani-left-right {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: LeftRight;
    animation-timing-function: ease-in-out
}

@keyframes LeftRight {
    0% {
        transform: translate(0px, 0px)
    }

    65% {
        transform: translate(30px, 0)
    }

    100% {
        transform: translate(0px, 0px)
    }
}

.shape-img-one {
    transform: rotate(180deg)
}

.ani-move {
    animation: ImageMove 4s infinite linear;
    animation-duration: 5s
}

@keyframes ImageMove {
    0% {
        transform: translate(0px, 0px)
    }

    25% {
        transform: translate(10px, 20px)
    }

    50% {
        transform: translate(30px, 30px)
    }

    75% {
        transform: translate(20px, 10px)
    }

    100% {
        transform: translate(0px, 0px)
    }
}

.ani-top-bottom {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: TopBottom;
    animation-timing-function: ease-in-out
}

@keyframes TopBottom {
    0% {
        transform: translate(0px, 0px)
    }

    65% {
        transform: translate(0, 30px)
    }

    100% {
        transform: translate(0px, 0px)
    }
}

.round-shape-one {
    position: absolute;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    border: 1px dashed rgba(225,73,124,0.7);
    animation: rotated 10s infinite linear
}

    .round-shape-one:before {
        content: "";
        width: 12px;
        height: 12px;
        position: absolute;
        top: 50%;
        left: -6px;
        background: #e42530;
        border-radius: 50%
    }

@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #e42530;
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 9999;
    outline: 0;
    -webkit-transition: all .3s ease
}

    .scroll-to-top i {
        color: #fff
    }

    .scroll-to-top:hover {
        color: #fff;
        background: #1f2732
    }

        .scroll-to-top:hover i {
            color: #fff
        }

    .scroll-to-top:visited {
        color: #fff;
        text-decoration: none
    }

.list-style1 li {
    margin-bottom: 15px
}

    .list-style1 li:last-child {
        margin-bottom: 0
    }

    .list-style1 li a {
        color: rgba(255,255,255,0.6)
    }

        .list-style1 li a:hover {
            color: #e42530
        }

.list-style2 {
    list-style: none;
    padding-left: 0
}

    .list-style2 li {
        line-height: 32px;
        padding-left: 30px;
        position: relative;
        margin-bottom: 8px
    }

        .list-style2 li:last-child {
            margin-bottom: 0
        }

        .list-style2 li:before {
            content: '\e64c';
            font-family: 'themify';
            font-size: 18px;
            position: absolute;
            top: 0;
            left: 0;
            font-weight: 700;
            line-height: 35px;
            color: #e42530
        }

.list-style02 li {
    display: inline-block;
    margin-right: 2rem
}

    .list-style02 li:last-child {
        margin-right: 0
    }

    .list-style02 li a {
        color: rgba(255,255,255,0.6)
    }

        .list-style02 li a:hover {
            color: #e42530
        }

.list-style3 {
    list-style: none;
    padding: 0;
    margin: 0
}

    .list-style3 li {
        margin-bottom: 15px;
        border-bottom: 1px solid #efefef;
        padding-bottom: 15px
    }

        .list-style3 li:last-child {
            margin-bottom: 0;
            border-bottom: none;
            padding-bottom: 0px
        }

.btn-style1 {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    color: #ffffff;
    background: #e42530;
    padding: 14px 32px !important;
    border-radius: 0;
    z-index: 1;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out 0s
}

    .btn-style1:hover {
        background: #1f2732
    }

    .btn-style1 span {
        position: relative;
        z-index: 9;
        color: #ffffff
    }

    .btn-style1.secondary {
        background: #1f2732
    }

        .btn-style1.secondary:before {
            border-color: #e42530
        }

    .btn-style1.white-hover:hover, .btn-style1.white-hover:active, .btn-style1.white-hover:focus {
        background: #fff;
        transition: all 0.4s ease-in-out 0s
    }

        .btn-style1.white-hover:hover span, .btn-style1.white-hover:active span, .btn-style1.white-hover:focus span {
            color: #1f2732;
            transition: all 0.4s ease-in-out 0s
        }

    .btn-style1.white-border:before {
        border-color: #fff
    }

    .btn-style1.medium {
        padding: 12px 36px !important
    }

    .btn-style1.small {
        padding: 9px 27px !important;
        font-size: 15px
    }

@media screen and (min-width: 992px) {
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1 {
        color: #fff;
        border: 1px solid transparent
    }

        .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:hover, .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:active, .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:focus {
            color: #e42530;
            border: 1px solid #e42530
        }
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle
}

    .top-bar-info ul {
        margin-bottom: 0
    }

    .top-bar-info li {
        font-weight: 500;
        color: #fff;
        list-style-type: none;
        font-size: 14px;
        padding: 0 5px 0;
        display: inline-block;
        margin-bottom: 0
    }

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0
}

.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom
}

.top-social-icon {
    padding: 0;
    float: right;
    margin: 0
}

    .top-social-icon li {
        font-size: 14px;
        list-style-type: none;
        float: left;
        text-align: center;
        margin: 0;
        padding: 0 7px
    }

        .top-social-icon li:last-child {
            padding-right: 0
        }

            .top-social-icon li:last-child a {
                padding-right: 0
            }

        .top-social-icon li a {
            color: #fff;
            line-height: 28px;
            -webkit-transition-duration: .3s;
            transition-duration: .3s;
            padding: 0 3px
        }

            .top-social-icon li a:hover {
                color: rgba(255,255,255,0.65)
            }

.navbar-nav li.current > a, .navbar-nav li.active > a {
    color: #e42530
}

.attr-nav > ul > li > a.butn {
    color: #fff
}

.navbar > ul > li.current > a:after {
    border-color: transparent #e42530 #e42530 transparent
}

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
    color: #e42530
}

.menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #e42530 #e42530 transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #e42530
}

    .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
        color: #e42530
    }

.menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #e42530
}

.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #e42530 #e42530 transparent
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active > a, .menu_area-light .navbar-nav li.has-sub a:hover {
        color: #e42530
    }

    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: #e42530
    }

    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #e42530
    }

    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #e42530
    }

        .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
            border-color: transparent #e42530 #e42530 transparent
        }

    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
        border-color: transparent #e42530 #e42530 transparent
    }

    .header-style2.scrollHeader .navbar-nav li.current > a {
        color: #e42530
    }

        .header-style2.scrollHeader .navbar-nav li.current > a:hover {
            color: #e42530
        }

    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #e42530 #e42530 transparent
    }

    .header-style2 .navbar ul ul li.active > a {
        color: #e42530
    }

    .header-style2 .navbar-nav li.has-sub a:hover, .header-style2 .navbar-nav li.has-sub a:active, .header-style2 .navbar-nav li.has-sub a:focus {
        color: #e42530
    }

    .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
        color: #e42530
    }

    .header-style2 .navbar > ul > li.has-sub > a:hover:after, .header-style2 .navbar > ul > li.has-sub > a:active:after, .header-style2 .navbar > ul > li.has-sub > a:focus:after {
        border-color: transparent #e42530 #e42530 transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #e42530
    }

        .header-style1 .navbar-toggler:after {
            border-top: 2px solid #fff;
            border-bottom: 2px solid #fff
        }

        .header-style1 .navbar-toggler:before {
            background: #fff
        }

        .header-style1 .navbar-toggler.menu-opened:after, .header-style1 .navbar-toggler.menu-opened:before {
            background: #fff
        }
}

.header-style2 .navbar-nav li.current > a {
    color: #e42530
}

.header-style2 .navbar > ul > li.current > a:after {
    border-color: transparent #e42530 #e42530 transparent
}

.header-style2.scrollHeader .navbar-nav li.current > a {
    color: #e42530
}

    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
        color: #e42530
    }

.header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #e42530 #e42530 transparent
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
        color: #e42530
    }

    .header-style2 .butn.secondary:before {
        background: #ffffff
    }

    .header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
        color: #1f2732 !important
    }

    .header-style2.scrollHeader .butn.secondary:before {
        background: #e42530
    }

    .header-style2.scrollHeader .butn.secondary:hover, .header-style2.scrollHeader .butn.secondary:focus, .header-style2.scrollHeader .butn.secondary:active {
        color: #fff !important
    }
}

.slider-fade1 .owl-item {
    position: relative
}

.slider-fade1 h1 {
    margin-bottom: 25px;
    animation-delay: 1.2s
}

    .slider-fade1 h1 span {
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #fff
    }

.slider-fade1 p {
    animation-delay: 0.8s
}

.slider-fade1 a {
    animation-delay: 1.6s
}

.slider-fade1 .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    margin: 0 !important
}

.slider-fade1.owl-theme .owl-nav {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translate(-50%)
}

.slider-fade1.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 4px
}

.slider-fade1.owl-theme .owl-nav button.owl-prev span, .slider-fade1.owl-theme .owl-nav button.owl-next span {
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 50%
}

.slider-fade1.owl-theme .owl-nav button.owl-prev:hover span, .slider-fade1.owl-theme .owl-nav button.owl-next:hover span {
    background: #e42530;
    transition: .4s
}

.slider-fade1.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent
}

.banner-style01 .main-title {
    font-size: 120px;
    line-height: 1
}

@media screen and (max-width: 991px) {
    .banner-style01 .main-title {
        font-size: 100px
    }
}

@media screen and (max-width: 575px) {
    .banner-style01 .main-title {
        font-size: 50px
    }
}

.slider-fade3 .title {
    animation-delay: 1.2s
}

.slider-fade3 .small-title {
    animation-delay: 0.8s
}

.slider-fade3 a {
    animation-delay: 1.6s
}

.slider-fade3.owl-theme .owl-nav {
    margin-top: 0
}

.slider-fade3.owl-carousel.owl-theme .owl-dots {
    position: absolute;
    bottom: 50px;
    width: 100%;
    margin: 0;
    left: 0
}

.slider-fade3.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    cursor: pointer;
    margin-left: 12px
}

    .slider-fade3.owl-theme .owl-dots .owl-dot:first-child {
        margin-left: 0
    }

    .slider-fade3.owl-theme .owl-dots .owl-dot span {
        display: inline-block;
        width: 16px;
        height: 16px;
        box-sizing: border-box;
        background-color: #e42530;
        border: 3px solid transparent;
        border-radius: 50%;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        transition: .3s;
        margin: 0
    }

    .slider-fade3.owl-theme .owl-dots .owl-dot.active span, .slider-fade3.owl-theme .owl-dots .owl-dot:hover span {
        background-color: transparent;
        border-color: #e42530;
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

.slider-fade3.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    right: inherit;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border: none;
    background: #e42530;
    border-radius: 60px;
    line-height: 65px;
    transition-duration: 500ms;
    left: 15px;
    text-align: center;
    margin: auto;
    opacity: 0.3
}

.slider-fade3.owl-theme .owl-nav .owl-next {
    top: 0;
    bottom: 0;
    left: inherit;
    right: 15px
}

    .slider-fade3.owl-theme .owl-nav .owl-next:hover {
        opacity: 1;
        background: #e42530
    }

.slider-fade3.owl-theme .owl-nav .owl-prev:hover {
    opacity: 1;
    background: #e42530
}

.slider-fade3 .owl-nav i, .slider-fade3 .owl-nav span {
    font-weight: 600;
    color: #fff;
    transition-duration: 500ms;
    font-size: 20px
}

.slider-fade3 .owl-nav .owl-next:hover i, .slider-fade3 .owl-nav .owl-prev:hover i {
    color: #fff
}

.section-title .sm-title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 12px;
    padding-bottom: 12px;
    color: #e42530;
    z-index: 9
}

.section-title h2 {
    position: relative;
    z-index: 9
}

.section-title .sm-title:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 80px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #dedede
}

.section-title .sm-title:after {
    position: absolute;
    content: '';
    height: 8px;
    width: 8px;
    border-radius: 50px;
    background-color: #e42530;
    right: -20px;
    left: auto;
    bottom: -3px;
    animation: pulsex 5s ease infinite alternate
}

.section-title.left .sm-title:before {
    left: 0;
    transform: unset
}

@keyframes pulsex {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100px)
    }
}

.title-sm {
    font-weight: 400;
    position: relative;
    z-index: 2;
    display: inline-block
}

    .title-sm:before {
        content: '';
        background: #e42530;
        height: 8px;
        width: 100%;
        position: absolute;
        bottom: 8px;
        z-index: -1
    }

    .title-sm.banner:before {
        bottom: 15px
    }

@media screen and (max-width: 991px) {
    .title-sm.banner:before {
        bottom: 7px
    }

    .title-sm:before {
        bottom: 3px
    }
}

.title-style1 > span {
    position: relative;
    color: #e42530;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase
}

    .title-style1 > span:before {
        position: absolute;
        content: '';
        right: 0px;
        bottom: 9px;
        width: 40px;
        height: 2px;
        background-color: #272c49
    }

    .title-style1 > span:after {
        position: absolute;
        content: '';
        right: 10px;
        bottom: 14px;
        width: 30px;
        height: 2px;
        background-color: #e42530
    }

.title-style1.white > span:before {
    background-color: #fff
}

.page-title-section {
    padding: 40px 0 40px 0;
}

    .page-title-section.style1 {
        padding: 150px 0
    }

    .page-title-section h1 {
        font-size: 48px;
        line-height: 1;
        text-shadow: 0 0 3px rgba(0,0,0,0.2);
        color: #ffffff;
        margin-bottom: 10px;
        position: relative;
        z-index: 9
    }

.pagetitle-lg-title {
    display: block;
    font-size: 105px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    opacity: 0.2;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    margin: 0 0 -58px 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase
}

.page-title-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    line-height: 1.2
}

    .page-title-section ul li {
        display: inline-block
    }

        .page-title-section ul li:last-child {
            color: #ffffff;
            opacity: 0.80;
            font-size: 16px;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 1px
        }

            .page-title-section ul li:last-child a {
                color: #ffffff;
                opacity: 0.80;
                font-size: 16px;
                font-weight: 700;
                text-transform: capitalize;
                letter-spacing: 1px
            }

        .page-title-section ul li:after {
            content: "";
            font-weight: 700;
            vertical-align: middle;
            background-color: #e42530;
            width: 10px;
            padding: 0 5px 0 10px;
            height: 2px;
            display: inline-block;
            margin: 0 15px
        }

        .page-title-section ul li:last-child:after {
            content: none
        }

        .page-title-section ul li a {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 1px
        }

.page-title-section .shape-1 {
    padding: 20px;
    background: #fff;
    z-index: 3;
    bottom: 73px;
    left: 52px
}

@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 170px 0 90px 0
    }

        .page-title-section h1 {
            font-size: 52px;
            margin-bottom: 10px
        }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 150px 0 90px 0
    }

        .page-title-section.style1 {
            padding: 130px 0
        }

        .page-title-section h1 {
            font-size: 48px
        }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 130px 0 80px 0
    }

        .page-title-section.style1 {
            padding: 100px 0
        }

        .page-title-section h1 {
            font-size: 36px
        }
}

.card-style-01 {
    position: relative;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
    border: none;
    border-bottom: 3px solid transparent;
    box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.07);
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    height: 100%
}

    .card-style-01 .card-price {
        background-color: #001736;
        position: absolute;
        bottom: -50px;
        right: 30px;
        width: 100px;
        color: #fff;
        height: 100px;
        box-shadow: 0 0 40px 5px rgba(0,0,0,0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .card-style-01 .price-before {
        position: absolute;
        top: 0;
        left: 0;
        writing-mode: tb-rl;
        background: #fe7c00;
        padding: 15px 5px;
        color: #fff
    }

    .card-style-01 .pricing-shape1 {
        position: absolute;
        top: -10px;
        left: 38px;
        width: 1px;
        height: 50px;
        background-color: #fe7c00;
        transform: rotate(45deg)
    }

    .card-style-01 .pricing-shape2 {
        position: absolute;
        top: -19px;
        left: 47px;
        width: 1px;
        height: 91px;
        background-color: #fe7c00;
        transform: rotate(45deg)
    }

    .card-style-01:hover {
        -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.1);
        box-shadow: 0 10px 60px rgba(0,0,0,0.1);
        border-bottom: 3px solid #e42530
    }

    .card-style-01 .pricing-top {
        position: absolute;
        top: 30px;
        left: 0px;
        padding: 10px 23px 11px 23px;
        background-color: #1f2732;
        border-radius: 0px 30px 30px 0px;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        position: absolute;
        color: #fff;
        z-index: 1;
        line-height: 1
    }

.card-style02 {
    box-shadow: 4px 4px 36px 0px rgba(0,0,0,0.07)
}

    .card-style02 .card-inner {
        display: block
    }

    .card-style02 .card-category a {
        font-size: 13px;
        text-transform: uppercase;
        line-height: 18px;
        letter-spacing: 1px;
        font-weight: 500;
        color: #e42530
    }

    .card-style02 .card-body {
        padding: 50px 45px 35px;
        text-align: center;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        border-bottom: 3px solid;
        transition: 0.9s;
        border-color: #e42530
    }

        .card-style02 .card-body h3 {
            font-size: 26px;
            line-height: 32px;
            margin-bottom: 18px
        }

    .card-style02 .card-icons {
        width: 100px;
        height: 100px;
        line-height: 100px;
        display: inline-block;
        text-align: center;
        color: #fff;
        margin-bottom: 20px;
        transition: 0.9s;
        background-color: #1f2732;
        position: relative
    }

        .card-style02 .card-icons img {
            position: absolute;
            top: 25px;
            left: 25px;
            width: 55px
        }

    .card-style02 .card-item:hover .card-body {
        opacity: 75%;
        color: #ffffff;
        background-color: #1f2732
    }

    .card-style02 .card-item:hover .card-icons {
        background-color: #e42530
    }

    .card-style02 .card-item:hover .card-body p, .card-style02 .card-item:hover .card-body h3 a {
        color: #ffffff;
        transition: 0.9s
    }

    .card-style02 .card-item:hover .service-readmore a {
        color: #ffffff;
        transition: 0.9s
    }

    .card-style02 .card-item:hover .card-icon img {
        display: none
    }

    .card-style02 .card-icons img:before {
        font-size: 55px;
        margin-bottom: 30px
    }

    .card-style02 .card-item {
        min-height: 454px;
        height: 100%
    }

    .card-style02 .service-readmore a {
        font-size: 14px;
        font-weight: bold;
        position: relative;
        text-transform: uppercase;
        color: #e42530
    }

    .card-style02 .card-icon img {
        position: absolute;
        bottom: 0;
        right: 0;
        display: inline-block;
        z-index: 1;
        opacity: 5%
    }

        .card-style02 .card-icon img:before {
            font-size: 115px;
            line-height: 115px
        }

@media screen and (max-width: 1199px) {
    .card-style02 .card-icons {
        width: 85px;
        height: 85px;
        line-height: 85px;
        margin-bottom: 9px
    }

        .card-style02 .card-icons img {
            position: absolute;
            top: 18px;
            left: 18px
        }

    .card-style02 .card-body {
        padding: 40px 42px 37px
    }

        .card-style02 .card-body h3 {
            margin-bottom: 9px
        }

    .card-style02 .card-item {
        min-height: 420px;
        height: 100%
    }
}

@media screen and (max-width: 767px) {
    .card-style02 .card-body {
        padding: 31px 19px 31px
    }

    .card-style02 .card-item {
        min-height: 340px;
        height: 100%
    }
}

.card-style03 {
    position: relative;
    transition: 0.5s;
    padding: 0px 45px 40px 45px;
    color: inherit;
    z-index: 1;
    margin-top: 40px;
    display: inline-block;
    width: 100%;
    min-height: 380px;
    border-radius: 10px
}

    .card-style03:before {
        content: '';
        height: 100%;
        width: 100%;
        background-color: rgba(31,39,50,0.55);
        border-radius: 10px;
        position: absolute;
        left: 0;
        top: 0;
        transition: .3s;
        z-index: 1
    }

    .card-style03 .icon {
        margin: -40px 0px 30px 0px;
        font-size: 36px;
        background-color: #e42530;
        color: #fff;
        display: inline-block;
        transition: .5s;
        height: 75px;
        width: 75px;
        position: relative;
        z-index: 3;
        text-align: center;
        line-height: 75px;
        border-radius: 50%
    }

        .card-style03 .icon img {
            width: 40px;
            vertical-align: middle;
            margin-top: -4px
        }

    .card-style03:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        transition: all .5s;
        opacity: 0;
        border-radius: 5px
    }

    .card-style03 h3 a {
        position: relative;
        z-index: 1;
        color: #FFFFFF;
        word-break: break-word;
        transition: 0.4s
    }

    .card-style03 .card-content {
        transform: translateY(60px);
        transition-duration: 0.6s;
        opacity: 0;
        transition: 0.6s
    }

    .card-style03 .card-main-btn {
        transition-duration: calc(0.6s/2);
        transition-delay: calc(0.6s/2);
        margin: 0px 0px 0px 0px;
        opacity: 1;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0
    }

    .card-style03 .card-btn {
        display: inline-flex;
        align-items: center;
        position: relative;
        z-index: 1;
        line-height: 1;
        min-height: 19px;
        box-sizing: content-box
    }

        .card-style03 .card-btn a {
            transition: .4s;
            font-size: 21px;
            color: #FFFFFF
        }

    .card-style03:hover {
        background-image: unset !important;
        background-color: #fff !important
    }

        .card-style03:hover h3 a {
            color: #1f2732
        }

        .card-style03:hover .card-content {
            transform: translateY(0);
            opacity: 1
        }

        .card-style03:hover:before {
            opacity: 0
        }

        .card-style03:hover .card-main-btn {
            transition-duration: calc(0.6s/2);
            transition-delay: 0s;
            opacity: 0
        }

        .card-style03:hover .icon {
            background-color: #1f2732;
            color: #fff
        }

.card-style04 {
    overflow: hidden;
    box-shadow: 0 0 70px rgba(0,0,0,0.08);
    border: none
}

    .card-style04 .card-list {
        position: absolute;
        top: 0;
        right: 30px
    }

        .card-style04 .card-list a {
            margin-right: 4px;
            margin-bottom: 4px;
            display: inline-block;
            font-size: 14px;
            color: #ffffff;
            background: #e42530;
            padding: 4px 20px
        }

            .card-style04 .card-list a:hover, .card-style04 .card-list a:active, .card-style04 .card-list a:focus {
                background: #1f2732
            }

.card-style-04 {
    position: relative;
    height: 280px
}

    .card-style-04:hover .card-body {
        transform: rotateY(180deg)
    }

    .card-style-04 .card-body {
        position: relative;
        z-index: 1;
        transition: 0.7s;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        perspective: inherit
    }

    .card-style-04 .card-front, .card-style-04 .card-back {
        padding: 40px;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 10px 8px 35px rgba(49,49,49,0.08);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: rotate(0);
        transition: 0.7s;
        perspective: inherit;
        transform-style: preserve-3d
    }

    .card-style-04 .card-front {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat
    }

    .card-style-04 .card-back {
        transform: rotateY(-180deg);
        background: #e42530;
        text-align: center;
        justify-content: center
    }

.card-front .card-butn span {
    font-size: 18px;
    font-weight: 600;
    color: #232323;
    position: absolute;
    z-index: 1;
    bottom: 20%;
    right: 0;
    padding: 10px 25px;
    background: #fff;
    margin: 0px 0px -15px 0px
}

.card-style-05 .card-body {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%
}

    .card-style-05 .card-body:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
        background-color: rgba(255,73,124,0.9);
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84),opacity 0s 0.5s;
        transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84),opacity 0s 0.5s
    }

.card-style-05:hover .card-body:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84),opacity 0s;
    transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84),opacity 0s
}

.card-style-05 .card-body .portfolio-icon {
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 1
}

    .card-style-05 .card-body .portfolio-icon .top-icon {
        position: relative;
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
        transition: transform 0.4s, opacity 0.2s;
        will-change: transform, opacity
    }

.card-style-05:hover .card-body .portfolio-icon .top-icon {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s,opacity 0.2s 0.2s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s,opacity 0.2s 0.2s
}

.card-style-05 .card-body .portfolio-icon .top-icon a {
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    color: #fff;
    font-size: 24px;
    height: 73px;
    line-height: 70px;
    text-align: center;
    width: 75px;
    background-color: #1f2732
}

.card-style-05 .card-body .portfolio-content {
    position: absolute;
    bottom: 33px;
    z-index: 9;
    left: 25px;
    right: 25px
}

    .card-style-05 .card-body .portfolio-content span {
        position: relative;
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
        transition: transform 0.4s, opacity 0.2s;
        will-change: transform, opacity;
        padding-bottom: 10px;
        display: block
    }

.card-style-05:hover .card-body .portfolio-content span {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s,opacity 0.2s 0.1s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s,opacity 0.2s 0.1s
}

.card-style-05 .card-body .portfolio-content h3 {
    position: relative;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
    transition: transform 0.4s, opacity 0.2s;
    will-change: transform, opacity
}

.card-style-05:hover .card-body .portfolio-content h3 {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s,opacity 0.2s 0.1s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s,opacity 0.2s 0.1s
}

.card-style-05 .card-body.round:after {
    border-radius: 0.3rem
}

@media screen and (max-width: 1199px) {
    .card-style-05 .card-body .portfolio-content {
        bottom: 15px;
        left: 25px
    }

    .card-style-05 .card-body .portfolio-icon .top-icon a {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 17px
    }
}

@media screen and (max-width: 575px) {
    .card-style-05 .card-body .portfolio-icon .top-icon a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px
    }
}

.card-style-06 {
    position: relative;
    border: none
}

    .card-style-06 .service-data {
        width: 80%;
        height: 80px;
        background-color: #fff;
        box-shadow: 10px 10px 60px 0px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        bottom: -32px;
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        opacity: 1;
        transition: all 0.4s ease-out 0s
    }

    .card-style-06 .card-body {
        background-color: #1f2732;
        width: 80%;
        bottom: -220px;
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        opacity: 0;
        transition: all 0.4s ease-out 0s
    }

        .card-style-06 .card-body .service-inner {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            margin-bottom: 20px
        }

        .card-style-06 .card-body .service-title {
            margin-bottom: 0;
            font-size: 22px
        }

    .card-style-06:hover .service-data {
        opacity: 0;
        transition: all 0.4s ease-out 0s
    }

    .card-style-06:hover .card-body {
        opacity: 1;
        transition: all 0.4s ease-out 0s;
        bottom: -80px
    }

    .card-style-06 .date-format {
        background: #e42530;
        padding: 2px 30px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px
    }

@media screen and (max-width: 1199px) {
    .card-style-06 .card-body .service-inner {
        margin-bottom: 10px
    }

    .card-style-06:hover .card-body {
        bottom: -90px
    }
}

@media screen and (max-width: 991px) {
    .card-style-06:hover .card-body {
        bottom: -40px
    }
}

.card-style-07 .card-image {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1
}

.card-style-07 .card-body {
    background: #f5f5f5;
    padding: 20px;
    text-align: center
}

.card-style-07:hover .card-image::before {
    transform: scaleY(1)
}

.card-style-07 .card-image::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0,0,0,0.8);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    opacity: 0.5;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    z-index: 1
}

.card-style-07 .social-icon {
    position: absolute;
    left: 0;
    bottom: 15px;
    right: 0;
    text-align: center;
    z-index: 10
}

.card-style-07:hover .social-icon ul {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg)
}

.card-style-07 .social-icon ul {
    position: relative;
    display: block;
    opacity: 0;
    padding: 0;
    transition: 0.8s;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom
}

    .card-style-07 .social-icon ul li {
        position: relative;
        display: inline-block;
        margin: 0 4px
    }

        .card-style-07 .social-icon ul li:first-child {
            margin-left: 0
        }

        .card-style-07 .social-icon ul li a {
            position: relative;
            display: block;
            width: 45px;
            height: 45px;
            background: #e42530;
            color: #fff;
            font-size: 16px;
            line-height: 48px;
            border-radius: 50%;
            text-align: center;
            transition: all 0.4s linear
        }

            .card-style-07 .social-icon ul li a:hover {
                background: #fff;
                color: #e42530
            }

.card-style-08 {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    background-color: #f9f9f9
}

    .card-style-08 .card-body .card-list li {
        position: relative;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        margin-right: 12px;
        padding-right: 22px
    }

        .card-style-08 .card-body .card-list li:last-child {
            margin: 0px;
            padding: 0px
        }

            .card-style-08 .card-body .card-list li:last-child:before {
                display: none
            }

        .card-style-08 .card-body .card-list li:before {
            position: absolute;
            content: '';
            background: #e42530;
            top: 10px;
            right: 0px;
            width: 6px;
            height: 6px;
            z-index: 1;
            border-radius: 5px
        }

.card-style-09 img {
    -webkit-transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
    transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s
}

.card-style-09:hover img {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg)
}

.card-style11 {
    position: relative;
    height: 100%;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    border: none
}

    .card-style11:hover {
        background-color: #1f2732
    }

        .card-style11:hover h3, .card-style11:hover p, .card-style11:hover a {
            color: #fff
        }

    .card-style11:before {
        position: absolute;
        content: '';
        bottom: 100%;
        left: 0;
        height: 100%;
        width: 100%;
        -webkit-transition: 0.9s cubic-bezier(0.68, 1.55, 0.265, 0.55);
        -moz-transition: 0.9s cubic-bezier(0.68, 1.55, 0.265, 0.55);
        -ms-transition: 0.9s cubic-bezier(0.68, 1.55, 0.265, 0.55);
        -o-transition: 0.9s cubic-bezier(0.68, 1.55, 0.265, 0.55);
        transition: 0.9s cubic-bezier(0.68, 1.55, 0.265, 0.55)
    }

    .card-style11 .card-body {
        padding: 55px 30px 30px 30px
    }

    .card-style11 .card-icon {
        margin-left: 15px;
        position: relative;
        margin-bottom: 20px
    }

    .card-style11 .icon-circle {
        height: 60px;
        width: 60px;
        top: -15px;
        left: -3px;
        border-radius: 50%;
        background: #e42530;
        opacity: 0.1;
        z-index: 0;
        position: absolute
    }

.card-style12 {
    box-shadow: 0px 3px 10px 0px rgba(41,45,194,0.08);
    border-radius: 5px;
    border: none
}

    .card-style12 .price-title {
        color: #8492a6;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 30px
    }

    .card-style12 .price-label {
        position: relative;
        color: #fff;
        font-size: 34px;
        height: 55px;
        line-height: 55px;
        width: 150px;
        margin: 0 auto 40px auto;
        z-index: 1
    }

        .card-style12 .price-label:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            right: 0;
            z-index: -1;
            border-radius: 8px;
            background: #e42530
        }

        .card-style12 .price-label:after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            border-radius: 8px;
            transform: rotate(-6deg);
            background: rgba(255,73,124,0.5)
        }

    .card-style12.bg-secondary .list-style3 a {
        color: #fff
    }

    .card-style12.bg-secondary .list-style3 li {
        border-color: rgba(255,255,255,0.1)
    }

.card-style-13 .card-image {
    position: relative;
    overflow: hidden
}

    .card-style-13 .card-image:before {
        position: absolute;
        top: 0;
        left: -100%;
        z-index: 2;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,0)), to(rgba(255,255,255,0.3)));
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
        -webkit-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        transform: skewX(-25deg);
        z-index: 1
    }

.card-style-13:hover .card-image:before {
    -webkit-animation: shine 1s;
    animation: shine 1s
}

.card-style-13 .card-image, .card-style-13 .card-body {
    position: relative
}

.card-style-13 .card-icon {
    width: 72px;
    height: 72px;
    background-color: #1f2732;
    border: 5px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    color: #fff;
    padding: 0 20px;
    line-height: 1.3;
    position: absolute;
    top: -37px;
    right: 30px;
    transition: 0.5s
}

.card-style-13:hover .card-icon {
    background-color: #e42530;
    color: #fff
}

.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: #e42530;
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s
}

    .video_btn:hover i, .video_btn:focus i {
        color: #fff
    }

    .video_btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 80px;
        width: 80px;
        border: 2px solid #e42530;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: .3;
        animation: pulse-border 1500ms ease-out infinite
    }

    .video_btn:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 95px;
        width: 95px;
        border: 2px solid #e42530;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: .3;
        animation: pulse-border 1500ms ease-out infinite
    }

    .video_btn.small {
        width: 55px;
        height: 55px;
        line-height: 55px
    }

        .video_btn.small:after {
            height: 50px;
            width: 50px
        }

        .video_btn.small:before {
            height: 65px;
            width: 65px
        }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@media screen and (max-width: 1199px) {
    .video_btn {
        height: 75px;
        width: 75px;
        line-height: 75px
    }

        .video_btn:after {
            height: 75px;
            width: 75px
        }

        .video_btn:before {
            height: 90px;
            width: 90px
        }
}

@media screen and (max-width: 991px) {
    .video_btn {
        height: 70px;
        width: 70px;
        line-height: 70px
    }

        .video_btn:after {
            height: 70px;
            width: 70px
        }

        .video_btn:before {
            height: 85px;
            width: 85px
        }

    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1)
        }

        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2)
        }
    }
}

@media screen and (max-width: 767px) {
    .video_btn {
        height: 60px;
        width: 60px;
        line-height: 60px
    }

        .video_btn:after {
            height: 60px;
            width: 60px
        }

        .video_btn:before {
            height: 75px;
            width: 75px
        }
}

.video_btn2 {
    position: relative;
    height: 80px;
    width: 80px;
    background: #E48257;
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s
}

    .video_btn2:hover i, .video_btn2:focus i {
        color: #fff
    }

    .video_btn2:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 80px;
        width: 80px;
        border: 2px solid #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: .3;
        animation: pulse-border 1500ms ease-out infinite
    }

    .video_btn2:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 95px;
        width: 95px;
        border: 2px solid #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: .3;
        animation: pulse-border 1500ms ease-out infinite
    }

    .video_btn2.small {
        width: 50px;
        height: 50px;
        line-height: 50px
    }

        .video_btn2.small:after {
            height: 50px;
            width: 50px
        }

        .video_btn2.small:before {
            height: 65px;
            width: 65px
        }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@media screen and (max-width: 1199px) {
    .video_btn2 {
        height: 75px;
        width: 75px;
        line-height: 75px
    }

        .video_btn2:after {
            height: 75px;
            width: 75px
        }

        .video_btn2:before {
            height: 90px;
            width: 90px
        }
}

@media screen and (max-width: 991px) {
    .video_btn2 {
        height: 70px;
        width: 70px;
        line-height: 70px
    }

        .video_btn2:after {
            height: 70px;
            width: 70px
        }

        .video_btn2:before {
            height: 85px;
            width: 85px
        }

    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1)
        }

        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2)
        }
    }
}

@media screen and (max-width: 767px) {
    .video_btn2 {
        height: 60px;
        width: 60px;
        line-height: 60px
    }

        .video_btn2:after {
            height: 60px;
            width: 60px
        }

        .video_btn2:before {
            height: 75px;
            width: 75px
        }
}

.portfolio-style3 {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    transition: all .4s ease-in-out
}

    .portfolio-style3:before {
        content: '';
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        background: #e42530;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: .4s
    }

    .portfolio-style3:hover:before {
        opacity: 0.8;
        visibility: visible;
        border-radius: 5px
    }

    .portfolio-style3 .portfolio-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1
    }

        .portfolio-style3 .portfolio-content .portfolio-inner-content {
            padding: 20px;
            transform: scale(0, 0);
            transition: all 500ms ease;
            background: #ffffff;
            border-bottom-right-radius: 5px;
            border-bottom-left-radius: 5px;
            text-align: center
        }

    .portfolio-style3 .portfolio-buttons {
        position: absolute;
        top: 25px;
        right: 25px;
        z-index: 4;
        font-size: 0;
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
        transition: all .6s
    }

        .portfolio-style3 .portfolio-buttons .portfolio-link {
            display: inline-block;
            vertical-align: top;
            margin-left: 10px;
            background-color: #fff;
            border: none;
            border-radius: 5px
        }

            .portfolio-style3 .portfolio-buttons .portfolio-link i {
                display: block;
                width: 40px;
                height: 40px;
                text-align: center;
                font-size: 15px;
                line-height: 40px
            }

    .portfolio-style3:hover .portfolio-content .portfolio-inner-content {
        transform: scale(1, 1);
        box-shadow: 0px 0px 20px rgba(0,0,0,0.1)
    }

    .portfolio-style3:hover .portfolio-buttons {
        opacity: 1;
        visibility: visible;
        transform: scale(1)
    }

    .portfolio-style3 .portfolio-buttons .portfolio-link:hover {
        background: #1f2732
    }

    .portfolio-style3 .portfolio-buttons .portfolio-link i:hover {
        color: #ffffff
    }

@media screen and (max-width: 767px) {
    .portfolio-style3 .portfolio-content .portfolio-inner-content {
        padding: 15px
    }
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

    .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
        border-color: #e42530
    }

.lg-progress-bar .lg-progress {
    background-color: #e42530
}

.lg-backdrop.in {
    opacity: 0.85
}

.pagination {
    border-radius: 0;
    padding:11px;
    margin-left: auto;
    margin-right: auto
}

    .pagination ul {
        display: inline-block;
        margin: 0 auto;
        padding: 0
    }

    .pagination li {
        display: inline;
        margin-right: 10px
    }

        .pagination li:last-child {
            margin-right: 0
        }

    .pagination a {
        background: transparent;
        font-weight: 700;
        text-align: center;
        padding: 12px 16px;
        color: #42545e;
        border: 1px solid #dddddd;
        line-height: 25px
    }

        .pagination a:hover, .pagination a:active, .pagination a:focus {
            background-color: #1f2732;
            color: #ffffff;
            box-shadow: none
        }

    .pagination .active a {
        background-color: #f7f7f7;
        color: #002147;
        border: 1px solid #dbdbdb;
        cursor: default
    }

@media screen and (max-width: 575px) {
    .pagination li {
        margin-right: 8px
    }
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px
}

.owl-theme .owl-dots .owl-dot span {
    border-radius: 0
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #e42530
}

.owl-nav i, .owl-nav span {
    color: #232323;
    font-size: 28px
}

.owl-carousel .owl-item img {
    width: auto;
    display: inline-block
}

.owl-thumbs {
    z-index: 9;
    position: relative
}

    .owl-thumbs button {
        border: none
    }

        .owl-thumbs button .title {
            transition: 0.5s;
            opacity: 0;
            text-align: center;
            visibility: hidden;
            margin: 20px -100px 0
        }

        .owl-thumbs button.active .title {
            opacity: 1;
            visibility: visible
        }

        .owl-thumbs button img {
            opacity: .5
        }

        .owl-thumbs button.active img {
            opacity: 1
        }

ul.resp-tabs-list {
    margin-bottom: 15px;
    padding: 0px
}

.resp-tabs-list li {
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 12px 20px;
    box-shadow: 0 0 70px rgba(0,0,0,0.08);
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    background: #fff;
    color: #e42530;
    text-align: left;
    border-radius: 0
}

    .resp-tabs-list li:last-child {
        margin-right: 0
    }

    .resp-tabs-list li i {
        font-size: 24px;
        padding-right: 10px;
        vertical-align: text-bottom
    }

.resp-tabs-container {
    padding: 0px;
    clear: left
}

.resp-tab-content {
    display: none;
    padding: 40px
}

.resp-tabs-list li.resp-tab-active {
    margin-bottom: -1px;
    background-color: #e42530;
    color: #fff
}

.resp-content-active, .resp-accordion-active {
    display: block
}

.resp-tab-content {
    border: none;
    float: left;
    width: 100%;
    box-shadow: none;
    border-radius: 4px;
    background: transparent
}

h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 18px;
    color: #fff;
    border-top: 0px solid #c1c1c1;
    margin-bottom: 5px;
    padding: 14px 15px;
    float: left;
    width: 100%;
    background: #1f2732 !important;
    border-radius: 0
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    background-color: #e42530 !important;
    color: #fff;
    margin-bottom: 0;
    border-radius: 0px
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue
}

.resp-vtabs.style1 ul.resp-tabs-list {
    margin-top: -80px
}

.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 70px 0 rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 0
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 18px 20px !important;
    margin: 0 0 25px;
    cursor: pointer;
    float: none;
    font-size: 18px;
    background: rgba(31,39,50,0.1);
    color: #1f2732;
    border-radius: 0px
}

    .resp-vtabs .resp-tabs-list li:last-child {
        margin-bottom: 0
    }

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    float: left;
    width: 100%;
    clear: none;
    border-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

.resp-vtabs .resp-tab-content {
    word-wrap: break-word;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0
}

.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 18px 20px !important;
    background-color: #e42530;
    color: #fff
}

.resp-arrow {
    border-color: transparent #fff #fff transparent;
    border-style: solid;
    border-width: 0 2px 2px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px
}

h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 2px 0 0 2px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 10px
}

.resp-easy-accordion h2.resp-accordion {
    display: block
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1
}

    .resp-easy-accordion .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1
    }

.resp-jfit {
    width: 100%;
    margin: 0px
}

.resp-tab-content-active {
    display: block;
    border-color: #e8e8e8 !important
}

h2.resp-accordion.resp-tab-active {
    border-color: #e8e8e8 !important
}

@media screen and (max-width: 991px) {
    ul.resp-tabs-list {
        display: none
    }

    h2.resp-accordion {
        display: block
    }

        h2.resp-accordion i {
            margin-right: 8px;
            font-size: 20px;
            color: #fff;
            vertical-align: text-bottom
        }

    .resp-vtabs .resp-tab-content {
        margin-bottom: 5px;
        padding: 30px
    }

        .resp-vtabs .resp-tab-content:last-child {
            margin-bottom: 0
        }

    .resp-vtabs .resp-tabs-container {
        border: none !important;
        float: left;
        width: 100%;
        min-height: 100px;
        clear: none;
        background: none
    }

    .resp-accordion-closed {
        display: none !important
    }

    .resp-tab-content {
        background-color: #fff;
        border-radius: 0;
        border: 1px solid #eee;
        margin-bottom: 5px;
        padding: 30px
    }

        .resp-tab-content:last-child {
            margin-bottom: 0
        }
}

@media screen and (max-width: 575px) {
    .resp-vtabs .resp-tab-content, .resp-tab-content {
        padding: 20px
    }
}

.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0,0,0,0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0
}

.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: none;
    background: none
}

.accordion-style .btn-link {
    color: #e42530;
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: right;
    white-space: normal;
    border-radius: 0;
    padding: 20px 20px 20px 45px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffffff
}

    .accordion-style .btn-link.collapsed {
        color: #42545e;
        line-height: 26px;
        position: relative;
        border: none;
        display: block;
        width: 100%;
        text-align: right;
        white-space: normal;
        border: none;
        padding: 20px 18px 20px 45px;
        font-weight: 700;
        text-decoration: none;
        background-color: #fff
    }

    .accordion-style .btn-link:hover, .accordion-style .btn-link:active, .accordion-style .btn-link:focus {
        text-decoration: none;
        color: #e42530
    }

    .accordion-style .btn-link.collapsed:after {
        content: "+";
        left: 17px;
        right: inherit;
        font-size: 20px;
        transform: none;
        top: 22px;
        position: absolute;
        color: #212121;
        background-color: transparent;
        border-radius: .3rem;
        line-height: 20px;
        width: 25px;
        height: 25px;
        text-align: center
    }

    .accordion-style .btn-link:after {
        content: "-";
        left: 17px;
        right: inherit;
        font-size: 20px;
        transform: none;
        top: 20px;
        position: absolute;
        color: #e42530;
        background-color: transparent;
        border-radius: .3rem;
        line-height: 22px;
        width: 25px;
        height: 25px;
        text-align: center
    }

.accordion-style .card-body {
    padding: 0px 30px 25px 26px;
    line-height: 24px;
    text-align: right;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none
}

@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px 25px
    }
}

.accordion-style.style2 .card {
    background: transparent;
    box-shadow: none;
    margin-top: 0 !important;
    border: none
}

    .accordion-style.style2 .card:last-child {
        margin-bottom: 0
    }

        .accordion-style.style2 .card:last-child .btn-link.collapsed {
            border-bottom: transparent
        }

.accordion-style.style2 .card-header {
    border: 0px;
    padding: 0;
    background: none
}

.accordion-style.style2 .btn-link {
    border-bottom: none;
    color: #2b303b;
    position: relative;
    display: block;
    font-weight: 500;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    padding: 20px 46px 20px 0;
    text-decoration: none;
    font-size: 18px
}

    .accordion-style.style2 .btn-link:hover {
        text-decoration: none
    }

    .accordion-style.style2 .btn-link.collapsed {
        box-shadow: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        line-height: 28px
    }

        .accordion-style.style2 .btn-link.collapsed:after {
            background: none;
            border-radius: 50%;
            content: "+";
            right: 15px;
            left: inherit;
            font-size: 22px;
            line-height: 20px;
            height: 24px;
            transform: none;
            width: 24px;
            top: 24px;
            text-align: center;
            padding-left: 1px
        }

    .accordion-style.style2 .btn-link:after {
        background: none;
        border-radius: 50%;
        content: "-";
        right: 12px;
        left: inherit;
        font-size: 22px;
        height: 24px;
        line-height: 20px;
        transform: none;
        width: 24px;
        top: 24px;
        position: absolute;
        color: #1f2732;
        text-align: center
    }

.accordion-style.style2 .btn {
    border-radius: 0
}

.accordion-style.style2 .card-body {
    font-size: 16px;
    padding: 20px 0 0 0;
    line-height: 28px;
    text-align: left;
    border-top: 1px solid #ededed
}

@media screen and (max-width: 991px) {
    .accordion-style.style2 .btn-link {
        padding: 15px 46px 15px 0
    }

        .accordion-style.style2 .btn-link:after, .accordion-style.style2 .btn-link.collapsed:after {
            top: 18px
        }

    .accordion-style.style2 .card-body {
        padding: 15px 0 0 0
    }
}

@media screen and (max-width: 767px) {
    .accordion-style.style2 .btn-link, .accordion-style.style2 .card-body {
        font-size: 15px
    }
}

.accordion .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0
}

    .accordion .card:last-child {
        margin-bottom: 0
    }

.accordion .card-header {
    border: 0;
    padding: 0;
    background: none
}

.accordion .accordion-collapse {
    border: none
}

.accordion .accordion-button {
    border-bottom: none;
    color: #ffffff;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 500;
    padding: 20px 60px 20px 20px;
    text-decoration: none;
    background: #e42530;
    border: 1px solid transparent
}

    .accordion .accordion-button:hover {
        text-decoration: none
    }

    .accordion .accordion-button.collapsed {
        background: #ffffff;
        color: #282b2d;
        border: 1px solid #ededed
    }

        .accordion .accordion-button.collapsed:after {
            background: #1f2732;
            border: none;
            content: "+";
            right: 20px;
            left: inherit;
            font-size: 18px;
            transform: none;
            width: 25px;
            height: 25px;
            line-height: 25px;
            top: 18px;
            border-radius: 5px;
            text-align: center;
            color: #ffffff
        }

    .accordion .accordion-button:after {
        background: #1f2732;
        border: none;
        content: "-";
        right: 20px;
        border-radius: 5px;
        left: inherit;
        font-size: 18px;
        border: 1px solid #1f2732;
        transform: none;
        width: 25px;
        height: 25px;
        line-height: 21px;
        top: 18px;
        position: absolute;
        color: #fff;
        text-align: center
    }

.accordion .card-body {
    font-size: 16px;
    padding: 20px 25px;
    line-height: 28px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed
}

@media screen and (max-width: 991px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px;
        font-size: 16px
    }

        .accordion .accordion-button.collapsed:after, .accordion .accordion-button:after {
            right: 15px;
            font-size: 16px;
            height: 22px;
            line-height: 19px;
            width: 22px;
            top: 13px
        }

    .accordion .card-body {
        padding: 20px 15px
    }
}

@media screen and (max-width: 575px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px
    }
}

.blog-sidebar .widget {
    padding: 30px 25px;
    border-radius: 10px;
    position: relative;
    display: block
}

    .blog-sidebar .widget .widget-content {
        position: relative
    }

    .blog-sidebar .widget .category-list li {
        margin-bottom: 0.5rem
    }

        .blog-sidebar .widget .category-list li:last-child {
            margin-bottom: 0px
        }

        .blog-sidebar .widget .category-list li a {
            background: rgba(255,255,255,0.1);
            padding: 14px 20px 14px 28px;
            padding: 15px 20px 15px 30px;
            border-radius: 10px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff
        }

            .blog-sidebar .widget .category-list li a span {
                z-index: 9;
                position: relative
            }

            .blog-sidebar .widget .category-list li a:after {
                content: ">";
                font-family: 'themify';
                font-size: 12px;
                font-weight: bold;
                margin-left: -10px
            }

            .blog-sidebar .widget .category-list li a:hover, .blog-sidebar .widget .category-list li a:active, .blog-sidebar .widget .category-list li a:focus {
                background: #fff;
                color: #1f2732
            }

        .blog-sidebar .widget .category-list li.active a:after, .blog-sidebar .widget .category-list li:hover a:after {
            margin-left: 10px;
            opacity: 1;
            transition: all 0.3s ease-in-out
        }

.blog-sidebar .blog-tags a {
    background-color: #e42530;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #e42530
}

    .blog-sidebar .blog-tags a:hover, .blog-sidebar .blog-tags a:active, .blog-sidebar .blog-tags a:focus {
        background-color: #fff;
        color: #e42530
    }

.blog-tags a {
    background-color: #e42530;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #e42530
}

    .blog-tags a:hover, .blog-tags a:active, .blog-tags a:focus {
        background-color: #fff;
        color: #e42530
    }

.comment-reply-link {
    color: #1f2732;
    background: rgba(31,39,50,0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px
}

    .comment-reply-link:hover, .comment-reply-link:active, .comment-reply-link:focus {
        color: #fff;
        background: #1f2732
    }

.service-carousel-02.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    right: inherit;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    line-height: 55px;
    transition-duration: 500ms;
    left: -22%;
    text-align: center;
    margin: auto
}

.service-carousel-02.owl-theme .owl-nav .owl-next {
    top: 0;
    bottom: 0;
    left: inherit;
    right: -22%
}

    .service-carousel-02.owl-theme .owl-nav .owl-next:hover {
        background: #e42530
    }

.service-carousel-02.owl-theme .owl-nav .owl-prev:hover {
    background: #e42530
}

.service-carousel-02 .owl-nav i, .service-carousel-02 .owl-nav span {
    font-weight: 600;
    color: #fff;
    transition-duration: 500ms;
    font-size: 18px
}

.service-carousel-02 .owl-nav .owl-next:hover i, .service-carousel-02 .owl-nav .owl-prev:hover i {
    color: #fff
}

@media only screen and (max-width: 991px) {
    .service-carousel-02.owl-theme .owl-nav [class*='owl-'] {
        left: -19%
    }

    .service-carousel-02.owl-theme .owl-nav .owl-next {
        right: -19%;
        left: inherit
    }
}

.service-sidebar .cetegory li a {
    background-color: #fff;
    padding: 15px 20px 15px 30px;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.service-sidebar .cetegory li:hover a, .service-sidebar .cetegory li.active a {
    background-color: #1f2732;
    color: #fff
}

.service-sidebar .widget {
    margin-bottom: 30px;
    padding: 30px 25px;
    border-radius: 10px;
    position: relative;
    display: block
}

    .service-sidebar .widget .widget-brochure {
        margin-bottom: 0;
        padding: 0;
        list-style: none
    }

        .service-sidebar .widget .widget-brochure li {
            position: relative;
            margin-bottom: 12px;
            display: inline-block;
            border: 1px solid #ededed;
            width: 100%;
            border-radius: 10px;
            background: #fff
        }

            .service-sidebar .widget .widget-brochure li a {
                position: relative;
                display: block;
                padding: 16px 15px 16px 75px;
                font-size: 15px;
                font-weight: 600
            }

                .service-sidebar .widget .widget-brochure li a i {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 60px;
                    height: 100%;
                    line-height: 3;
                    text-align: center;
                    font-size: 20px;
                    background: #1f2732;
                    color: #ffffff;
                    border-top-left-radius: 10px;
                    border-bottom-left-radius: 10px
                }

.service-sidebar .banner-wrapper .icon-boxs {
    position: absolute;
    top: -43px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.service-sidebar .sidebar .banner-wrapper .icon-boxs i {
    line-height: 80px
}

@media screen and (max-width: 767px) {
    .service-sidebar .widget {
        padding: 25px 20px
    }
}

.about-style-01 .about-content .about-list {
    display: flex;
    align-items: center;
    padding-top: 15px;
    margin-top: 25px
}

    .about-style-01 .about-content .about-list .about-author {
        background: #ffffff;
        box-shadow: 0px 0px 62px 0px rgba(0,0,0,0.08);
        padding: 30px 30px 30px 30px;
        border-radius: 5px;
        margin-right: 40px;
        margin-top: 25px;
        position: relative
    }

        .about-style-01 .about-content .about-list .about-author::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            background: #e42530;
            height: 3px;
            width: calc(100% - 30px)
        }

        .about-style-01 .about-content .about-list .about-author span {
            color: #4c4d56
        }

        .about-style-01 .about-content .about-list .about-author .author-img {
            position: absolute;
            left: -25px;
            top: 35px
        }

            .about-style-01 .about-content .about-list .about-author .author-img img {
                border-radius: 50%
            }

    .about-style-01 .about-content .about-list ul li {
        font-size: 16px;
        line-height: 24px;
        font-weight: 700;
        color: #090d2f
    }

        .about-style-01 .about-content .about-list ul li i {
            color: #e42530;
            margin-right: 5px
        }

        .about-style-01 .about-content .about-list ul li + li {
            margin-top: 15px
        }

@media screen and (max-width: 1199px) {
    .about-style-01 .about-content .about-list {
        margin-top: 0px;
        padding-top: 0px
    }

        .about-style-01 .about-content .about-list .about-author {
            border-radius: 5px;
            margin-right: 20px;
            margin-top: 0px;
            padding: 24px 22px 19px 39px
        }
}

@media screen and (max-width: 575px) {
    .about-style-01 .about-content .about-list {
        display: inline-block
    }

        .about-style-01 .about-content .about-list .about-author {
            margin-bottom: 2rem
        }
}

.about-style-02 .about-video {
    position: absolute;
    left: 5%;
    top: 31%;
    transform: translate(-50%, -50%)
}

    .about-style-02 .about-video a {
        display: block;
        width: 84px;
        height: 84px;
        background: #e42530;
        text-align: center;
        line-height: 84px;
        color: #ffffff;
        font-size: 30px;
        border-radius: 50%;
        position: relative;
        border: 1px solid #e42530
    }

        .about-style-02 .about-video a:before {
            content: " ";
            width: 130%;
            height: 130%;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            position: absolute;
            left: -12px;
            top: -12px;
            -webkit-animation: pulse 1s infinite;
            animation: pulse 1s infinite;
            z-index: -1
        }

    .about-style-02 .about-video:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 80px;
        width: 80px;
        border: 2px solid #e42530;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: .3;
        animation: pulse-border 1500ms ease-out infinite
    }

    .about-style-02 .about-video:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 95px;
        width: 95px;
        border: 2px solid #e42530;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: .3;
        animation: pulse-border 1500ms ease-out infinite
    }

.about-style-02 .about-img {
    width: 70px;
    height: 410px;
    border-radius: 10px;
    background-size: contain;
    background-position: center;
    margin-right: 30px
}

.about-style-02 .about-icon-box {
    background: #fcfaf7;
    padding: 20px 10px 20px 10px;
    border-bottom: 4px solid #e42530
}

    .about-style-02 .about-icon-box .about-icon {
        font-size: 40px;
        color: #283734;
        height: 70px;
        width: 70px;
        background: #1f2732;
        display: flex;
        text-align: center;
        justify-content: center;
        border-radius: 50%;
        align-items: center;
        transition: 0.4s;
        margin: 0 auto 15px auto
    }

@media screen and (max-width: 1399px) {
    .about-style-02 .about-video {
        top: 15%
    }
}

@media screen and (max-width: 1399px) {
    .about-style-02 .about-video {
        top: -12%;
        left: 12%
    }
}

@media screen and (max-width: 991px) {
    .about-style-02 .about-video {
        top: 20%;
        left: 6%
    }
}

@media screen and (max-width: 575px) {
    .about-style-02 .about-video {
        top: 50%;
        left: 50%
    }
}

.about-style3 .about-quote {
    position: absolute;
    width: 380px;
    bottom: -50px
}

    .about-style3 .about-quote:before {
        content: '';
        background-image: url(../img/icons/quote-02.jpg);
        background-color: #fff;
        width: 50px;
        height: 40px;
        position: absolute;
        top: -20px;
        background-repeat: no-repeat
    }

@media screen and (max-width: 991px) {
    .about-style3 .about-quote {
        bottom: -30px
    }
}

.about2-yearbox {
    background-color: #1f2732;
    color: #fff;
    position: absolute;
    width: 200px;
    padding: 30px;
    bottom: 20px;
    left: 25%
}

.thumb-image .about-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    margin-left: -26px;
    margin-top: 8px;
    border-radius: 50px
}

.thumb-image .img1, .thumb-image .img2 {
    margin-left: -26px
}

.sm-box-wrapper {
    position: absolute;
    bottom: 5%;
    left: 20%
}

    .sm-box-wrapper .inner-box {
        background-color: #e42530;
        display: flex;
        align-items: center;
        line-height: 1;
        justify-content: center;
        padding: 10px
    }

    .sm-box-wrapper span.exp-no {
        font-size: 65px;
        color: #fff;
        font-weight: 800
    }

    .sm-box-wrapper span.exp-year {
        color: #fff;
        line-height: 1.5;
        font-size: 20px;
        margin-left: 20px
    }

.about-style-03 .about-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    margin-left: -26px;
    margin-top: 8px;
    border-radius: 50px
}

.about-style-03 .exp-box {
    position: absolute;
    top: 40px;
    right: 40px
}

    .about-style-03 .exp-box .box-inner {
        background-color: #e42530;
        padding: 15px 30px 20px 30px;
        position: relative
    }

        .about-style-03 .exp-box .box-inner:before {
            content: "";
            position: absolute;
            bottom: -20px;
            left: -19px;
            width: 0;
            height: 0;
            border-left: 30px solid transparent;
            border-top: 30px solid #e42530;
            border-right: 30px solid transparent;
            border-radius: 5px;
            transform: rotate(135deg)
        }

@media screen and (max-width: 1199px) {
    .about-style-03 .exp-box {
        right: -30px
    }
}

@media screen and (max-width: 991px) {
    .about-style-03 .exp-box {
        right: 60px
    }
}

@media screen and (max-width: 767px) {
    .about-style-03 .exp-box {
        right: 10px
    }
}

@media screen and (max-width: 575px) {
    .about-style-03 .exp-box .box-inner {
        padding: 10px 20px 15px 20px
    }

        .about-style-03 .exp-box .box-inner:before {
            bottom: -14px;
            left: -13px;
            border-left: 20px solid transparent;
            border-top: 20px solid #e42530;
            border-right: 20px solid transparent
        }
}

.about-style-04 .about-image {
    position: relative
}

.about-style-04 .about-img-text {
    margin: 0 auto;
    position: absolute;
    width: 90%;
    left: 0;
    right: 0;
    bottom: 40px
}

.about-style-04 .steps-item-wrap {
    position: relative;
    transition: opacity 0.5s;
    display: flex;
    text-align: left;
    margin-left: 0;
    width: 100%
}

.about-style-04 .steps-wrap {
    display: flex;
    flex-direction: column;
    flex-basis: content;
    align-items: center
}

.about-style-04 .steps-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #e42530;
    position: relative;
    font-size: 20px;
    border-radius: 50%;
    text-align: center
}

.about-style-04 .steps-line-wrap {
    flex-grow: 1;
    position: relative;
    width: 2px
}

    .about-style-04 .steps-line-wrap .steps-line {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        content: '';
        width: 2px;
        height: 0;
        top: 0;
        height: calc(100% - 40px);
        margin-top: 20px
    }

        .about-style-04 .steps-line-wrap .steps-line:before {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            content: '';
            display: block;
            background-color: #e42530;
            border-radius: 0
        }

.about-style-04 .steps-content {
    margin: 0px 25px 50px 25px;
    align-items: center
}

.about-style-04 .steps-line-wrap .steps-line.last:before {
    content: none
}

.faq-style-1 {
    margin-top: -245px;
    position: relative;
    overflow: visible;
    z-index: 99;
    background: transparent
}

    .faq-style-1 .faq-video {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }

        .faq-style-1 .faq-video a {
            display: block;
            width: 84px;
            height: 84px;
            background: #e42530;
            text-align: center;
            line-height: 84px;
            color: #ffffff;
            font-size: 30px;
            border-radius: 50%;
            position: relative;
            border: 1px solid #e42530
        }

            .faq-style-1 .faq-video a:before {
                content: " ";
                width: 130%;
                height: 130%;
                background: rgba(255,255,255,0.3);
                border-radius: 50%;
                position: absolute;
                left: -12px;
                top: -12px;
                -webkit-animation: pulse 1s infinite;
                animation: pulse 1s infinite;
                z-index: -1
            }

    .faq-style-1 .faq-content {
        padding: 61px;
        background-color: #f8f8f8;
        border-radius: 17px
    }

    .faq-style-1 img {
        border-radius: 17px
    }

    .faq-style-1 .faq-img {
        position: relative
    }

@media screen and (max-width: 1199px) {
    .faq-style-1 .faq-content {
        padding: 30px
    }
}

.info-style-01 {
    position: relative;
    margin-top: -80px;
    padding: 0;
    z-index: 9;
    background: transparent
}

    .info-style-01 .info-wrapper {
        background-color: #ffffff;
        box-shadow: 0 0 15px rgba(0,0,0,0.08);
        padding: 40px;
        height: 100%;
        width: 100%;
        transition: all .3s ease-in-out;
        overflow: hidden
    }

        .info-style-01 .info-wrapper.transition-move:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 15px rgba(0,0,0,0.08)
        }

@media screen and (max-width: 991px) {
    .info-style-01 {
        margin-top: 70px
    }

        .info-style-01 .info-wrapper {
            padding: 35px
        }
}

.shape-img-one {
    transform: rotate(180deg)
}

.call-to-action .video-img {
    margin-top: -9%
}

@media screen and (max-width: 1199px) {
    .call-to-action .video-img {
        margin-top: -12%
    }
}

.exrta-section {
    padding-bottom: 275px
}

.scrolling-text {
    width: 100%;
    overflow: hidden
}

.scrolling-marquee {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: campoutscrollingmarqueeReverse 15s linear infinite
}

.scrolling-left-text .scrolling-marquee {
    animation:campoutscrollingmarquee 20s linear(-0.08 14.71%, 1.39 102.01%) infinite
}

.scrolling-marquee h4 {
    margin: 0px;
    padding: 0px;
    display: inline-block
}

@keyframes campoutscrollingmarquee {
    0% {
        transform: translate3d(-50%, 0, 0)
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes campoutscrollingmarqueeReverse {
    0% {
        transform: translate3d(0%, 0, 0)
    }

    100% {
        transform: translate3d(-50%, 0, 0)
    }
}

.scrolling-left-text .scrolling-marquee {
    animation-duration: 30s
}

    .scrolling-left-text .scrolling-marquee h4 {
        color: #e42530
    }

.scrolling-marquee {
    animation-duration: 20s
}

.scrolling-text h4 {
    color: #fff;
    -webkit-text-stroke: 2px #e42530;
    text-stroke: 2px #e42530
}

.newsletter-form .quform-elements {
    position: relative
}

.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px
}

    .newsletter-form .quform-submit-inner .btn {
        padding: 0.500rem 1.15rem
    }

.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0
}

.newsletter-form input {
    border: 1px solid transparent;
    background-color: rgba(255,255,255,0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff
}

.newsletter-form .form-control:focus, .newsletter-form .form-control:active {
    background-color: rgba(255,255,255,0.2);
    color: #fff
}

.newsletter-form .quform-has-error input, .newsletter-form .quform-has-error textarea, .newsletter-form .quform-has-error select {
    border-color: #f5543f
}

.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px
}

.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem
}

.coming-soon .newsletter-form .quform-elements {
    position: relative
}

.coming-soon .newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px
}

    .coming-soon .newsletter-form .quform-submit-inner .btn {
        padding: 0.500rem 1.15rem
    }

.coming-soon .newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0
}

.coming-soon .newsletter-form input {
    border: 1px solid transparent;
    background-color: #1f2732;
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff
}

.coming-soon .newsletter-form .form-control:focus, .coming-soon .newsletter-form .form-control:active {
    background-color: #1f2732;
    color: #fff
}

.coming-soon .newsletter-form .quform-has-error input, .coming-soon .newsletter-form .quform-has-error textarea, .coming-soon .newsletter-form .quform-has-error select {
    border-color: #f5543f
}

.coming-soon .newsletter-form .quform-input .quform-errors-wrap {
    right: 15px
}

.coming-soon .newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem
}

.team-style01 {
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease
}

    .team-style01:hover {
        background-color: #ffffff;
        -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.1);
        box-shadow: 0 10px 60px rgba(0,0,0,0.1)
    }

    .team-style01 .team-icon {
        margin: -20px 0px 0px 0px
    }

        .team-style01 .team-icon .social-icon {
            display: inline-block;
            position: relative;
            z-index: 1;
            width: 40px;
            height: 40px;
            font-size: 16px;
            line-height: 38px;
            text-align: center;
            color: #ffffff;
            background-color: #e42530;
            transition: 0.3s;
            margin: 0 0 0 -5px
        }

            .team-style01 .team-icon .social-icon:first-child {
                border-radius: 5px
            }

    .team-style01:hover .social-icon:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .team-style01:hover .social-icon:not(:first-child) {
        opacity: 1;
        transform: translate(0)
    }

    .team-style01 .team-icon .social-icon::after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
        border-radius: 5px;
        transform-origin: center;
        transform: scale(0);
        opacity: 0;
        background-color: #e42530;
        transition: 0.3s, transform 0s 0.2s
    }

    .team-style01 .social-icon[class*='twitter']::after {
        background-color: #5cd2ef
    }

    .team-style01 .social-icon::before {
        color: #ffffff
    }

    .team-style01 .team-icon .social-icon:hover::after {
        opacity: 1;
        transform: scale(1);
        transition: 0.3s, opacity 0s
    }

    .team-style01 .team-icon .social-icon :nth-child(2) {
        transition-delay: 0.05s
    }

    .team-style01 .team-icon .social-icon:nth-child(3) {
        transition-delay: 0.1s
    }

    .team-style01 .team-icon .social-icon:nth-child(4) {
        transition-delay: 0.15s
    }

    .team-style01 .team-icon .social-icon:nth-child(5) {
        transition-delay: 0.2s
    }

    .team-style01 .team-icon .social-icon:not(:first-child) {
        opacity: 0;
        transform: translateX(-10px)
    }

    .team-style01 .team-icon .social-icon:last-child {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px
    }

    .team-style01 .image {
        position: relative;
        overflow: hidden;
        margin-bottom: 0
    }

    .team-style01:hover .image img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    .team-style01 .image img {
        display: block;
        width: 100%;
        -webkit-transition: all 400ms ease;
        transition: all 400ms ease
    }

    .team-style01:hover .image a:after {
        left: 0;
        right: 0;
        opacity: 0;
        -webkit-transition: all 400ms linear;
        transition: all 400ms linear
    }

    .team-style01 .image a:after {
        background: rgba(255,255,255,0.3);
        bottom: 0;
        content: "";
        left: 50%;
        position: absolute;
        right: 51%;
        top: 0;
        opacity: 1;
        pointer-events: none;
        -webkit-transition: all 400ms linear;
        transition: all 400ms linear
    }

.team-details-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
    padding: 35px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed
}

    .team-details-social ul {
        margin-left: 30px;
        padding-left: 0;
        margin-bottom: 0
    }

        .team-details-social ul li {
            display: inline-block;
            list-style: none;
            margin-right: 10px
        }

            .team-details-social ul li:last-child {
                margin: 0
            }

            .team-details-social ul li a {
                display: inline-block;
                width: 40px;
                height: 40px;
                line-height: 40px;
                text-align: center;
                background: #fff;
                border: 1px solid #ededed;
                color: #343a40;
                -webkit-transition: all 0.4s ease-out 0s;
                transition: all 0.4s ease-out 0s
            }

                .team-details-social ul li a:hover {
                    color: #fff;
                    border-color: #e42530;
                    background: #e42530
                }

.process-style-01 .process-block {
    width: 167px;
    height: 167px;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    margin-bottom: 25px
}

    .process-style-01 .process-block .process-icon {
        width: 90px;
        height: 90px;
        line-height: 90px;
        background: #e42530;
        border-radius: 50%;
        text-align: center;
        position: absolute;
        left: 15px;
        top: 15px;
        z-index: 1
    }

    .process-style-01 .process-block .process-count {
        width: 55px;
        height: 55px;
        line-height: 55px;
        background: #fff;
        text-align: center;
        position: absolute;
        right: 30px;
        bottom: 20px;
        box-shadow: 0px 5px 18.8px 1.2px rgba(99,102,187,0.1);
        z-index: -1
    }

        .process-style-01 .process-block .process-count span {
            font-size: 40px;
            font-weight: 700;
            color: #fff;
            -webkit-text-fill-color: #fff;
            -webkit-text-stroke-width: 1px;
            -webkit-text-stroke-color: #1f2732
        }

.process-style-01 span {
    display: inline-block;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #e42530;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    font-weight: 900;
    font-size: 22px;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    margin-bottom: 19px;
    transition: all 0.35s ease-in-out;
    bottom: 20px;
    right: -5px
}

.process-style-01:nth-child(2) .item span {
    bottom: auto
}

.process-style-01 .thumb {
    position: relative;
    display: inline-block
}

.process-style-01 img {
    height: 170px;
    width: 170px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.35s ease-in-out
}

.main-process {
    position: relative;
    z-index: 1;
    padding-top: 33px
}

    .main-process .line-shape {
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1;
        transform: rotate(-3deg)
    }

.process-style-01 .item:hover span {
    transform: scale(1.2);
    background: #1f2732;
    color: #fff;
    right: -45px
}

.process-style-01:nth-child(2n) .item span {
    transform: scale(1.2);
    background: #e42530;
    color: #fff;
    right: -45px
}

.process-style-01:nth-child(2n) .item img {
    transform: scale(1.4);
    margin-bottom: 60px
}

.process-style-01 .item:hover img {
    transform: scale(1.4);
    margin-bottom: 60px
}

@media screen and (max-width: 991px) {
    .process-style-01 img {
        transform: scale(1.4);
        margin-bottom: 60px
    }

    .main-process .line-shape {
        display: none
    }
}

.process-style-02:nth-child(2n) .item span {
    transform: scale(1.2);
    background: #e42530 !important;
    color: #fff;
    right: -45px
}

.process-style-02 .item:hover span {
    transform: scale(1.2);
    background: #ffffff;
    color: #1f2732;
    right: -45px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #1f2732
}

.process-style-02 span {
    display: inline-block;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #e42530;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    font-weight: 900;
    font-size: 22px;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    margin-bottom: 19px;
    transition: all 0.35s ease-in-out;
    bottom: 20px;
    right: -5px
}

.process-style-03 .process-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: #e42530;
    border-radius: 50% / 10%;
    color: white;
    text-align: center;
    line-height: 130px;
    font-size: 50px
}

    .process-style-03 .process-icon:before {
        content: '';
        position: absolute;
        top: 10%;
        bottom: 10%;
        right: -5%;
        left: -5%;
        background: inherit;
        border-radius: 5% / 50%;
        z-index: 0
    }

    .process-style-03 .process-icon img {
        position: relative;
        z-index: 2;
        top: 25px
    }

.process-style-03 .process-number {
    position: absolute;
    right: -20px;
    font-size: 18px;
    line-height: 45px;
    top: -20px;
    color: #e42530;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-weight: 700;
    z-index: 9;
    background: #ffffff
}

.process-style-03:after {
    position: absolute;
    content: "";
    width: 55px;
    height: 66px;
    background-image: url(../img/icons/process-arrow.png);
    top: 50px;
    right: -45px;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .5
}

.process-style-03.last:after {
    content: none
}

@media screen and (max-width: 991px) {
    .process-style-03:after {
        content: none
    }
}

.process-style-04 {
    position: relative;
    display: block;
    text-align: center
}

    .process-style-04:before {
        content: "";
        position: absolute;
        top: 38px;
        right: -68px;
        width: 109px;
        height: 44px;
        background: url(../img/icons/arrow-bottom.png);
        background-repeat: no-repeat
    }

    .process-style-04.last:before {
        content: none
    }

    .process-style-04.arrow-top:before {
        content: "";
        position: absolute;
        top: 30px;
        right: -68px;
        width: 109px;
        height: 44px;
        background: url(../img/icons/arrow-top.png);
        background-repeat: no-repeat
    }

    .process-style-04 .icon-holder {
        position: relative;
        display: block;
        width: 100px;
        height: 100px;
        margin: 0 auto;
        margin-bottom: 25px;
        background: #e42530;
        padding: 20px;
        transition: all 0.3s ease-in-out 0s
    }

        .process-style-04 .icon-holder .count-box {
            position: absolute;
            top: -10px;
            left: -10px;
            width: 30px;
            height: 30px;
            background: #1f2732;
            transition: all 0.7s ease-in-out 0s;
            vertical-align: middle;
            text-align: center
        }

            .process-style-04 .icon-holder .count-box h4 {
                line-height: 30px;
                color: #ffffff
            }

    .process-style-04 .text-holder {
        position: relative;
        display: block
    }

@media screen and (max-width: 991px) {
    .process-style-04:before, .process-style-04.arrow-top:before {
        content: none
    }

    .process-style-04 .icon-holder {
        margin-bottom: 20px;
        width: 90px;
        height: 90px;
        padding: 15px
    }
}

.progress-style1 .progress {
    height: 8px
}

    .progress-style1 .progress .progress-bar {
        background-color: #e42530
    }

.testimonial-style1 .icon {
    position: absolute;
    right: 26px;
    top: -23px;
    font-size: 48px;
    color: #e42530;
    transform: rotate(180deg)
}

.testimonial-style1 .testi-text {
    position: relative;
    padding: 32px 30px 15px 35px;
    margin-left: 22px;
    margin-top: -22px;
    background-color: #fff;
    border-bottom: 3px solid #e42530;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 17px 27px rgba(96,96,96,0.13);
    transition: all .5s linear 0s
}

    .testimonial-style1 .testi-text:before {
        content: "";
        position: absolute;
        left: 0;
        top: -27px;
        width: 28px;
        height: 28px;
        background-color: #fff;
        clip-path: polygon(0 0, 0 100%, 100% 100%)
    }

.testimonial-carousel-02.owl-theme .owl-dots {
    text-align: left
}

    .testimonial-carousel-02.owl-theme .owl-dots .owl-dot.active span, .testimonial-carousel-02.owl-theme .owl-dots .owl-dot:hover span {
        background: #fff
    }

    .testimonial-carousel-02.owl-theme .owl-dots .owl-dot span {
        width: 20px;
        height: 5px;
        background: rgba(225,225,225,0.4)
    }

    .testimonial-carousel-02.owl-theme .owl-dots .owl-dot.active span {
        width: 35px;
        height: 5px
    }

.testimonial-carousel3.owl-theme .owl-dots {
    text-align: left !important
}

    .testimonial-carousel3.owl-theme .owl-dots .owl-dot span {
        background: #34da89;
        border-radius: 0
    }

.testimonial-carousel3 .owl-dots .owl-dot.active span, .testimonial-carousel3 .owl-dots .owl-dot:hover span {
    background: #e42530
}

@media screen and (max-width: 991px) {
    .testimonial-carousel3.owl-theme .owl-dots {
        text-align: center
    }
}

.testimonial-block {
    margin-bottom: -70px;
    position: relative;
    z-index: 9
}

.counter-style1 {
    margin-bottom: -120px;
    position: relative;
    z-index: 9
}

    .counter-style1 .count-block {
        position: absolute;
        right: 0;
        bottom: 0
    }

@media screen and (max-width: 767px) {
    .counter-style1 .count-block {
        position: inherit
    }
}

.counter-style2 {
    border-right: 1px solid #d3d3d3;
    position: relative
}

    .counter-style2:after {
        position: absolute;
        content: '';
        height: 7px;
        width: 7px;
        border-radius: 50px;
        background-color: #e42530;
        right: -4px;
        left: auto;
        bottom: -20px;
        animation: pulsey 5s ease infinite alternate
    }

@media screen and (max-width: 991px) {
    .counter-style2 {
        border-right: none
    }

        .counter-style2:after {
            content: none
        }
}

@keyframes pulsey {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-110px)
    }
}

.clients:hover .client-img {
    opacity: 0
}

.clients .client-img {
    width: auto;
    opacity: 1;
    will-change: opacity;
    transition: opacity .35s ease-out;
    display: inline-block
}

.clients:hover .client-hover-img {
    opacity: 1
}

.clients .client-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    opacity: 0;
    will-change: opacity;
    transition: opacity .35s ease-out
}

.countdown {
    padding: 0
}

    .countdown li {
        background: #1f2732;
        display: inline-block;
        text-align: center;
        min-width: 130px;
        padding: 25px;
        border: 1px solid #ededed;
        margin: 0 5px;
        border-radius: 10px
    }

        .countdown li span {
            font-size: 40px;
            font-weight: 600;
            text-align: center;
            line-height: normal;
            position: relative;
            color: #fff
        }

            .countdown li span:before {
                content: "";
                height: 1px;
                position: absolute;
                width: 100%
            }

        .countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            margin: 0;
            padding: 0;
            text-transform: capitalize
        }

.coming-soon > .bg-img {
    content: "";
    position: absolute !important;
    width: 65%;
    height: 100vh;
    top: 0;
    right: 0;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat
}

@media screen and (max-width: 1199px) {
    .countdown li {
        min-width: 115px;
        padding: 20px
    }

        .countdown li span {
            font-size: 35px
        }
}

@media screen and (max-width: 767px) {
    .countdown li {
        min-width: 98px;
        padding: 15px;
        margin: 10px 5px
    }

        .countdown li span {
            font-size: 30px
        }

    .coming-soon:before {
        width: 100%
    }
}

.form-group {
    margin-bottom: 1rem
}

    .form-group label {
        margin-bottom: .5rem
    }

.form-control:focus {
    border-color: #e42530
}

.form-check-input:checked {
    border-color: #e42530;
    background-color: #e42530
}

.quform-input {
    position: relative
}

    .quform-input .quform-errors-wrap {
        position: absolute;
        right: 8px;
        top: 0;
        line-height: normal;
        z-index: 1
    }

.quform-element > label {
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 15px
}

    .quform-element > label .quform-required {
        color: #cc0101;
        font-size: 10px
    }

.quform-inner input {
    width: 100%
}

.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top
}

.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px
}

.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal
}

    .quform-errors > .quform-error {
        padding: 0;
        background: none;
        border: none;
        float: none;
        color: #f5543f;
        font-size: 11px;
        line-height: normal;
        letter-spacing: normal
    }

.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
    border-color: #f5543f
}

.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-submit-inner {
    float: none
}

.quform-loading-wrap {
    float: none
}

    .quform-loading-wrap .quform-loading {
        display: inline-block
    }

.quform-element {
    margin-bottom: 1rem
}

.social-icon-style1 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none
}

    .social-icon-style1 li {
        vertical-align: middle;
        display: inline-block;
        margin-right: 5px
    }

        .social-icon-style1 li a {
            display: inline-block;
            font-size: 14px;
            text-align: center;
            color: #ffffff;
            background: rgba(255,255,255,0.1);
            height: 41px;
            line-height: 41px;
            width: 41px
        }

            .social-icon-style1 li a:hover {
                background: #e42530
            }

     

.social-icon-style2 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none
}

    .social-icon-style2 li {
        vertical-align: middle;
        display: inline-block;
        margin-right: 5px
    }

        .social-icon-style2 li a {
            display: inline-block;
            font-size: 14px;
            text-align: center;
            color: #e42530;
            background: #fff;
            height: 41px;
            line-height: 42px;
            width: 41px
        }

            .social-icon-style2 li a:hover {
                background: #e42530;
                color: #fff
            }

        .social-icon-style2 li:last-child {
            margin-right: 0
        }

        .social-icon-style2 li a.small {
            width: 30px;
            height: 30px;
            line-height: 30px;
            font-size: 11px
        }

    .social-icon-style2.small li a {
        width: 35px;
        height: 35px;
        line-height: 35px
    }

@media screen and (max-width: 991px) {
    .social-icon-style2.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

.social-icon-style3 {
    margin-bottom: 0;
    display: inline-block
}

    .social-icon-style3 li {
        vertical-align: middle;
        display: inline-block;
        margin-right: 10px
    }

        .social-icon-style3 li a {
            display: inline-block;
            font-size: 14px;
            text-align: center;
            color: #ffffff;
            background: #e42530;
            height: 40px;
            line-height: 40px;
            width: 40px;
            border-radius: 50%
        }

            .social-icon-style3 li a:hover {
                background: #fff;
                color: #e42530
            }

        .social-icon-style3 li:last-child {
            margin-right: 0
        }

.social-icon-style4 li {
    display: inline-block;
    margin-right: 7px
}

    .social-icon-style4 li a {
        font-size: 14px;
        text-align: center;
        color: #fff;
        background: #e42530;
        height: 38px;
        display: inline-block;
        line-height: 38px;
        width: 38px;
        border-radius: 50px
    }

        .social-icon-style4 li a:hover, .social-icon-style4 li a:active, .social-icon-style4 li a:focus {
            color: #fff;
            background-color: #1f2732
        }

    .social-icon-style4 li:last-child {
        margin-right: 0
    }

.social-icon-style4 li {
    display: inline-block;
    margin-right: 10px
}

    .social-icon-style4 li:last-child {
        margin-right: 0
    }

    .social-icon-style4 li a {
        font-size: 16px;
        background: #e42530;
        color: #fff;
        height: 36px;
        width: 36px;
        line-height: 36px;
        display: inline-block;
        text-align: center
    }

        .social-icon-style4 li a:hover {
            color: #e42530;
            background: #fff
        }

.search-form_input {
    color: #e42530
}

.search-frame h4 a:hover {
    color: #e42530
}

.search-frame .search_list .match {
    color: #e42530
}

.search-frame .search_list li:before {
    color: #e42530
}

.search-frame .search_list li + li {
    border-top: 3px solid #e42530
}

.search-frame .search {
    color: #e42530
}

.contact-map {
    width: 100%;
    height: 400px;
    vertical-align: top;
    border: 0
}

.history-timeline {
    position: relative
}

    .history-timeline:before {
        position: absolute;
        content: "";
        left: 0;
        top: 4px;
        width: 100%;
        height: 1px;
        background: #232323;
        opacity: 0.2
    }

.timeline-flag {
    background: #e42530;
    width: 10px;
    height: 25px;
    margin-bottom: 25px;
    position: relative;
    transform: rotate(180deg)
}

    .timeline-flag:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0px;
        width: 0px;
        height: 0;
        border-top: 5px solid #fff;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent
    }

.history-year {
    position: absolute;
    background-color: #e42530;
    color: #fff;
    padding: 4px 20px;
    left: 50%;
    transform: translateX(-67%)
}

@media screen and (max-width: 767px) {
    .history-year {
        transform: translateX(-50%)
    }
}

.contact-us {
    padding: 60px;
    background-color: #f6f6f6
}

    .contact-us .contacts-icon img {
        padding: 16px
    }

    .contact-us .contact-details {
        padding: 30px 50px 40px;
        border-radius: 5px;
        margin-left: 20px;
        background-color: #1f2732
    }

    .contact-us .contact-info {
        border-bottom: 1px solid rgba(255,255,255,0.1215686275);
        padding: 0 0 25px;
        margin-bottom: 22px
    }

    .contact-us .contacts-icon {
        float: left;
        margin-right: 20px;
        width: 55px;
        height: 55px;
        line-height: 55px;
        background-color: rgba(255,255,255,0.5196078431);
        text-align: center;
        display: inline-block;
        transition: .5s
    }

        .contact-us .contacts-icon i {
            color: #fff;
            font-size: 22px;
            transition: .5s
        }

    .contact-us .contacts-title h6 {
        font-size: 14px;
        line-height: 23px;
        opacity: .702;
        margin-top: 5px
    }

    .contact-us .contact-info:hover .contacts-icon {
        transform: rotateY(180deg);
        background: #e42530
    }

    .contact-us .contact-info.upper2 {
        border-bottom: none;
        margin-bottom: 0px
    }

    .contact-us .contact-details .follow-company-icon2 a {
        font-size: 14px;
        display: inline-block;
        color: #fff;
        margin-right: 7px;
        transition: .5s;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 15px;
        background-color: rgba(255,255,255,0.2);
        text-align: center
    }

    .contact-us .follow-company-icon2 a:hover {
        background: #e42530
    }

@media screen and (max-width: 1199px) {
    .contact-us {
        padding: 40px
    }

        .contact-us .contact-details {
            padding: 30px 31px 30px;
            margin-left: 7px
        }
}

@media screen and (max-width: 575px) {
    .contact-us {
        padding: 30px 19px 31px 19px
    }

        .contact-us .contact-info {
            padding: 0 0 18px;
            margin-bottom: 21px
        }

        .contact-us .contacts-icon {
            margin-right: 13px;
            width: 48px;
            height: 48px;
            line-height: 48px
        }

        .contact-us .contact-details {
            padding: 19px 19px 19px;
            margin-left: 7px
        }

        .contact-us .contacts-title h6 {
            font-size: 13px;
            line-height: 21px
        }
}

.contact-us-section .contact-box {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.05);
    z-index: 9;
    margin-bottom: -100px;
    word-break: break-all
}

.why-choose-icon {
    background-color: #1f2732;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

@media screen and (max-width: 1199px) {
    .why-choose-icon {
        padding: 9px
    }
}

.why-us-block {
    position: relative;
    display: block;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0
}

    .why-us-block .inner-block {
        position: relative;
        display: inline-block;
        width: 50%;
        float: left
    }

        .why-us-block .inner-block .content {
            position: relative;
            display: block;
            background: rgba(255,255,255,0.1);
            text-align: center;
            padding: 40px 15px 38px 15px
        }

        .why-us-block .inner-block.color2 .content {
            background: rgba(0,0,0,0.1)
        }

        .why-us-block .inner-block .content h4 {
            position: relative;
            display: block;
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            margin: 0px
        }

.why-us-02 {
    background-repeat: no-repeat;
    background-position: right center
}

@media screen and (max-width: 1199px) {
    .why-us-02 {
        background-image: none !important
    }
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 10px 60px 0 rgba(0,0,0,0.05);
    border-radius: 8px
}

.prev-page, .next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px
}

    .prev-page:before, .next-page:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 8px;
        background-color: rgba(255,255,255,0);
        box-shadow: 0 0 0 0 rgba(34,35,40,0);
        transform: scale(1.04, 1.12);
        transition: .3s ease-in-out;
        pointer-events: none
    }

    .prev-page .page-info > a, .next-page .page-info > a {
        display: flex;
        align-items: center;
        position: relative;
        padding: 16px 20px;
        min-height: 110px;
        transition: 0.8s
    }

    .prev-page .page-info .image-prev, .prev-page .page-info .image-next {
        position: relative;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        vertical-align: middle;
        transition: inherit;
        overflow: hidden
    }

    .next-page .page-info .image-prev, .next-page .page-info .image-next {
        position: relative;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        vertical-align: middle;
        transition: inherit;
        overflow: hidden
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        display: inline-block;
        position: relative;
        max-width: 220px;
        font-size: 18px;
        line-height: 1.5;
        font-weight: 700;
        word-wrap: break-word;
        vertical-align: middle;
        transition: 0.45s
    }

    .next-page .page-info .prev-title, .next-page .page-info .next-title {
        display: inline-block;
        position: relative;
        max-width: 220px;
        font-size: 18px;
        line-height: 1.5;
        font-weight: 700;
        word-wrap: break-word;
        vertical-align: middle;
        transition: 0.45s
    }

    .prev-page .page-info .prev-title:empty, .prev-page .page-info .next-title:empty {
        display: none
    }

    .next-page .page-info .prev-title:empty, .next-page .page-info .next-title:empty {
        display: none
    }

    .prev-page:hover:before, .next-page:hover:before {
        background-color: white;
        transform: scale(1);
        box-shadow: 0 10px 30px 0 rgba(34,35,40,0.1)
    }

    .prev-page a {
        justify-content: flex-start;
        text-align: left
    }

        .prev-page a:hover .image-prev:after {
            visibility: visible;
            opacity: 1
        }

        .prev-page a:hover .image-prev:before {
            visibility: visible;
            opacity: 1;
            margin-left: 0
        }

    .prev-page .image-prev {
        margin-right: 20px
    }

        .prev-page .image-prev:after {
            background-color: #e42530
        }

    .next-page .image-next:after {
        background-color: #e42530
    }

    .prev-page .image-prev:before {
        display: block;
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        margin-left: 20px;
        content: "\e64a";
        font-family: 'themify';
        font-size: 21px;
        line-height: 70px;
        color: #fff;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease-in-out
    }

    .prev-page .image-prev:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease-in-out
    }

.next-page {
    margin-left: auto
}

    .next-page a {
        justify-content: flex-end;
        text-align: right
    }

        .next-page a:hover .image-next:after {
            visibility: visible;
            opacity: 1
        }

        .next-page a:hover .image-next:before {
            visibility: visible;
            opacity: 1;
            margin-right: 0
        }

    .next-page .image-next {
        margin-left: 20px
    }

        .next-page .image-next:before {
            display: block;
            position: absolute;
            z-index: 2;
            left: 0;
            right: 0;
            margin-right: 20px;
            content: "\e64a";
            font-family: 'themify';
            font-size: 21px;
            line-height: 70px;
            color: #fff;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease-in-out;
            transform: scaleX(-1)
        }

        .next-page .image-next:after {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease-in-out
        }

    .next-page .next-title {
        text-align: right
    }

.prev-link-page-info > span, .next-link-page-info > span {
    display: block
}

.prev-link-page-info .date-details, .next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: .025em;
    line-height: 20px;
    margin-bottom: -2px
}

    .prev-link-page-info .date-details > div, .prev-link-page-info .date-details > span {
        line-height: inherit;
        transition: 0.45s;
        font-weight: 500
    }

    .next-link-page-info .date-details > div, .next-link-page-info .date-details > span {
        line-height: inherit;
        transition: 0.45s;
        font-weight: 500
    }

    .prev-link-page-info .date-details:only-child, .next-link-page-info .date-details:only-child {
        margin-top: 0
    }

@media screen and (max-width: 767px) {
    .prev-page, .next-page {
        width: calc(100% - 20px);
        max-width: unset
    }

        .prev-page + .next-page {
            margin-top: 0
        }

    .page-navigation {
        flex-direction: column
    }
}

@media screen and (max-width: 575px) {
    .prev-page .page-info > a, .next-page .page-info > a {
        padding: 10px
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        max-width: 168px
    }

    .next-page .page-info .prev-title, .next-page .page-info .next-title {
        max-width: 168px
    }
}

.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block
}

    .footer-logo > a {
        display: inline-block
    }

footer .email {
    border-bottom: 1px solid rgba(255,255,255,0.7);
    display: inline-block;
    padding-bottom: 5px
}

    footer .email a {
        color: rgba(255,255,255,0.7);
        position: relative;
        transition: all 0.8s ease
    }

        footer .email a:hover:after, footer .email a:active:after, footer .email a:focus:after {
            width: 100%
        }

        footer .email a:hover, footer .email a:active, footer .email a:focus {
            color: #e42530
        }

        footer .email a:after {
            border-bottom: 1px solid #fff;
            transition: all 0.8s ease;
            content: "";
            display: inline-block;
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 0
        }

footer .phone {
    padding-bottom: 0;
    margin-bottom: 0
}

    footer .phone a {
        padding-bottom: 0;
        letter-spacing: -0.05rem;
        color: #fff
    }

        footer .phone a:hover, footer .phone a:active, footer .phone a:focus {
            color: #e42530
        }

@media screen and (max-width: 767px) {
    footer {
        padding-top: 60px
    }
}

.footer-bar {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center
}

.footer-style2 > .container {
    padding-top: 90px;
    padding-bottom: 90px
}

.footer-style2 h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1;
    position: relative
}

    .footer-style2 h3:after {
        content: none
    }

.footer-style2 .footer-bar {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.075);
    color: rgba(255,255,255,0.85)
}

    .footer-style2 .footer-bar p {
        margin-top: 5px;
        margin-bottom: 0
    }

.footer-style2 ul {
    margin-bottom: 0
}

.footer-style2 li {
    margin-bottom: 10px;
    list-style: none
}

    .footer-style2 li:last-child {
        margin-bottom: 0
    }

    .footer-style2 li a {
        color: rgba(255,255,255,0.85)
    }

        .footer-style2 li a:hover {
            color: #fff
        }

.footer-style2 .social-icons ul {
    margin: 0;
    padding: 0
}

.footer-style2 .social-icons li {
    display: inline-block;
    margin-right: 1px;
    margin-bottom: 0
}

    .footer-style2 .social-icons li:last-child {
        margin-right: 0
    }

    .footer-style2 .social-icons li a {
        font-size: 14px;
        height: 35px;
        line-height: 36px;
        width: 35px;
        background: #f5f5f5;
        color: rgba(0,0,0,0.65);
        border-radius: 3px;
        display: inline-block;
        text-align: center
    }

        .footer-style2 .social-icons li a:hover {
            background: #e02454;
            color: #fff
        }

.footer-style2 .social-icons2 ul {
    margin: 0;
    padding: 0
}

.footer-style2 .social-icons2 li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 0
}

    .footer-style2 .social-icons2 li:last-child {
        margin-right: 0
    }

    .footer-style2 .social-icons2 li a {
        font-size: 14px;
        height: 35px;
        line-height: 36px;
        width: 35px;
        background: rgba(255,255,255,0.1);
        color: #fff;
        border-radius: 50px;
        display: inline-block;
        text-align: center
    }

        .footer-style2 .social-icons2 li a:hover {
            background: #fff;
            color: #003a66
        }

@media screen and (max-width: 1199px) {
    .footer-style2 > .container {
        padding-top: 70px;
        padding-bottom: 70px
    }
}

@media screen and (max-width: 767px) {
    .footer-style2 {
        padding-top: 0
    }

        .footer-style2 > .container {
            padding-top: 50px;
            padding-bottom: 50px
        }

        .footer-style2 h3 {
            margin-bottom: 20px
        }
}

.buy-theme {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    position: fixed;
    top: 567px;
    left: -175px;
    background: #ffffff;
    border-radius:6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 9999
}

    .buy-theme i {
        font-size: 16px;
        vertical-align: middle;
        position: relative;
        top: -1px;
        color: #fff
    }

.all-demo i {
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff
}

.buy-theme:hover, .all-demo:hover {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    left: 0px;
    background: #e42530
}

.all-demo:hover {
    background: #1f2732
}

.buy-theme span, .all-demo span {
    padding: 0 9px;
    position: relative;
    top: 0;
    opacity: 0
}

.buy-theme:hover span, .all-demo:hover span {
    opacity: 1;
    color: #fff
}

.buy-theme:hover i, .all-demo:hover i {
    color: #fff
}

.buy-theme a, .all-demo a {
    color: #232323;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    font-weight: 500
}

.all-demo {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    position: fixed;
    top: 185px;
    right: -105px;
    background: #1f2732;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 9999
}
