html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

/*-----------------------------------------------------------------------------------

    Theme Name: Exterior - Architecture & Interior HTML Template
    Description: Architecture & Interior HTML Template
    Author: Chitrakoot Web
    Version: 1.0

-----------------------------------------------------------------------------------*/
/* ----------------------------------

    01. Common styles
    02. Navigation
    03. Section heading
    04. Main Banner Area
    05. Page title
    06. About section
    07. Cards
    08. Portfolio
    09. Story video
    10. Testimonial
    11. Pagination
    12. Owl carousel
    13. Accordion style
    14. Tabs
    15. Pages
    16. Elements
    17. Blog
    18. Others
    19. Footer
    
---------------------------------- */
/* ===================================
    Common styles
====================================== */
/* loader */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff;
    display: table;
    text-align: center;
}

.loader {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 200px;
    height: 200px;
}

.loader-icon {
    width: 80px;
    height: 80px;
    border: 5px solid #CC020E;
    border-right-color: #eee;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    margin: 0 auto;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* theme color and basic options */
a:hover, a:active {
    color: #CC020E;
    text-decoration: none;
}

.white-hover:hover {
    color: #fff !important;
}

.text-primary {
    color: #CC020E !important;
}

.text-primary-hover:hover, .text-primary-hover:active, .text-primary-hover:focus {
    color: #CC020E !important;
}

.text-secondary {
    color: #211C20 !important;
}

.text-dark {
    color: #151416 !important;
}

.bg-primary {
    background-color: #CC020E !important;
}

.bg-secondary {
    background-color: #211C20 !important;
}

.bg-tertiary {
    background-color: rgba(75 74 74 / 30%) !important;
}

.bg-dark {
    background-color: #151416 !important;
}

.primary-overlay[data-overlay-dark]:before {
    background: #CC020E;
}

.secondary-overlay[data-overlay-dark]:before {
    background: #211C20;
}

.dark-overlay[data-overlay-dark]:before {
    background: #151416;
}

.border-primary {
    border-color: #CC020E !important;
}

.border-secondary {
    border-color: #211C20 !important;
}

.border-dark {
    border-color: #151416 !important;
}

.height-400 {
    height: 400px;
}

.min-height-700 {
    min-height: 700px;
}

.map-h500 {
    height: 600px;
    width: 100%;
}

.ani-01 {
    animation: animation1 15s linear infinite;
}

.ani-02 {
    animation: animation2 3s linear infinite;
}

.ani-03 {
    animation: animation3 20s linear infinite;
}

.ani-04 {
    animation: animation4 5s linear infinite;
}

.ani-05 {
    animation: animation5 8s linear infinite;
}

.ani-06 {
    animation: animation6 6s linear infinite;
}

@keyframes animation1 {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes animation2 {
    0% {
        opacity: .2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .2;
    }
}

@keyframes animation3 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animation4 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes animation6 {
    0% {
        transform: translate(0px, 0px);
    }

    15% {
        transform: translate(0px, 20px);
    }

    30% {
        transform: translate(-20px, 20px);
    }

    45% {
        transform: translate(-20px, 40px);
    }

    60% {
        transform: translate(-25px, 30px);
    }

    75% {
        transform: translate(-20px, 20px);
    }

    90% {
        transform: translate(0px, 20px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes animation5 {
    0% {
        transform: translate(0px, 0px);
    }

    25% {
        transform: translate(20px, 0px);
    }

    50% {
        transform: translate(30px, -20px);
    }

    75% {
        transform: translate(20px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.cursor-pointer {
    cursor: pointer;
}

.vw-55 {
    width: 55vw;
}

@media screen and (max-width: 1399px) {
    .vw-55 {
        width: 60vw;
    }
}

@media screen and (max-width: 1199px) {
    .vw-55 {
        width: 100%;
    }
}

.border-top-radius {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.image-hover {
    transition: all .3s ease-out;
    position: relative;
}

    .image-hover:hover, .image-hover:active, .image-hover:focus {
        transform: translate(0, -10px);
        -webkit-transform: translate(0, -10px);
        -moz-transform: translate(0, -10px);
    }

/* scroll to top */
.scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border-radius: 5px;
    background: #CC020E;
    border: 1px solid #CC020E;
    width: 40px;
    height: 40px;
    line-height: 35px;
    z-index: 9999;
    outline: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all 0.3s ease;
}

    .scroll-to-top i {
        color: #fff;
    }

    .scroll-to-top:hover {
        color: #232323;
        background: #fff;
    }

        .scroll-to-top:hover i {
            color: #232323;
        }

    .scroll-to-top:visited {
        color: #232323;
        text-decoration: none;
    }

/* button style */
.butn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 14px !important;
    color: #fff !important;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    padding: 15px 32px !important;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
    background-color: #CC020E;
    letter-spacing: 1.6px;
    border: none;
}

    .butn:before {
        transition-duration: 800ms;
        position: absolute;
        width: 200%;
        height: 200%;
        content: "";
        top: 110%;
        left: 50%;
        background-color: #211C20;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
    }

    .butn:hover, .butn:active, .butn:focus {
        color: #fff !important;
    }

        .butn:hover:before, .butn:active:before, .butn:focus:before {
            top: -40%;
        }

    .butn.white:before {
        background-color: #fff;
    }

    .butn.white:hover, .butn.white:active, .butn.white:focus {
        color: #CC020E !important;
    }

    .butn.secondary {
        background-color: #211C20;
    }

        .butn.secondary:before {
            background-color: #CC020E;
        }

    .butn.md {
        padding: 12px 28px !important;
    }

    .butn.sm {
        padding: 8px 24px !important;
    }

/*list-style1*/
.list-style1 {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

    .list-style1 li {
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 15px;
        display: flex;
    }

        .list-style1 li:last-child {
            margin-bottom: 0;
        }

        .list-style1 li:before {
            content: '\f30b';
            font-family: Font Awesome\ 5 Free;
            font-weight: 600;
            color: #CC020E;
            font-size: 16px;
            vertical-align: middle;
            padding-right: 18px;
        }

/*list-style2*/
.list-style2 li {
    position: relative;
    display: block;
    text-transform: capitalize;
    padding: 15px 0;
    font-weight: 500;
    z-index: 1;
    font-size: 16px;
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid #ededed;
}

    .list-style2 li:last-child {
        margin-bottom: 0;
        border-bottom: 0;
        padding-bottom: 0;
    }

    .list-style2 li:after {
        position: absolute;
        content: '\f30b';
        font-family: Font Awesome\ 5 Free;
        font-weight: 600;
        top: 16px;
        font-size: 18px;
        right: 15px;
        color: #211C20;
        border-radius: 50%;
        transition: all 500ms ease;
    }

/*list-style3*/
.list-style3 {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .list-style3 li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

        .list-style3 li a {
            position: relative;
            display: block;
            text-transform: capitalize;
            color: #fff;
            padding: 18px 0;
            font-weight: 500;
            z-index: 1;
            font-size: 16px;
            transition: all 0.3s ease 0s;
        }

        .list-style3 li:first-child a {
            padding-top: 0;
        }

        .list-style3 li:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .list-style3 li a:after {
            position: absolute;
            content: '\f30b';
            font-family: Font Awesome\ 5 Free;
            font-weight: 600;
            font-size: 18px;
            right: 15px;
            color: #CC020E;
            border-radius: 50%;
            transition: all 500ms ease;
            transform: scale(0, 0);
        }

        .list-style3 li.active a:after, .list-style3 li a:hover:after {
            transform: scale(1, 1);
            color: #CC020E;
        }

        .list-style3 li.active a, .list-style3 li a:hover {
            color: #CC020E;
        }

/* ===================================
    Navigation
====================================== */
/* top bar  */
.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);
            }

/* menu area light */
.navbar-nav li.current > a, .navbar-nav li.active > a {
    color: #CC020E;
}

.attr-nav > ul > li > a.butn {
    color: #fff;
}

.navbar > ul > li.current > a:after {
    border-color: transparent #CC020E #CC020E transparent;
}

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
    color: #CC020E;
}

.menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #CC020E #CC020E transparent;
}

.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #CC020E;
}

    .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
        color: #CC020E;
    }

.menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #CC020E;
}

.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #CC020E #CC020E 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: #CC020E;
    }

    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: #CC020E;
    }

    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #CC020E;
    }

    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #CC020E;
    }

        .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
            border-color: transparent #CC020E #CC020E transparent;
        }

    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
        border-color: transparent #CC020E #CC020E transparent;
    }

    .header-style2.scrollHeader .navbar-nav li.current > a {
        color: #CC020E;
    }

        .header-style2.scrollHeader .navbar-nav li.current > a:hover {
            color: #CC020E;
        }

    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #CC020E #CC020E transparent;
    }

    .header-style2 .navbar ul ul li.active > a {
        color: #CC020E;
    }

    .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: #CC020E;
    }

    .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
        color: #CC020E;
    }

    .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 #CC020E #CC020E transparent;
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #CC020E;
    }

        .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 style 2 */
.header-style2 .navbar-nav li.current > a {
    color: #CC020E;
}

.header-style2 .navbar > ul > li.current > a:after {
    border-color: transparent #CC020E #CC020E transparent;
}

.header-style2.scrollHeader .navbar-nav li.current > a {
    color: #CC020E;
}

    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
        color: #CC020E;
    }

.header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #CC020E #CC020E transparent;
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
        color: #CC020E;
    }

    .header-style2 .butn.secondary:before {
        background: #ffffff;
    }

    .header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
        color: #211C20 !important;
    }

    .header-style2.scrollHeader .butn.secondary:before {
        background: #CC020E;
    }

    .header-style2.scrollHeader .butn.secondary:hover, .header-style2.scrollHeader .butn.secondary:focus, .header-style2.scrollHeader .butn.secondary:active {
        color: #fff !important;
    }
}
/* ===================================
   Section heading
====================================== */
/* section title */
.title-sm {
    font-weight: 400;
    position: relative;
    z-index: 2;
    display: inline-block;
}

    .title-sm:before {
        content: '';
        background: #CC020E;
        height: 2px;
        width: 100%;
        position: absolute;
        bottom: 4px;
        z-index: -1;
    }

    .title-sm.banner:before {
        bottom: 15px;
    }

.small-title {
    font-size: 18px;
}

@media screen and (max-width: 991px) {
    .title-sm.banner:before {
        bottom: 2px;
    }

    .title-sm:before {
        bottom: 3px;
    }
}
/*==============================
 *    Main Video Banner
 *================================ */
/* video banner */
.video-banner h1 {
    font-size: 5vw;
    letter-spacing: -0.7px;
    white-space: normal;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .video-banner h1 {
        font-size: 7vw;
    }
}

.video-banner {
    background-image: url(../img/banner/video-cover.jpeg);
    background-size: cover;
    background-position: center;
}

    /*@media screen and (max-width: 1024px) {
    .video-banner {
        background-image: url(../img/banner/banner-mobile-03.jpg);
        background-size: cover;
        background-position: center;
    }
}*/

    .video-banner:before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(20, 47, 67, 0.35);
        background: linear-gradient(-90deg, transparent, #151416 105%);
        transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
        z-index: 1;
    }

/* ===================================
    Page title
====================================== */
/* page title */
.page-title-section {
    padding: 190px 0 100px;
}

    .page-title-section.style2 {
        padding: 150px 0;
    }

    .page-title-section .breadcrumb ul li a {
        color: #fff;
        padding: 0 10px;
    }

        .page-title-section .breadcrumb ul li a:hover, .page-title-section .breadcrumb ul li a:active, .page-title-section .breadcrumb ul li a:focus {
            color: #CC020E;
        }

    .page-title-section .breadcrumb ul li:last-child a {
        color: #CC020E;
    }

.breadcrumb ul li:after {
    content: "";
    width: 9px;
    height: 9px;
    background-color: #CC020E;
    margin: 0px 1px 0 2px;
    display: inline-block;
    border-radius: 2px;
}

.login-title-image {
    background-image: url('../img/bg/bg-01.jpg');
}

.news-title-image {
    background-image: url('../img/bg/bg-04.jpg');
}

.service-title-image {
    background-image: url('../img/bg/bg-05.jpg');
}

.design-title-image {
    background-image: url('../img/bg/bg-08.png');
}

.constuction-image {
    background-image: url('../img/bg/bg-01.jpg');
}

.contact-image {
    background-image: url('../img/bg/bg-09.jpg');
}

.flat-roof-image {
    background-image: url('../img/bg/bg-07.jpg');
}

.breadcrumb ul li:last-child:after {
    content: none;
}

@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 170px 0 95px;
    }

        .page-title-section.style2 {
            padding: 120px 0;
        }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 150px 0 100px;
    }

        .page-title-section.style2 {
            padding: 100px 0;
        }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 140px 0 90px;
    }

        .page-title-section.style2 {
            padding: 80px 0;
        }
}
/* ===================================
 *   About section
 *==================================== */
.about-area .second-line {
    margin-right: -170px;
}

@media screen and (max-width: 767px) {
    .about-area .second-line {
        margin-right: -50px;
    }
}

@media screen and (max-width: 575px) {
    .about-area .second-line {
        margin-right: 0px;
    }
}
/* ===================================
 *   Cards
 * ==================================== */
/*card-style1*/
.service-carousel .center .card-style1 .card-heading {
    margin-right: 30px;
    margin-left: -20px;
    margin-top: -28px;
    overflow: hidden;
    z-index: 9;
    transition: all .3s ease;
}

    .service-carousel .center .card-style1 .card-heading a {
        background: #CC020E;
    }

.card-style1 .card-heading {
    margin-right: 30px;
    margin-left: -20px;
    margin-top: -28px;
    overflow: hidden;
    z-index: 9;
    transition: all .3s ease;
}

    .card-style1 .card-heading a {
        background: #414042;
        padding: 18px 30px;
        border-radius: 10px;
        display: block;
    }

.card-style1:hover .card-heading a, .card-style1:active .card-heading a, .card-style1:focus .card-heading a {
    background: #CC020E;
}

.card-style1 img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.card-style1.faq-info .card-heading {
    position: absolute;
    margin: 0;
    width: 92%;
    left: -15px;
    bottom: 30px;
}

@media screen and (max-width: 575px) {
    .card-style1 .card-heading {
        padding: 14px 20px;
        margin-right: 15px;
        margin-left: -15px;
        margin-top: -28px;
    }
}
/*card-style2*/
.card-style2 .card-body {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(58, 99, 81, 0.9);
    padding: 36px 30px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    border-radius: 10px;
}

.card-style2:hover .card-body {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
}

.card-style2 .team-icon {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-style2:hover .team-icon {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-style2 .card-body .team-data h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #D7926B;
    transform: translateY(16px);
}

.card-style2:hover .card-body .team-data h4 {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: none;
}

.card-style2 .card-body .team-data span {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    transform: translateY(16px);
}

.card-style2:hover .card-body .team-data span {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s;
    transform: none;
}

@media screen and (max-width: 1199px) {
    .card-style2 .team-icon {
        top: 35%;
    }
}
/*card-style3*/
.card-style3 img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-style3 span {
    position: absolute;
    bottom: -8%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    background: #211C20;
    display: inline-table;
    padding: 5px 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.card-style3.blog-list span {
    bottom: -3%;
}

@media screen and (max-width: 767px) {
    .card-style3 span {
        bottom: -5%;
    }
}
/* card-style4 */
.card-style4 .award-name {
    background: #211C20;
    width: 80%;
    height: 200px;
    display: table;
    margin: 0 auto;
    border-radius: 10px;
}

.card-style4 .card-body {
    background-color: #ffffff;
    width: 50%;
    border-radius: 10px;
    margin-top: -9%;
    z-index: 9;
    padding: 5px 0;
    display: table;
}

    .card-style4 .card-body span {
        display: table-cell;
        letter-spacing: 2px;
        font-size: 29px;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #211C20;
        color: transparent;
        text-align: center;
        justify-content: center;
    }

.card-style4 .year-img {
    position: absolute;
    bottom: -6%;
    right: -6%;
    opacity: 0.1;
    transform: rotate(339deg);
}

@media screen and (max-width: 1199px) {
    .card-style4 .award-name {
        width: 90%;
    }
}

.card-margin {
    margin-left: 1.5rem !important;
}

@media screen and (max-width: 575px) {
    .card-margin {
        margin-left: 0rem !important;
    }
}
/* ===================================
    Portfolio
====================================== */
/* filtering */
.filtering {
    margin-bottom: 40px;
}

    .filtering span {
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        margin-right: 12px;
        display: inline-block;
        margin-bottom: 5px;
        padding: 6px 15px;
        background: transparent;
        color: #212529;
        text-transform: uppercase;
        border: 1px solid #CC020E;
        letter-spacing: 2px;
        border-radius: 5px;
    }

        .filtering span:last-child {
            margin: 0;
        }

    .filtering .active {
        color: #ffffff;
        background: #211C20;
        border: 1px solid #211C20;
    }

@media screen and (max-width: 767px) {
    .filtering span {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 575px) {
    .filtering span {
        padding: 6px 8px;
        margin-right: 5px;
        font-size: 13px;
    }
}
/*portfolio-style-01*/
.portfolio-style-01 .portfolio-image {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

    .portfolio-style-01 .portfolio-image img {
        width: 100%;
        transform: scale(1.01);
        transition: all 700ms ease;
        height: 270px;
    }

.portfolio-style-01:hover .portfolio-image img {
    transform: scale(1.2);
}

.portfolio-style-01 .portfolio-image .portfolio-content {
    position: absolute;
    left: 0px;
    bottom: -4%;
    right: 0px;
    display: flex;
    padding: 25px 25px;
    opacity: 1;
    background-color: #cc020e96;
    margin: 0 50px;
    border-radius: 10px;
    z-index: 9;
    /*    -webkit-transform: translateY(25%);
    -ms-transform: translateY(25%);
    transform: translateY(25%);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;*/
    justify-content: space-between;
    align-items: center;
}

/*.portfolio-style-01:hover .portfolio-image .portfolio-content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}*/

.portfolio-thumb-img {
    max-width: 150px;
    max-height: 100px;
}

.portfolio-style-01 .portfolio-content .link-btn a {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border: 1px solid #CC020E;
    border-radius: 5px;
    text-align: center;
    transition: .5s;
}

    .portfolio-style-01 .portfolio-content .link-btn a i {
        color: #212529;
        transition: .5s;
    }

    .portfolio-style-01 .portfolio-content .link-btn a:hover {
        background-color: #211C20;
        border: 1px solid #211C20;
    }

        .portfolio-style-01 .portfolio-content .link-btn a:hover i {
            color: #fff;
        }

@media screen and (max-width: 1199px) {
    .portfolio-style-01 .portfolio-image .portfolio-content {
        margin: 0 30px;
    }
}
/* portfolio-style-02 */
@media screen and (max-width: 991px) {
    .portfolio-style-02 .owl-thumbs .owl-thumb-item img {
        width: 120px;
    }
}

@media screen and (max-width: 767px) {
    .portfolio-style-02 .owl-thumbs .owl-thumb-item img {
        width: 90px;
    }
}

@media screen and (max-width: 575px) {
    .portfolio-style-02 .owl-thumbs .owl-thumb-item img {
        width: 48px;
    }
}
/* ===================================
    Story video
====================================== */
.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: #CC020E;
    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 #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_btn: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_btn.small {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

        .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;
        }
}
/* ===================================
    Pagination
====================================== */
.pagination {
    border-radius: 0;
    padding: 0;
    margin: 0;
}

    .pagination ul {
        display: inline-block;
        margin: 0 auto;
        padding: 0;
    }

    .pagination li {
        display: inline;
    }

    .pagination a {
        float: left;
        font-size: 16px;
        padding: 0 18px;
        line-height: 40px;
        text-decoration: none;
        font-weight: 500;
        border: 1px solid #ededed;
        background: #fff;
        color: #575a7b;
        border-radius: 5px;
    }

        .pagination a:hover {
            background-color: #CC020E;
            border: 1px solid #CC020E;
            color: #ffffff;
        }

    .pagination .active a {
        background-color: #CC020E;
        color: #ffffff;
        border: 1px solid #CC020E;
        cursor: default;
    }

@media screen and (max-width: 575px) {
    .pagination a {
        padding: 0 16px;
        font-size: 14px;
    }
}
/* ==============================
 *    OwlCarousel
 * ================================ */
.owl-theme .owl-nav.disabled {
    margin-top: 40px !important;
}

.owl-theme .owl-dots {
    margin-top: 40px !important;
}

    .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 3px;
        background-color: #414042;
        border-radius: 10px;
        transition: width .35s ease-in-out;
    }

    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background-color: #CC020E;
        width: 30px;
    }

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.dots-white.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5);
}

.dots-white.owl-theme .owl-dots .owl-dot:hover span, .dots-white.owl-theme .owl-dots .owl-dot.active span {
    background: #fff;
}

/* portfolio-details-carousel2 */
.portfolio-details-carousel2.owl-theme .owl-nav [class*='owl-'] {
    margin: 0;
    transition: all 500ms ease;
    border-radius: unset;
}

.portfolio-details-carousel2.owl-carousel .owl-nav button.owl-prev, .portfolio-details-carousel2.owl-carousel .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    background: #1158e7;
    color: #fff;
    position: absolute;
    top: 38%;
}

.portfolio-details-carousel2.owl-theme .owl-nav [class*='owl-']:hover {
    background: #fcaf17;
}

.portfolio-details-carousel2.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.portfolio-details-carousel2.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

/* ===================================
    Accordion style
====================================== */
.accordion .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 1px solid rgba(217, 145, 106, 0.2);
    border-radius: 10px;
}

    .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: #282b2d;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    line-height: 28px;
    font-weight: 500;
    padding: 15px 30px;
    text-decoration: none;
    background: none;
    border-top: 0;
    border-bottom: 0;
    border-radius: 10px;
}

    .accordion .accordion-button:hover {
        text-decoration: none;
    }

    .accordion .accordion-button.collapsed {
        background: transparent;
        color: #282b2d;
        border-top: 0;
    }

        .accordion .accordion-button.collapsed:after {
            background: none;
            border: none;
            border-radius: 0;
            content: '\2b';
            font-family: Font Awesome\ 5 Free;
            font-weight: 600;
            right: 40px;
            left: inherit;
            font-size: 14px;
            line-height: 0;
            height: 0;
            transform: none;
            width: 0;
            top: 28px;
            text-align: center;
            color: #211C20;
            padding-left: 0;
            letter-spacing: -1px;
        }

    .accordion .accordion-button:after {
        background: none;
        border: none;
        border-radius: 0;
        content: '\f068';
        font-family: Font Awesome\ 5 Free;
        font-weight: 600;
        right: 40px;
        left: inherit;
        font-size: 14px;
        height: 0;
        line-height: 0;
        transform: none;
        width: 0;
        top: 28px;
        position: absolute;
        color: #CC020E;
        text-align: center;
        padding-left: 2px;
        letter-spacing: -2px;
    }

.accordion .card-body {
    font-size: 16px;
    padding: 0 30px 20px 30px;
    line-height: 28px;
}

@media screen and (max-width: 1199px) {
    .accordion .accordion-button {
        padding: 15px 36px 15px 30px;
    }

        .accordion .accordion-button:after, .accordion .accordion-button.collapsed:after {
            right: 30px;
        }
}

@media screen and (max-width: 991px) {
    .accordion .accordion-button {
        font-size: 16px;
        padding: 15px 20px;
    }

    .accordion .card-body {
        padding: 0 20px 20px 20px;
    }
}

@media screen and (max-width: 575px) {
    .accordion .accordion-button {
        padding: 15px 40px 15px 20px;
    }
}
/* ===================================
 *   Tabs
 * ==================================== */
ul.resp-tabs-list {
    margin: 0px;
    padding: 0px;
    padding-left: 0;
}

.resp-tabs-list li {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    min-width: 180px;
}

    .resp-tabs-list li:last-child {
        margin-right: 0;
    }

    .resp-tabs-list li i {
        font-size: 28px;
        margin-bottom: 8px;
        color: #6f6f6f;
    }

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}

.resp-tab-content {
    display: none;
    padding: 0;
}

.resp-tabs-list li.resp-tab-active i {
    color: #fff;
}

.resp-content-active, .resp-accordion-active {
    display: block;
}

.resp-tab-content {
    float: left;
    width: 100%;
}

h2.resp-accordion {
    background: #fff !important;
    cursor: pointer;
    display: none;
    font-size: 16px;
    border: 1px solid #ededed;
    border-top: 0px solid #ededed;
    margin: 0px;
    padding: 15px 21px;
    float: left;
    width: 100%;
}

h2.resp-tab-active {
    border-bottom: 0px solid #ededed !important;
    background: #211C20 !important;
    color: #fff;
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #ededed !important;
    background: #00baee;
}

.resp-arrow {
    border-color: transparent #232323 #232323 transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px;
}

h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px;
}

/* change the breakpoint to set the accordion */
@media screen and (max-width: 767px) {
    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: block;
    }

        h2.resp-accordion i {
            margin-right: 8px;
            font-size: 18px;
        }

    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1;
    }

    .resp-vtabs .resp-tabs-container {
        border: none !important;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #ededed !important;
    }

    .resp-tab-content {
        background-color: #fff;
    }

    h2.resp-accordion:first-child {
        border-top: 1px solid #ededed;
    }
}
/* vertical tabs */
.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 15%;
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 0 15px 8px 0 !important;
    margin: 0 0 4px;
    cursor: pointer;
    float: none;
}

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: transparent;
    float: left;
    width: 85%;
    min-height: 250px;
    clear: none;
}

.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word;
}

.resp-vtabs .resp-tabs-list li:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.resp-arrow {
    border-color: transparent #282b2d #282b2d transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px;
}

h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px;
}

@media screen and (max-width: 1399px) {
    .resp-vtabs .resp-tabs-container {
        float: right;
        width: 84%;
    }
}

@media screen and (max-width: 1199px) {
    .resp-vtabs .resp-tabs-list li {
        padding: 0 39px 8px 0 !important;
    }

    .resp-vtabs .resp-tabs-container {
        width: 83%;
    }
}
/* tab-style1 */
.tab-style1 .resp-tab-content {
    border: none;
    border-top-color: #e4e4e4;
    padding: 30px 0 0 0 !important;
}

    .tab-style1 .resp-tab-content h4 {
        font-weight: 400;
        font-size: 34px;
        margin-bottom: 20px;
        letter-spacing: 1px;
        line-height: 45px;
    }

.tab-style1 .resp-tabs-list li {
    position: relative;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 600;
    border-bottom: 3px solid rgba(0, 0, 0, 0.08);
    display: inline-block;
    padding: 0 0 5px 0;
    margin-right: 20px;
    text-align: center;
    list-style: none;
    cursor: pointer;
    min-width: 130px;
    flex: 1 1 auto;
    background: none !important;
}

    .tab-style1 .resp-tabs-list li:last-child {
        margin-right: 0;
    }

    .tab-style1 .resp-tabs-list li.resp-tab-active {
        color: #211C20;
    }

        .tab-style1 .resp-tabs-list li.resp-tab-active:after {
            content: "";
            background: #211C20;
            height: 3px;
            width: 100%;
            position: absolute;
            bottom: -3px;
            left: 0;
            margin: 0 auto;
            right: 0;
        }

@media only screen and (max-width: 991px) {
    .tab-style1 .resp-tabs-list li {
        padding: 0 15px 15px 15px;
    }
}

@media screen and (max-width: 767px) {
    .tab-style1 .resp-tab-content {
        border: 1px solid #ededed;
        padding: 20px !important;
    }
}
/* ===================================
 *    Pages
 *==================================== */
/*extra*/
.image-wrappers {
    margin-top: -5%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/*our history page*/
.history-wrapper .history-box-right {
    margin-left: -30%;
}

.history-wrapper .history-box-left {
    margin-right: -30%;
}

.history-wrapper .history-date {
    font-size: 60px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #CC020E;
    color: transparent;
}

@media screen and (max-width: 991px) {
    .history-wrapper .history-box-right, .history-wrapper .history-box-left {
        margin-top: -20%;
        margin-left: 55px;
        margin-right: 55px;
    }
}

@media screen and (max-width: 767px) {
    .history-wrapper .history-box-right, .history-wrapper .history-box-left {
        margin-top: -20%;
        margin-left: 25px;
        margin-right: 25px;
    }

    .history-wrapper .history-date {
        line-height: 1.5;
        font-size: 45px;
    }
}

@media screen and (max-width: 575px) {
    .history-wrapper .history-date {
        font-size: 35px;
    }
}
/*our pricing-page*/
.pricing-wrapper .pricing-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #211C20;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.pricing-wrapper .pricing-tag {
    background: #ffffff;
    padding: 18px 15px 18px 40px;
    border-radius: 10px;
    margin-right: 50px;
    margin-left: -60px;
    margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
    .pricing-wrapper .pricing-tag {
        margin-left: -50px;
    }
}

@media screen and (max-width: 575px) {
    .pricing-wrapper .pricing-tag {
        margin-right: 40px;
        padding: 15px 15px 15px 40px;
    }
}
/*our client page*/
.client-box .client-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 225px;
    margin: 0 auto;
    border-radius: inherit;
}

    .client-box .client-wrapper img {
        border-radius: inherit;
        transition: .3s;
    }

    .client-box .client-wrapper .hover-img {
        display: block;
        transform: translateY(-100%);
        opacity: 0;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        visibility: hidden;
    }

.client-box:hover .client-wrapper .hover-img {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}

    .client-box:hover .client-wrapper .hover-img + .main-img {
        transform: translateY(100%);
    }

/*team-detail page*/
.team-detail-wrapper .team-personal-data {
    margin-left: -30%;
}

.team-detail-wrapper .team-text-area {
    margin-top: -8%;
}

.team-info li {
    font-size: 15px;
    margin-bottom: 15px;
}

    .team-info li:last-child {
        margin-bottom: 0;
    }

    .team-info li span {
        margin-right: 10px;
        font-weight: 700;
    }

@media screen and (max-width: 1399px) {
    .team-detail-wrapper .team-text-area {
        margin-top: -12%;
    }
}

@media screen and (max-width: 991px) {
    .team-detail-wrapper .team-personal-data {
        margin-left: 0;
    }
}
/* faq page */
.faq-block:before {
    content: "";
    position: absolute;
    width: 65%;
    height: 100%;
    background-color: rgba(242, 242, 242, 0.5);
    top: 0;
    right: 0;
    z-index: 1;
}

@media screen and (max-width: 991px) {
    .faq-block:before {
        width: 100%;
    }
}
/*contactus page*/
.contact-data {
    margin-top: -60%;
}

.contact-info .info-box {
    margin-bottom: -15%;
}

@media screen and (max-width: 767px) {
    .contact-info .info-box {
        margin-bottom: -8%;
    }
}
/*service-detail left-panel*/
.service-details-sidebar .widget {
    position: relative;
    margin-bottom: 30px;
    background-color: #151416;
    border: 1px solid #151416;
    padding: 35px 30px;
    border-radius: 10px;
}

    .service-details-sidebar .widget:last-child {
        margin-bottom: 0;
    }

.service-details-sidebar .widget-info {
    margin-bottom: 30px;
}

/*widget brochure*/
.service-details-sidebar .widget-brochure ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-details-sidebar .widget-brochure li {
    margin-bottom: 15px;
}

    .service-details-sidebar .widget-brochure li a {
        position: relative;
        display: block;
        padding: 15px 15px 15px 65px;
        color: #fff;
        font-size: 16px;
        line-height: 30px;
        font-weight: 500;
    }

        .service-details-sidebar .widget-brochure li a:hover {
            color: #CC020E;
        }

        .service-details-sidebar .widget-brochure li a i {
            position: absolute;
            left: 0px;
            top: 8px;
            width: 50px;
            height: 45px;
            line-height: 46px;
            text-align: center;
            font-size: 20px;
            background: #414042;
            border-radius: 5px;
            color: #ffffff;
        }

    .service-details-sidebar .widget-brochure li:last-child {
        margin-bottom: 0;
    }

@media screen and (max-width: 767px) {
    .service-details-sidebar .widget {
        padding: 25px;
    }
}

.service-details-sidebar .side-bar h6 {
    color: #fff;
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 1.5rem;
}

    .service-details-sidebar .side-bar h6:before {
        content: '';
        background: #CC020E;
        height: 5px;
        width: 100%;
        position: absolute;
        bottom: 0px;
        z-index: -1;
    }

/*service-detail right panel*/
/*space planning service*/
.pricing-info {
    border-bottom: 1px solid #ededed;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .pricing-info:last-child {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

/*coming-soon page*/
.countdown {
    padding: 0;
}

    .countdown li {
        background: #211C20;
        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;
            -webkit-text-stroke-width: 1px;
            -webkit-text-stroke-color: #ffffff;
            color: transparent;
        }

            .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:before {
    content: "";
    position: absolute;
    width: 65%;
    height: 100%;
    background-image: url("../img/bg/bg-05.jpg");
    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%;
    }
}
/*404 eror page*/
.error-content {
    text-align: center;
}

.error-box {
    background-color: rgba(58, 99, 81, 0.15);
    height: 230px;
    max-width: 230px;
    width: 100%;
    margin: 0 auto;
    display: table;
    border-radius: 10px;
    text-shadow: 10px 10px 0 rgba(58, 99, 81, 0.2);
}

    .error-box h4 {
        font-size: 170px;
        letter-spacing: 2px;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #211C20;
        color: transparent;
        text-align: center;
        justify-content: center;
    }

    .error-box.center {
        text-shadow: 10px 10px 0 rgba(255, 255, 255, 0.2);
    }

        .error-box.center h4 {
            -webkit-text-stroke-color: #ffffff;
        }

@media screen and (max-width: 1399px) {
    .error-box {
        height: 204px;
    }
}

@media screen and (max-width: 767px) {
    .error-box {
        height: 156px;
    }

        .error-box h4 {
            font-size: 130px;
        }
}

@media screen and (max-width: 575px) {
    .error-box {
        height: 82px;
    }

        .error-box h4 {
            font-size: 70px;
        }
}
/* ===================================
 *    Elements
 *==================================== */
/* modal */
.modal-backdrop {
    z-index: 99999;
}

.modal {
    z-index: 999999;
}

/* fonts-icon page */
.icon-gallery .d-table {
    margin-top: 30px;
}

.icon-gallery .d-table-cell {
    width: 125px;
    height: 125px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.075);
    vertical-align: middle;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    padding: 10px;
    background: #fff;
}

.icon-gallery i {
    display: block;
    margin-bottom: 15px;
    font-size: 28px;
    color: #20476f;
}

/* copy elements */
pre[class*="language-"] {
    max-height: 45vh;
    height: 100%;
    margin: 35px 0 15px 0;
    padding-top: 0;
}

.html-code {
    background-color: #fbfbfb;
    position: relative;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ededed;
}

    .html-code:before {
        color: #c8dfab;
        content: "•••";
        font-size: 30px;
        left: 24px;
        letter-spacing: 4px;
        line-height: 12px;
        position: absolute;
        top: 24px;
    }

.copy-element {
    position: absolute;
    top: 0;
    right: 85px;
    transition: opacity 0.3s ease-in-out;
}

.source-element {
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity 0.3s ease-in-out;
}

.html-code .copy-element {
    top: 15px;
    right: 30px;
}

.html-code:hover .copy-element, .html-code:hover .source-element {
    opacity: 1;
}

.box-hover:hover .copy-element, .box-hover:hover .source-element {
    opacity: 1;
}

.copy-element > a, .source-element > a {
    background: #dde1e6;
    color: #777 !important;
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: capitalize;
    cursor: pointer !important;
    font-weight: 600;
}

    .copy-element > a:hover, .source-element > a:hover {
        background: #CC020E;
        color: #fff !important;
    }

.copy-clipboard {
    cursor: pointer;
    padding: 5px 15px;
}

.white-popup-block {
    background-color: #fbfbfb;
    position: relative;
    max-width: 650px;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 60px 30px 30px 30px;
    border-radius: 5px;
    margin: 40px auto;
    border: 1px solid #ededed;
}

    .white-popup-block.popup-copy.mfp-hide {
        display: block !important;
        height: 0;
        position: absolute;
        z-index: -1;
        padding: 0;
        opacity: 0;
        margin: 0;
    }

    .white-popup-block:before {
        color: rgba(3, 169, 245, 0.2);
        content: "•••";
        font-size: 30px;
        left: 24px;
        letter-spacing: 4px;
        line-height: 12px;
        position: absolute;
        top: 24px;
    }

    .white-popup-block:hover .copy-element {
        opacity: 1;
    }

    .white-popup-block .copy-element {
        top: 45px;
        right: 30px;
    }

.box-hover {
    position: relative;
}

    .box-hover .container {
        position: relative;
    }

.inner-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    margin-bottom: 35px;
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .elements-block .inner-title {
        margin-bottom: 65px;
    }

    .copy-element, .source-element {
        top: 65px;
    }
}
/* ===================================
 *   Blog
 * ==================================== */
/*blog sidebar*/
.blog-sidebar .widget {
    position: relative;
    margin-bottom: 30px;
    background-color: #151416;
    padding: 1.9rem;
    border-radius: 10px;
}

    .blog-sidebar .widget:last-child {
        margin-bottom: 0;
    }

.blog-sidebar .side-bar h6 {
    color: #fff;
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 1.5rem;
}

    .blog-sidebar .side-bar h6:before {
        content: '';
        background: #CC020E;
        height: 5px;
        width: 100%;
        position: absolute;
        bottom: 6px;
        z-index: -1;
    }

.side-bar h6 {
    position: relative;
    font-size: 1.5rem;
}

/*search*/
.search-bar {
    position: relative;
}

.blog-sidebar .widget .search-bar input[type="search"] {
    display: block;
    width: 100%;
    padding: 10px 40px 10px 25px;
    font-size: 15px;
    color: #4b4342;
    border: 1px solid #ededed;
    background: none;
    background: #ffffff;
    margin-bottom: 0;
    border-radius: 5px;
}

.blog-sidebar .widget .search-bar .btn-newsletter {
    position: absolute;
    color: #CC020E;
    right: 18px;
    top: 10px;
    padding: 0px;
    font-size: 18px;
    z-index: 3;
    outline: none;
}

/*client review*/
.blog-sidebar .widget-reviews .client-carousel .seprator {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

    .blog-sidebar .widget-reviews .client-carousel .seprator:before {
        position: absolute;
        content: '';
        left: -70px;
        top: 12px;
        background: #ededed;
        width: 50px;
        height: 2px;
    }

    .blog-sidebar .widget-reviews .client-carousel .seprator:after {
        position: absolute;
        content: '';
        right: -70px;
        top: 12px;
        background: #ededed;
        width: 50px;
        height: 2px;
    }

/* blog-post */
.blog-sidebar .widget.widget-post .widget-body h6 a {
    color: #fff;
}

    .blog-sidebar .widget.widget-post .widget-body h6 a:hover {
        color: #CC020E;
    }

/*tage*/
.blog-tags {
    margin: 0;
    padding: 0;
}

    .blog-tags li {
        display: inline-block;
    }

        .blog-tags li a {
            font-size: 14px;
            font-weight: 600;
            padding: 8px 12px;
            background-color: transparent;
            margin: 5px 5px 5px 0;
            display: inline-block;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 5px;
        }

            .blog-tags li a:hover {
                background: #CC020E;
                color: #ffffff !important;
                border: 1px solid #CC020E;
            }

    .blog-tags.tag-list li a {
        border: 1px solid rgba(33, 37, 41, 0.1);
        color: #575a7b;
    }

/* blog-details */
.blog-detail .separator-line {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ededed;
    text-align: left;
}

/* ===================================
 *   Others
 * ==================================== */
/*process section*/
.process-wrapper {
    width: 167px;
    height: 167px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    margin-bottom: 45px;
}

    .process-wrapper .process-count {
        width: 55px;
        height: 55px;
        line-height: 55px;
        border-radius: 50%;
        text-align: center;
        position: absolute;
        right: 54px;
        top: 30px;
        z-index: -1;
    }

        .process-wrapper .process-count span {
            font-size: 40px;
            font-weight: 700;
            color: #fff;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke-width: 1px;
            -webkit-text-stroke-color: #fff;
        }

    .process-wrapper .process-icon {
        width: 100px;
        height: 100px;
        background: #CC020E;
        border-radius: 10px;
        text-align: center;
        position: absolute;
        left: 34px;
        bottom: -25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

@media screen and (max-width: 1199px) {
    .process-wrapper {
        width: 150px;
        height: 150px;
    }

        .process-wrapper .process-icon {
            width: 70px;
            height: 70px;
            left: 40px;
        }

        .process-wrapper .process-count {
            right: 50px;
        }
}
/* blog section */
.blog-wrapper:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #CC020E;
    top: 0;
    right: 0;
}

/* call to action */
.call-to-action .video-img {
    margin-bottom: -9%;
}

@media screen and (max-width: 1199px) {
    .call-to-action .video-img {
        margin-bottom: -12%;
    }
}
/* gallery section */
.gallery-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(58, 99, 81, 0.9);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .4s;
    border-radius: 10px;
}

.gallery-wrapper .gallery-icon {
    opacity: 0;
    transition: .5s;
}

.email-wrap {
    word-wrap: break-word;
    max-width: 60vw;
}

.gallery-wrapper:hover:before, .gallery-wrapper:hover .gallery-icon {
    opacity: 1;
}

/*social-icon-style*/
.social-icon-style {
    margin: 0;
    display: inline-block;
    padding: 0;
    list-style: none;
}

    .social-icon-style li {
        padding-right: 15px;
        display: inline-block;
        text-align: center;
    }

        .social-icon-style li a {
            color: #ffffff;
            height: 40px;
            width: 40px;
            line-height: 40px;
            background-color: #CC020E;
            text-align: center;
            display: block;
            color: #ffffff;
            font-size: 16px;
            overflow: hidden;
            border-radius: 5px;
        }

    .social-icon-style.white li a {
        background-color: white;
        color: #CC020E;
    }

        .social-icon-style.white li a:hover, .social-icon-style.white li a:active, .social-icon-style.white li a:focus {
            color: #ffffff;
            background-color: #211C20;
        }

    .social-icon-style li a:hover, .social-icon-style li a:active, .social-icon-style li a:focus {
        background-color: #211C20;
    }

    .social-icon-style li:last-child {
        padding-right: 0;
    }

    .social-icon-style li a:hover i, .social-icon-style li a:active i, .social-icon-style li a:focus i {
        animation: bottomtotop .6s linear forwards;
    }

@media screen and (max-width: 575px) {
    .social-icon-style li a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }
}
/* page navigation */
.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: rgba(75 74 74 / 30%);
    border-radius: 10px;
}

.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;
        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;
        border-radius: 5px;
    }

    .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;
        border-radius: 0;
        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;
        border-radius: 0;
        overflow: hidden;
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        display: inline-block;
        position: relative;
        max-width: 220px;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        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: 16px;
        line-height: 1.5;
        font-weight: 600;
        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: 0px 5px 19px 2px rgba(0, 0, 0, 0.05);
    }

    .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: #CC020E;
        }

    .next-page .image-next:after {
        background-color: #CC020E;
    }

    .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;
        border-radius: 5px;
    }

.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;
            border-radius: 5px;
        }

    .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 (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 (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;
    }
}
/* popup gallery */
.lg-backdrop {
    z-index: 99999;
}

.lg-outer {
    z-index: 999999;
}

    .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
        border-color: #CC020E;
    }

.lg-progress-bar .lg-progress {
    background-color: #CC020E;
}

.lg-backdrop.in {
    opacity: 0.85;
}

/* quform */
.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        margin-bottom: .5rem;
    }

.form-control {
    border-color: #ededed;
    min-height: 50px;
    border-radius: 5px;
}

    .form-control:focus {
        border-color: #CC020E;
    }

.form-check-input:checked {
    border-color: #CC020E;
    background-color: #CC020E;
}

.form-check-input:focus {
    box-shadow: none;
}

.input {
    position: relative;
}

    .input .errors-wrap {
        position: absolute;
        right: 8px;
        top: 0;
        line-height: normal;
        z-index: 1;
    }

.element > label {
    font-weight: normal;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 14px;
}

    .element > label .required {
        color: #cc0101;
        font-size: 10px;
    }

.inner input {
    width: 100%;
}

.elements .element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top;
}

.elements .element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px;
}

.errors {
    padding: 0;
    margin: 0;
    line-height: normal;
}

    .errors > .error {
        padding: 0;
        background: none;
        border: none;
        float: none;
        color: #f5543f;
        font-size: 11px;
        line-height: normal;
        letter-spacing: normal;
    }

.outer-no-js .error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}

.outer-no-js .success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.has-error input, .has-error textarea, .has-error select, .has-error input[type=file], .has-error .custom-file-label {
    border-color: #f5543f;
}

.success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.submit-inner {
    float: none;
}

.loading-wrap {
    float: none;
}

    .loading-wrap .loading {
        display: inline-block;
    }

.element {
    margin-bottom: 1rem;
}

.light-validation .errors > .error {
    color: #fff;
}

/* newsletter */
.newsletter-form .elements {
    position: relative;
}

.newsletter-form .submit-inner {
    position: absolute;
    right: 9px;
    top: 11px;
    width: auto;
    height: 45px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .newsletter-form .submit-inner .btn {
        background-color: #211C20;
    }

        .newsletter-form .submit-inner .btn:hover, .newsletter-form .submit-inner .btn:active, .newsletter-form .submit-inner .btn:focus {
            background-color: #CC020E;
        }

.newsletter-form .loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}

.newsletter-form input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 65px;
    border-radius: 10px;
    padding: 0.5rem 4rem 0.5rem 2rem;
}

.newsletter-form .has-error input, .newsletter-form .has-error textarea, .newsletter-form .has-error select {
    border-color: #f5543f;
}

.newsletter-form .input .errors-wrap {
    right: 15px;
}

.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
}

/* ===================================
 *   Footer
 * ==================================== */
footer {
    padding: 80px 0 0;
}

@media screen and (max-width: 767px) {
    footer {
        padding-top: 60px;
    }
}

.footer-logo {
    max-width: 230px;
    width: 100%;
    display: inline-block;
}

    .footer-logo > a {
        display: inline-block;
    }

/*footer bar*/
.footer-bar {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer-bar {
        margin-top: 60px;
    }
}

.footer-bg {
    background-image: url(../img/bg/bg-03.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}

    .footer-bg .footer-overlay {
        opacity: 0.96;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

.footer-title {
    font-size: 18px;
    display: inline-block;
    text-transform: capitalize;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    padding: 0px 8px 8px 0px;
    border-style: solid;
    border-width: 0px 2px 2px 0px;
    border-color: rgba(205, 162, 116, 0.5);
}

/*gallary*/
.footer-icon:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(205, 162, 116, 0.8);
    opacity: 0;
    transition: 0.5s all ease-in-out;
}

.footer-icon:hover:before {
    opacity: 1;
}

.footer-icon .hover-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    height: 100%;
    opacity: 0;
    transition: 0.5s all ease-in-out;
}

.footer-icon:hover .hover-icon {
    opacity: 1;
}

/*footer-list*/
.footer-list li a {
    color: #fff;
}

    .footer-list li a:hover {
        color: #CC020E;
    }
/* mark-images */
.mark-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
}

.mark-cell {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0px;
    margin: 10px 5px;
    text-align: center;
}

mark-img {
    max-width: 100%;
}

/* conatct-info */
.conatct-info {
    margin-top: -70%;
}

@media screen and (max-width: 1199px) {
    .conatct-info {
        margin-top: 0;
    }
}
/*footer-social-icon*/
.footer-social-icon {
    margin-left: 0;
    display: block;
    padding-left: 0;
    list-style: none;
}

    .footer-social-icon li {
        padding-right: 5px;
        display: inline-block;
        text-align: center;
    }

        .footer-social-icon li a {
            height: 40px;
            width: 40px;
            line-height: 40px;
            background-color: rgba(58, 99, 81, 0.12);
            text-align: center;
            display: block;
            color: #211C20;
            font-size: 16px;
            overflow: hidden;
            border-radius: 5px;
        }

            .footer-social-icon li a:hover {
                background-color: #CC020E;
                color: #fff;
            }

        .footer-social-icon li:last-child {
            padding-right: 0;
        }

        .footer-social-icon li a:hover i {
            animation: bottomtotop .6s linear forwards;
        }

@keyframes bottomtotop {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}
/*footer-menu*/
.footer-menu {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

    .footer-menu li {
        display: inline-block;
    }

        .footer-menu li:after {
            content: '|';
            margin: 0 15px;
            top: 0;
            margin-top: -2px;
            color: rgba(255, 255, 255, 0.5);
            height: auto;
            width: auto;
        }

        .footer-menu li a {
            color: #ffffff;
        }

        .footer-menu li.last:after {
            content: none;
        }

@media screen and (max-width: 575px) {
    .footer-menu li:after {
        margin: 0 12px;
    }
}

/*# sourceMappingURL=styles.css.map */
