
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


body {
    font-size: 16px;
    color: #646578;
    line-height: 26px;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Poppins';
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
    .container {
        max-width: 1170px;
        padding: 0px 15px;
    }
}

.large-container {
    max-width: 1450px;
    padding: 0px 15px;
    margin: 0 auto;
}

.container-fluid {
    padding: 0px;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.small-container {
    max-width: 680px;
    margin: 0 auto;
}

.boxed_wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden !important;
    width: 100%;
    min-width: 300px;
}


a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

    a:hover {
        text-decoration: none;
        outline: none;
    }

input, button, select, textarea {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

input {
    transition: all 500ms ease;
}

    button:focus,
    input:focus,
    textarea:focus {
        outline: none;
        box-shadow: none;
        transition: all 500ms ease;
    }

p {
    position: relative;
    font-family: 'Lato', sans-serif;
    color: #646578;
    font-weight: 400;
    margin: 0px;
    transition: all 500ms ease;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #0a267a;
    margin: 0px;
    transition: all 500ms ease;
}

h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

h6 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

/* Preloader */

.handle-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 14px;
    line-height: 30px;
    background: #fff;
    padding: 5px 20px 3px 20px;
    cursor: pointer;
    right: 0;
    top: 0;
    font-weight: 600;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

    .handle-preloader .animation-preloader .spinner {
        animation: spinner 1s infinite linear;
        border-radius: 50%;
        height: 150px;
        margin: 0 auto 45px auto;
        width: 150px;
    }

    .handle-preloader .animation-preloader .txt-loading {
        text-align: center;
        user-select: none;
    }

        .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
            animation: letters-loading 4s infinite;
            content: attr(data-text-preloader);
            left: 0;
            opacity: 0;
            top: 0;
            position: absolute;
        }

        .handle-preloader .animation-preloader .txt-loading .letters-loading {
            font-weight: 700;
            letter-spacing: 15px;
            display: inline-block;
            position: relative;
            font-size: 70px;
            line-height: 70px;
            text-transform: uppercase;
        }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
                animation-delay: 0.2s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
                animation-delay: 0.4s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
                animation-delay: 0.6s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
                animation-delay: 0.8s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
                animation-delay: 1s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
                animation-delay: 1.2s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
                animation-delay: 1.4s;
            }

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    color: #ffffff;
}

    .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
        color: #ffffff;
    }

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.4);
}

/* AnimaciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 40px;
        letter-spacing: 10px;
    }
}


.centred {
    text-align: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}


figure {
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

/** button **/

.thm-btn-one {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
    color: #0a267a;
    font-weight: 600;
    padding: 7px 60px 9px 15px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 500ms ease;
    z-index: 1;
}

    .thm-btn-one i {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 46px;
        height: 46px;
        line-height: 46px;
        font-size: 20px;
        color: #fff;
        text-align: center;
        border-radius: 0px 5px 5px 0px;
    }

    .thm-btn-one:before {
        position: absolute;
        content: '';
        width: 0%;
        top: 0px;
        right: 44px;
        height: 100%;
        border-radius: 5px 0px 0px 5px;
        z-index: -1;
        transition: all 500ms ease;
    }

    .thm-btn-one:hover:before {
        width: calc(100% - 44px);
    }

    .thm-btn-one:hover {
        color: #fff;
    }

.theme-btn-two {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #0a267a;
    text-transform: uppercase;
    background: #ffffff;
    padding: 16px 34px;
    border-radius: 5px;
    transition: all 500ms ease;
}

    .theme-btn-two:hover {
        color: #ffffff;
    }

.thm-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .thm-btn:before {
        webkit-transition-duration: 800ms;
        transition-duration: 800ms;
        position: absolute;
        width: 200%;
        height: 200%;
        content: "";
        top: 110%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
    }

    .thm-btn:hover:before {
        top: -40%;
    }

    .thm-btn.green-color:before {
    }

.theme-btn-three {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    padding: 16px 54px;
    border-radius: 5px;
    transition: all 500ms ease;
}

    .theme-btn-three:hover {
        color: #fff !important;
    }

.theme-btn-four {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 5px;
    transition: all 500ms ease;
}

    .theme-btn-four.thm-btn:before {
        background: #0a267a;
    }


.pagination {
    position: relative;
    display: block;
}

    .pagination li {
        display: inline-block;
        margin: 0px 3px;
    }

        .pagination li a {
            position: relative;
            display: inline-block;
            font-size: 18px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            height: 52px;
            width: 52px;
            line-height: 52px;
            text-align: center;
            color: #0a267a;
            background: #eceff6;
            border-radius: 5px;
            z-index: 1;
            transition: all 500ms ease;
        }

        .pagination li:last-child a {
            width: 90px;
            font-size: 14px;
            text-transform: uppercase;
            color: #646578;
        }

            .pagination li:last-child a i {
                margin-left: 5px;
            }

        .pagination li a:hover,
        .pagination li a.current {
            color: #ffffff !important;
        }


.sec-pad {
    padding: 113px 0px 120px 0px;
}

.sec-pad-2 {
    padding: 120px 0px !important;
}

.mr-0 {
    margin: 0px !important;
}

.scroll-top {
    width: 55px;
    height: 55px;
    line-height: 55px;
    position: fixed;
    bottom: 105%;
    right: 60px;
    font-size: 20px;
    border-radius: 5px;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: 1s ease;
}

    .scroll-top.open {
        bottom: 60px;
    }

    .scroll-top span {
        color: #fff;
    }

.sec-title {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

    .sec-title h6 {
        display: block;
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 11px;
    }

    .sec-title h2 {
        display: block;
        font-size: 40px;
        line-height: 50px;
        font-weight: 600;
    }

    .sec-title.text-left h6 {
        padding-left: 70px;
    }

.green-color .sec-title h6 {
}

.sec-title.text-left h6:before {
    position: absolute;
    content: '';
    background: url(../images/icons/wave-2.png);
    width: 60px;
    height: 7px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
}

.green-color .sec-title h6:before {
    background: url(../images/icons/wave-5.png) !important;
}

.red-color .sec-title h6:before {
    background: url(../images/icons/wave-6.png) !important;
}

.sec-title.text-center {
    text-align: center !important;
}

    .sec-title.text-center h6 {
        padding-bottom: 10px;
        margin-bottom: 19px;
    }

        .sec-title.text-center h6:before {
            position: absolute;
            content: '';
            background: url(../images/icons/wave-2.png);
            width: 60px;
            height: 7px;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0px;
            background-repeat: no-repeat;
        }

.sec-title.light h6,
.sec-title.light h2 {
    color: #fff;
}

    .sec-title.light h6:before {
        background: url(../images/icons/wave-3.png);
    }



/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sticky-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/** header-top **/

.header-top {
    position: relative;
    border-bottom: 1px solid #dcdee5;
}

    .header-top .top-inner {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

        .header-top .top-inner .info li {
            position: relative;
            display: inline-block;
            font-size: 18px;
            line-height: 52.5px;
            padding-left: 28px;
            color: #646578;
            margin-right: 26px;
        }

            .header-top .top-inner .info li:last-child {
                margin: 0px !important;
            }

            .header-top .top-inner .info li:before {
                position: absolute;
                content: '';
                background: #dcdee5;
                width: 1px;
                height: 16px;
                top: 19px;
                right: -14px;
            }

            .header-top .top-inner .info li:last-child:before {
                display: none;
            }

            .header-top .top-inner .info li a {
                color: #646578;
            }

                .header-top .top-inner .info li a:hover {
                    text-decoration: underline;
                }

            .header-top .top-inner .info li i {
                position: absolute;
                left: 0px;
                top: 1px;
            }

        .header-top .top-inner .info {
            position: relative;
            padding: 0px 20px;
            border-left: 1px solid #dcdee5;
            border-right: 1px solid #dcdee5;
        }

        .header-top .top-inner .search-box .form-group {
            position: relative;
            min-width: 430px;
            padding: 0px 20px;
            margin: 0px;
        }

            .header-top .top-inner .search-box .form-group input[type='search'] {
                position: relative;
                width: 100%;
                height: 52px;
                font-size: 18px;
                color: #646578;
                padding: 10px 0px;
            }

            .header-top .top-inner .search-box .form-group button {
                position: absolute;
                top: 12px;
                right: 18px;
                font-size: 18px;
                background: transparent;
                font-weight: 600;
                color: #646578;
                cursor: pointer;
                transition: all 500ms ease;
            }

                .header-top .top-inner .search-box .form-group input:focus + button,
                .header-top .top-inner .search-box .form-group button:hover {
                }

        .header-top .top-inner .social-links li {
            position: relative;
            display: inline-block;
            font-size: 16px;
            line-height: 52.5px;
            margin: 0px 14px;
        }

            .header-top .top-inner .social-links li:before {
                position: absolute;
                content: '';
                background: #dcdee5;
                width: 1px;
                height: 16px;
                top: 18px;
                right: -17px;
            }

            .header-top .top-inner .social-links li:last-child:before {
                display: none;
            }

            .header-top .top-inner .social-links li a {
                display: inline-block;
                font-size: 16px;
                color: #646578;
            }

                .header-top .top-inner .social-links li a:hover {
                }

        .header-top .top-inner .social-links {
            position: relative;
            padding: 0px 6px;
            border-left: 1px solid #dcdee5;
            border-right: 1px solid #dcdee5;
        }

        .header-top .top-inner .support-box {
            position: relative;
            margin-left: 17px;
        }

            .header-top .top-inner .support-box p {
                position: relative;
                font-size: 18px;
                color: #646578;
                padding-left: 28px;
            }

                .header-top .top-inner .support-box p a {
                    color: #646578;
                }

                    .header-top .top-inner .support-box p a:hover {
                    }

                .header-top .top-inner .support-box p i {
                    position: absolute;
                    left: 0px;
                    top: 0px;
                }

.main-header .logo-box {
    position: relative;
    padding: 23px 0px;
}

    .main-header .logo-box .logo {
        max-width: 233px;
        width: 100%;
    }

        .main-header .logo-box .logo img {
            width: 100%;
        }

.main-header .menu-right-content {
    position: relative;
    float: left;
    padding-left: 18px;
    margin-left: 20px;
    margin-top: 23px;
}

    .main-header .menu-right-content:before {
        position: absolute;
        content: '';
        background: #dcdee5;
        width: 1px;
        height: 34px;
        left: 0px;
        top: 6px;
    }

    .main-header .menu-right-content .cart-box,
    .main-header .menu-right-content .btn-box {
        position: relative;
        float: left;
    }

    .main-header .menu-right-content .cart-box {
        margin-right: 53px;
        margin-top: 10px;
    }

        .main-header .menu-right-content .cart-box a {
            position: relative;
            display: inline-block;
            font-size: 24px;
            color: #0a267a;
        }

            .main-header .menu-right-content .cart-box a:hover {
            }

            .main-header .menu-right-content .cart-box a span {
                position: absolute;
                top: 1px;
                right: -13px;
                width: 20px;
                height: 20px;
                line-height: 20px;
                font-size: 12px;
                font-family: 'Poppins', sans-serif;
                color: #fff;
                text-align: center;
                border-radius: 50%;
                transition: all 500ms ease;
            }

            .main-header .menu-right-content .cart-box a:hover span {
                background: #222;
            }


/** main-menu **/

.main-menu {
    float: left;
}

    .main-menu .navbar-collapse {
        padding: 0px;
        display: block !important;
    }

    .main-menu .navigation {
        margin: 0px;
    }

        .main-menu .navigation > li {
            position: inherit;
            float: left;
            z-index: 2;
            padding: 31.5px 0px;
            margin: 0px 19px;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .main-menu .navigation > li:last-child {
                margin-right: 0px !important;
            }

            .main-menu .navigation > li:first-child {
                margin-left: 0px !important;
            }

            .main-menu .navigation > li > a {
                position: relative;
                display: block;
                text-align: center;
                font-size: 16px;
                line-height: 30px;
                font-family: 'Poppins', sans-serif;
                font-weight: 600;
                opacity: 1;
                color: #0a267a;
                z-index: 1;
                text-transform: uppercase;
                -webkit-transition: all 500ms ease;
                -moz-transition: all 500ms ease;
                -ms-transition: all 500ms ease;
                -o-transition: all 500ms ease;
                transition: all 500ms ease;
            }

            .main-menu .navigation > li.current > a,
            .main-menu .navigation > li:hover > a {
            }

            .main-menu .navigation > li > ul,
            .main-menu .navigation > li > .megamenu {
                position: absolute;
                left: inherit;
                top: 85%;
                width: 230px;
                z-index: 100;
                display: none;
                opacity: 0;
                visibility: hidden;
                padding: 10px 0px;
                filter: alpha(opacity=0);
                background: #fff;
                border-radius: 5px;
                -webkit-transition: all 0.2s ease-out;
                transition: all 0.2s ease-out;
                -moz-transition: all 0.2s ease-out;
                -ms-transition: all 0.2s ease-out;
                box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.1);
                -webkit-transform: rotateX(-90deg);
                transform: rotateX(-90deg);
                -webkit-transform-origin: 0 0;
                transform-origin: 0 0;
            }

                .main-menu .navigation > li > ul.from-right {
                    left: auto;
                    right: 0px;
                }

                .main-menu .navigation > li > ul > li {
                    position: relative;
                    width: 100%;
                    padding: 0px 30px;
                    -webkit-transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
                    transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
                    opacity: 0;
                    visibility: hidden;
                    -webkit-transform: translateY(5px);
                    transform: translateY(5px);
                }

            .main-menu .navigation > li:hover > ul > li {
                opacity: 1;
                visibility: visible;
                -webkit-transform: translateY(0);
                transform: translateY(0);
            }

            .main-menu .navigation > li > ul > li:nth-child(2n+1) {
                -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s;
            }

            .main-menu .navigation > li > ul > li:nth-child(2n+2) {
                -webkit-transition-delay: 0.15s;
                transition-delay: 0.15s;
            }

            .main-menu .navigation > li > ul > li:nth-child(2n+3) {
                -webkit-transition-delay: 0.2s;
                transition-delay: 0.2s;
            }

            .main-menu .navigation > li > ul > li:nth-child(2n+4) {
                -webkit-transition-delay: 0.25s;
                transition-delay: 0.25s;
            }

            .main-menu .navigation > li > ul > li:nth-child(2n+5) {
                -webkit-transition-delay: 0.3s;
                transition-delay: 0.3s;
            }

            .main-menu .navigation > li > ul > li:nth-child(2n+6) {
                -webkit-transition-delay: 0.35s;
                transition-delay: 0.35s;
            }

            .main-menu .navigation > li > ul > li:nth-child(2n+7) {
                -webkit-transition-delay: 0.4s;
                transition-delay: 0.4s;
            }

            .main-menu .navigation > li > ul > li:nth-child(2n+8) {
                -webkit-transition-delay: 0.45s;
                transition-delay: 0.45s;
            }

            .main-menu .navigation > li > ul > li:last-child {
                border-bottom: none;
            }

            .main-menu .navigation > li > ul > li > a,
            .main-menu .navigation > li > .megamenu li > a {
                position: relative;
                display: block;
                padding: 7px 0px;
                line-height: 24px;
                font-weight: 600;
                font-size: 16px;
                font-family: 'Poppins', sans-serif;
                text-transform: capitalize;
                color: #646578;
                text-align: left;
                transition: all 500ms ease;
                -moz-transition: all 500ms ease;
                -webkit-transition: all 500ms ease;
                -ms-transition: all 500ms ease;
                -o-transition: all 500ms ease;
            }

            .main-menu .navigation > li > ul > li > a {
                border-bottom: 1px solid #dcdee5;
                padding: 14px 0px 13px 0px;
            }

                .main-menu .navigation > li > ul > li > a:hover {
                    padding-left: 11px;
                }

                .main-menu .navigation > li > ul > li > a:before {
                    position: absolute;
                    content: "\f105";
                    font-family: 'Font Awesome 5 Pro';
                    font-size: 16px;
                    left: 0px;
                    top: 14px;
                    color: #fff;
                    opacity: 0;
                    font-weight: 400;
                    transition: all 500ms ease;
                }

                .main-menu .navigation > li > ul > li > a:hover:before {
                    opacity: 1;
                }

                .main-menu .navigation > li > ul > li > a:hover,
                .main-menu .navigation > li > .megamenu li > a:hover {
                }

            .main-menu .navigation > li > ul > li:last-child > a,
            .main-menu .navigation > li > .megamenu li:last-child > a {
                border-bottom: none;
            }

            .main-menu .navigation > li > ul > li.dropdown > a:after {
                font-family: 'Font Awesome 5 Pro';
                content: "\f105";
                position: absolute;
                right: 20px;
                top: 14px;
                display: block;
                line-height: 24px;
                font-size: 16px;
                font-weight: 800;
                text-align: center;
                z-index: 5;
            }

            .main-menu .navigation > li > ul > li > ul {
                position: absolute;
                right: 100%;
                top: 0%;
                width: 230px;
                z-index: 100;
                display: none;
                padding: 10px 0px;
                filter: alpha(opacity=0);
                background: #fff;
                border-radius: 0px 0px 10px 10px;
                -webkit-transition: all 0.2s ease-out;
                transition: all 0.2s ease-out;
                -moz-transition: all 0.2s ease-out;
                -ms-transition: all 0.2s ease-out;
                -webkit-box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.2);
                box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.2);
                -webkit-transform: rotateX(-90deg);
                transform: rotateX(-90deg);
                -webkit-transform-origin: 0 0;
                transform-origin: 0 0;
            }

                .main-menu .navigation > li > ul > li > ul.from-right {
                    left: auto;
                    right: 0px;
                }

                .main-menu .navigation > li > ul > li > ul > li {
                    position: relative;
                    width: 100%;
                    padding: 0px 30px;
                }

                .main-menu .navigation > li > ul > li > ul > li {
                    position: relative;
                    width: 100%;
                    padding: 0px 30px;
                    -webkit-transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
                    transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
                    opacity: 0;
                    visibility: hidden;
                    -webkit-transform: translateY(5px);
                    transform: translateY(5px);
                }

            .main-menu .navigation > li > ul > li:hover > ul > li {
                opacity: 1;
                visibility: visible;
                -webkit-transform: translateY(0);
                transform: translateY(0);
            }

            .main-menu .navigation > li > ul > li > ul > li:nth-child(2n+1) {
                -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s;
            }

            .main-menu .navigation > li > ul > li > ul > li:nth-child(2n+2) {
                -webkit-transition-delay: 0.15s;
                transition-delay: 0.15s;
            }

            .main-menu .navigation > li > ul > li > ul > li:nth-child(2n+3) {
                -webkit-transition-delay: 0.2s;
                transition-delay: 0.2s;
            }

            .main-menu .navigation > li > ul > li > ul > li:nth-child(2n+4) {
                -webkit-transition-delay: 0.25s;
                transition-delay: 0.25s;
            }

            .main-menu .navigation > li > ul > li > ul > li:last-child {
                border-bottom: none;
            }

            .main-menu .navigation > li > ul > li > ul > li:last-child {
                border-bottom: none;
            }

            .main-menu .navigation > li > ul > li > ul > li > a {
                position: relative;
                display: block;
                padding: 7px 0px;
                line-height: 24px;
                font-weight: 500;
                font-size: 15px;
                font-family: 'Poppins', sans-serif;
                text-transform: capitalize;
                color: #646578;
                text-align: left;
                transition: all 500ms ease;
                -moz-transition: all 500ms ease;
                -webkit-transition: all 500ms ease;
                -ms-transition: all 500ms ease;
                -o-transition: all 500ms ease;
            }

            .main-menu .navigation > li > ul > li > ul > li:last-child > a {
                border-bottom: none;
            }

            .main-menu .navigation > li > ul > li > ul > li > a:hover {
            }

            .main-menu .navigation > li > ul > li > ul > li.dropdown > a:after {
                font-family: 'Font Awesome 5 Pro';
                content: "\f105";
                position: absolute;
                right: 20px;
                top: 12px;
                display: block;
                line-height: 24px;
                font-size: 16px;
                font-weight: 900;
                z-index: 5;
            }

            .main-menu .navigation > li.dropdown:hover > ul,
            .main-menu .navigation > li.dropdown:hover > .megamenu {
                visibility: visible;
                opacity: 1;
                filter: alpha(opacity=100);
                top: 85%;
                -webkit-transform: rotateX(0);
                transform: rotateX(0);
            }

        .main-menu .navigation li > ul > li.dropdown:hover > ul {
            visibility: visible;
            opacity: 1;
            filter: alpha(opacity=100);
            top: 0%;
            -webkit-transform: rotateX(0);
            transform: rotateX(0);
        }

        .main-menu .navigation li.dropdown .dropdown-btn {
            position: absolute;
            right: -32px;
            top: 66px;
            width: 34px;
            height: 30px;
            text-align: center;
            font-size: 18px;
            line-height: 26px;
            color: #3b3b3b;
            cursor: pointer;
            display: none;
            z-index: 5;
            transition: all 500ms ease;
        }

        .main-menu .navigation li.current.dropdown .dropdown-btn,
        .main-menu .navigation li:hover .dropdown-btn {
        }

        .main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
            display: none;
        }

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #3786ff;
    display: none;
}

    .menu-area .mobile-nav-toggler .icon-bar {
        position: relative;
        height: 2px;
        width: 30px;
        display: block;
        margin-bottom: 5px;
        background-color: #222222;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .menu-area .mobile-nav-toggler .icon-bar:last-child {
            margin-bottom: 0px;
        }


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu {
    position: absolute;
    width: 100%;
    padding: 30px 50px;
    left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
    font-weight: 500;
    padding: 3px 0px;
    margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #3786ff;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 900ms ease;
}

    .mobile-menu .navbar-collapse {
        display: block !important;
    }

    .mobile-menu .nav-logo {
        position: relative;
        padding: 50px 25px;
        text-align: left;
        padding-bottom: 100px;
    }

.mobile-menu-visible {
    overflow: hidden;
}

    .mobile-menu-visible .mobile-menu {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 900ms ease;
    background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.70;
    visibility: visible;
    right: 100%;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #262626;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

    .mobile-menu .navigation li {
        position: relative;
        display: block;
        border-top: 1px solid rgba(255,255,255,0.10);
    }

    .mobile-menu .navigation:last-child {
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .mobile-menu .navigation li > ul > li:first-child {
        border-top: 1px solid rgba(255,255,255,0.10);
    }

    .mobile-menu .navigation li > a {
        position: relative;
        display: block;
        line-height: 24px;
        padding: 10px 25px;
        font-size: 15px;
        font-weight: 500;
        color: #ffffff;
        text-transform: uppercase;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .mobile-menu .navigation li ul li > a {
        font-size: 16px;
        margin-left: 20px;
        text-transform: capitalize;
    }

    .mobile-menu .navigation li > a:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 0;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .mobile-menu .navigation li.current > a:before {
        height: 100%;
    }

    .mobile-menu .navigation li.dropdown .dropdown-btn {
        position: absolute;
        right: 6px;
        top: 6px;
        width: 32px;
        height: 32px;
        text-align: center;
        font-size: 16px;
        line-height: 32px;
        color: #ffffff;
        background: rgba(255,255,255,0.10);
        cursor: pointer;
        border-radius: 2px;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 5;
    }

        .mobile-menu .navigation li.dropdown .dropdown-btn.open {
            color: #ffffff;
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg);
        }

    .mobile-menu .navigation li > ul,
    .mobile-menu .navigation li > ul > li > ul,
    .mobile-menu .navigation > li.dropdown > .megamenu {
        display: none;
    }

.mobile-menu .social-links {
    position: relative;
    padding: 0px 25px;
}

    .mobile-menu .social-links li {
        position: relative;
        display: inline-block;
        margin: 0px 10px 10px;
    }

        .mobile-menu .social-links li a {
            position: relative;
            line-height: 32px;
            font-size: 16px;
            color: #ffffff;
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .mobile-menu .social-links li a:hover {
            }

div#mCSB_1_container {
    top: 0px !important;
}

.mobile-menu .contact-info {
    position: relative;
    padding: 120px 30px 20px 30px;
}

    .mobile-menu .contact-info h4 {
        position: relative;
        font-size: 20px;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .mobile-menu .contact-info ul li {
        position: relative;
        display: block;
        font-size: 15px;
        color: rgba(255,255,255,0.80);
        margin-bottom: 3px;
    }

        .mobile-menu .contact-info ul li a {
            color: rgba(255,255,255,0.80);
        }

            .mobile-menu .contact-info ul li a:hover {
            }

        .mobile-menu .contact-info ul li:last-child {
            margin-bottom: 0px;
        }

.main-header .outer-box {
    position: relative;
}



/** banner-section **/

.banner-section {
    position: relative;
}

.banner-carousel {
    position: relative;
}

    .banner-carousel .slide-item {
        position: relative;
        padding: 150px 0px 260px 0px;
        overflow: hidden;
    }

        .banner-carousel .slide-item:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            background: -webkit-linear-gradient(0deg, rgba(35,35,35,1), rgba(0,0,0,0.0) 100%);
            top: 0px;
            right: 0px;
            z-index: 1;
        }

        .banner-carousel .slide-item .image-layer {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all 6000ms linear;
            -moz-transition: all 6000ms linear;
            -ms-transition: all 6000ms linear;
            -o-transition: all 6000ms linear;
            transition: all 6000ms linear;
        }

    .banner-carousel .active .slide-item .image-layer {
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
    }

    .banner-carousel .content-box {
        position: relative;
        display: block;
        max-width: 480px;
        z-index: 5;
    }

        .banner-carousel .content-box h2 {
            position: relative;
            display: block;
            color: #fff;
            font-size: 60px;
            line-height: 72px;
            font-weight: 600;
            margin-bottom: 28px;
            opacity: 0;
            -webkit-transform: translateY(100px);
            -moz-transform: translateY(100px);
            -ms-transform: translateY(100px);
            -o-transform: translateY(100px);
            transform: translateY(100px);
            -webkit-transition: all 700ms ease;
            -moz-transition: all 700ms ease;
            -ms-transition: all 700ms ease;
            -o-transition: all 700ms ease;
            transition: all 700ms ease;
        }

    .banner-carousel .active .content-box h2 {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 700ms;
        -moz-transition-delay: 700ms;
        -ms-transition-delay: 700ms;
        -o-transition-delay: 700ms;
        transition-delay: 700ms;
    }

    .banner-carousel .content-box p {
        position: relative;
        display: block;
        color: #fff;
        margin-bottom: 35px;
        opacity: 0;
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transition: all 1000ms ease;
        -moz-transition: all 1000ms ease;
        -ms-transition: all 1000ms ease;
        -o-transition: all 1000ms ease;
        transition: all 1000ms ease;
    }

    .banner-carousel .active .content-box p {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 1000ms;
        -moz-transition-delay: 1000ms;
        -ms-transition-delay: 1000ms;
        -o-transition-delay: 1000ms;
        transition-delay: 1000ms;
    }

    .banner-carousel .content-box .btn-box {
        position: relative;
        opacity: 0;
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transition: all 1300ms ease;
        -moz-transition: all 1300ms ease;
        -ms-transition: all 1300ms ease;
        -o-transition: all 1300ms ease;
        transition: all 1300ms ease;
    }

    .banner-carousel .active .content-box .btn-box {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 1300ms;
        -moz-transition-delay: 1300ms;
        -ms-transition-delay: 1300ms;
        -o-transition-delay: 1300ms;
        transition-delay: 1300ms;
    }

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
    display: none !important;
}

.banner-section .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

    .banner-section .owl-nav .owl-next,
    .banner-section .owl-nav .owl-prev {
        position: absolute;
        display: inline-block;
        font-size: 60px;
        line-height: 60px;
        color: #fff;
        font-weight: 400;
        cursor: pointer;
        transition: all 500ms ease;
        z-index: 1;
    }

    .banner-section .owl-nav .owl-prev {
        right: 50px;
    }

    .banner-section .owl-nav .owl-next {
        left: 50px;
    }

        .banner-section .owl-nav .owl-next:hover,
        .banner-section .owl-nav .owl-prev:hover {
        }

.banner-section .other-content {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    z-index: 1;
}

    .banner-section .other-content .content-inner {
        position: relative;
        padding: 22px 0px 26px 0px;
    }

        .banner-section .other-content .content-inner .cloud-shape {
            position: absolute;
            right: -120px;
            bottom: 0px;
            width: 577px;
            height: 193px;
            background-repeat: no-repeat;
        }

    .banner-section .other-content .info-box li {
        position: relative;
        display: inline-block;
        padding-left: 50px;
        margin-right: 85px;
    }

        .banner-section .other-content .info-box li:last-child {
            margin: 0px !important;
        }

        .banner-section .other-content .info-box li i {
            position: absolute;
            left: 0px;
            top: 8px;
            font-size: 40px;
            color: #fff;
            line-height: 40px;
        }

        .banner-section .other-content .info-box li h6 {
            display: block;
            font-size: 14px;
            line-height: 26px;
            color: #fff;
            font-weight: 600;
        }

            .banner-section .other-content .info-box li h6 strong {
                display: block;
                text-transform: uppercase;
                font-weight: 600;
            }

    .banner-section .other-content .mail-box {
        position: relative;
        padding-right: 70px;
        text-align: right;
    }

        .banner-section .other-content .mail-box i {
            position: absolute;
            top: 1px;
            right: 0px;
            width: 54px;
            height: 54px;
            line-height: 54px;
            font-size: 30px;
            color: #fff;
            text-align: center;
            border-radius: 10px;
        }

        .banner-section .other-content .mail-box h6 {
            display: block;
            font-size: 14px;
            line-height: 26px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .banner-section .other-content .mail-box p {
            display: block;
            font-size: 16px;
            line-height: 24px;
            color: #646578;
            font-weight: 600;
        }

            .banner-section .other-content .mail-box p a {
                display: inline-block;
                color: #646578;
            }

                .banner-section .other-content .mail-box p a:hover {
                }


/** highlights-section **/

.highlights-section {
    position: relative;
    padding-top: 120px;
}

    .highlights-section .big-block .inner-box {
        position: relative;
        display: block;
        overflow: hidden;
        background: #fff;
        padding: 29px 30px 40px 30px;
        box-shadow: 0px 15px 20px 0px rgba(0,0,0,0.04);
        border-radius: 5px;
        text-align: right;
    }

        .highlights-section .big-block .inner-box .shape {
            position: absolute;
            top: 0px;
            right: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
        }

        .highlights-section .big-block .inner-box .image-box {
            position: absolute;
            left: 0px;
            bottom: 0px;
        }

        .highlights-section .big-block .inner-box h4 {
            display: block;
            font-size: 20px;
            line-height: 30px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 71px;
        }

        .highlights-section .big-block .inner-box .location-box {
            position: relative;
            display: inline-block;
            text-align: left;
        }

            .highlights-section .big-block .inner-box .location-box h6 {
                display: block;
                font-size: 14px;
                line-height: 24px;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 8px;
            }

            .highlights-section .big-block .inner-box .location-box .zip-form .form-group {
                position: relative;
                min-width: 270px;
                margin: 0px;
            }

                .highlights-section .big-block .inner-box .location-box .zip-form .form-group input[type='text'] {
                    position: relative;
                    width: 100%;
                    height: 60px;
                    border: 1px solid #dcdee5;
                    font-size: 18px;
                    color: #dcdee5;
                    border-radius: 5px;
                    padding: 10px 50px 10px 20px;
                    transition: all 500ms ease;
                }

                .highlights-section .big-block .inner-box .location-box .zip-form .form-group button {
                    position: absolute;
                    top: 1px;
                    right: 1px;
                    height: 58px;
                    width: 59px;
                    line-height: 58px;
                    font-size: 24px;
                    background: #eceff6;
                    text-align: center;
                    color: #babac5;
                    font-weight: 700;
                    border-radius: 0px 5px 5px 0px;
                    transition: all 500ms ease;
                }

                .highlights-section .big-block .inner-box .location-box .zip-form .form-group input:focus {
                }

                    .highlights-section .big-block .inner-box .location-box .zip-form .form-group input:focus + button {
                        color: #fff;
                    }

    .highlights-section .small-block .inner-box {
        position: relative;
        display: block;
        padding: 40px 15px 34px 30px;
        background: #eceff6;
        border-radius: 5px;
        transition: all 500ms ease;
    }

        .highlights-section .small-block .inner-box:hover {
            background: #fff;
        }

        .highlights-section .small-block .inner-box:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 0%;
            left: 0px;
            top: 0px;
            right: 0px;
            opacity: 0;
            border-radius: 5px;
            transition: all 500ms ease;
        }

        .highlights-section .small-block .inner-box:hover:before {
            height: 100%;
            opacity: 1;
        }

        .highlights-section .small-block .inner-box .icon-box {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 40px;
            background: #fff;
            text-align: center;
            border-radius: 5px;
            margin-bottom: 24px;
            transition: all 500ms ease;
        }

        .highlights-section .small-block .inner-box:hover .icon-box {
            color: #fff;
        }

        .highlights-section .small-block .inner-box .icon-box .shape {
            position: absolute;
            top: -15px;
            right: -37px;
            width: 32px;
            height: 32px;
            transform: scale(0,0);
            transition: all 500ms ease;
            background-repeat: no-repeat;
        }

        .highlights-section .small-block .inner-box:hover .icon-box .shape {
            transform: scale(1,1);
        }

        .highlights-section .small-block .inner-box h4 {
            display: block;
            font-size: 20px;
            line-height: 30px;
            font-weight: 600;
            padding-bottom: 30px;
            margin-bottom: 22px;
        }

            .highlights-section .small-block .inner-box h4:before {
                position: absolute;
                content: '';
                background: url(../images/icons/wave-1.png);
                width: 60px;
                height: 18px;
                left: 0px;
                bottom: 0px;
                background-repeat: no-repeat;
            }

        .highlights-section .small-block .inner-box p {
            position: relative;
            color: #646578;
        }


/** about-section **/

.about-section {
    position: relative;
    padding: 113px 0px;
}

.content_block_1 .content-box .text {
    position: relative;
    margin-bottom: 30px;
}

.content_block_1 .content-box .inner-box .left-column li {
    position: relative;
    margin-bottom: 21px;
}

    .content_block_1 .content-box .inner-box .left-column li:last-child {
        margin-bottom: 0px;
    }

    .content_block_1 .content-box .inner-box .left-column li h6 {
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
        color: #646578;
        text-transform: uppercase;
        margin-bottom: 1px;
    }

.content_block_1 .content-box .inner-box .right-column li {
    position: relative;
    display: block;
    padding-left: 75px;
    margin-bottom: 24px;
}

    .content_block_1 .content-box .inner-box .right-column li:last-child {
        margin-bottom: 0px;
    }

    .content_block_1 .content-box .inner-box .right-column li i {
        position: absolute;
        left: 0px;
        top: 5px;
        width: 46px;
        height: 46px;
        line-height: 46px;
        font-size: 24px;
        color: #fff;
        border-radius: 5px;
        text-align: center;
    }

.content_block_1 .content-box .inner-box {
    position: relative;
    margin-bottom: 42px;
}

.content_block_1 .content-box .sec-title {
    margin-bottom: 22px;
}

.image_block_1 .image-box {
    position: relative;
    display: block;
    /* padding-right: 60px; */
}

    .image_block_1 .image-box img {
        width: 100%;
    }

    .image_block_1 .image-box .image-1 {
        position: relative;
        border-radius: 50%;
    }

        .image_block_1 .image-box .image-1 img {
            border-radius: 50%;
        }

    .image_block_1 .image-box .image-2 {
        position: absolute;
        right: 0px;
        bottom: 28px;
        border-radius: 50%;
    }

        .image_block_1 .image-box .image-2 img {
            border-radius: 50%;
        }

    .image_block_1 .image-box .image-3-bg {
        position: absolute;
        top: 32px;
        right: 0px;
        width: 190px;
        height: 190px;
        background: #fff;
        border: 15px solid #eceff6;
        border-radius: 50%;
        box-shadow: 0px 15px 20px 0px rgba(0,0,0,0.1);
    }

        .image_block_1 .image-box .image-3-bg:before {
            position: absolute;
            content: '';
            /* background: #eceff6; */
            width: 15px;
            height: 160px;
            top: 3px;
            right: 68px;
            z-index: 1;
            transform: rotate(30deg);
            /* box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15); */
        }

    .image_block_1 .image-box .image-3 {
        position: absolute;
        top: 63px;
        right: 31px;
    }

.rotate-me {
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 30s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 30s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 30s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}


/** service-section **/

.service-section {
    position: relative;
    padding-top: 113px;
}

    .service-section .image-layer {
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        width: 100%;
        height: 515px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

        .service-section .image-layer:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
            right: 0px;
            opacity: 0.9;
        }

.tabs-box .tab {
    position: relative;
    display: none;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

    .tabs-box .tab.active-tab {
        display: block;
    }

.tabs-box .tab {
    transform: scale(0.9,0.9) translateY(0px);
}

    .tabs-box .tab.active-tab {
        transform: scale(1) translateY(0px);
    }

.tabs-box-2 .tab-2 {
    position: relative;
    display: none;
}

    .tabs-box-2 .tab-2.active-tab-2 {
        display: block;
    }

.tabs-box-2 .tab-2 {
    transform: scale(0.9,0.9) translateY(0px);
}

    .tabs-box-2 .tab-2.active-tab-2 {
        transform: scale(1) translateY(0px);
    }

.service-section .tab-btn-one .tab-btns {
    position: relative;
    display: block;
}

    .service-section .tab-btn-one .tab-btns li {
        position: relative;
        display: inline-block;
        font-size: 20px;
        line-height: 30px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        font-weight: 600;
        width: 270px;
        background: rgba(255,255,255,0.3);
        padding: 20px 30px;
        text-align: left;
        cursor: pointer;
        margin-right: 7px;
        border-radius: 5px 5px 0px 0px;
        transition: all 500ms ease;
    }

        .service-section .tab-btn-one .tab-btns li:last-child {
            margin: 0px !important;
        }

        .service-section .tab-btn-one .tab-btns li:before {
            position: absolute;
            content: '';
            width: 20px;
            height: 20px;
            border: 1px solid #b2bbdd;
            border-radius: 50%;
            top: 25px;
            right: 20px;
            transition: all 500ms ease;
        }

        .service-section .tab-btn-one .tab-btns li.active-btn:before {
        }

        .service-section .tab-btn-one .tab-btns li:after {
            position: absolute;
            content: '';
            width: 8px;
            height: 8px;
            background: #c5cdea;
            border-radius: 50%;
            top: 31px;
            right: 26px;
            transition: all 500ms ease;
        }

        .service-section .tab-btn-one .tab-btns li.active-btn:after {
        }

        .service-section .tab-btn-one .tab-btns li.active-btn {
            background: #eceff6;
            color: #0a267a;
        }

.service-section .tab-buttons-2 {
    position: relative;
    display: block;
    background: #eceff6;
    padding: 40px 30px;
    padding-right: 120px;
    border-radius: 0px 5px 5px 5px;
}

    .service-section .tab-buttons-2 li {
        position: relative;
        display: block;
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        color: #0a267a;
        font-weight: 600;
        background: #fff;
        padding: 16px 30px;
        text-align: left;
        border-radius: 5px;
        cursor: pointer;
        z-index: 1;
        transition: all 500ms ease;
    }

        .service-section .tab-buttons-2 li i {
            position: absolute;
            top: 18px;
            right: 20px;
            font-size: 24px;
            transition: all 500ms ease;
        }

        .service-section .tab-buttons-2 li.active-btn-2 {
            color: #fff;
        }

            .service-section .tab-buttons-2 li.active-btn-2 i {
                transform: rotate(90deg);
            }

.service-carousel .owl-nav {
    position: absolute;
    top: 40px;
    right: 30px;
    display: inline-block;
    background: #fff;
    width: 70px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

    .service-carousel .owl-nav .owl-prev,
    .service-carousel .owl-nav .owl-next {
        position: relative;
        display: inline-block;
        font-size: 35px;
        margin: 0px 0px;
        padding: 0px 5px;
        font-weight: 400;
        cursor: pointer;
        border-radius: 5px;
        transition: all 500ms ease;
    }

        .service-carousel .owl-nav .owl-prev:hover,
        .service-carousel .owl-nav .owl-next:hover {
        }

.service-section .tabs-content-2 {
    position: relative;
    display: block;
    padding: 75px 0px 80px 0px;
}

    .service-section .tabs-content-2:before {
        position: absolute;
        content: '';
        background: #ffffff;
        width: calc(100% + 150px);
        height: calc(100% + 90px);
        left: -75px;
        top: -90px;
        box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
        border-radius: 5px;
        z-index: -1;
    }

.content_block_2 .content-box h2 {
    display: block;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 24px;
}

.content_block_2 .content-box .text {
    margin-bottom: 28px;
}

.content_block_2 .content-box .list-item {
    margin-bottom: 37px;
}

    .content_block_2 .content-box .list-item li {
        position: relative;
        display: block;
        padding-left: 30px;
        margin-bottom: 11px;
    }

        .content_block_2 .content-box .list-item li:last-child {
            margin-bottom: 0px;
        }

        .content_block_2 .content-box .list-item li:before {
            position: absolute;
            content: "\f10c";
            font-family: 'Flaticon';
            font-size: 16px;
            left: 0px;
            top: 1px;
        }

.content_block_2 .content-box .btn-box {
    margin-bottom: 27px;
}

.content_block_2 .content-box .other-text {
    position: relative;
    display: block;
}

    .content_block_2 .content-box .other-text p {
        color: #0a267a;
    }

        .content_block_2 .content-box .other-text p a {
            display: inline-block;
        }

            .content_block_2 .content-box .other-text p a:hover {
                color: #0a267a;
                border-color: #0a267a;
            }

    .content_block_2 .content-box .other-text .arrow {
        position: absolute;
        bottom: 35px;
        right: -23px;
        width: 166px;
        height: 107px;
        background-repeat: no-repeat;
    }

.image_block_2 .image-box {
    position: relative;
    display: block;
    padding-left: 65px;
    margin-top: 25px;
}

    .image_block_2 .image-box .image {
        position: relative;
        display: block;
        border-radius: 5px;
    }

        .image_block_2 .image-box .image:after {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            left: -20px;
            top: -20px;
            border-radius: 5px;
        }

        .image_block_2 .image-box .image img {
            width: 100%;
            border-radius: 5px;
        }

    .image_block_2 .image-box .image-content {
        position: absolute;
        left: 0px;
        bottom: 80px;
        width: 130px;
        height: 130px;
        text-align: center;
        border-radius: 50%;
        padding: 36px 15px;
    }

        .image_block_2 .image-box .image-content h6 {
            display: block;
            font-size: 14px;
            line-height: 22px;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
        }

        .image_block_2 .image-box .image-content h2 {
            display: block;
            font-size: 36px;
            line-height: 45px;
            color: #ffffff;
            font-weight: 600;
        }


/** works-section **/

.works-section {
    position: relative;
}

    .works-section .pattern-layer {
        position: absolute;
        left: 0px;
        bottom: 0px;
        right: 0px;
        width: 100%;
        height: 251px;
        background-repeat: no-repeat;
        background-size: cover;
    }

.content_block_3 .content-box .text {
    margin-bottom: 43px;
}

.content_block_3 .content-box .inner-box {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

    .content_block_3 .content-box .inner-box .image {
        position: relative;
        display: block;
        border-radius: 5px;
    }

        .content_block_3 .content-box .inner-box .image img {
            width: 100%;
            border-radius: 5px;
        }

    .content_block_3 .content-box .inner-box .progress-inner {
        position: absolute;
        right: 0px;
        bottom: 0px;
        width: 370px;
        padding: 34px 30px 40px 30px;
        background: #fff;
        box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
        border-radius: 5px;
    }

.content_block_3 .content-box .sec-title {
    margin-bottom: 22px;
}

.progress-box {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

    .progress-box:last-child {
        margin-bottom: 0px;
    }

    .progress-box .bar {
        position: relative;
        width: 100%;
        height: 8px;
        background: #eceff6;
        border-radius: 5px;
    }

        .progress-box .bar:before {
            position: absolute;
            content: '';
            width: 2px;
            height: 14px;
            left: 0px;
            top: -6px;
        }

    .progress-box .bar-inner {
        position: relative;
        display: block;
        border-radius: 5px;
        width: 0px;
        height: 8px;
        -webkit-transition: all 1500ms ease;
        -ms-transition: all 1500ms ease;
        -o-transition: all 1500ms ease;
        -moz-transition: all 1500ms ease;
        transition: all 1500ms ease;
    }

        .progress-box .bar-inner:before {
            position: absolute;
            content: '';
            width: 16px;
            height: 16px;
            border: 3px solid #fff;
            border-radius: 50%;
            top: -4px;
            right: 0px;
        }

    .progress-box .count-text {
        position: absolute;
        top: -33px;
        right: 0px;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .progress-box h6 {
        display: block;
        font-size: 15px;
        line-height: 24px;
        font-weight: 600;
        margin-bottom: 8px;
    }

.content_block_4 .content-box {
    position: relative;
    display: block;
    padding: 0px 90px;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
    margin-top: 108px;
}

    .content_block_4 .content-box .inner-box {
        position: relative;
        display: inline-block;
        width: 390px;
        height: 390px;
        background: #eceff6;
        border-radius: 50%;
        text-align: center;
        padding: 80px 70px;
    }

        .content_block_4 .content-box .inner-box h4 {
            display: block;
            font-size: 20px;
            line-height: 30px;
            font-weight: 600;
            padding-bottom: 30px;
            margin-bottom: 22px;
        }

            .content_block_4 .content-box .inner-box h4:before {
                position: absolute;
                content: '';
                background: url(../images/icons/wave-1.png);
                width: 60px;
                height: 18px;
                left: 50%;
                transform: translateX(-50%);
                bottom: 0px;
                background-repeat: no-repeat;
            }

        .content_block_4 .content-box .inner-box p {
            margin-bottom: 14px;
        }

        .content_block_4 .content-box .inner-box a {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            z-index: 1;
        }

            .content_block_4 .content-box .inner-box a:hover {
                text-decoration: underline;
            }

        .content_block_4 .content-box .inner-box .step-list {
            position: absolute;
            left: 0px;
            top: 0px;
            right: 0px;
            width: 100%;
            height: 100%;
        }

            .content_block_4 .content-box .inner-box .step-list li {
                position: absolute;
                display: inline-block;
                width: 150px;
                height: 150px;
                text-align: center;
                background: #fff;
                border-radius: 50%;
                padding: 38px 30px;
                cursor: pointer;
                box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.05);
            }

                .content_block_4 .content-box .inner-box .step-list li:before {
                    position: absolute;
                    content: '';
                    width: calc(100% - 20px);
                    height: calc(100% - 20px);
                    left: 10px;
                    top: 10px;
                    border-radius: 50%;
                    opacity: 0;
                    transition: all 500ms ease;
                }

                .content_block_4 .content-box .inner-box .step-list li:hover:before {
                    opacity: 1;
                }

                .content_block_4 .content-box .inner-box .step-list li:first-child {
                    left: 50%;
                    transform: translateX(-50%);
                    top: -105px;
                }

                .content_block_4 .content-box .inner-box .step-list li:nth-child(2) {
                    top: 50%;
                    transform: translateY(-50%);
                    right: -90px;
                }

                .content_block_4 .content-box .inner-box .step-list li:nth-child(3) {
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: -105px;
                }

                .content_block_4 .content-box .inner-box .step-list li:last-child {
                    left: -90px;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .content_block_4 .content-box .inner-box .step-list li .icon-box {
                    position: relative;
                    display: inline-block;
                    font-size: 42px;
                    line-height: 40px;
                    color: #b6b6c2;
                    margin-bottom: 9px;
                    transition: all 500ms ease;
                }

                .content_block_4 .content-box .inner-box .step-list li:hover .icon-box {
                }

                .content_block_4 .content-box .inner-box .step-list li h6 {
                    display: block;
                    font-size: 14px;
                    line-height: 24px;
                    font-weight: 600;
                    text-transform: uppercase;
                }

        .content_block_4 .content-box .inner-box .arrow {
            position: absolute;
            left: 0px;
            top: 0px;
            right: 0px;
            width: 100%;
            height: 100%;
        }

        .content_block_4 .content-box .inner-box .arrow {
            position: absolute;
            width: 460px;
            height: 461px;
            left: -35px;
            top: -38px;
            background-repeat: no-repeat;
            z-index: -1;
        }


/** project-section **/

.project-section {
    position: relative;
    padding: 113px 0px 119px 0px;
}

    .project-section .owl-carousel {
        max-width: 570px;
        margin: 0 auto;
        width: 100%;
        display: block;
    }

    .project-section .owl-stage-outer {
        overflow: visible;
    }

    .project-section .project-inner {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 5px;
    }

.project-block-one .inner-box {
    position: relative;
    display: block;
}

    .project-block-one .inner-box .image-box {
        position: relative;
        display: block;
        border-radius: 5px;
    }

        .project-block-one .inner-box .image-box img {
            width: 100%;
            border-radius: 5px;
        }

    .project-block-one .inner-box .text {
        position: absolute;
        left: 30px;
        bottom: 30px;
        width: calc(100% - 60px);
        background: #fff;
        padding: 15px 30px;
        overflow: hidden;
        border-radius: 5px;
        transform: scale(0,0);
        transition: all 500ms ease;
    }

        .project-block-one .inner-box .text a {
            position: absolute;
            top: 0px;
            right: 0px;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            font-size: 24px;
            color: #fff;
        }

            .project-block-one .inner-box .text a:hover {
                background: #0a267a;
            }

.owl-item.active .project-block-one .inner-box .text {
    transform: scale(1,1);
}

.project-section .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

.project-section .nav-style-one .owl-nav .owl-prev,
.project-section .nav-style-one .owl-nav .owl-next {
    position: absolute;
}

.nav-style-one .owl-nav .owl-prev,
.nav-style-one .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: #b1b6c1;
    width: 50px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 0px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    transition: all 500ms ease;
}

.project-section .owl-nav .owl-prev {
    left: -95px;
}

.project-section .owl-nav .owl-next {
    right: -95px;
}

.nav-style-one .owl-nav .owl-prev:hover,
.nav-style-one .owl-nav .owl-next:hover {
    color: #fff;
}

.other-text {
    position: relative;
    display: block;
    margin-top: 53px;
}

    .other-text p {
        color: #0a267a;
    }

        .other-text p a {
        }

            .other-text p a:hover {
                color: #0a267a;
                border-color: #0a267a;
            }


/** booking-section **/

.booking-section {
    position: relative;
    background: #edf0f7;
}

.nice-select:after {
    position: absolute;
    content: "\f0dd";
    font-family: 'Font Awesome 5 Pro';
    font-size: 18px;
    color: #b6b6c2;
    top: -7px;
    right: 7px;
    margin: 0px;
    font-weight: 700;
    border: none !important;
    transform: rotate(0deg) !important;
}

.nice-select {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    max-width: 100%;
    line-height: 50px;
    border: none !important;
    border-bottom: 1px solid #dcdee5 !important;
    font-size: 15px;
    color: #646578;
    background: transparent;
    border-radius: 0px;
    padding: 0px 0px;
}

.booking-section .single-column {
    position: relative;
    float: left;
    width: 33.333%;
}

.content_block_5 .content-box {
    position: relative;
    display: block;
    padding: 73px 50px 80px 60px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .content_block_5 .content-box .shape {
        position: absolute;
        left: 0px;
        top: 0px;
        height: 100%;
        width: 478px;
        background-repeat: no-repeat;
    }

    .content_block_5 .content-box h2 {
        display: block;
        font-size: 40px;
        line-height: 50px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .content_block_5 .content-box .list-item {
        position: relative;
        margin-bottom: 160px;
    }

        .content_block_5 .content-box .list-item li {
            position: relative;
            display: block;
            color: #fff;
            padding-left: 30px;
            margin-bottom: 10px;
        }

            .content_block_5 .content-box .list-item li:last-child {
                margin-bottom: 0px;
            }

            .content_block_5 .content-box .list-item li:before {
                position: absolute;
                content: "\f10c";
                font-family: 'Flaticon';
                font-size: 16px;
                left: 0px;
                top: 1px;
            }

    .content_block_5 .content-box .support-box {
        position: relative;
        display: block;
        background: #fff;
        padding: 14.5px 30px;
        border-radius: 5px;
        text-align: center;
    }

        .content_block_5 .content-box .support-box h6 {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            font-weight: 600;
            text-transform: uppercase;
            padding-left: 30px;
        }

            .content_block_5 .content-box .support-box h6 i {
                position: absolute;
                left: 0px;
                top: 0px;
                font-size: 20px;
                font-weight: 400;
            }

            .content_block_5 .content-box .support-box h6 a {
                display: inline-block;
                color: #0a267a;
            }

                .content_block_5 .content-box .support-box h6 a:hover {
                    text-decoration: underline;
                }

.content_block_6 .content-box {
    position: relative;
    display: block;
    padding: 73px 60px 74px 60px;
}

    .content_block_6 .content-box .bg-layer {
        position: absolute;
        top: 0px;
        right: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .content_block_6 .content-box .sec-title {
        margin-bottom: 29px;
    }

    .content_block_6 .content-box .estimate-form .inner-box {
        position: relative;
        display: block;
        background: #fff;
        padding: 10px 30px 24px 30px;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .content_block_6 .content-box .estimate-form .form-group {
        position: relative;
        height: 50px;
        margin-bottom: 7px;
    }

        .content_block_6 .content-box .estimate-form .form-group input[type='text'],
        .content_block_6 .content-box .estimate-form .form-group input[type='email'] {
            position: relative;
            width: 100%;
            height: 50px;
            border-bottom: 1px solid #dcdee5;
            font-size: 15px;
            color: #646578;
            padding: 0px 0px;
            transition: all 500ms ease;
        }

        .content_block_6 .content-box .estimate-form .form-group input:focus {
        }

    .content_block_6 .content-box .estimate-form button {
        position: relative;
        display: block;
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
        padding: 16px 30px;
        text-align: center;
        border-radius: 5px;
        transition: all 500ms ease;
    }

        .content_block_6 .content-box .estimate-form button:hover {
            background: #0a267a;
        }

.content_block_7 .content-box {
    position: relative;
    display: block;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 299px 60px 80px 60px;
}

    .content_block_7 .content-box .video-btn {
        position: relative;
        display: block;
        text-align: center;
        margin-bottom: 168px;
    }

        .content_block_7 .content-box .video-btn a {
            position: relative;
            display: inline-block;
            font-size: 110px;
            width: 110px;
            height: 110px;
            line-height: 110px;
            color: #fff;
            text-align: center;
            border-radius: 50%;
        }

        .content_block_7 .content-box .video-btn .border-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(255,255,255,.5);
            -webkit-border-radius: 50%;
            -khtml-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
            animation: squares 2.9s linear 0s infinite;
            -webkit-animation: squares 2.9s linear 0s infinite;
            -ms-animation: squares 2.9s linear 0s infinite;
            -o-animation: squares 2.9s linear 0s infinite;
            -webkit-animation-play-state: running;
            -moz-animation-play-state: running;
            -o-animation-play-state: running;
            animation-play-state: running;
            opacity: 0;
        }

            .content_block_7 .content-box .video-btn .border-animation.border-2 {
                -webkit-animation-delay: 1s;
                -moz-animation-delay: 1s;
                -o-animation-delay: 1s;
                animation-delay: 1s;
            }

            .content_block_7 .content-box .video-btn .border-animation.border-3 {
                -webkit-animation-delay: 2s;
                -moz-animation-delay: 2s;
                -o-animation-delay: 2s;
                animation-delay: 2s;
            }

    .content_block_7 .content-box .other-text {
        position: relative;
        display: block;
        background: #fff;
        padding: 15px 30px;
        border-radius: 5px;
    }

        .content_block_7 .content-box .other-text h6 {
            font-size: 15px;
            line-height: 26px;
            font-weight: 600;
        }

            .content_block_7 .content-box .other-text h6 i {
                margin-right: 6px;
            }

        .content_block_7 .content-box .other-text .share-option {
            position: absolute;
            top: 15px;
            right: 30px;
            cursor: pointer;
        }

            .content_block_7 .content-box .other-text .share-option h6 {
                text-transform: uppercase;
            }

            .content_block_7 .content-box .other-text .share-option:before {
                position: absolute;
                content: '';
                background: #dcdee5;
                width: 1px;
                height: 36px;
                left: -20px;
                top: -5px;
            }

            .content_block_7 .content-box .other-text .share-option .list {
                position: absolute;
                left: 0px;
                top: -10px;
                width: 110px;
                opacity: 0;
                visibility: hidden;
                transition: all 500ms ease;
            }

            .content_block_7 .content-box .other-text .share-option:hover .list {
                top: -20px;
                opacity: 1;
                visibility: visible;
            }

            .content_block_7 .content-box .other-text .share-option .list li {
                position: relative;
                display: inline-block;
                font-size: 15px;
                color: #0a267a;
                margin: 0px 5px;
            }

                .content_block_7 .content-box .other-text .share-option .list li a {
                    color: #0a267a;
                }

                    .content_block_7 .content-box .other-text .share-option .list li a:hover {
                    }


/** news-section **/

.news-section {
    position: relative;
}

    .news-section .owl-carousel .owl-stage-outer {
        overflow: visible;
    }

    .news-section .owl-item {
        opacity: 0;
    }

        .news-section .owl-item.active {
            opacity: 1;
        }

.news-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
}

    .news-block-one .inner-box .image-box {
        position: relative;
    }

        .news-block-one .inner-box .image-box .image {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 5px 5px 0px 0px;
        }

            .news-block-one .inner-box .image-box .image img {
                width: 100%;
                border-radius: 5px 5px 0px 0px;
                transition: all 500ms ease;
            }

    .news-block-one .inner-box:hover .image-box .image img {
        transform: scale(1.05);
    }

    .news-block-one .inner-box .image-box .post-date {
        position: absolute;
        left: 30px;
        top: -23px;
    }

        .news-block-one .inner-box .image-box .post-date h6 {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            padding: 9.5px 13px;
            text-align: center;
            border-radius: 5px;
        }

            .news-block-one .inner-box .image-box .post-date h6 span {
                font-size: 24px;
            }

    .news-block-one .inner-box .lower-content {
        position: relative;
        display: block;
        padding: 20px 30px 23px 30px;
    }

        .news-block-one .inner-box .lower-content .category a {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 18px;
            font-family: 'Poppins', sans-serif;
            color: #646578;
            font-weight: 600;
            text-transform: uppercase;
            border-bottom: 1px solid #9e9ea9;
            margin-bottom: 13px;
        }

            .news-block-one .inner-box .lower-content .category a:hover {
            }

        .news-block-one .inner-box .lower-content h4 {
            margin-bottom: 13px;
        }

            .news-block-one .inner-box .lower-content h4 a {
                display: inline-block;
                color: #0a267a;
            }

                .news-block-one .inner-box .lower-content h4 a:hover {
                }

        .news-block-one .inner-box .lower-content .link a {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            padding-left: 10px;
        }

            .news-block-one .inner-box .lower-content .link a:before {
                position: absolute;
                content: '';
                width: 2px;
                height: 11px;
                left: 0px;
                top: 6px;
            }

            .news-block-one .inner-box .lower-content .link a:hover {
                text-decoration: underline;
            }

.news-section .owl-nav {
    position: absolute;
    top: -130px;
    right: 0px;
}

    .news-section .owl-nav .owl-prev {
        margin-right: 15px;
    }

.news-section .sec-title {
    margin-bottom: 52px;
}

.news-section .nav-style-one .owl-nav .owl-prev,
.news-section .nav-style-one .owl-nav .owl-next {
    background: #eceff6;
    box-shadow: none;
}


/** testimonial-section **/

.testimonial-section {
    position: relative;
    padding: 113px 0px 55px 0px;
}

    .testimonial-section .bg-layer {
        position: absolute;
        left: 0px;
        top: 0px;
        right: 0px;
        width: 100%;
        height: 710px;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .testimonial-section .bg-layer:before {
            position: absolute;
            content: '';
            background: #eceff6;
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
            right: 0px;
            opacity: 0.9;
        }

    .testimonial-section .client-thumb-outer {
        position: relative;
        display: block;
        width: 490px;
        margin: 0 auto;
        margin-top: 60px;
        overflow: hidden;
        padding: 10px 10px;
    }

        .testimonial-section .client-thumb-outer .client-thumbs-carousel {
            position: relative;
            max-width: 100px;
        }

            .testimonial-section .client-thumb-outer .client-thumbs-carousel .owl-stage-outer {
                overflow: visible;
            }

            .testimonial-section .client-thumb-outer .client-thumbs-carousel .thumb-item {
                position: relative;
                width: 100px;
                border-radius: 50%;
            }

        .testimonial-section .client-thumb-outer .thumb-item .thumb-box {
            width: 100px;
            height: 100px;
            cursor: pointer;
            overflow: hidden;
            border-radius: 50%;
        }

            .testimonial-section .client-thumb-outer .thumb-item .thumb-box:before {
                position: absolute;
                content: '';
                width: calc(100% + 14px);
                height: calc(100% + 14px);
                left: -7px;
                top: -7px;
                border-radius: 50%;
                opacity: 0;
                transition: all 500ms ease;
            }

        .testimonial-section .client-thumb-outer .owl-item.active .thumb-box:before {
            opacity: 1;
        }

        .testimonial-section .client-thumb-outer .client-thumbs-carousel .thumb-item img {
            overflow: hidden;
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 50%;
        }

    .testimonial-section .image-box .image {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 5px;
    }

        .testimonial-section .image-box .image img {
            width: 100%;
            border-radius: 5px;
        }

        .testimonial-section .image-box .image h6 {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            background: rgba(255,255,255,0.3);
            padding: 6px 20px;
            text-align: center;
            border-radius: 5px;
        }

        .testimonial-section .image-box .image .before {
            position: absolute;
            left: 20px;
            top: 20px;
        }

        .testimonial-section .image-box .image .after {
            position: absolute;
            right: 20px;
            bottom: 20px;
        }

.testimonial-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 43px 40px 47px 40px;
    border-radius: 5px;
}

    .testimonial-block-one .inner-box h4 {
        margin-bottom: 3px;
    }

    .testimonial-block-one .inner-box .rating-box {
        position: relative;
        margin-bottom: 16px;
    }

        .testimonial-block-one .inner-box .rating-box li {
            position: relative;
            display: inline-block;
            font-size: 14px;
            color: #b6b6c2;
        }

    .testimonial-block-one .inner-box .text {
        margin-bottom: 26px;
    }

        .testimonial-block-one .inner-box .text p {
            line-height: 30px;
        }

    .testimonial-block-one .inner-box .author-box h4 {
        color: #0a267a;
        margin-bottom: 2px;
    }

    .testimonial-block-one .inner-box .author-box .designation {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
    }

    .testimonial-block-one .inner-box .quote-box {
        position: absolute;
        right: 30px;
        bottom: 30px;
    }

        .testimonial-block-one .inner-box .quote-box .quote {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 30px;
            color: #fff;
            text-align: center;
            border-radius: 50%;
        }

        .testimonial-block-one .inner-box .quote-box .shape {
            position: absolute;
            left: -37px;
            top: -3px;
            width: 32px;
            height: 32px;
            transition: all 500ms ease;
            background-repeat: no-repeat;
        }


/** clients-section **/

.clients-section {
    position: relative;
    padding-bottom: 120px;
}

    .clients-section .upper-title .sec-title,
    .clients-section .upper-title .text {
        width: 50%;
    }

    .clients-section .upper-title .text {
        margin-top: 25px;
    }

    .clients-section .clients-logo-box img {
        display: block;
        max-width: 100%;
        width: auto;
        margin: 0 auto;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .clients-section .clients-logo-box img:hover {
            filter: grayscale(100%);
            -webkit-filter: grayscale(100%);
            -moz-filter: grayscale(100%);
            -o-filter: grayscale(100%);
            -ms-filter: grayscale(100%);
        }

    .clients-section .clients-logo-box {
        position: relative;
        display: block;
    }

        .clients-section .clients-logo-box:before {
            position: absolute;
            content: '';
            background: #dcdee5;
            width: 1px;
            height: 75px;
            top: 0px;
            right: -15px;
        }

    .clients-section .clients-carousel {
        position: relative;
        border-bottom: 1px solid #dcdee5;
        padding-bottom: 40px;
        margin-bottom: 20px;
    }

        .clients-section .clients-carousel:before {
            position: absolute;
            content: '';
            background: #dcdee5;
            width: 1px;
            height: 75px;
            top: 0px;
            right: 0px;
        }

        .clients-section .clients-carousel:after {
            position: absolute;
            content: '';
            background: #dcdee5;
            width: 1px;
            height: 75px;
            top: 0px;
            left: 0px;
        }


/** subscribe-section **/

.subscribe-section {
    position: relative;
    padding: 27px 0px;
}

    .subscribe-section .text h3 {
        position: relative;
        display: block;
        font-size: 30px;
        line-height: 56px;
        color: #fff;
        font-weight: 600;
        padding-left: 75px;
    }

        .subscribe-section .text h3 i {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 56px;
            height: 56px;
            line-height: 56px;
            font-size: 30px;
            background: #fff;
            border-radius: 5px;
            font-weight: 400;
            text-align: center;
        }

    .subscribe-section .subscribe-form .form-group {
        position: relative;
        display: block;
        padding-right: 195px;
        margin-bottom: 0px;
    }

        .subscribe-section .subscribe-form .form-group input[type='email'] {
            position: relative;
            width: 100%;
            height: 56px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 5px;
            font-size: 18px;
            color: #fff;
            padding: 10px 30px;
            background: transparent;
            transition: all 500ms ease;
        }

        .subscribe-section .subscribe-form .form-group input::-webkit-input-placeholder {
            color: #fff;
        }

        .subscribe-section .subscribe-form .form-group input:focus {
            border-color: #0a267a;
        }

        .subscribe-section .subscribe-form .form-group button {
            position: absolute;
            top: 0px;
            right: 0px;
            padding: 16px 40px;
            transition: all 500ms ease;
        }

            .subscribe-section .subscribe-form .form-group button:hover {
                background: #0a267a;
                color: #fff;
            }

.bg-color-2 {
    background: #0a267a;
}


/** main-footer **/

.main-footer {
    position: relative;
}

.footer-top {
    position: relative;
    padding: 105px 0px 95px 0px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

    .footer-top .logo-widget {
        margin-top: -5px;
    }

        .footer-top .logo-widget .footer-logo {
            position: relative;
            margin-bottom: 32px;
        }

.main-footer p,
.main-footer a {
    color: rgba(255,255,255,0.7);
}

.footer-top .logo-widget .text {
    margin-bottom: 29px;
}

.footer-top .logo-widget .award-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

    .footer-top .logo-widget .award-list li:last-child {
        margin: 0px !important;
    }

.footer-top .widget-title {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

    .footer-top .widget-title h4 {
        display: inline-block;
        color: #fff;
        padding-bottom: 7px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

.footer-top .links-widget .links-list li {
    position: relative;
    display: block;
    margin-bottom: 8px;
}

    .footer-top .links-widget .links-list li:last-child {
        margin-bottom: 0px;
    }

    .footer-top .links-widget .links-list li a {
        display: inline-block;
    }

        .footer-top .links-widget .links-list li a:hover {
            color: #fff;
        }

.footer-top .contact-widget .info li {
    position: relative;
    display: block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.7);
}

    .footer-top .contact-widget .info li:last-child {
        margin-bottom: 0px;
    }

    .footer-top .contact-widget .info li a:hover {
        color: #fff;
    }

.footer-top .contact-widget .info {
    margin-bottom: 24px;
}

.footer-social li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

    .footer-social li:last-child {
        margin: 0px !important;
    }

    .footer-social li a {
        position: relative;
        display: inline-block;
        font-size: 15px;
        color: #fff;
        background: #1a378c;
        width: 46px;
        height: 46px;
        line-height: 46px;
        text-align: center;
        border-radius: 5px;
    }

        .footer-social li a:hover {
            background: #ffffff;
        }

.footer-bottom {
    position: relative;
    padding: 23px 0px;
}

    .footer-bottom a {
        color: #fff;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }


/*** 

====================================================================
                        Home-Page-Two
====================================================================

***/


/** header-style-two **/

.main-header.style-two {
    position: relative;
    background: #f3f3f3;
    padding: 0px 250px;
}

    .main-header.style-two .logo-box {
        position: absolute;
        left: 40px;
        top: 46px;
        padding: 0px;
    }

    .main-header.style-two .header-top .top-inner {
        display: block;
    }

        .main-header.style-two .header-top .top-inner .info li i {
        }

        .main-header.style-two .header-top .top-inner .info li a:hover {
        }

        .main-header.style-two .header-top .top-inner .info {
            border: none;
        }

    .main-header.style-two .header-top {
        border-bottom: none;
    }

    .main-header.style-two .social-links {
        position: absolute;
        top: 45px;
        right: 40px;
        z-index: 1;
    }

        .main-header.style-two .social-links .social-list {
            position: relative;
            display: inline-block;
            padding: 10px 5px;
            border: 1px solid #d0d0d0;
            border-radius: 5px;
        }

            .main-header.style-two .social-links .social-list li {
                position: relative;
                display: inline-block;
                margin: 0px 14px;
            }

                .main-header.style-two .social-links .social-list li:before {
                    position: absolute;
                    content: '';
                    background: #d2d2d2;
                    width: 1px;
                    height: 16px;
                    top: 6px;
                    right: -16px;
                }

                .main-header.style-two .social-links .social-list li:last-child:before {
                    display: none;
                }

                .main-header.style-two .social-links .social-list li a {
                    position: relative;
                    display: inline-block;
                    font-size: 16px;
                    color: #646578;
                }

                    .main-header.style-two .social-links .social-list li a:hover {
                    }

                    .main-header.style-two .social-links .social-list li a span {
                        position: absolute;
                        left: 50%;
                        transform: translateX(-50%);
                        top: 44px;
                        width: 90px;
                        height: 30px;
                        line-height: 30px;
                        background: #fff;
                        font-size: 14px;
                        border-radius: 4px;
                        text-align: center;
                        opacity: 0;
                        visibility: hidden;
                        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
                        transition: all 500ms ease;
                    }

                        .main-header.style-two .social-links .social-list li a span:before {
                            position: absolute;
                            content: '';
                            background: #fff;
                            width: 14px;
                            height: 14px;
                            left: 50%;
                            transform: translateX(-50%) rotate(45deg);
                            top: -6px;
                        }

                    .main-header.style-two .social-links .social-list li a:hover span {
                        top: 34px;
                        opacity: 1;
                        visibility: visible;
                    }

    .main-header.style-two .header-lower {
        position: relative;
        display: block;
        background: #fff;
        padding: 0px 40px;
        border-radius: 5px 5px 0px 0px;
    }

    .main-header.style-two .menu-right-content {
        float: right;
        padding-left: 0px;
        margin-left: 0px;
    }

        .main-header.style-two .menu-right-content:before {
            display: none;
        }

    .main-header.style-two .main-menu .navigation > li.current > a,
    .main-header.style-two .main-menu .navigation > li:hover > a {
    }

    .main-header.style-two .main-menu .navigation > li > ul,
    .main-header.style-two .main-menu .navigation > li > .megamenu {
    }

        .main-header.style-two .main-menu .navigation > li > ul > li > a:hover,
        .main-header.style-two .main-menu .navigation > li > .megamenu li > a:hover {
        }

            .main-header.style-two .main-menu .navigation > li > ul > li > a:hover:before {
            }

        .main-header.style-two .main-menu .navigation > li > ul > li > ul > li > a:hover {
        }

    .main-header.style-two .menu-right-content .btn-box .theme-btn-three {
        padding: 16px 32px;
        color: #0a267a;
        background: #f3f3f3;
    }

    .main-header.style-two .menu-right-content {
        margin-top: 18px;
    }

        .main-header.style-two .menu-right-content .cart-box {
            margin-top: 15px;
        }

            .main-header.style-two .menu-right-content .cart-box a:hover {
            }

            .main-header.style-two .menu-right-content .cart-box a span {
            }


/** search box btn **/

.main-header .search-box-outer {
    position: relative;
    display: inline-block;
    float: left;
    margin: 14px 40px 0px 0px;
}

    .main-header .search-box-outer:before {
        position: absolute;
        content: '';
        background: #e3e3e3;
        width: 2px;
        height: 28px;
        left: -24px;
        top: -1px;
    }

.main-header .search-box-btn {
    position: relative;
    font-size: 20px;
    color: #0a267a;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    background: transparent;
    transition: all 500ms ease;
}

    .main-header .search-box-btn:hover {
    }

.main-header .search-box-outer .dropdown-menu {
    top: 55px !important;
    padding: 0px;
    width: 330px;
    border-radius: 0px;
    background: #ffffff;
    right: 0;
    left: auto !important;
    transform: translate3d(0px, 0px, 0px) scale3d(0.8,0.8,0.8) !important;
    border-color: transparent;
    border-radius: 3px;
    box-shadow: 7px 5px 30px 0 rgba(72,73,121,0.15);
    transition: .5s ease;
    display: block;
    opacity: 0;
    visibility: hidden;
}

.main-header .search-box-outer .show .dropdown-menu {
    display: block;
    transform: scale3d(1,1,1) !important;
    opacity: 1;
    visibility: visible;
}

.main-header .search-panel .form-container {
    padding: 30px;
}

.main-header .search-panel .form-group {
    position: relative;
    margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 9px 50px 9px 15px;
    height: 50px;
    border: 1px solid #f3f5fe;
    border-radius: 3px;
    background: #f3f5fe;
}

    .main-header .search-panel input:focus,
    .main-header .search-panel select:focus {
        border-color: #f3f5fe;
    }

.main-header .search-panel .search-btn {
    position: absolute;
    right: 1px;
    top: 1px;
    width: 50px;
    height: 48px;
    text-align: center;
    color: #111111;
    background: #f3f5fe;
    font-size: 14px;
    border-radius: 0px 3px 3px 0px;
    cursor: pointer;
}

.dropdown-toggle::after {
    display: none;
}


/** banner-style-two **/

.banner-section.style-two {
    position: relative;
}

    .banner-section.style-two .banner-carousel .slide-item {
        padding: 230px 0px;
    }

        .banner-section.style-two .banner-carousel .slide-item:before {
            display: none;
        }

    .banner-section.style-two .banner-content {
        position: relative;
        max-width: 570px;
        width: 100%;
        background: #fff;
        padding: 41px 30px 50px 30px;
        border-radius: 5px;
        z-index: 5;
        opacity: 0;
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transition: all 1000ms ease;
        -moz-transition: all 1000ms ease;
        -ms-transition: all 1000ms ease;
        -o-transition: all 1000ms ease;
        transition: all 1000ms ease;
    }

    .banner-section.style-two .active .banner-content {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 1000ms;
        -moz-transition-delay: 1000ms;
        -ms-transition-delay: 1000ms;
        -o-transition-delay: 1000ms;
        transition-delay: 1000ms;
    }

    .banner-section.style-two .banner-content h2 {
        font-size: 40px;
        line-height: 50px;
        font-weight: 600;
        margin-bottom: 22px;
    }

    .banner-section.style-two .banner-content p {
        margin-bottom: 34px;
    }

    .banner-section.style-two .banner-content .support-box .btn-box,
    .banner-section.style-two .banner-content .support-box .mail-box {
        position: relative;
        float: left;
    }

    .banner-section.style-two .banner-content .support-box .btn-box {
        margin-right: 20px;
    }

        .banner-section.style-two .banner-content .support-box .btn-box a {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 26px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            text-align: center;
            padding: 13px 30px;
            border-radius: 5px;
        }

            .banner-section.style-two .banner-content .support-box .btn-box a:hover {
                color: #fff;
            }

    .banner-section.style-two .banner-content .support-box .mail-box {
        position: relative;
        padding-left: 70px;
    }

        .banner-section.style-two .banner-content .support-box .mail-box i {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 56px;
            height: 56px;
            line-height: 56px;
            font-size: 30px;
            color: #fff;
            text-align: center;
            border-radius: 10px;
        }

        .banner-section.style-two .banner-content .support-box .mail-box h6 {
            display: block;
            font-size: 14px;
            line-height: 24px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0px;
        }

        .banner-section.style-two .banner-content .support-box .mail-box a {
            display: inline-block;
            font-size: 14px;
            line-height: 20px;
            font-family: 'Poppins', sans-serif;
            color: #646578;
            font-weight: 600;
            text-transform: uppercase;
        }

            .banner-section.style-two .banner-content .support-box .mail-box a:hover {
            }

    .banner-section.style-two .owl-nav .owl-next,
    .banner-section.style-two .owl-nav .owl-prev {
        display: inline-block;
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        background: #ffffff;
        border-radius: 5px;
        color: #b6b6c2;
        font-size: 40px;
    }

        .banner-section.style-two .owl-nav .owl-next:hover,
        .banner-section.style-two .owl-nav .owl-prev:hover {
            color: #fff;
        }


/** feature-section **/

.feature-section {
    position: relative;
    padding: 120px 0px 120px 0px;
}

.feature-block-one .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 5px 40px 0px rgba(0,0,0,0.07);
    padding: 40px 15px 34px 30px;
    border-radius: 5px;
}

    .feature-block-one .inner-box:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 0%;
        left: 0px;
        top: 0px;
        right: 0px;
        opacity: 0;
        border-radius: 5px;
        transition: all 500ms ease;
    }

    .feature-block-one .inner-box:hover:before {
        height: 100%;
        opacity: 1;
    }

.green-color .feature-block-one .inner-box:before {
}

.feature-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 35px;
    background: #f3f3f3;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 24px;
    transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .icon-box {
    color: #fff;
}

.feature-block-one .inner-box .icon-box .shape {
    position: absolute;
    top: -15px;
    right: -37px;
    width: 32px;
    height: 32px;
    transform: scale(0,0);
    transition: all 500ms ease;
    background-repeat: no-repeat;
}

.feature-block-one .inner-box:hover .icon-box .shape {
    transform: scale(1,1);
}

.feature-block-one .inner-box h4 {
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 30px;
}

    .feature-block-one .inner-box h4:before {
        position: absolute;
        content: '';
        background: url(../images/icons/wave-4.png);
        width: 60px;
        height: 18px;
        left: 0px;
        bottom: 0px;
        background-repeat: no-repeat;
    }

.bg-color-3 {
    background: #f3f3f3;
}


/** about-style-two **/

.about-style-two {
    position: relative;
}

    .about-style-two .image-layer {
        position: absolute;
        top: 0px;
        right: 0px;
        height: 100%;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .about-style-two .image-box {
        position: relative;
        display: block;
        margin-right: 10px;
    }

        .about-style-two .image-box .image {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 5px;
        }

            .about-style-two .image-box .image img {
                width: 100%;
                border-radius: 5px;
            }

            .about-style-two .image-box .image:before {
                position: absolute;
                top: 0;
                left: -75%;
                display: block;
                content: '';
                width: 50%;
                height: 100%;
                background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
                background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
                background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
                -webkit-transform: skewX(-25deg);
                -ms-transform: skewX(-25deg);
                transform: skewX(-25deg);
            }

            .about-style-two .image-box .image:hover:before {
                -webkit-animation: shine 1s;
                animation: shine 1s;
            }

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.content_block_8 .content-box {
    position: relative;
    display: block;
    margin-top: -7px;
}

    .content_block_8 .content-box p {
        margin-bottom: 20px;
    }

    .content_block_8 .content-box .list {
        margin-bottom: 29px;
    }

        .content_block_8 .content-box .list li {
            position: relative;
            display: block;
            padding-left: 30px;
            margin-bottom: 11px;
        }

            .content_block_8 .content-box .list li:last-child {
                margin-bottom: 0px;
            }

            .content_block_8 .content-box .list li:before {
                position: absolute;
                content: "\f10c";
                font-family: 'Flaticon';
                font-size: 16px;
                left: 0px;
                top: 2px;
            }

.green-color .content_block_8 .content-box .list li:before {
}

.content_block_8 .content-box .signature {
    position: relative;
    margin-bottom: 14px;
}

.content_block_8 .content-box h4 span {
    font-size: 14px;
    text-transform: uppercase;
}

.green-color .content_block_8 .content-box h4 span {
}


/** service-style-two **/

.service-style-two {
    position: relative;
    padding-bottom: 66px;
}

.line-box {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    max-width: 1170px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

    .line-box .line {
        position: absolute;
        width: 1px;
        height: 100%;
        background: #e3e3e3;
    }

    .line-box .line-1 {
        left: 0px;
    }

    .line-box .line-2 {
        left: 25%;
    }

    .line-box .line-3 {
        left: 50%;
    }

    .line-box .line-4 {
        left: 75%;
    }

    .line-box .line-5 {
        left: 100%;
    }

.tabs-inner .service-block-one {
    float: left;
    width: 25%;
}

    .tabs-inner .service-block-one:nth-child(2),
    .tabs-inner .service-block-one:last-child {
        margin-top: 30px;
    }

.service-block-one .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
}

    .service-block-one .inner-box .image-box {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 5px;
    }

        .service-block-one .inner-box .image-box img {
            width: 100%;
            transition: all 500ms ease;
        }

    .service-block-one .inner-box:hover .image-box img {
        transform: scale(1.05);
    }

    .service-block-one .inner-box .lower-content {
        position: relative;
        padding: 24px 20px 20px 20px;
    }

        .service-block-one .inner-box .lower-content .icon-box {
            position: absolute;
            top: -29px;
            right: 20px;
            width: 56px;
            height: 56px;
            line-height: 56px;
            background: #fff;
            text-align: center;
            border-radius: 5px;
            font-size: 30px;
            box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.1);
            transition: all 500ms ease;
        }

    .service-block-one .inner-box:hover .lower-content .icon-box {
        color: #fff;
    }

    .service-block-one .inner-box .lower-content h4 {
        position: relative;
        padding-bottom: 30px;
        margin-bottom: 22px;
    }

        .service-block-one .inner-box .lower-content h4:before {
            position: absolute;
            content: '';
            background: url(../images/icons/wave-4.png);
            width: 60px;
            height: 18px;
            left: 0px;
            bottom: 0px;
            background-repeat: no-repeat;
        }

    .service-block-one .inner-box .lower-content a {
        color: #0a267a;
    }

        .service-block-one .inner-box .lower-content a:hover {
        }

    .service-block-one .inner-box .lower-content p {
        margin-bottom: 14px;
    }

    .service-block-one .inner-box .lower-content .link a {
        position: relative;
        display: inline-block;
        font-size: 14px;
        line-height: 26px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        padding-left: 16px;
        text-transform: uppercase;
    }

        .service-block-one .inner-box .lower-content .link a i {
            position: absolute;
            left: 2px;
            top: 4px;
            font-size: 20px;
            opacity: 0;
            transition: all 500ms ease;
        }

    .service-block-one .inner-box:hover .lower-content .link a i {
        opacity: 1;
    }

    .service-block-one .inner-box .lower-content .link {
        position: relative;
        display: block;
        text-align: right;
    }

        .service-block-one .inner-box .lower-content .link a:before {
            position: absolute;
            content: '';
            background: #e3e3e3;
            width: 165px;
            height: 0.5px;
            top: 50%;
            transform: translateY(-50%);
            right: 88px;
            transition: all 500ms ease;
        }

    .service-block-one .inner-box:hover .lower-content .link a:before {
    }

.service-style-two .tab-btn-box {
    position: relative;
    margin-bottom: 50px;
}

    .service-style-two .tab-btn-box .tab-btns {
        position: relative;
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

        .service-style-two .tab-btn-box .tab-btns li {
            position: relative;
            display: inline-block;
            float: left;
            font-size: 18px;
            line-height: 26px;
            font-family: 'Poppins', sans-serif;
            color: #0a267a;
            font-weight: 600;
            width: 160px;
            padding: 14px 15px;
            text-align: center;
            cursor: pointer;
            border: 1px solid #e3e3e3;
            transition: all 500ms ease;
        }

            .service-style-two .tab-btn-box .tab-btns li:first-child {
                border-right: none;
                border-radius: 5px 0px 0px 5px;
            }

            .service-style-two .tab-btn-box .tab-btns li:last-child {
                border-left: none;
                border-radius: 0px 5px 5px 0px;
            }

            .service-style-two .tab-btn-box .tab-btns li.active-btn,
            .service-style-two .tab-btn-box .tab-btns li:hover {
                color: #fff;
            }

.service-style-two .sec-title {
    margin-bottom: 30px;
}


/** facts-section **/

.facts-section {
    position: relative;
}

    .facts-section .single-column {
        position: relative;
        float: left;
        width: 50%;
        overflow: hidden;
    }

        .facts-section .single-column .inner-box {
            position: relative;
            width: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            padding: 120px 30px;
        }

            .facts-section .single-column .inner-box:before {
                position: absolute;
                content: '';
                background: #121212;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 0px;
                opacity: 0.6;
            }

            .facts-section .single-column .inner-box .content-box {
                position: relative;
                max-width: 560px;
                width: 100%;
                margin: 0 auto;
            }

                .facts-section .single-column .inner-box .content-box .icon-box {
                    position: relative;
                    display: inline-block;
                    width: 100px;
                    height: 100px;
                    line-height: 100px;
                    font-size: 60px;
                    color: #fff;
                    border-radius: 50%;
                    margin-bottom: 23px;
                }

                .facts-section .single-column .inner-box .content-box h6 {
                    display: block;
                    font-size: 14px;
                    line-height: 24px;
                    font-weight: 600;
                    text-transform: uppercase;
                    margin-bottom: 10px;
                }

                .facts-section .single-column .inner-box .content-box h2 {
                    display: block;
                    font-size: 40px;
                    line-height: 52px;
                    color: #fff;
                    font-weight: 600;
                    margin-bottom: 28px;
                }

                .facts-section .single-column .inner-box .content-box a {
                    position: relative;
                    display: inline-block;
                    font-size: 14px;
                    line-height: 26px;
                    font-family: 'Poppins', sans-serif;
                    font-weight: 600;
                    text-transform: uppercase;
                    color: #fff;
                    border: 2px solid #fff;
                    text-align: center;
                    padding: 13px 41px;
                    border-radius: 5px;
                }

                    .facts-section .single-column .inner-box .content-box a:hover {
                    }

        .facts-section .single-column:first-child .bubble-box {
            position: absolute;
            left: -150px;
            top: 50%;
            width: 554px;
            height: 572px;
            background-repeat: no-repeat;
            -webkit-animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
            -moz-animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
            animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
        }

        .facts-section .single-column:last-child .bubble-box {
            position: absolute;
            right: -150px;
            top: 50%;
            width: 572px;
            height: 554px;
            background-repeat: no-repeat;
            -webkit-animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
            -moz-animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
            animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
        }


/** works-style-two **/

.works-style-two {
    position: relative;
    padding: 120px 0px;
}

.content_block_9 .content-box {
    position: relative;
    display: block;
    padding-top: 115px;
    max-width: 370px;
    margin: 0 auto;
    margin-right: 130px;
    margin-left: 70px;
}

.content_block_9 .image-box {
    position: relative;
    display: block;
    max-width: 370px;
    margin: 0 auto;
}

    .content_block_9 .image-box .image-1 {
        position: relative;
        display: block;
        border-radius: 50%;
    }

        .content_block_9 .image-box .image-1 img {
            width: 100%;
            border-radius: 50%;
        }

    .content_block_9 .image-box .image-2 {
        position: absolute;
        left: 90px;
        top: 90px;
    }

.content_block_9 .content-box .icon-list {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}

    .content_block_9 .content-box .icon-list li {
        position: absolute;
        display: inline-block;
        width: 90px;
        height: 90px;
        line-height: 90px;
        border: 1px solid #e3e3e3;
        border-radius: 50%;
        text-align: center;
        background: #fff;
        font-size: 40px;
        color: #b6b6c2;
        cursor: pointer;
        z-index: 1;
        transition: all 500ms ease;
    }

        .content_block_9 .content-box .icon-list li:hover,
        .content_block_9 .content-box .icon-list li.active-btn {
        }

        .content_block_9 .content-box .icon-list li:first-child {
            top: 0px;
            left: 50%;
            transform: translateX(-50%);
        }

        .content_block_9 .content-box .icon-list li:nth-child(2) {
            top: 80px;
            right: -42px;
        }

        .content_block_9 .content-box .icon-list li:nth-child(3) {
            bottom: 140px;
            right: -114px;
        }

        .content_block_9 .content-box .icon-list li:last-child {
            bottom: -33px;
            right: -47px;
        }

        .content_block_9 .content-box .icon-list li span {
            position: absolute;
            top: -6px;
            right: -5px;
            width: 32px;
            height: 32px;
            line-height: 32px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            color: #ffffff;
            font-weight: 600;
            border-radius: 50%;
            transform: scale(0,0);
            transition: all 500ms ease;
        }

        .content_block_9 .content-box .icon-list li:hover span,
        .content_block_9 .content-box .icon-list li.active-btn span {
            transform: scale(1,1);
        }

.content_block_9 .content-box .stroke-line {
    position: absolute;
    top: 46px;
    right: -71px;
    width: 262px;
    height: 515px;
    background-repeat: no-repeat;
}

.content_block_10 .content-box {
    position: relative;
    display: block;
}

    .content_block_10 .content-box .text {
        position: relative;
        margin-bottom: 34px;
    }

    .content_block_10 .content-box .tabs-inner .inner {
        position: relative;
        padding: 9px 0px 13px 200px;
        margin-bottom: 40px;
    }

        .content_block_10 .content-box .tabs-inner .inner .image-box {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 170px;
            height: 170px;
            border-radius: 50%;
        }

            .content_block_10 .content-box .tabs-inner .inner .image-box img {
                width: 100%;
                border-radius: 50%;
            }

        .content_block_10 .content-box .tabs-inner .inner h6 {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 24px;
            font-weight: 600;
            color: #646578;
            text-transform: uppercase;
            margin-bottom: 1px;
        }

        .content_block_10 .content-box .tabs-inner .inner h4 {
            margin-bottom: 15px;
        }

    .content_block_10 .content-box .sec-title {
        margin-bottom: 22px;
    }

    .content_block_10 .content-box .tabs-inner .btn-box .theme-btn-three {
        background: #f3f3f3;
        padding: 16px 50px;
    }


/** project-style-two **/

.project-style-two {
    position: relative;
    padding: 113px 0px 90px 0px;
}

.project-block-two .inner-box {
    position: relative;
    display: block;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: all 500ms ease;
}

    .project-block-two .inner-box:hover {
        box-shadow: 0 40px 20px -30px rgba(0,0,0,0.5);
    }

    .project-block-two .inner-box .image-box {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 5px;
    }

        .project-block-two .inner-box .image-box:before {
            position: absolute;
            content: '';
            left: 0px;
            top: 0px;
            right: 0px;
            width: 100%;
            height: 100%;
            opacity: 0.9;
            transform: scale(0,0);
            transition: all 500ms ease;
        }

    .project-block-two .inner-box:hover .image-box:before {
        transform: scale(1,1);
    }

    .project-block-two .inner-box .image-box img {
        width: 100%;
        border-radius: 5px;
    }

    .project-block-two .inner-box .content-box {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        padding: 15px;
        transform: translate(-50%,-50%);
        text-align: center;
        z-index: 1;
        transition: all 500ms ease;
    }

        .project-block-two .inner-box .content-box .link a {
            position: relative;
            display: inline-block;
            width: 70px;
            height: 50px;
            line-height: 50px;
            background: #fff;
            font-size: 24px;
            text-align: center;
            border-radius: 5px;
            margin-bottom: 23px;
            transform: scale(0,0);
        }

    .project-block-two .inner-box:hover .content-box .link a {
        transform: scale(1,1);
    }

    .project-block-two .inner-box .content-box h4 {
        position: relative;
        top: 15px;
        opacity: 0;
        display: block;
        transition: all 500ms ease;
        -webkit-transition-delay: 500ms;
        -moz-transition-delay: 500ms;
        -ms-transition-delay: 500ms;
        -o-transition-delay: 500ms;
        transition-delay: 500ms;
    }

    .project-block-two .inner-box:hover .content-box h4 {
        opacity: 1;
        top: 0px;
    }

    .project-block-two .inner-box .content-box a {
        display: inline-block;
        color: #fff;
    }

        .project-block-two .inner-box .content-box a:hover {
            text-decoration: underline;
        }

    .project-block-two .inner-box .content-box h6 {
        position: relative;
        top: 15px;
        opacity: 0;
        color: #fff;
        text-transform: uppercase;
        transition: all 500ms ease;
        -webkit-transition-delay: 600ms;
        -moz-transition-delay: 600ms;
        -ms-transition-delay: 600ms;
        -o-transition-delay: 600ms;
        transition-delay: 600ms;
    }

    .project-block-two .inner-box:hover .content-box h6 {
        top: 0px;
        opacity: 1;
    }


/** team-section **/

.team-section {
    position: relative;
}

.team-block-one .inner-box {
    position: relative;
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    overflow: hidden;
    max-width: 270px;
    margin: 0 auto;
}

    .team-block-one .inner-box .social-links {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        line-height: 46px;
        border: 1px solid #e3e3e3;
        border-radius: 5px;
        text-align: center;
        font-size: 24px;
        font-family: 'Poppins', sans-serif;
        color: #b6b6c2;
        cursor: pointer;
        z-index: 3;
    }

        .team-block-one .inner-box .social-links .social-list li {
            position: relative;
            display: block;
            padding-bottom: 5px;
        }

            .team-block-one .inner-box .social-links .social-list li:last-child {
                padding-bottom: 0px;
            }

            .team-block-one .inner-box .social-links .social-list li a {
                position: relative;
                display: inline-block;
                width: 46px;
                height: 46px;
                line-height: 46px;
                font-size: 15px;
                color: #fff;
                text-align: center;
                border-radius: 5px;
            }

            .team-block-one .inner-box .social-links .social-list li:nth-child(2) a {
            }

            .team-block-one .inner-box .social-links .social-list li:last-child a {
            }

        .team-block-one .inner-box .social-links .social-list {
            position: absolute;
            left: 0px;
            top: 0px;
            visibility: hidden;
            opacity: 0;
            z-index: 1;
            transition: all 500ms ease;
        }

        .team-block-one .inner-box .social-links:hover .social-list {
            top: 50px;
            opacity: 1;
            visibility: visible;
        }

    .team-block-one .inner-box .image-box {
        position: relative;
        margin: 39px 0px 0px 29px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        overflow: hidden;
    }

        .team-block-one .inner-box .image-box img {
            width: 100%;
            border-radius: 50%;
        }

        .team-block-one .inner-box .image-box a {
            position: absolute;
            left: 0px;
            top: 0px;
            right: 0px;
            width: 100%;
            height: 100%;
            font-size: 0px;
            color: #fff;
            z-index: 2;
        }

        .team-block-one .inner-box .image-box:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
            right: 0px;
            transform: scale(0,0);
            opacity: 0.9;
            z-index: 1;
            transition: all 500ms ease;
        }

    .team-block-one .inner-box:hover .image-box:before {
        transform: scale(1,1);
    }

    .team-block-one .inner-box .lower-content {
        position: relative;
        padding: 24px 30px 32px 30px;
    }

        .team-block-one .inner-box .lower-content h4 {
            display: block;
        }

            .team-block-one .inner-box .lower-content h4 a {
                display: inline-block;
                color: #0a267a;
            }

                .team-block-one .inner-box .lower-content h4 a:hover {
                }

        .team-block-one .inner-box .lower-content .designation {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 24px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
        }

    .team-block-one .inner-box .pattern {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }

.team-section .sec-title {
    margin-bottom: 30px;
}

    .team-section .sec-title .btn-box {
        position: absolute;
        top: 18px;
        right: 0px;
    }

        .team-section .sec-title .btn-box .theme-btn-three {
            background: #f3f3f3;
            padding: 16px 47px;
        }


/** testimonial-style-two **/

.testimonial-style-two {
    position: relative;
    padding: 120px 0px;
}

    .testimonial-style-two .slider-pager {
        position: relative;
        display: block;
        min-height: 465px;
        margin-right: 40px;
        margin-top: 7px;
        max-width: 530px;
        width: 100%;
    }

        .testimonial-style-two .slider-pager .thumb-box {
            position: absolute;
            width: 100%;
            min-height: 465px;
        }

            .testimonial-style-two .slider-pager .thumb-box li {
                position: absolute;
                width: 290px;
                height: 290px;
                border-radius: 5px;
            }

                .testimonial-style-two .slider-pager .thumb-box li img {
                    width: 100%;
                    border-radius: 5px;
                }

                .testimonial-style-two .slider-pager .thumb-box li:first-child {
                    left: 0px;
                    top: 0px;
                }

                .testimonial-style-two .slider-pager .thumb-box li:nth-child(2) {
                    left: 95px;
                    bottom: 0px;
                }

                .testimonial-style-two .slider-pager .thumb-box li:last-child {
                    right: 0px;
                    top: 60px;
                }

                .testimonial-style-two .slider-pager .thumb-box li .thumb {
                    position: relative;
                    display: inline-block;
                    filter: blur(2px);
                    -webkit-filter: blur(2px);
                    transition: all 500ms ease;
                }

                    .testimonial-style-two .slider-pager .thumb-box li .thumb:before {
                        position: absolute;
                        content: "\f113";
                        font-family: 'Flaticon';
                        width: 90px;
                        height: 90px;
                        line-height: 90px;
                        text-align: center;
                        font-size: 30px;
                        color: #fff;
                        border-radius: 50%;
                        left: 50%;
                        top: 50%;
                        transform: translate(-50%,-50%) scale(0,0);
                        transition: all 500ms ease;
                    }

                .testimonial-style-two .slider-pager .thumb-box li .active .thumb:before {
                    transform: translate(-50%,-50%) scale(1,1);
                }

                .testimonial-style-two .slider-pager .thumb-box li .active .thumb {
                    z-index: 1;
                    filter: blur(0px);
                    -webkit-filter: blur(0px);
                }

.content_block_11 .content-box {
    position: relative;
    display: block;
}

    .content_block_11 .content-box h4 {
        margin-bottom: 4px;
    }

    .content_block_11 .content-box .rating-box li {
        position: relative;
        display: inline-block;
        font-size: 14px;
        color: #b6b6c2;
    }

    .content_block_11 .content-box .rating-box {
        margin-bottom: 15px;
        position: relative;
    }

    .content_block_11 .content-box p {
        line-height: 30px;
        margin-bottom: 26px;
    }

    .content_block_11 .content-box .author-info h4 {
        color: #0a267a;
    }

        .content_block_11 .content-box .author-info h4 span {
            font-size: 14px;
            text-transform: uppercase;
        }

    .content_block_11 .content-box .sec-title {
        margin-bottom: 22px;
    }

.bx-wrapper {
    position: relative;
}

.testimonial-style-two .bx-controls.bx-has-controls-direction {
    position: absolute;
    left: 50%;
    bottom: 0px;
    margin-left: 10px;
    z-index: 99;
}

    .testimonial-style-two .bx-controls.bx-has-controls-direction a.bx-prev,
    .testimonial-style-two .bx-controls.bx-has-controls-direction a.bx-next {
        position: relative;
        display: inline-block;
        width: 70px;
        height: 50px;
        line-height: 50px;
        font-size: 30px;
        background: #f3f3f3;
        color: #b6b6c2;
        text-align: center;
        border-radius: 10px;
        cursor: pointer;
        z-index: 1;
        margin: 0px 5px;
        transition: all 500ms ease;
    }

        .testimonial-style-two .bx-controls.bx-has-controls-direction a.bx-prev:hover,
        .testimonial-style-two .bx-controls.bx-has-controls-direction a.bx-next:hover {
            color: #fff;
        }


/** clients-style-two **/

.clients-section.style-two {
    padding: 60px 0px;
}

    .clients-section.style-two .clients-carousel {
        padding-bottom: 0px;
        border-bottom: none;
        margin-bottom: 0px
    }

    .clients-section.style-two .clients-logo-box:before {
        background: rgba(0,0,0,0.2);
    }

    .clients-section.style-two .clients-carousel:before,
    .clients-section.style-two .clients-carousel:after {
        background: rgba(0,0,0,0.2);
    }


/** news-style-two **/

.news-section.style-two .nav-style-one .owl-nav .owl-prev,
.news-section.style-two .nav-style-one .owl-nav .owl-next {
    background: #f3f3f3;
    color: #b6b6c2;
}

    .news-section.style-two .nav-style-one .owl-nav .owl-prev:hover,
    .news-section.style-two .nav-style-one .owl-nav .owl-next:hover {
        color: #fff;
    }


/** appointment-section **/

.appointment-section {
    position: relative;
}

    .appointment-section .inner-box {
        position: relative;
        padding: 38px 40px 41px 40px;
        border-radius: 5px;
        margin-bottom: -75px;
        z-index: 1;
    }

        .appointment-section .inner-box h5 {
            display: block;
            font-size: 15px;
            line-height: 26px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 7px;
        }

        .appointment-section .inner-box .text h3 {
            display: block;
            font-size: 30px;
            line-height: 38px;
            font-weight: 600;
            color: #ffffff;
        }

        .appointment-section .inner-box .info-list li {
            position: relative;
            display: inline-block;
            float: left;
            margin-right: 90px;
            padding-left: 57px;
        }

            .appointment-section .inner-box .info-list li:before {
                position: absolute;
                content: '';
                background: rgba(0,0,0,0.15);
                width: 2px;
                height: 56px;
                left: -40px;
                top: 0px;
            }

            .appointment-section .inner-box .info-list li:last-child {
                margin: 0px !important;
                padding: 0px;
            }

            .appointment-section .inner-box .info-list li i {
                position: absolute;
                left: 0px;
                top: 12px;
                font-size: 36px;
                color: #fff;
            }

        .appointment-section .inner-box .info-list {
            position: relative;
            margin-top: 12px;
        }

            .appointment-section .inner-box .info-list li h6 {
                color: #fff;
                text-transform: uppercase;
            }

            .appointment-section .inner-box .info-list li h5 a {
                color: #fff;
            }

                .appointment-section .inner-box .info-list li h5 a:hover {
                    text-decoration: underline;
                }

            .appointment-section .inner-box .info-list li h5 {
                margin-bottom: 6px;
            }

            .appointment-section .inner-box .info-list li.btn-box a {
                position: relative;
                display: inline-block;
                font-size: 14px;
                line-height: 26px;
                font-family: 'Poppins', sans-serif;
                font-weight: 600;
                text-transform: uppercase;
                color: #fff;
                border: 2px solid #fff;
                text-align: center;
                padding: 13px 28px;
                border-radius: 5px;
            }

                .appointment-section .inner-box .info-list li.btn-box a:hover {
                    background: #fff;
                }


/** footer-style-two **/

.footer-style-two {
    position: relative;
}

    .footer-style-two .footer-top-two {
        position: relative;
        padding: 166px 0px 97px 0px;
        border-top: 1px solid #e3e3e3;
        border-bottom: 1px solid #e3e3e3;
    }

    .footer-style-two p,
    .footer-style-two a {
        color: #646578;
    }

.footer-top-two .widget-title {
    margin-bottom: 15px;
}

.footer-top-two .logo-widget .text {
    margin-bottom: 34px;
}

.footer-top-two .footer-logo {
    position: relative;
    margin-bottom: 12px;
}

.footer-top-two .links-widget .links-list li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    margin-bottom: 8px;
}

    .footer-top-two .links-widget .links-list li:last-child {
        margin-bottom: 0px;
    }

    .footer-top-two .links-widget .links-list li a {
        display: inline-block;
    }

        .footer-top-two .links-widget .links-list li a:hover {
        }

.footer-top-two .post-widget .post h6 {
    position: relative;
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 13px;
}

    .footer-top-two .post-widget .post h6 a {
        display: inline-block;
    }

.footer-top-two .post-widget .post {
    position: relative;
    margin-bottom: 22px;
}

    .footer-top-two .post-widget .post:last-child {
        margin-bottom: 0px;
    }

    .footer-top-two .post-widget .post h5 {
        display: block;
        font-size: 15px;
        line-height: 26px;
        color: #646578;
        font-weight: 500;
    }

        .footer-top-two .post-widget .post h5 a {
            display: inline-block;
            color: #646578;
        }

            .footer-top-two .post-widget .post h5 a:hover {
            }

.footer-top-two .location-widget .text {
    position: relative;
    margin-bottom: 24px;
}

.footer-top-two .location-widget .zip-form {
    position: relative;
}

    .footer-top-two .location-widget .zip-form input[type='text'] {
        position: relative;
        width: 100%;
        height: 56px;
        border: 1px solid #e3e3e3;
        border-radius: 5px;
        font-size: 15px;
        color: #646578;
        padding: 10px 20px;
        margin-bottom: 15px;
        transition: all 500ms ease;
    }

    .footer-top-two .location-widget .zip-form input:focus {
    }

    .footer-top-two .location-widget .zip-form button {
        position: relative;
        display: inline-block;
        font-size: 14px;
        line-height: 26px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        padding: 10.5px 37.5px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 500ms ease;
    }

        .footer-top-two .location-widget .zip-form button:hover {
            background: #0a267a;
        }

.footer-top-two .anim-icon {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    max-width: 1920px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

    .footer-top-two .anim-icon .icon {
        position: absolute;
        background-repeat: no-repeat;
    }

    .footer-top-two .anim-icon .icon-1 {
        left: 100px;
        top: 100px;
        width: 47px;
        height: 46px;
    }

    .footer-top-two .anim-icon .icon-2 {
        left: 130px;
        bottom: 180px;
        width: 28px;
        height: 27px;
    }

    .footer-top-two .anim-icon .icon-3 {
        left: 310px;
        bottom: 60px;
        width: 39px;
        height: 39px;
    }

    .footer-top-two .anim-icon .icon-4 {
        left: 585px;
        top: 120px;
        width: 46px;
        height: 46px;
    }

    .footer-top-two .anim-icon .icon-5 {
        width: 30px;
        height: 30px;
        border: 9px solid #f3f3f3;
        border-radius: 50%;
        left: 48%;
        top: 90px;
    }

    .footer-top-two .anim-icon .icon-6 {
        width: 30px;
        height: 30px;
        border: 9px solid #f3f3f3;
        border-radius: 50%;
        left: 48%;
        bottom: 50px;
    }

    .footer-top-two .anim-icon .icon-7 {
        right: 690px;
        top: 135px;
        width: 47px;
        height: 46px;
    }

    .footer-top-two .anim-icon .icon-8 {
        width: 30px;
        height: 30px;
        border: 9px solid #f3f3f3;
        border-radius: 50%;
        right: 250px;
        top: 190px;
    }

    .footer-top-two .anim-icon .icon-9 {
        right: 290px;
        bottom: 100px;
        width: 39px;
        height: 39px;
    }

    .footer-top-two .anim-icon .icon-10 {
        right: 100px;
        top: 240px;
        width: 47px;
        height: 46px;
    }

    .footer-top-two .anim-icon .icon-11 {
        right: 80px;
        top: 50px;
        width: 46px;
        height: 46px;
    }

.footer-bottom-two {
    position: relative;
    padding: 24px 0px;
}

    .footer-bottom-two .footer-nav li {
        position: relative;
        display: inline-block;
        margin: 0px 15px;
    }

        .footer-bottom-two .footer-nav li:before {
            position: absolute;
            content: '';
            background: #d2d2d2;
            width: 1px;
            height: 16px;
            top: 6px;
            right: -15px;
        }

        .footer-bottom-two .footer-nav li:last-child:before {
            display: none;
        }

        .footer-bottom-two .footer-nav li a {
            display: inline-block;
        }

            .footer-bottom-two .footer-nav li a:hover {
            }



/*** 

====================================================================
                        Home-Page-Three
====================================================================

***/


/** header-style-three **/

.header-upper {
    position: relative;
    width: 100%;
    background: #f3f3f3;
    padding-bottom: 38px;
}

    .header-upper .logo-box {
        position: relative;
        padding: 21.5px 0px;
    }

    .header-upper .info-list li {
        position: relative;
        display: inline-block;
        float: left;
        padding-left: 53px;
        margin-right: 60px;
    }

        .header-upper .info-list li:first-child:before {
            position: absolute;
            content: '';
            background: #dadada;
            width: 2px;
            height: 56px;
            top: -1px;
            right: -31px;
        }

    .header-upper .right-column {
        position: relative;
        margin-top: 18px;
    }

    .header-upper .info-list li.btn-box {
        padding: 0px !important;
        margin: 0px !important;
    }

    .header-upper .info-list li i {
        position: absolute;
        left: 0px;
        top: 14px;
        font-size: 40px;
    }

    .header-upper .info-list li h6 {
        text-transform: uppercase;
        color: #646578;
        margin-bottom: 1px;
    }

    .header-upper .info-list li h5 {
        position: relative;
        display: block;
        font-size: 15px;
        line-height: 26px;
        color: #646578;
        font-weight: 600;
    }

.main-header.style-three .header-lower .outer-box {
    position: relative;
    width: 100%;
}

    .main-header.style-three .header-lower .outer-box .main-box {
        position: absolute;
        left: 0px;
        top: -38px;
        right: 0px;
        width: 100%;
        background: #fff;
        padding: 0px 40px;
        border-radius: 5px;
    }

        .main-header.style-three .header-lower .outer-box .main-box:before {
            position: absolute;
            content: '';
            background: rgba(255,255,255,0.4);
            left: 10px;
            top: 10px;
            width: calc(100% - 20px);
            height: 100%;
            border-radius: 5px;
        }

.main-header.style-three .menu-right-content {
    float: right;
    margin-top: 16px;
    padding-left: 0px;
    margin-left: 0px;
}

    .main-header.style-three .menu-right-content:before {
        display: none;
    }

    .main-header.style-three .menu-right-content .social-links {
        position: relative;
        float: left;
    }

        .main-header.style-three .menu-right-content .social-links li {
            position: relative;
            display: inline-block;
            float: left;
            margin-right: 10px;
        }

            .main-header.style-three .menu-right-content .social-links li:last-child {
                margin: 0px !important;
            }

            .main-header.style-three .menu-right-content .social-links li a {
                position: relative;
                display: inline-block;
                width: 42px;
                height: 42px;
                line-height: 42px;
                font-size: 15px;
                color: #fff;
                text-align: center;
                border-radius: 5px;
            }

            .main-header.style-three .menu-right-content .social-links li:nth-child(2) a {
            }

            .main-header.style-three .menu-right-content .social-links li:last-child a {
            }

.main-header.style-three .header-lower .main-menu .navigation > li {
    padding: 23px 0px;
}

.main-header.style-three .search-box-outer {
    margin-top: 10px;
    margin-right: 32px;
}


/** banner-style-three **/

.banner-section.style-three {
    position: relative;
}

    .banner-section.style-three .banner-carousel .slide-item {
        /* padding: 250px 0px 310px 0px; */
    }

        .banner-section.style-three .banner-carousel .slide-item:before {
            background: #000000;
            opacity: 0.3;
        }

    .banner-section.style-three .content-box {
        max-width: 100%;
    }

        .banner-section.style-three .content-box h6 {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            color: #fff;
            text-transform: uppercase;
            font-weight: 600;
            padding: 10px 19px;
            text-align: center;
            border-radius: 5px;
            margin-bottom: 16px;
            opacity: 0;
            -webkit-transform: translateY(100px);
            -moz-transform: translateY(100px);
            -ms-transform: translateY(100px);
            -o-transform: translateY(100px);
            transform: translateY(100px);
            -webkit-transition: all 700ms ease;
            -moz-transition: all 700ms ease;
            -ms-transition: all 700ms ease;
            -o-transition: all 700ms ease;
            transition: all 700ms ease;
        }

    .banner-section.style-three .banner-carousel .active .content-box h6 {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 700ms;
        -moz-transition-delay: 700ms;
        -ms-transition-delay: 700ms;
        -o-transition-delay: 700ms;
        transition-delay: 700ms;
    }

    .banner-section.style-three .banner-carousel .content-box h2 {
        position: relative;
        display: block;
        color: #fff;
        font-size: 72px;
        line-height: 82px;
        font-weight: 600;
        margin-bottom: 24px;
        text-transform: uppercase;
        opacity: 0;
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transition: all 1000ms ease;
        -moz-transition: all 1000ms ease;
        -ms-transition: all 1000ms ease;
        -o-transition: all 1000ms ease;
        transition: all 1000ms ease;
    }

    .banner-section.style-three .banner-carousel .active .content-box h2 {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 1000ms;
        -moz-transition-delay: 1000ms;
        -ms-transition-delay: 1000ms;
        -o-transition-delay: 1000ms;
        transition-delay: 1000ms;
    }

    .banner-section.style-three .banner-carousel .content-box .btn-box a {
        position: relative;
        display: inline-block;
        font-size: 14px;
        line-height: 26px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
        border: 2px solid #fff;
        text-align: center;
        padding: 13px 32px;
        border-radius: 5px;
    }

        .banner-section.style-three .banner-carousel .content-box .btn-box a:hover {
            background: #fff;
        }

    .banner-section.style-three .owl-nav .owl-next,
    .banner-section.style-three .owl-nav .owl-prev {
        display: inline-block;
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        background: #ffffff;
        border-radius: 5px;
        color: #b6b6c2;
        font-size: 40px;
        display: none;
    }

        .banner-section.style-three .owl-nav .owl-next:hover,
        .banner-section.style-three .owl-nav .owl-prev:hover {
            color: #fff;
        }

    .banner-section.style-three .more-content {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        background: transparent;
        z-index: 1;
    }

        .banner-section.style-three .more-content .content-inner {
            position: relative;
            display: block;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.07);
        }

            .banner-section.style-three .more-content .content-inner .single-column {
                position: relative;
                float: left;
                width: 33.333%;
            }

        .banner-section.style-three .more-content .inner-box {
            position: relative;
            padding: 25px 30px 25px 92px;
            border-right: 1px solid #e3e3e3;
            text-align: left;
        }

        .banner-section.style-three .more-content .single-column:nth-child(2) .inner-box {
            padding-left: 30px;
        }

        .banner-section.style-three .more-content .single-column:last-child .inner-box {
            border: none;
        }

        .banner-section.style-three .more-content .inner-box .icon-box {
            position: absolute;
            left: 30px;
            top: 35px;
            font-size: 50px;
            line-height: 50px;
        }

        .banner-section.style-three .more-content .inner-box .link {
            position: absolute;
            top: 30px;
            right: 30px;
        }

            .banner-section.style-three .more-content .inner-box .link a {
                position: relative;
                display: inline-block;
                width: 50px;
                height: 50px;
                line-height: 50px;
                background: #004da1;
                text-align: center;
                border-radius: 5px;
                font-size: 24px;
                color: #ffffff;
            }

                .banner-section.style-three .more-content .inner-box .link a:hover {
                    color: #fff;
                }


/** feature-style-two **/

.feature-style-two {
    position: relative;
    padding-top: 120px;
}

    .feature-style-two .inner-container {
        position: relative;
        display: block;
        border-radius: 5px;
        overflow: hidden;
    }

        .feature-style-two .inner-container .single-column {
            position: relative;
            float: left;
            width: 33.333%;
        }

    .feature-style-two .single-column .image-box img {
        width: 100%;
    }

    .feature-style-two .single-column .review-box {
        position: relative;
        display: block;
        padding: 70px 47px 53px 40px;
    }

        .feature-style-two .single-column .review-box .icon-box {
            position: relative;
            display: inline-block;
            font-size: 65px;
            line-height: 50px;
            color: #fff;
            margin-bottom: 20px;
            z-index: 1;
        }

            .feature-style-two .single-column .review-box .icon-box:before {
                position: absolute;
                content: '';
                top: -10px;
                right: -35px;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                z-index: -1;
            }

        .feature-style-two .single-column .review-box .text {
            margin-bottom: 26px;
        }

            .feature-style-two .single-column .review-box .text p {
                font-size: 22px;
                line-height: 32px;
                color: #ffffff;
            }

        .feature-style-two .single-column .review-box .author-info h4 {
            color: #ffffff;
            margin-bottom: 0px;
        }

        .feature-style-two .single-column .review-box .author-info h6 {
            text-transform: uppercase;
            color: rgba(255,255,255,0.8);
        }

    .feature-style-two .single-column .inner-box {
        position: relative;
        display: block;
        padding: 53px 40px 61px 40px;
    }

        .feature-style-two .single-column .inner-box h3 {
            font-size: 24px;
            line-height: 32px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .feature-style-two .single-column .inner-box p {
            color: #fff;
            margin-bottom: 18px;
        }

        .feature-style-two .single-column .inner-box .list li {
            position: relative;
            display: block;
            color: #fff;
            padding-left: 30px;
            margin-bottom: 10px;
        }

            .feature-style-two .single-column .inner-box .list li:last-child {
                margin-bottom: 0px;
            }

            .feature-style-two .single-column .inner-box .list li:before {
                position: absolute;
                content: "\f10c";
                font-family: 'Flaticon';
                font-size: 16px;
                left: 0px;
                top: 1px;
            }

        .feature-style-two .single-column .inner-box .shape {
            position: absolute;
            right: 20px;
            bottom: 20px;
            width: 200px;
            height: 205px;
            background-repeat: no-repeat;
        }


/** service-style-three **/

.service-style-three {
    position: relative;
    padding: 113px 0px;
}

    .service-style-three .sec-title {
        /* margin-bottom: 128px; */
    }

.service-block-two .inner-box {
    position: relative;
    display: block;
    text-align: center;
}

    .service-block-two .inner-box .image-box {
        position: relative;
        display: inline-block;
        margin-bottom: 75px;
    }

        .service-block-two .inner-box .image-box .image {
            position: relative;
            display: inline-block;
            width: 160px;
            height: 160px;
            border-radius: 50%;
        }

            .service-block-two .inner-box .image-box .image img {
                width: 100%;
                border-radius: 50%;
                filter: grayscale(100%);
                -webkit-filter: grayscale(100%);
                -moz-filter: grayscale(100%);
                -o-filter: grayscale(100%);
                -ms-filter: grayscale(100%);
                transition: all 500ms ease;
            }

    .service-block-two .inner-box:hover .image-box .image img {
        filter: grayscale(0%);
        -webkit-filter: grayscale(0%);
        -moz-filter: grayscale(0%);
        -o-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
    }

    .service-block-two .inner-box .image-box .shape-1 {
        position: absolute;
        top: -87px;
        right: 0px;
        width: 93px;
        height: 70px;
        background-repeat: no-repeat;
        transition: all 500ms ease;
    }

    .service-block-two .inner-box:hover .image-box .shape-1 {
        opacity: 0;
    }

    .service-block-two .inner-box .image-box .shape-2 {
        position: absolute;
        top: -87px;
        right: 0px;
        width: 93px;
        height: 70px;
        background-repeat: no-repeat;
        transform: scale(0,0);
        transition: all 500ms ease;
    }

    .service-block-two .inner-box:hover .image-box .shape-2 {
        transform: scale(1,1);
    }

    .service-block-two .inner-box .image-box .shape-3 {
        position: absolute;
        left: -40px;
        top: -26px;
        width: 240px;
        height: 233px;
        background-repeat: no-repeat;
    }

    .service-block-two .inner-box .lower-content h4 {
        display: block;
        margin-bottom: 10px;
    }

        .service-block-two .inner-box .lower-content h4 a {
            display: inline-block;
            color: #0a267a;
        }

            .service-block-two .inner-box .lower-content h4 a:hover {
            }

    .service-block-two .inner-box .lower-content p {
        margin-bottom: 19px;
    }

    .service-block-two .inner-box .lower-content .link a {
        position: relative;
        display: inline-block;
        font-size: 14px;
        line-height: 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
    }

        .service-block-two .inner-box .lower-content .link a:hover {
        }


/** project-style-three **/

.project-style-three {
    position: relative;
    padding: 113px 0px 110px 0px;
}

    .project-style-three .sec-title {
        margin-bottom: 20px;
    }

    .project-style-three .outer-container {
        position: relative;
        padding: 0px 20px;
    }

.project-block-three {
    position: relative;
    margin: 10px 0px;
}

    .project-block-three .inner-box {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 5px;
        transition: all 500ms ease;
    }

        .project-block-three .inner-box:hover {
            transform: scaleY(1.04);
        }

        .project-block-three .inner-box .image-box {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 5px;
        }

            .project-block-three .inner-box .image-box:before {
                position: absolute;
                content: '';
                background: #000000;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 0px;
                right: 0px;
                opacity: 0.2;
                z-index: 1;
                transition: all 500ms ease;
            }

        .project-block-three .inner-box:hover .image-box:before {
            opacity: 0.8;
        }

        .project-block-three .inner-box .image-box img {
            width: 100%;
            border-radius: 5px;
            transition: all 500ms ease;
        }

        .project-block-three .inner-box:hover .image-box img {
            transform: scale(1.05);
        }

        .project-block-three .inner-box .lower-content {
            position: absolute;
            left: 0px;
            top: 0px;
            right: 0px;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

            .project-block-three .inner-box .lower-content .icon-box {
                position: absolute;
                left: 30px;
                top: 40px;
                width: 56px;
                height: 56px;
                line-height: 56px;
                background: #fff;
                border-radius: 5px;
                font-size: 35px;
                text-align: center;
                transition: all 500ms ease;
            }

        .project-block-three .inner-box:hover .lower-content .icon-box {
            color: #fff;
        }

        .project-block-three .inner-box .lower-content .text {
            position: absolute;
            left: 0px;
            right: 0px;
            bottom: 0px;
            width: 100%;
            padding: 0px 25px 41px 40px;
        }

            .project-block-three .inner-box .lower-content .text p {
                position: relative;
                color: #a4a4ae;
                margin-bottom: 27px;
                opacity: 0;
                top: 15px;
                transition: all 500ms ease;
            }

        .project-block-three .inner-box:hover .lower-content .text p {
            top: 0px;
            opacity: 1;
        }

        .project-block-three .inner-box .lower-content .text h3 {
            display: block;
            font-size: 24px;
            line-height: 32px;
            color: #ffffff;
            font-weight: 600;
        }

        .project-block-three .inner-box .lower-content .text .link {
            position: absolute;
            right: 25px;
            bottom: 30px;
        }

            .project-block-three .inner-box .lower-content .text .link a {
                position: relative;
                display: inline-block;
                width: 50px;
                height: 50px;
                line-height: 50px;
                text-align: center;
                font-size: 24px;
                color: #fff;
                border-radius: 50%;
            }

        .project-block-three .inner-box:hover .lower-content .text .link a {
        }

.project-style-three .owl-nav {
    position: absolute;
    top: -100px;
    right: 0px;
    left: 0px;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
}

    .project-style-three .owl-nav .owl-prev {
        margin-right: 10px;
    }

    .project-style-three .owl-nav .owl-prev,
    .project-style-three .owl-nav .owl-next {
        box-shadow: none;
    }

        .project-style-three .owl-nav .owl-prev:hover,
        .project-style-three .owl-nav .owl-next:hover {
            color: #fff;
        }


/** works-style-three **/

.works-style-three {
    position: relative;
}

    .works-style-three .content_block_5 .content-box {
        padding: 42px 50px 50px 60px;
    }

        .works-style-three .content_block_5 .content-box .list-item {
            margin-bottom: 47px;
        }

    .works-style-three .inner-content {
        position: relative;
        display: block;
        margin: 0px -30px;
        background: #fff;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.07);
    }

.content_block_12 .content-box {
    position: relative;
    display: block;
}

    .content_block_12 .content-box:before {
        position: absolute;
        content: '';
        background: #e3e3e3;
        width: calc(100% - 30px);
        height: 0.5px;
        left: 30px;
        top: 53%;
        transform: translateY(-50%);
    }

    .content_block_12 .content-box:after {
        position: absolute;
        content: '';
        background: #e3e3e3;
        width: 0.5px;
        height: calc(100% - 100px);
        left: 50%;
        top: 50px;
        transform: translateX(-50%);
    }

.works-block-one .inner-box {
    position: relative;
    display: block;
    padding: 50px 0px 23px 30px;
}

.works-block:nth-child(2) .works-block-one .inner-box,
.works-block:last-child .works-block-one .inner-box {
    padding-left: 10px;
}

.works-block:nth-child(3) .works-block-one .inner-box,
.works-block:nth-child(4) .works-block-one .inner-box {
    padding-top: 30px;
}

.works-block-one .inner-box .count-text {
    position: absolute;
    top: 60px;
    right: 10px;
    font-size: 60px;
    line-height: 60px;
    font-family: 'Poppins', sans-serif;
    color: #f3f3f3;
    font-weight: 600;
    transition: all 500ms ease;
}

.works-block-one .inner-box:hover .count-text {
}

.works-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    font-size: 40px;
    width: 77px;
    height: 77px;
    line-height: 77px;
    background: #fff;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 27px;
    box-shadow: -5px 1px 15px 0px rgba(0,0,0,0.06);
    transition: all 500ms ease;
}

.works-block-one .inner-box:hover .icon-box {
    background: #f3f3f3;
    box-shadow: none;
}

.works-block-one .inner-box .icon-box:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 50%;
    box-shadow: 3px 3px 0px 0px #eaeaea;
    transition: all 500ms ease;
}

.works-block-one .inner-box:hover .icon-box:before {
}

.red-color .works-block-one .inner-box:hover .icon-box:before {
    box-shadow: 3px 3px 0px 0px #f4544e;
}

.works-block-one .inner-box h4 {
    margin-bottom: 10px;
}


/** faq-section **/

.faq-section {
    position: relative;
    overflow: hidden;
}

    .faq-section .sec-title {
        margin-bottom: 22px;
    }

    .faq-section .image-layer {
        position: absolute;
        left: 0px;
        top: 120px;
    }

        .faq-section .image-layer img {
            width: 100%;
        }

.content_block_13 .content-box {
    position: relative;
    display: block;
    margin-right: 30px;
    padding: 45px 30px 17px 30px;
    border-radius: 5px;
    margin-top: 107px;
}

    .content_block_13 .content-box .upper-box h3 {
        display: block;
        font-size: 30px;
        line-height: 38px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .content_block_13 .content-box .upper-box p {
        color: #fff;
    }

    .content_block_13 .content-box .upper-box {
        position: relative;
        margin-bottom: 31px;
    }

    .content_block_13 .content-box .single-box {
        position: relative;
        padding: 0px 0px 0px 110px;
        padding-bottom: 37px;
        margin-bottom: 32px;
        border-bottom: 1px solid rgba(0,0,0,0.15);
    }

        .content_block_13 .content-box .single-box:last-child {
            border-bottom: none;
            margin-bottom: 0px;
        }

        .content_block_13 .content-box .single-box .image-box {
            position: absolute;
            left: 0px;
            top: 3px;
            width: 90px;
            height: 90px;
        }

        .content_block_13 .content-box .single-box h4 {
            color: #fff;
            margin-bottom: 10px;
        }

        .content_block_13 .content-box .single-box p {
            color: #fff;
        }

.accordion-box .block {
    position: relative;
    display: block;
    padding: 0px 30px;
    margin-bottom: 13px;
    border-radius: 5px;
    background: #fff;
    transition: all 500ms ease;
}

    .accordion-box .block.active-block {
        padding-bottom: 26px;
    }

    .accordion-box .block:last-child {
        margin-bottom: 0px;
    }

    .accordion-box .block .acc-content.current {
        display: block;
    }

    .accordion-box .block .acc-btn {
        position: relative;
        display: block;
        padding: 20px 50px 18px 0px;
        cursor: pointer;
        transition: all 500ms ease;
    }

        .accordion-box .block .acc-btn h5 {
            font-size: 16px;
            line-height: 26px;
            font-weight: 600;
            transition: all 500ms ease;
        }

        .accordion-box .block .acc-btn.active h5 {
        }

        .accordion-box .block .acc-btn .icon-outer {
            position: absolute;
            display: inline-block;
            top: 17px;
            right: 0px;
            font-size: 18px;
            width: 30px;
            height: 30px;
            line-height: 25px;
            border: 1px solid #e4e4e4;
            border-radius: 50%;
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            color: #646578;
            transition: all 500ms ease;
            z-index: 1;
        }

        .accordion-box .block .acc-btn.active .icon-outer {
            line-height: 36px;
            color: #fff;
        }

            .accordion-box .block .acc-btn.active .icon-outer i:before {
                font-family: 'Font Awesome 5 Pro';
                content: "\f0de";
            }

    .accordion-box .block .acc-content {
        position: relative;
        display: none;
        background: #f3f3f3;
        padding: 23px 30px 24px 30px;
        border-radius: 5px;
    }


/** testimonial-style-three **/

.testimonial-style-three {
    position: relative;
}

    .testimonial-style-three .owl-carousel .owl-stage-outer {
        overflow: visible;
    }

        .testimonial-style-three .owl-carousel .owl-stage-outer .owl-item {
            opacity: 0;
        }

            .testimonial-style-three .owl-carousel .owl-stage-outer .owl-item.active {
                opacity: 1;
            }

.testimonial-block-two .inner-box {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.08);
    padding: 49px 20px 41px 30px;
    border: 2px solid transparent;
    transition: all 500ms ease;
}

    .testimonial-block-two .inner-box:hover {
    }

    .testimonial-block-two .inner-box .icon-box {
        position: absolute;
        display: inline-block;
        left: 30px;
        top: -25px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 50%;
        font-size: 20px;
        color: #b6b6c2;
        text-align: center;
        transition: all 500ms ease;
    }

    .testimonial-block-two .inner-box:hover .icon-box {
        color: #fff;
        box-shadow: 0px 0px 0px 10px rgba(255,255,255,1);
    }

    .testimonial-block-two .inner-box h4 {
        margin-bottom: 4px;
    }

    .testimonial-block-two .inner-box .rating-box li {
        position: relative;
        display: inline-block;
        font-size: 14px;
        color: #b6b6c2;
    }

    .testimonial-block-two .inner-box .rating-box {
        margin-bottom: 15px;
    }

    .testimonial-block-two .inner-box p {
        line-height: 30px;
        margin-bottom: 26px;
    }

    .testimonial-block-two .inner-box .author-info h4 {
        color: #0a267a;
        margin-bottom: 0px;
    }

    .testimonial-block-two .inner-box .author-info .designation {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 24px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
    }

.testimonial-style-three .owl-nav {
    position: absolute;
    top: -135px;
    right: 0px;
}

.testimonial-style-three .nav-style-one .owl-nav .owl-prev {
    margin-right: 10px;
}

.testimonial-style-three .nav-style-one .owl-nav .owl-prev,
.testimonial-style-three .nav-style-one .owl-nav .owl-next {
    box-shadow: none;
    background: #f3f3f3;
    color: #b6b6c2;
}

    .testimonial-style-three .nav-style-one .owl-nav .owl-prev:hover,
    .testimonial-style-three .nav-style-one .owl-nav .owl-next:hover {
        color: #fff;
    }

.testimonial-style-three .sec-title {
    margin-bottom: 52px;
}


/** footer-style-three **/

.footer-style-three {
    position: relative;
}

.footer-top-three {
    position: relative;
    padding: 97px 0px 36px 0px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .footer-top-three .logo-inner .footer-logo,
    .footer-top-three .logo-inner .call {
        position: relative;
        /* float: left; */
    }

    .footer-top-three .logo-inner .footer-logo {
        /* margin-right: 63px; */
        max-width: 500px;
        margin: 0px auto;
    }

        .footer-top-three .logo-inner .footer-logo:before {
            position: absolute;
            content: '';
            /* background: rgba(255,255,255,0.1); */
            width: 1px;
            height: 56px;
            top: 0px;
            right: -32px;
        }

    .footer-top-three .logo-inner .call {
        padding-left: 52px;
        margin-top: 3px;
    }

        .footer-top-three .logo-inner .call i {
            position: absolute;
            left: 0px;
            top: 12px;
            font-size: 36px;
        }

        .footer-top-three .logo-inner .call h6 {
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 1px;
        }

        .footer-top-three .logo-inner .call h5 {
            position: relative;
            display: block;
            font-size: 15px;
            line-height: 26px;
            color: #a4a4ae;
        }

            .footer-top-three .logo-inner .call h5 a {
                display: inline-block;
                color: #a4a4ae;
            }

                .footer-top-three .logo-inner .call h5 a:hover {
                    color: #fff;
                    text-decoration: underline;
                }

    .footer-top-three .subscribe-form .form-group {
        position: relative;
        padding-right: 195px;
        margin-bottom: 0px;
    }

        .footer-top-three .subscribe-form .form-group input[type='email'] {
            position: relative;
            width: 100%;
            height: 56px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 5px;
            font-size: 18px;
            color: #a4a4ae;
            background: transparent;
            padding: 10px 20px;
            transition: all 500ms ease;
        }

        .footer-top-three .subscribe-form .form-group input::-webkit-input-placeholder {
            color: #a4a4ae;
        }

        .footer-top-three .subscribe-form .form-group input:focus {
        }

        .footer-top-three .subscribe-form .form-group button {
            position: absolute;
            top: 0px;
            right: 0px;
            padding: 16px 40px;
            transition: all 500ms ease;
        }

        .footer-top-three .subscribe-form .form-group .theme-btn-four.thm-btn:before {
            background: #ffffff;
        }

        .footer-top-three .subscribe-form .form-group .theme-btn-four.thm-btn:hover {
        }

.footer-style-three .widget-section {
    position: relative;
    padding: 74px 0px 100px 0px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .footer-style-three .widget-section .widget-title {
        position: relative;
        margin-bottom: 24px;
        padding-bottom: 14px;
    }

        .footer-style-three .widget-section .widget-title h4 {
            color: #fff;
        }

        .footer-style-three .widget-section .widget-title:before {
            position: absolute;
            content: '';
            background: url(../images/icons/wave-6.png);
            width: 60px;
            height: 7px;
            left: 0px;
            bottom: 0px;
            background-repeat: no-repeat;
        }

    .footer-style-three .widget-section .links-widget .links-list li {
        position: relative;
        display: inline-block;
        /* float: left; */
        width: 50%;
        margin-bottom: 14px;
    }

        .footer-style-three .widget-section .links-widget .links-list li:last-child {
            margin-bottom: 0px;
        }

        .footer-style-three .widget-section .links-widget .links-list li a {
            position: relative;
            display: inline-block;
            font-size: 18px;
            color: #a4a4ae;
            padding-left: 16px;
        }

            .footer-style-three .widget-section .links-widget .links-list li a:before {
                position: absolute;
                content: '\f101';
                font-family: 'Font Awesome 5 Pro';
                left: 0px;
                top: 2px;
                font-size: 15px;
            }

            .footer-style-three .widget-section .links-widget .links-list li a:hover {
            }

    .footer-style-three .widget-section .post-widget .post {
        position: relative;
        padding: 0px 0px 0px 100px;
        margin-bottom: 15px;
        min-height: 88px;
    }

        .footer-style-three .widget-section .post-widget .post:last-child {
            margin-bottom: 0px;
        }

        .footer-style-three .widget-section .post-widget .post .post-thumb {
            position: absolute;
            left: 0px;
            top: 7px;
            width: 70px;
            height: 70px;
            border-radius: 5px;
        }

            .footer-style-three .widget-section .post-widget .post .post-thumb img {
                width: 100%;
                border-radius: 5px;
            }

        .footer-style-three .widget-section .post-widget .post h6 {
            text-transform: uppercase;
            margin-bottom: 12px;
        }

            .footer-style-three .widget-section .post-widget .post h6 a {
                display: inline-block;
                line-height: 18px;
            }

                .footer-style-three .widget-section .post-widget .post h6 a:hover {
                    color: #fff;
                    border-color: #fff;
                }

        .footer-style-three .widget-section .post-widget .post h5 {
            display: block;
            font-size: 15px;
            line-height: 26px;
            color: #a4a4ae;
        }

            .footer-style-three .widget-section .post-widget .post h5 a {
                display: inline-block;
                color: #a4a4ae;
            }

                .footer-style-three .widget-section .post-widget .post h5 a:hover {
                }

    .footer-style-three .widget-section .subscribe-widget .form-group {
        position: relative;
        margin-bottom: 12px;
        min-height: 60px;
    }

        .footer-style-three .widget-section .subscribe-widget .form-group:last-child {
            margin-bottom: 0px;
        }

        .footer-style-three .widget-section .subscribe-widget .form-group input[type='text'],
        .footer-style-three .widget-section .subscribe-widget .form-group input[type='email'] {
            position: relative;
            display: block;
            width: 100%;
            height: 60px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 5px;
            font-size: 15px;
            color: #a4a4ae;
            background: transparent;
            padding: 10px 20px;
            transition: all 500ms ease;
        }

        .footer-style-three .widget-section .subscribe-widget .form-group input::-webkit-input-placeholder {
            color: #a4a4ae;
        }

        .footer-style-three .widget-section .subscribe-widget .form-group input:focus {
        }

        .footer-style-three .widget-section .subscribe-widget .form-group .nice-select {
            font-size: 15px;
            color: #a4a4ae;
            height: 60px;
            border: 1px solid rgba(255,255,255,0.1) !important;
            padding: 5px 20px;
            border-radius: 5px;
        }

            .footer-style-three .widget-section .subscribe-widget .form-group .nice-select:after {
                top: 0px;
                right: 27px;
            }

        .footer-style-three .widget-section .subscribe-widget .form-group button {
            display: block;
            width: 100%;
            padding: 18px 30px;
            transition: all 500ms ease;
        }

            .footer-style-three .widget-section .subscribe-widget .form-group button:before {
                background: #ffffff;
            }

            .footer-style-three .widget-section .subscribe-widget .form-group button:hover {
            }

    .footer-style-three .widget-section .subscribe-widget .widget-title {
        margin-bottom: 30px;
    }

.footer-bottom-three {
    position: relative;
    padding: 34px 0px;
}

    .footer-bottom-three .copyright p {
        color: #a4a4ae;
    }

        .footer-bottom-three .copyright p a {
        }

            .footer-bottom-three .copyright p a:hover {
                color: #fff;
            }

    .footer-bottom-three .footer-nav li {
        position: relative;
        display: inline-block;
        color: #a4a4ae;
        float: left;
        margin-right: 30px;
    }

        .footer-bottom-three .footer-nav li:last-child {
            margin: 0px !important;
        }

        .footer-bottom-three .footer-nav li a {
            color: #a4a4ae;
        }

            .footer-bottom-three .footer-nav li a:hover {
            }

            .footer-bottom-three .footer-nav li a:before {
                position: absolute;
                content: '';
                background: rgba(255,255,255,0.1);
                width: 1px;
                height: 15px;
                top: 8px;
                right: -16px;
            }

        .footer-bottom-three .footer-nav li:last-child a:before {
            display: none;
        }


/*** 

====================================================================
                        About-Page
====================================================================

***/

/** page-title **/

.page-title {
    position: relative;
    padding: 124px 0px 129px 0px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .page-title:before {
        position: absolute;
        content: '';
        background: #131313;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        right: 0px;
        opacity: 0.2;
    }

    .page-title .content-box .title {
        position: relative;
        display: block;
        margin-bottom: 9px;
    }

        .page-title .content-box .title h1 {
            font-size: 60px;
            line-height: 60px;
            color: #fff;
            font-weight: 600;
        }

    .page-title .bread-crumb li {
        position: relative;
        display: inline-block;
        color: #fff;
        padding-right: 16px;
        margin-right: 7px;
    }

        .page-title .bread-crumb li:last-child {
            padding: 0px !important;
            margin: 0px !important;
        }

        .page-title .bread-crumb li a {
            color: #fff;
        }

            .page-title .bread-crumb li a:hover {
                text-decoration: underline;
            }

        .page-title .bread-crumb li:before {
            position: absolute;
            content: '';
            background: #fff;
            width: 6px;
            height: 6px;
            top: 11px;
            right: 0px;
            transform: rotate(45deg);
        }

        .page-title .bread-crumb li:last-child:before {
            display: none;
        }


/** feature-style-two **/

.feature-style-two .upper-content {
    position: relative;
    display: block;
    margin-bottom: 54px;
}

    .feature-style-two .upper-content .sec-title {
        margin-bottom: 0px;
    }

        .feature-style-two .upper-content .sec-title h2 {
            margin-bottom: 22px;
        }

    .feature-style-two .upper-content .inner-box {
        position: relative;
        display: block;
        border: 1px solid #dcdee5;
        border-radius: 5px;
        margin-top: 7px;
    }

        .feature-style-two .upper-content .inner-box .single-item {
            position: relative;
            float: left;
            width: 50%;
            padding: 31px 30px 28px 30px;
            overflow: hidden;
        }

            .feature-style-two .upper-content .inner-box .single-item:before {
                position: absolute;
                content: '';
                background: #dcdee5;
                width: 1px;
                height: calc(100% - 70px);
                top: 35px;
                right: 0px;
            }

            .feature-style-two .upper-content .inner-box .single-item:last-child:before {
                display: none;
            }

            .feature-style-two .upper-content .inner-box .single-item .icon-box {
                position: absolute;
                top: 47px;
                right: 20px;
                font-size: 60px;
                color: #eceff6;
            }

            .feature-style-two .upper-content .inner-box .single-item h2 {
                display: block;
                font-size: 45px;
                line-height: 45px;
                font-weight: 600;
                margin-bottom: 8px;
            }

            .feature-style-two .upper-content .inner-box .single-item h5 {
                display: block;
                font-size: 18px;
                line-height: 28px;
                font-weight: 600;
                margin-bottom: 28px;
            }

            .feature-style-two .upper-content .inner-box .single-item .link a i {
                position: absolute;
                left: -11px;
                top: 3px;
                font-size: 20px;
                opacity: 0;
                transition: all 500ms ease;
            }

            .feature-style-two .upper-content .inner-box .single-item .link a:hover i {
                opacity: 1;
            }

            .feature-style-two .upper-content .inner-box .single-item .link {
                position: relative;
                display: block;
                text-align: right;
            }

                .feature-style-two .upper-content .inner-box .single-item .link a:before {
                    position: absolute;
                    content: '';
                    background: #e3e3e3;
                    width: 113px;
                    height: 0.5px;
                    top: 50%;
                    transform: translateY(-50%);
                    right: 111px;
                    transition: all 500ms ease;
                }

                .feature-style-two .upper-content .inner-box .single-item .link a:hover:before {
                }

                .feature-style-two .upper-content .inner-box .single-item .link a {
                    position: relative;
                    display: inline-block;
                    font-size: 14px;
                    line-height: 24px;
                    font-family: 'Poppins', sans-serif;
                    color: #646578;
                    font-weight: 600;
                    text-transform: uppercase;
                }

            .feature-style-two .upper-content .inner-box .single-item:last-child .link a:before {
                width: 123px;
                right: 101px;
            }


/** award-section **/

.award-section {
    position: relative;
    padding-top: 113px;
}

    .award-section .bg-layer {
        position: absolute;
        left: 0px;
        top: 0px;
        right: 0px;
        width: 100%;
        height: 445px;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

        .award-section .bg-layer:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
            right: 0px;
            opacity: 0.9;
        }

    .award-section .owl-stage-outer {
        overflow: visible;
    }

        .award-section .owl-stage-outer .owl-item {
            opacity: 0;
        }

            .award-section .owl-stage-outer .owl-item.active {
                opacity: 1;
            }

.award-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 47px 20px 47px 140px;
    border-radius: 5px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
}

    .award-block-one .inner-box:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 5px;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        z-index: -1;
    }

    .award-block-one .inner-box .award-image {
        position: absolute;
        left: 30px;
        top: 50px;
    }

    .award-block-one .inner-box h4 {
        margin-bottom: 10px;
    }

.award-section .owl-nav {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 55px;
}

.award-section .nav-style-one .owl-nav .owl-prev,
.award-section .nav-style-one .owl-nav .owl-next {
    box-shadow: none;
    margin: 0px 5px;
    width: 70px;
    height: 50px;
    line-height: 50px;
    background: #eceff6;
}

.team-section.about-page .team-block-one .inner-box {
    border: none;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.08);
}

.page-links {
    position: relative;
    padding: 38px 0px 42px 0px;
}

    .page-links:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        width: 50%;
        height: 100%;
    }

    .page-links .text-column:first-child {
        padding-right: 30px;
    }

        .page-links .text-column:first-child .text a {
            right: 30px;
        }

    .page-links .text-column:last-child {
        padding-left: 30px;
    }

    .page-links .text h4 {
        color: #fff;
    }

    .page-links .text a {
        position: absolute;
        top: 1px;
        right: 0px;
        display: inline-block;
        font-size: 14px;
        line-height: 24px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color: #ffffff;
        text-transform: uppercase;
    }

        .page-links .text a i {
            position: relative;
            top: 3px;
            margin-left: 10px;
            font-size: 24px;
        }

        .page-links .text a:hover {
            text-decoration: underline;
        }

    .page-links .text .icon-box {
        position: absolute;
        top: 5px;
        right: 140px;
        font-size: 90px;
        color: rgba(0,0,0,0.1);
    }


/** chooseus-section **/

.chooseus-section {
    position: relative;
    background: #eceff6;
}

    .chooseus-section .tabs-box {
        position: relative;
        display: block;
        background: #fff;
        border-radius: 5px;
        padding: 50px 50px;
    }

        .chooseus-section .tabs-box .tabs-content {
            position: relative;
            padding: 0px 180px;
        }

        .chooseus-section .tabs-box .tab-buttons {
            position: absolute;
            top: 50px;
            z-index: 1;
        }

        .chooseus-section .tabs-box .tab-btns-one {
            left: 50px;
        }

        .chooseus-section .tabs-box .tab-btns-two {
            right: 50px;
        }

        .chooseus-section .tabs-box .tab-buttons li {
            position: relative;
            display: block;
            width: 150px;
            height: 150px;
            background: #eceff6;
            border-radius: 5px;
            text-align: center;
            padding: 30px 30px;
            cursor: pointer;
            z-index: 1;
            margin-bottom: 12px;
            transition: all 500ms ease;
        }

            .chooseus-section .tabs-box .tab-buttons li:last-child {
                margin-bottom: 0px;
            }

            .chooseus-section .tabs-box .tab-buttons li .icon-box {
                position: relative;
                display: inline-block;
                font-size: 45px;
                line-height: 40px;
                color: #aeaeba;
                transition: all 500ms ease;
                margin-bottom: 8px;
            }

            .chooseus-section .tabs-box .tab-buttons li h5 {
                display: block;
                font-size: 18px;
                line-height: 26px;
                font-weight: 600;
                transition: all 500ms ease;
            }

            .chooseus-section .tabs-box .tab-buttons li.active-btn,
            .chooseus-section .tabs-box .tab-buttons li:hover {
            }

                .chooseus-section .tabs-box .tab-buttons li.active-btn .icon-box,
                .chooseus-section .tabs-box .tab-buttons li:hover .icon-box {
                    color: #fff;
                }

                .chooseus-section .tabs-box .tab-buttons li.active-btn h5,
                .chooseus-section .tabs-box .tab-buttons li:hover h5 {
                    color: #fff;
                }

    .chooseus-section .tabs-content .tabs-inner {
        position: relative;
    }

        .chooseus-section .tabs-content .tabs-inner .image-box {
            position: relative;
            display: block;
            border-radius: 5px;
        }

            .chooseus-section .tabs-content .tabs-inner .image-box img {
                width: 100%;
                border-radius: 5px;
            }

        .chooseus-section .tabs-content .tabs-inner .content-box {
            position: absolute;
            left: 30px;
            bottom: 30px;
            width: calc(100% - 60px);
            background: #fff;
            border-radius: 5px;
            padding: 35px 30px 33px 30px;
        }

            .chooseus-section .tabs-content .tabs-inner .content-box h3 {
                display: block;
                font-size: 24px;
                line-height: 32px;
                font-weight: 600;
                margin-bottom: 10px;
            }

            .chooseus-section .tabs-content .tabs-inner .content-box p {
                margin-bottom: 14px;
            }

            .chooseus-section .tabs-content .tabs-inner .content-box a {
                position: relative;
                display: inline-block;
                font-size: 14px;
                line-height: 24px;
                font-family: 'Poppins', sans-serif;
                font-weight: 600;
                text-transform: uppercase;
            }

                .chooseus-section .tabs-content .tabs-inner .content-box a:hover {
                    text-decoration: underline;
                }


/*** 

====================================================================
                        Project-Page
====================================================================

***/

/** header-style-four **/

.main-header.style-four {
    position: relative;
}

    .main-header.style-four .header-lower {
        position: relative;
        background: transparent;
    }

        .main-header.style-four .header-lower .main-box {
            position: absolute;
            width: 100%;
            left: 0px;
            top: 0px;
            right: 0px;
            background: transparent;
        }

        .main-header.style-four .header-lower .main-menu .navigation > li > a {
            color: #ffffff;
        }

        .main-header.style-four .header-lower .menu-right-content .cart-box a {
            width: 44px;
            height: 44px;
            line-height: 44px;
            text-align: center;
            color: #fff;
            font-size: 20px;
            border-radius: 50%;
            background: rgba(0,0,0,0.4);
        }

            .main-header.style-four .header-lower .menu-right-content .cart-box a:hover {
            }

        .main-header.style-four .header-lower .menu-right-content .btn-box {
            position: relative;
            background: #fff;
            border-radius: 5px;
            padding: 12px 25px 12px 70px;
        }

            .main-header.style-four .header-lower .menu-right-content .btn-box i {
                position: absolute;
                left: 20px;
                top: 18px;
                font-size: 40px;
                line-height: 40px;
            }

            .main-header.style-four .header-lower .menu-right-content .btn-box h6 {
                display: block;
                font-size: 14px;
                line-height: 20px;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 0px;
            }

            .main-header.style-four .header-lower .menu-right-content .btn-box a {
                display: inline-block;
                font-size: 15px;
                line-height: 22px;
                font-family: 'Poppins', sans-serif;
                color: #75768a;
                font-weight: 600;
            }

                .main-header.style-four .header-lower .menu-right-content .btn-box a:hover {
                }

        .main-header.style-four .header-lower .main-menu .navigation > li {
            padding-top: 40px;
        }

    .main-header.style-four .header-top {
        border-bottom: none;
    }

    .main-header.style-four .header-lower .menu-right-content:before {
        background: rgba(255,255,255,0.3);
        top: 10px;
        height: 50px;
    }

    .main-header.style-four .header-lower .menu-right-content {
        margin-top: 20px;
    }

        .main-header.style-four .header-lower .menu-right-content .cart-box {
            margin-top: 13px;
        }

.page-title.style-two {
    padding: 145px 0px;
}

.project-style-two .pagination-wrapper {
    position: relative;
    margin-top: 20px;
}


/** project-details **/

.project-details {
    position: relative;
    padding: 120px 0px 55px 0px;
}

.project-details-content .two-column .image-box {
    position: relative;
    display: block;
    border-radius: 5px;
}

    .project-details-content .two-column .image-box img {
        width: 100%;
        border-radius: 5px;
    }

.project-details-content .two-column .content-box {
    position: relative;
    display: block;
    background: #eceff6;
    padding: 34px 40px 32px 40px;
    border-radius: 5px;
    margin-bottom: 30px;
}

    .project-details-content .two-column .content-box h4 {
        position: relative;
        display: block;
        padding-bottom: 14px;
        margin-bottom: 24px;
    }

        .project-details-content .two-column .content-box h4:before {
            position: absolute;
            content: '';
            background: url(../images/icons/wave-2.png);
            width: 60px;
            height: 7px;
            left: 0px;
            bottom: 0px;
            background-repeat: no-repeat;
        }

    .project-details-content .two-column .content-box .left-column,
    .project-details-content .two-column .content-box .right-column {
        position: relative;
        float: left;
        width: 50%;
    }

    .project-details-content .two-column .content-box .single-box {
        position: relative;
        margin-bottom: 18px;
    }

        .project-details-content .two-column .content-box .single-box:last-child {
            margin-bottom: 0px;
        }

        .project-details-content .two-column .content-box .single-box h6 {
            display: block;
            font-size: 14px;
            line-height: 22px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0px;
        }

        .project-details-content .two-column .content-box .single-box .rating li {
            position: relative;
            display: inline-block;
            font-size: 13px;
        }

        .project-details-content .two-column .content-box .single-box .social-box li {
            position: relative;
            display: inline-block;
            float: left;
            margin-right: 10px;
        }

            .project-details-content .two-column .content-box .single-box .social-box li:last-child {
                margin: 0px !important;
            }

            .project-details-content .two-column .content-box .single-box .social-box li a {
                position: relative;
                display: inline-block;
                font-size: 14px;
                color: #ffffff;
                width: 35px;
                height: 35px;
                line-height: 35px;
                text-align: center;
                border-radius: 5px;
            }

            .project-details-content .two-column .content-box .single-box .social-box li:first-child a {
                background: #3b5998;
            }

            .project-details-content .two-column .content-box .single-box .social-box li:nth-child(2) a {
                background: #55acee;
            }

            .project-details-content .two-column .content-box .single-box .social-box li:nth-child(3) a {
                background: #dc4e41;
            }

            .project-details-content .two-column .content-box .single-box .social-box li:last-child a {
                background: #cd201f;
            }

        .project-details-content .two-column .content-box .single-box .social-box {
            padding-top: 6px;
        }

.project-details-content .text {
    position: relative;
    display: block;
    padding: 43px 0px 54px 0px;
    border-bottom: 1px solid #dcdee5;
}

    .project-details-content .text p {
        margin-bottom: 17px;
    }

        .project-details-content .text p:last-child {
            margin-bottom: 0px;
        }

.project-details-content .single-discription {
    position: relative;
    display: block;
    padding: 44px 0px 43px 0px;
    border-bottom: 1px solid #dcdee5;
}

    .project-details-content .single-discription .title-inner,
    .project-details-content .single-discription .text-inner {
        position: relative;
        float: left;
        width: 50%;
    }

        .project-details-content .single-discription .title-inner h3 {
            position: relative;
            display: block;
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            padding-left: 75px;
        }

            .project-details-content .single-discription .title-inner h3 i {
                position: absolute;
                display: inline-block;
                left: 0px;
                top: 6px;
                width: 55px;
                height: 55px;
                line-height: 55px;
                font-size: 35px;
                color: #ffffff;
                font-weight: 400;
                text-align: center;
                border-radius: 5px;
            }

    .project-details-content .single-discription .title-inner {
        padding-right: 50px;
    }

        .project-details-content .single-discription .title-inner:before {
            position: absolute;
            content: '';
            background: #dcdee5;
            width: 1px;
            height: 150px;
            top: 7px;
            right: 30px;
        }

    .project-details-content .single-discription .text-inner {
        position: relative;
        padding-left: 30px;
    }

        .project-details-content .single-discription .text-inner:before {
            position: absolute;
            content: "\f10c";
            font-family: 'Flaticon';
            font-size: 16px;
            left: 0px;
            top: 1px;
        }

        .project-details-content .single-discription .text-inner p {
            margin-bottom: 17px;
        }

        .project-details-content .single-discription .text-inner .list li {
            position: relative;
            display: block;
            padding-left: 18px;
            margin-bottom: 7px;
        }

            .project-details-content .single-discription .text-inner .list li:last-child {
                margin-bottom: 0px;
            }

            .project-details-content .single-discription .text-inner .list li:before {
                position: absolute;
                content: '';
                background: #b6b6c2;
                width: 6px;
                height: 6px;
                left: 0px;
                top: 11px;
                transform: rotate(45deg);
            }

.related-project {
    position: relative;
    padding-bottom: 120px;
}

    .related-project .title-box {
        position: relative;
        display: block;
        margin-bottom: 22px;
    }

        .related-project .title-box h3 {
            display: block;
            font-size: 24px;
            line-height: 32px;
            font-weight: 600;
        }

    .related-project .project-block-two .inner-box {
        margin-bottom: 0px;
    }


/** feedback-section **/

.feedback-section {
    position: relative;
    background: #eceff6;
}

.feedback-block-one .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.05);
}

    .feedback-block-one .inner-box .video-btn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
        text-align: center;
    }

        .feedback-block-one .inner-box .video-btn a {
            position: relative;
            display: inline-block;
            font-size: 20px;
            color: #fff;
            width: 90px;
            height: 50px;
            line-height: 50px;
            border-radius: 5px;
            text-align: center;
            background: rgba(0,0,0,0.8);
        }

            .feedback-block-one .inner-box .video-btn a:hover {
            }

    .feedback-block-one .inner-box .share-option {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 90px;
        height: 30px;
        line-height: 30px;
        background: #fff;
        border-radius: 5px;
        text-align: center;
        cursor: pointer;
    }

        .feedback-block-one .inner-box .share-option span {
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #000;
            text-transform: uppercase;
        }

            .feedback-block-one .inner-box .share-option span i {
                color: #0a267a;
                margin-right: 8px;
            }

        .feedback-block-one .inner-box .share-option .share-links {
            position: absolute;
            right: 0px;
            top: 35px;
            width: 90px;
            opacity: 0;
            visibility: hidden;
            transition: all 500ms ease;
        }

        .feedback-block-one .inner-box .share-option:hover .share-links {
            opacity: 1;
            visibility: visible;
            top: 25px;
        }

        .feedback-block-one .inner-box .share-option .share-links li {
            position: relative;
            display: inline-block;
            margin: 0px 3px;
        }

            .feedback-block-one .inner-box .share-option .share-links li a {
                display: inline-block;
                font-size: 15px;
                color: #fff;
            }

                .feedback-block-one .inner-box .share-option .share-links li a:hover {
                }


/** review-page-section **/

.review-page-section {
    position: relative;
    padding-bottom: 65px;
    padding-top: 25px;
    background: #eceff6;
}

    .review-page-section .testimonial-block-two .inner-box {
        margin-bottom: 55px;
    }


/*** 

====================================================================
                        Faq-Page
====================================================================

***/

.faq-search {
    position: relative;
    padding-top: 120px;
    padding-bottom: 70px;
}

    .faq-search .title-inner {
        position: relative;
        display: block;
        margin-bottom: 29px;
    }

        .faq-search .title-inner .icon-box {
            position: relative;
            font-size: 55px;
            line-height: 50px;
            margin-bottom: 23px;
        }

        .faq-search .title-inner h2 {
            font-size: 40px;
            line-height: 50px;
            font-weight: 600;
        }

    .faq-search .search-inner {
        position: relative;
        display: block;
        margin-bottom: 22px;
    }

        .faq-search .search-inner .search-form .form-group {
            position: relative;
            max-width: 770px;
            width: 100%;
            margin: 0 auto;
        }

            .faq-search .search-inner .search-form .form-group input[type='search'] {
                position: relative;
                width: 100%;
                height: 60px;
                border: 1px solid #dcdee5;
                border-radius: 5px;
                font-size: 18px;
                color: #646578;
                padding: 10px 140px 10px 50px;
            }

            .faq-search .search-inner .search-form .form-group i {
                position: absolute;
                left: 20px;
                top: 17px;
                font-size: 18px;
                font-weight: 700;
                color: #646578;
                z-index: 1;
            }

            .faq-search .search-inner .search-form .form-group input:focus {
            }

            .faq-search .search-inner .search-form .form-group button {
                position: absolute;
                top: 8px;
                right: 8px;
                width: 120px;
                height: 45px;
                line-height: 45px;
                font-size: 14px;
                font-family: 'Poppins', sans-serif;
                font-weight: 600;
                color: #fff;
                text-transform: uppercase;
                cursor: pointer;
                border-radius: 5px;
                transition: all 500ms ease;
            }

                .faq-search .search-inner .search-form .form-group button:hover {
                    background: #0a267a;
                }

    .faq-search .other-text {
        margin: 0px;
    }

        .faq-search .other-text a {
            border-bottom: none;
        }


/** faq-style-two **/

.faq-style-two {
    position: relative;
    padding-bottom: 120px;
}

    .faq-style-two .accordion-box .block,
    .faq-style-three .accordion-box .block {
        background: #eceff6;
    }

        .faq-style-two .accordion-box .block .acc-content,
        .faq-style-three .accordion-box .block .acc-content {
            background: #ffffff;
        }

    .faq-style-two .content_block_7 .content-box {
        padding-top: 200px;
        padding-bottom: 20px;
        border-radius: 5px;
    }

        .faq-style-two .content_block_7 .content-box .video-btn {
            margin-bottom: 150px;
        }

    .faq-style-two .content_block_14 .content-box {
        margin-top: -6px;
    }

    .faq-style-two .content_block_14 .title-box {
        position: relative;
        display: block;
        padding-bottom: 17px;
        margin-bottom: 40px;
    }

        .faq-style-two .content_block_14 .title-box:before {
            position: absolute;
            content: '';
            background: url(../images/icons/wave-2.png);
            width: 60px;
            height: 7px;
            left: 0px;
            bottom: 0px;
            background-repeat: no-repeat;
        }

        .faq-style-two .content_block_14 .title-box h3 {
            font-size: 30px;
            line-height: 40px;
            font-weight: 600;
        }


/** faq-style-three **/

.faq-style-three {
    position: relative;
    padding-bottom: 120px;
    border-bottom: 1px solid #dcdee5;
}

    .faq-style-three .tab-btn-box {
        position: relative;
        display: block;
        border-top: 1px solid #dcdee5;
        border-bottom: 1px solid #dcdee5;
        margin-bottom: 60px;
    }

        .faq-style-three .tab-btn-box .tab-btns li {
            position: relative;
            float: left;
            width: 50%;
            font-size: 18px;
            line-height: 26px;
            font-family: 'Poppins', sans-serif;
            color: #0a267a;
            font-weight: 600;
            padding: 26px 0px 25px 0px;
            cursor: pointer;
            z-index: 1;
            transition: all 500ms ease;
        }

            .faq-style-three .tab-btn-box .tab-btns li i {
                margin-right: 10px;
            }

            .faq-style-three .tab-btn-box .tab-btns li:last-child {
                padding-left: 30px;
            }

            .faq-style-three .tab-btn-box .tab-btns li.active-btn {
                background: #eceff6;
            }

            .faq-style-three .tab-btn-box .tab-btns li:before {
                position: absolute;
                content: '';
                background: #eceff6;
                width: 5000px;
                height: 100%;
                top: 0px;
                opacity: 0;
                z-index: -1;
                transition: all 500ms ease;
            }

            .faq-style-three .tab-btn-box .tab-btns li.active-btn:before {
                opacity: 1;
            }

            .faq-style-three .tab-btn-box .tab-btns li:first-child:before {
                right: 0px;
            }

            .faq-style-three .tab-btn-box .tab-btns li:last-child:before {
                left: 0px;
            }

            .faq-style-three .tab-btn-box .tab-btns li:after {
                position: absolute;
                content: "\f105";
                font-family: 'Flaticon';
                font-size: 24px;
                top: 27px;
                right: 0px;
                color: #bbbbc6;
                font-weight: 400;
                transition: all 500ms ease;
            }

            .faq-style-three .tab-btn-box .tab-btns li:first-child:after {
                right: 30px;
            }

            .faq-style-three .tab-btn-box .tab-btns li.active-btn:after {
                transform: rotate(90deg);
            }


/** ask-section **/

.ask-section {
    position: relative;
    padding: 93px 0px 120px 0px;
}

    .ask-section .title-inner {
        position: relative;
        margin-bottom: 44px;
    }

        .ask-section .title-inner h3 {
            position: relative;
            display: block;
            font-size: 30px;
            line-height: 40px;
            font-weight: 600;
            padding-bottom: 15px;
            margin-bottom: 8px;
        }

            .ask-section .title-inner h3:before {
                position: absolute;
                content: '';
                background: url(../images/icons/wave-2.png);
                width: 60px;
                height: 7px;
                left: 50%;
                transform: translateX(-50%);
                bottom: 0px;
                background-repeat: no-repeat;
            }

    .ask-section .ask-form .form-group {
        position: relative;
        margin-bottom: 30px;
    }

        .ask-section .ask-form .form-group:last-child {
            margin-bottom: 0px;
        }

        .ask-section .ask-form .form-group input[type='text'],
        .ask-section .ask-form .form-group input[type='email'],
        .ask-section .ask-form .form-group textarea {
            position: relative;
            display: block;
            width: 100%;
            height: 60px;
            border: 1px solid #dcdee5;
            border-radius: 5px;
            font-size: 15px;
            color: #646578;
            padding: 10px 30px;
            text-align: left;
            transition: all 500ms ease;
        }

        .ask-section .ask-form .form-group textarea {
            height: 140px;
            resize: none;
        }

            .ask-section .ask-form .form-group input:focus,
            .ask-section .ask-form .form-group textarea:focus {
            }

/** error-section **/

.error-section {
    position: relative;
    padding: 100px 0px 120px 0px;
}

    .error-section .inner-box .theme-btn-one i {
        margin-right: 10px;
    }

    .error-section .inner-box .error-image {
        position: relative;
        display: inline-block;
        margin-bottom: 60px;
    }

    .error-section .inner-box h1 {
        font-size: 200px;
        line-height: 200px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .error-section .inner-box h2 {
        position: relative;
        display: block;
        font-size: 30px;
        line-height: 42px;
        font-weight: 600;
        margin-bottom: 60px;
    }


/*** 

====================================================================
                        Service-Page
====================================================================

***/

.about-service {
    position: relative;
    padding: 120px 0px 115px 0px;
}

.content_block_15 .content-box {
    position: relative;
}

    .content_block_15 .content-box .text {
        position: relative;
        margin-bottom: 20px;
    }

    .content_block_15 .content-box .list-item li {
        position: relative;
        display: block;
        padding-left: 30px;
        margin-bottom: 11px;
    }

        .content_block_15 .content-box .list-item li:last-child {
            margin-bottom: 0px;
        }

        .content_block_15 .content-box .list-item li:before {
            position: absolute;
            content: "\f10c";
            font-family: 'Flaticon';
            font-size: 16px;
            left: 0px;
            top: 2px;
        }

    .content_block_15 .content-box .sec-title {
        margin-bottom: 22px;
    }

.service-block-three .inner-box {
    position: relative;
    display: block;
}

    .service-block-three .inner-box .image-box {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 5px 5px 0px 0px;
        margin-bottom: 10px;
    }

        .service-block-three .inner-box .image-box img {
            width: 100%;
            border-radius: 5px 5px 0px 0px;
            transition: all 500ms ease;
        }

    .service-block-three .inner-box:hover .image-box img {
        opacity: 0.2;
        transform: scale(1.05);
    }

    .service-block-three .inner-box .lower-content {
        position: relative;
        display: block;
        background: #fff;
        padding: 34px 20px 34px 30px;
        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.08);
    }

        .service-block-three .inner-box .lower-content h4 {
            display: block;
            margin-bottom: 5px;
        }

            .service-block-three .inner-box .lower-content h4 a {
                display: inline-block;
                color: #0a267a;
            }

                .service-block-three .inner-box .lower-content h4 a:hover {
                }

.bg-color-6 {
    background: #eceff6;
}

.service-style-two.service-page .service-block-one .inner-box .lower-content h4:before {
    background: url(../images/icons/wave-1.png);
}

.service-style-two.service-page .owl-nav {
    position: absolute;
    top: -110px;
    right: 0px;
}

.mt-30 {
    margin-top: 30px;
}

.service-style-two.service-page .nav-style-one .owl-nav .owl-prev,
.service-style-two.service-page .nav-style-one .owl-nav .owl-next {
    box-shadow: none;
}

.service-style-two.service-page .nav-style-one .owl-nav .owl-prev {
    margin-right: 10px;
}


/** pricing-section **/

.pricing-section {
    position: relative;
    padding: 113px 0px 70px 0px;
}

    .pricing-section .pricing-inner {
        margin-top: 7px;
    }

.content_block_16 .content-box {
    position: relative;
    display: block;
}

    .content_block_16 .content-box .inner-box .single-item {
        position: relative;
        display: block;
        margin-bottom: 43px;
    }

        .content_block_16 .content-box .inner-box .single-item .icon-box {
            position: relative;
            font-size: 70px;
            line-height: 70px;
            margin-bottom: 21px;
        }

        .content_block_16 .content-box .inner-box .single-item h4 {
            margin-bottom: 9px;
        }

    .content_block_16 .content-box .sec-title h2 {
        margin-bottom: 22px;
    }

    .content_block_16 .content-box .sec-title {
        margin-bottom: 32px;
    }

.pricing-block-one .pricing-table {
    position: relative;
    display: block;
    background: #fff;
    padding: 36px 30px 30px 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.08);
}

    .pricing-block-one .pricing-table .table-header {
        position: relative;
        text-align: center;
        margin-bottom: 22px;
    }

        .pricing-block-one .pricing-table .table-header h3 {
            display: block;
            font-size: 24px;
            line-height: 30px;
            font-weight: 600;
            margin-bottom: 1px;
        }

        .pricing-block-one .pricing-table .table-header p {
            font-size: 15px;
            margin-bottom: 25px;
        }

        .pricing-block-one .pricing-table .table-header a {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 26px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            background: #eceff6;
            padding: 16px 20px;
            text-align: center;
            border-radius: 5px;
            text-transform: uppercase;
        }

            .pricing-block-one .pricing-table .table-header a:hover {
                color: #fff;
            }

    .pricing-block-one .pricing-table .table-content .list li {
        position: relative;
        display: block;
        font-size: 18px;
        line-height: 28px;
        padding: 12px 0px;
        border-bottom: 1px solid #dcdee5;
    }

        .pricing-block-one .pricing-table .table-content .list li:before {
            position: absolute;
            content: "\f00c";
            font-family: 'Font Awesome 5 Pro';
            font-size: 14px;
            font-weight: 700;
            top: 13px;
            right: 0px;
        }

        .pricing-block-one .pricing-table .table-content .list li.remove:before {
            content: "\f00d";
            color: #b6b6c2;
        }

    .pricing-block-one .pricing-table .table-content {
        position: relative;
        margin-bottom: 20px;
    }

    .pricing-block-one .pricing-table .table-footer h2 {
        font-size: 40px;
        line-height: 50px;
        font-weight: 600;
        padding-left: 15px;
    }

        .pricing-block-one .pricing-table .table-footer h2 span {
            position: absolute;
            left: 0px;
            top: -6px;
            font-size: 20px;
        }

.pricing-block:first-child {
    padding-top: 80px;
}


/** service-details **/

.service-details {
    position: relative;
    padding: 120px 0px;
}

.service-sidebar .category-widget {
    position: relative;
    display: block;
    background: #eceff6;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 40px;
}

    .service-sidebar .category-widget .category-list li {
        position: relative;
        display: block;
        margin-bottom: 3px;
    }

        .service-sidebar .category-widget .category-list li:last-child {
            margin-bottom: 0px;
        }

        .service-sidebar .category-widget .category-list li a {
            position: relative;
            display: block;
            font-size: 18px;
            line-height: 28px;
            font-family: 'Poppins', sans-serif;
            color: #0a267a;
            font-weight: 600;
            background: #ffffff;
            border-radius: 5px;
            padding: 18.5px 20px;
            z-index: 1;
        }

            .service-sidebar .category-widget .category-list li a:before {
                position: absolute;
                content: '\f0da';
                font-family: 'Font Awesome 5 Pro';
                width: 30px;
                height: 30px;
                line-height: 30px;
                border: 1px solid #d0d4dd;
                color: #646578;
                background: #ffffff;
                border-radius: 5px;
                text-align: center;
                top: 18px;
                right: 20px;
                transition: all 500ms ease;
            }

            .service-sidebar .category-widget .category-list li a:after {
                position: absolute;
                content: '';
                width: 0%;
                height: 100%;
                left: 0px;
                top: 0px;
                z-index: -1;
                border-radius: 5px;
                transition: all 500ms ease;
            }

            .service-sidebar .category-widget .category-list li a.current:after,
            .service-sidebar .category-widget .category-list li a:hover:after {
                width: 100%;
            }

            .service-sidebar .category-widget .category-list li a.current,
            .service-sidebar .category-widget .category-list li a:hover {
                color: #fff;
            }

                .service-sidebar .category-widget .category-list li a.current:before,
                .service-sidebar .category-widget .category-list li a:hover:before {
                    border-color: #ffffff;
                }

.service-sidebar .banner-widget {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
}

    .service-sidebar .banner-widget .widget-content {
        position: relative;
        display: block;
        width: 100%;
        padding: 45px 30px 40px 30px;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .service-sidebar .banner-widget .widget-content .shape {
            position: absolute;
            left: 0px;
            top: 0px;
            height: 100%;
            width: 278px;
            background-repeat: no-repeat;
            background-size: cover;
        }

    .service-sidebar .banner-widget .content-box {
        position: relative;
        max-width: 200px;
        width: 100%;
    }

        .service-sidebar .banner-widget .content-box .icon-box {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 40px;
            background: #ffffff;
            text-align: center;
            border-radius: 5px;
            margin-bottom: 23px;
        }

            .service-sidebar .banner-widget .content-box .icon-box .icon-shape {
                position: absolute;
                top: -15px;
                right: -38px;
                width: 32px;
                height: 32px;
                background-repeat: no-repeat;
            }

        .service-sidebar .banner-widget .content-box h3 {
            display: block;
            font-size: 24px;
            line-height: 32px;
            color: #ffffff;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .service-sidebar .banner-widget .content-box .theme-btn-two:hover {
            background: #0a267a;
        }

    .service-sidebar .banner-widget .form-inner {
        position: relative;
        display: block;
        padding: 33px 30px 40px 30px;
    }

        .service-sidebar .banner-widget .form-inner h3 {
            display: block;
            font-size: 24px;
            line-height: 32px;
            font-weight: 600;
            margin-bottom: 22px;
        }

        .service-sidebar .banner-widget .form-inner .form-group {
            position: relative;
            min-height: 56px;
            margin-bottom: 20px;
        }

            .service-sidebar .banner-widget .form-inner .form-group:last-child {
                margin-bottom: 0px;
            }

            .service-sidebar .banner-widget .form-inner .form-group input[type='text'],
            .service-sidebar .banner-widget .form-inner .form-group input[type='email'],
            .service-sidebar .banner-widget .form-inner .form-group .nice-select,
            .service-sidebar .banner-widget .form-inner .form-group textarea {
                position: relative;
                display: block;
                width: 100%;
                height: 56px;
                line-height: 36px;
                background: #eceff6;
                border: 1px solid #eceff6;
                border-radius: 5px;
                padding: 10px 20px;
                font-size: 15px;
                color: #646578;
                transition: all 500ms ease;
            }

            .service-sidebar .banner-widget .form-inner .form-group .nice-select {
                border: 1px solid #eceff6 !important;
            }

            .service-sidebar .banner-widget .form-inner .form-group textarea {
                resize: none;
                height: 110px;
            }

                .service-sidebar .banner-widget .form-inner .form-group input:focus,
                .service-sidebar .banner-widget .form-inner .form-group textarea:focus {
                }

            .service-sidebar .banner-widget .form-inner .form-group .nice-select:after {
                top: 3px;
                right: 25px;
                font-size: 18px;
                color: #b6b6c2;
            }

            .service-sidebar .banner-widget .form-inner .form-group .theme-btn-four {
                display: block;
                width: 100%;
            }

.service-details-content {
    position: relative;
}

    .service-details-content .content-one .image-box {
        position: relative;
        display: block;
        margin-bottom: 35px;
        border-radius: 5px;
    }

        .service-details-content .content-one .image-box img {
            width: 100%;
            border-radius: 5px;
        }

    .service-details-content .content-one h3 {
        display: block;
        font-size: 30px;
        line-height: 38px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .service-details-content .content-one .text p {
        margin-bottom: 17px;
    }

        .service-details-content .content-one .text p:last-child {
            margin-bottom: 0px;
        }

    .service-details-content .content-one {
        position: relative;
        margin-bottom: 48px;
    }

    .service-details-content .content-two .inner-box .single-item {
        position: relative;
        display: block;
        padding-left: 100px;
        margin-bottom: 27px;
    }

        .service-details-content .content-two .inner-box .single-item:last-child {
            margin-bottom: 0px;
        }

        .service-details-content .content-two .inner-box .single-item .icon-box {
            position: absolute;
            left: 0px;
            top: 6px;
            display: inline-block;
            width: 77px;
            height: 77px;
            line-height: 77px;
            text-align: center;
            background: #eceff6;
            border-radius: 50%;
            font-size: 40px;
        }

        .service-details-content .content-two .inner-box .single-item h4 {
            position: relative;
            padding-bottom: 30px;
            margin-bottom: 23px
        }

            .service-details-content .content-two .inner-box .single-item h4:before {
                position: absolute;
                content: '';
                background: url(../images/icons/wave-1.png);
                width: 60px;
                height: 18px;
                left: 0px;
                bottom: 0px;
                background-repeat: no-repeat;
            }

    .service-details-content .content-two .image-box {
        position: relative;
        display: block;
        border-radius: 5px;
        background: #ffffff;
        overflow: hidden;
        margin-top: 6px;
        box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
    }

        .service-details-content .content-two .image-box img {
            width: 100%;
        }

        .service-details-content .content-two .image-box .doc-content {
            position: relative;
            padding: 17px 20px 19px 20px;
        }

            .service-details-content .content-two .image-box .doc-content h6 {
                font-size: 16px;
                line-height: 26px;
                font-weight: 600;
                margin-bottom: 0px;
            }

            .service-details-content .content-two .image-box .doc-content span {
                position: relative;
                display: block;
                font-size: 14px;
                line-height: 18px;
                font-family: 'Poppins', sans-serif;
                color: #5a5a68;
                font-weight: 600;
                text-transform: uppercase;
            }

            .service-details-content .content-two .image-box .doc-content a {
                position: absolute;
                top: 20px;
                right: 20px;
                display: inline-block;
                font-size: 14px;
                line-height: 24px;
                font-weight: 600;
                text-transform: uppercase;
                color: #fff !important;
                padding: 8px 22px;
                border-radius: 5px;
                z-index: 1;
                transition: all 500ms ease;
            }

                .service-details-content .content-two .image-box .doc-content a:hover {
                    background: #0a267a;
                }

    .service-details-content .content-two {
        position: relative;
        margin-bottom: 54px;
    }

    .service-details-content .content-three .inner-box {
        position: relative;
        display: block;
        padding-left: 360px;
        border-radius: 5px;
        overflow: hidden;
    }

        .service-details-content .content-three .inner-box .image-box {
            position: absolute;
            left: 0px;
            top: 0px;
        }

            .service-details-content .content-three .inner-box .image-box img {
                width: 100%;
            }

        .service-details-content .content-three .inner-box .text {
            position: relative;
            padding: 36px 30px 34px 40px;
        }

            .service-details-content .content-three .inner-box .text .shape {
                position: absolute;
                right: 20px;
                bottom: 20px;
                width: 200px;
                height: 205px;
                background-repeat: no-repeat;
            }

            .service-details-content .content-three .inner-box .text h3 {
                display: block;
                font-size: 24px;
                line-height: 30px;
                color: #ffffff;
                font-weight: 600;
                margin-bottom: 11px;
            }

            .service-details-content .content-three .inner-box .text p {
                color: #ffffff;
                margin-bottom: 17px;
            }

            .service-details-content .content-three .inner-box .text .list li {
                position: relative;
                color: #ffffff;
                padding-left: 18px;
                margin-bottom: 7px;
            }

                .service-details-content .content-three .inner-box .text .list li:last-child {
                    margin-bottom: 0px;
                }


                .service-details-content .content-three .inner-box .text .list li:before {
                    position: absolute;
                    content: '';
                    background: #ffffff;
                    width: 6px;
                    height: 6px;
                    left: 0px;
                    top: 11px;
                    transform: rotate(45deg);
                }

    .service-details-content .content-three {
        margin-bottom: 56px;
    }

    .service-details-content .content-four h3 {
        display: block;
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 23px;
    }

    .service-details-content .content-four .cost-box {
        position: relative;
        display: block;
        border: 1px solid #dcdee5;
        border-radius: 5px;
        overflow: hidden;
    }

        .service-details-content .content-four .cost-box .single-item {
            position: relative;
            float: left;
            width: 33.333%;
        }

            .service-details-content .content-four .cost-box .single-item li {
                position: relative;
                display: block;
                padding: 15px 20px 19px 30px;
            }

                .service-details-content .content-four .cost-box .single-item li.title {
                    padding: 27px 20px 25px 30px;
                }

                .service-details-content .content-four .cost-box .single-item li h5 {
                    font-size: 18px;
                    line-height: 28px;
                    font-weight: 600;
                }

                .service-details-content .content-four .cost-box .single-item li:nth-child(2n+1) {
                    background: #eceff6;
                }

            .service-details-content .content-four .cost-box .single-item li {
                border-right: 1px solid #dcdee5;
            }

            .service-details-content .content-four .cost-box .single-item:last-child li {
                border: none !important;
            }

.mr-30 {
    margin-right: 30px;
}


/*** 

====================================================================
                        Blog-Page
====================================================================

***/

.sidebar-page-container {
    position: relative;
    padding: 120px 0px;
}

.blog-sidebar .sidebar-widget {
    position: relative;
    display: block;
    background: #e9ecf3;
    padding: 32px 30px 40px 30px;
    border-radius: 5px;
    margin-bottom: 40px;
}

    .blog-sidebar .sidebar-widget:last-child {
        margin-bottom: 0px;
    }

.blog-sidebar .widget-title {
    position: relative;
    margin-bottom: 22px;
}

.blog-sidebar .sidebar-search .search-form .form-group {
    position: relative;
    padding-right: 62px;
    margin: 0px;
}

    .blog-sidebar .sidebar-search .search-form .form-group input[type='search'] {
        position: relative;
        width: 100%;
        height: 52px;
        background: #fff;
        border: 1px solid #ffffff;
        border-radius: 5px;
        font-size: 18px;
        color: #646578;
        padding: 10px 20px;
        transition: all 500ms ease;
    }

    .blog-sidebar .sidebar-search .search-form .form-group input:focus {
    }

    .blog-sidebar .sidebar-search .search-form .form-group button {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 52px;
        height: 52px;
        line-height: 52px;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        border-radius: 5px;
        cursor: pointer;
        transition: all 500ms ease;
    }

.blog-sidebar .category-widget .category-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

    .blog-sidebar .category-widget .category-list li a {
        position: relative;
        display: block;
        font-size: 18px;
        color: #646578;
        background: #ffffff;
        padding: 15px 40px 9px 45px;
        border-radius: 5px;
    }

        .blog-sidebar .category-widget .category-list li a span {
            position: absolute;
            top: 12px;
            right: 20px;
            color: #ffffff;
            transition: all 500ms ease;
        }

        .blog-sidebar .category-widget .category-list li a:before {
            position: absolute;
            content: "\f07b";
            font-family: 'Font Awesome 5 Pro';
            font-size: 14px;
            font-weight: 400;
            color: #b6b6c2;
            left: 20px;
            top: 15px;
            transition: all 500ms ease;
        }

        .blog-sidebar .category-widget .category-list li a:hover:before {
            color: #ffffff;
        }

        .blog-sidebar .category-widget .category-list li a:hover {
            color: #ffffff;
        }

.blog-sidebar .post-widget .post .post-thumb {
    position: relative;
    display: block;
    border-radius: 5px;
    margin-bottom: 10px;
}

    .blog-sidebar .post-widget .post .post-thumb img {
        width: 100%;
        border-radius: 5px;
    }

.blog-sidebar .post-widget .post .category a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    font-family: 'Poppins', sans-serif;
    color: #646578;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #9e9ea9;
    margin-bottom: 9px;
}

    .blog-sidebar .post-widget .post .category a:hover {
    }

.blog-sidebar .post-widget .post h5 {
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

    .blog-sidebar .post-widget .post h5 a {
        display: inline-block;
        color: #0a267a;
    }

        .blog-sidebar .post-widget .post h5 a:hover {
        }

.blog-sidebar .post-widget .owl-nav {
    position: absolute;
    top: -55px;
    right: -5px;
}

    .blog-sidebar .post-widget .owl-nav .owl-prev,
    .blog-sidebar .post-widget .owl-nav .owl-next {
        position: relative;
        display: inline-block;
        font-size: 40px;
        line-height: 40px;
        color: #b6b6c2;
        margin: 0px 5px;
        font-weight: 400;
        cursor: pointer;
        transition: all 500ms ease;
    }

        .blog-sidebar .post-widget .owl-nav .owl-prev:hover,
        .blog-sidebar .post-widget .owl-nav .owl-next:hover {
        }

.blog-sidebar .post-widget {
    padding-bottom: 32px;
}

.blog-sidebar .tags-widget .tags-list li {
    position: relative;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

    .blog-sidebar .tags-widget .tags-list li a {
        position: relative;
        display: inline-block;
        font-size: 18px;
        color: #646578;
        background: #ffffff;
        padding: 9px 12px;
        text-align: center;
        border-radius: 5px;
    }

        .blog-sidebar .tags-widget .tags-list li a:hover {
            color: #ffffff;
        }

.blog-sidebar .tags-widget {
    padding-bottom: 30px;
}

.blog-sidebar .archives-widget .widget-content {
    position: relative;
    padding-right: 62px;
}

    .blog-sidebar .archives-widget .widget-content .icon-box {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 52px;
        height: 52px;
        line-height: 52px;
        font-size: 30px;
        text-align: center;
        color: #ffffff;
        border-radius: 5px;
    }

    .blog-sidebar .archives-widget .widget-content .select-box {
        position: relative;
        min-height: 52px;
    }

        .blog-sidebar .archives-widget .widget-content .select-box .nice-select:after {
            display: none;
        }

        .blog-sidebar .archives-widget .widget-content .select-box .nice-select {
            height: 52px;
            line-height: 52px;
            background: #ffffff;
            border-radius: 5px;
            padding: 0px 20px;
            border: none !important;
            font-size: 18px;
            color: #646578;
        }

.sidebar-page-container .news-block-one .inner-box {
    position: relative;
    box-shadow: none;
    border: 1px solid #dcdee5;
    margin-bottom: 63px;
}

    .sidebar-page-container .news-block-one .inner-box:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 0%;
        left: 0px;
        top: 0px;
        right: 0px;
        opacity: 0;
        border-radius: 5px;
        transition: all 500ms ease;
    }

    .sidebar-page-container .news-block-one .inner-box:hover:before {
        height: 100%;
        opacity: 1;
    }

.news-block-one .inner-box .lower-content .post-date {
    position: absolute;
    left: 30px;
    top: -24px;
}

    .news-block-one .inner-box .lower-content .post-date h6 {
        position: relative;
        display: inline-block;
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        padding: 9.5px 13px;
        text-align: center;
        border-radius: 5px;
    }

        .news-block-one .inner-box .lower-content .post-date h6 span {
            font-size: 24px;
        }

.news-block-one .inner-box .lower-content p {
    margin-bottom: 15px;
    padding-top: 2px;
}

.news-block-one .inner-box .lower-content {
    padding: 42px 30px 32px 30px;
}

.ml-30 {
    margin-left: 30px;
}

.news-block-two .inner-box .lower-content .link a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 19px;
}

    .news-block-two .inner-box .lower-content .link a:before {
        position: absolute;
        content: '';
        width: 11px;
        height: 2px;
        left: 0px;
        top: 11px;
    }

    .news-block-two .inner-box .lower-content .link a:hover {
        text-decoration: underline;
    }

.news-block-two .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.06);
    margin-bottom: 60px;
}

    .news-block-two .inner-box .lower-content {
        position: relative;
        display: block;
        padding: 30px 30px 43px 130px;
    }

    .news-block-two .inner-box .image-box {
        position: relative;
        display: block;
        overflow: hidden;
    }

        .news-block-two .inner-box .image-box img {
            width: 100%;
            transition: all 500ms ease;
        }

    .news-block-two .inner-box:hover .image-box img {
        transform: scale(1.05);
    }

    .news-block-two .inner-box .lower-content .info-box {
        position: absolute;
        left: 0px;
        top: 0px;
        padding: 40px 0px 0px 30px;
    }

        .news-block-two .inner-box .lower-content .info-box .post-date h3 {
            position: relative;
            display: inline-block;
            width: 70px;
            background: #eceff6;
            border-radius: 5px;
            padding: 14px 10px 8px 10px;
            font-size: 24px;
            line-height: 24px;
            color: #646578;
            font-weight: 600;
            text-align: center;
            margin-bottom: 15px;
        }

            .news-block-two .inner-box .lower-content .info-box .post-date h3 span {
                display: block;
                font-size: 14px;
                text-transform: uppercase;
            }

        .news-block-two .inner-box .lower-content .info-box .share-box {
            position: relative;
            display: inline-block;
            width: 70px;
            background: transparent;
            width: 70px;
            height: 35px;
            line-height: 35px;
            border: 1px solid #dcdee5;
            border-radius: 5px;
            text-align: center;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            color: #b6b6c2;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 500ms ease;
        }

            .news-block-two .inner-box .lower-content .info-box .share-box:hover {
                height: 135px;
                background: #ffffff;
                border-color: #ffffff;
                box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.08);
            }

            .news-block-two .inner-box .lower-content .info-box .share-box .social-links {
                position: absolute;
                left: 0px;
                top: 34px;
                text-align: center;
                width: 70px;
                background: #fff;
                padding: 0px 10px 10px 10px;
                transform: scaleY(0);
                transform-origin: top center;
                transition: all 500ms ease;
            }

            .news-block-two .inner-box .lower-content .info-box .share-box:hover .social-links {
                transform: scaleY(1);
            }

            .news-block-two .inner-box .lower-content .info-box .share-box .social-links .social-box {
                border: 1px solid #dcdee5;
                border-radius: 5px;
            }

                .news-block-two .inner-box .lower-content .info-box .share-box .social-links .social-box li {
                    position: relative;
                    display: block;
                }

                    .news-block-two .inner-box .lower-content .info-box .share-box .social-links .social-box li a {
                        position: relative;
                        display: block;
                        border-bottom: 1px solid #dcdee5;
                        font-size: 12px;
                        color: #b6b6c2;
                        height: 30px;
                        line-height: 30px;
                    }

                    .news-block-two .inner-box .lower-content .info-box .share-box .social-links .social-box li:last-child a {
                        border-bottom: none;
                    }

                    .news-block-two .inner-box .lower-content .info-box .share-box .social-links .social-box li a:hover {
                    }

    .news-block-two .inner-box .lower-content .inner .category a {
        position: relative;
        display: inline-block;
        font-size: 14px;
        line-height: 18px;
        font-family: 'Poppins', sans-serif;
        color: #646578;
        font-weight: 600;
        text-transform: uppercase;
        border-bottom: 1px solid #9e9ea9;
        margin-bottom: 15px;
    }

        .news-block-two .inner-box .lower-content .inner .category a:hover {
        }

    .news-block-two .inner-box .lower-content .inner h2 {
        display: block;
        font-size: 30px;
        line-height: 40px;
        font-weight: 600;
        margin-bottom: 14px;
    }

        .news-block-two .inner-box .lower-content .inner h2 a {
            display: inline-block;
            color: #0a267a;
        }

            .news-block-two .inner-box .lower-content .inner h2 a:hover {
            }

    .news-block-two .inner-box .lower-content .inner p {
        margin-bottom: 15px;
    }

.page-title.blog-single {
    padding-bottom: 0px;
}

    .page-title.blog-single .content-box {
        position: relative;
        padding-bottom: 145px;
    }

    .page-title.blog-single .bread-crumb {
        position: absolute;
        left: 0px;
        bottom: 24px;
    }

.blog-details-content {
    position: relative;
}

    .blog-details-content .content-one .top-text {
        position: relative;
        margin-bottom: 34px;
    }

    .blog-details-content .content-one .image-box {
        position: relative;
        display: block;
        border-radius: 5px;
        margin-bottom: 34px;
    }

        .blog-details-content .content-one .image-box img {
            width: 100%;
            border-radius: 5px;
        }

    .blog-details-content .content-one .text p {
        margin-bottom: 17px;
    }

    .blog-details-content .content-one .text .list li {
        position: relative;
        display: block;
        padding-left: 27px;
        margin-bottom: 11px;
    }

        .blog-details-content .content-one .text .list li:last-child {
            margin-bottom: 0px;
        }

        .blog-details-content .content-one .text .list li:before {
            position: absolute;
            content: "\f12f";
            font-size: 14px;
            font-family: 'Flaticon';
            color: #b6b6c2;
            left: 0px;
            top: 1px;
        }

    .blog-details-content .content-one .text .list {
        margin-bottom: 43px;
    }

    .blog-details-content .content-one .text h3 {
        display: block;
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .blog-details-content .content-one {
        padding-bottom: 17px;
    }

    .blog-details-content .content-two .image-box {
        position: relative;
        display: block;
        border-radius: 5px;
    }

        .blog-details-content .content-two .image-box img {
            width: 100%;
            border-radius: 5px;
        }

    .blog-details-content .content-two blockquote {
        position: relative;
        display: block;
        text-align: center;
        padding: 50px 30px 52px 30px;
        border-radius: 5px;
        margin: 0px;
    }

        .blog-details-content .content-two blockquote .icon-box {
            position: absolute;
            left: 30px;
            top: 30px;
            font-size: 100px;
            line-height: 100px;
            color: rgba(0,0,0,0.07);
        }

        .blog-details-content .content-two blockquote p {
            font-size: 20px;
            line-height: 32px;
            color: #ffffff;
            margin-bottom: 17px;
        }

    .blog-details-content .content-two h4 {
        color: #ffffff;
    }

    .blog-details-content .content-two .two-column {
        position: relative;
        margin-bottom: 33px;
    }

    .blog-details-content .content-two {
        position: relative;
        margin-bottom: 47px;
    }

    .blog-details-content .post-share-option .post-tags li {
        position: relative;
        display: inline-block;
        color: #646578;
    }

        .blog-details-content .post-share-option .post-tags li a {
            color: #646578;
        }

            .blog-details-content .post-share-option .post-tags li a:hover {
            }

        .blog-details-content .post-share-option .post-tags li h6 {
            position: relative;
            font-size: 16px;
            font-weight: 600;
            padding-left: 27px;
        }

            .blog-details-content .post-share-option .post-tags li h6 i {
                position: absolute;
                left: 0px;
                top: 4px;
            }

    .blog-details-content .post-share-option .post-tags {
        position: relative;
        margin-bottom: 20px;
    }

    .blog-details-content .post-share-option .social-links li {
        position: relative;
        display: inline-block;
        float: left;
        width: 25%;
    }

        .blog-details-content .post-share-option .social-links li a {
            position: relative;
            display: inline-block;
            width: 170px;
            text-align: center;
            padding: 14px 15px;
            font-size: 14px;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 5px;
        }

            .blog-details-content .post-share-option .social-links li a i {
                margin-right: 10px;
            }

        .blog-details-content .post-share-option .social-links li:first-child a {
        }

        .blog-details-content .post-share-option .social-links li:nth-child(2) a {
        }

        .blog-details-content .post-share-option .social-links li:nth-child(3) a {
        }

        .blog-details-content .post-share-option .social-links li:last-child a {
        }

    .blog-details-content .post-share-option .social-links {
        position: relative;
        margin-right: -30px;
    }

    .blog-details-content .post-share-option {
        position: relative;
        padding-bottom: 60px;
        border-bottom: 1px solid #dcdee5;
        margin-bottom: 30px;
    }

    .blog-details-content .post-nav {
        position: relative;
        display: block;
        padding-bottom: 40px;
        border-bottom: 1px solid #dcdee5;
        margin-bottom: 55px;
    }

        .blog-details-content .post-nav .image-box {
            position: absolute;
            top: 10px;
            width: 80px;
            height: 80px;
            background: #000;
            overflow: hidden;
            border-radius: 5px;
        }

            .blog-details-content .post-nav .image-box img {
                width: 100%;
                border-radius: 5px;
                transition: all 500ms ease;
            }

            .blog-details-content .post-nav .image-box i {
                position: absolute;
                left: 30px;
                top: 27px;
                font-size: 30px;
                font-weight: 400;
                color: #ffffff;
                z-index: 1;
                opacity: 0;
                transition: all 500ms ease;
            }

        .blog-details-content .post-nav .left-nav:hover .image-box i,
        .blog-details-content .post-nav .right-nav:hover .image-box i {
            opacity: 1;
        }

        .blog-details-content .post-nav .left-nav:hover .image-box img,
        .blog-details-content .post-nav .right-nav:hover .image-box img {
            opacity: 0.25;
        }

        .blog-details-content .post-nav .left-nav .image-box {
            left: 0px;
        }

        .blog-details-content .post-nav .right-nav .image-box {
            right: 0px;
        }

        .blog-details-content .post-nav .left-nav {
            position: relative;
            padding-left: 100px;
        }

        .blog-details-content .post-nav .right-nav {
            position: relative;
            padding-right: 100px;
        }

        .blog-details-content .post-nav span {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 18px;
            font-family: 'Poppins', sans-serif;
            color: #646578;
            font-weight: 600;
            text-transform: uppercase;
            border-bottom: 1px solid #9e9ea9;
            margin-bottom: 9px;
        }

        .blog-details-content .post-nav h5 {
            display: block;
            font-size: 18px;
            line-height: 28px;
            font-weight: 600;
        }

            .blog-details-content .post-nav h5 a {
                display: inline-block;
                color: #0a267a;
            }

                .blog-details-content .post-nav h5 a:hover {
                }

    .blog-details-content .group-title {
        position: relative;
        display: block;
        margin-bottom: 25px;
    }

        .blog-details-content .group-title h3 {
            display: block;
            font-size: 24px;
            line-height: 32px;
            font-weight: 600;
        }

    .blog-details-content .comment-box .comment {
        position: relative;
        display: block;
        padding-left: 110px;
        padding-bottom: 36px;
        border-bottom: 1px solid #dcdee5;
        margin-bottom: 34px;
    }

        .blog-details-content .comment-box .comment.reply-comment {
            margin-left: 40px;
        }

        .blog-details-content .comment-box .comment:last-child {
            border-bottom: none;
            margin-bottom: 0px;
        }

        .blog-details-content .comment-box .comment .thumb-box {
            position: absolute;
            left: 0px;
            top: 7px;
            width: 80px;
            height: 80px;
            border-radius: 5px;
        }

            .blog-details-content .comment-box .comment .thumb-box img {
                width: 100%;
                border-radius: 5px;
            }

        .blog-details-content .comment-box .comment .comment-info .post-date {
            float: right;
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 24px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
        }

        .blog-details-content .comment-box .comment .comment-info h4 {
            float: left;
        }

        .blog-details-content .comment-box .comment .comment-info {
            margin-bottom: 14px;
        }

        .blog-details-content .comment-box .comment .comment-inner p {
            margin-bottom: 14px;
            line-height: 28px;
        }

        .blog-details-content .comment-box .comment .comment-inner .reply-btn {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #b6b6c2;
            text-transform: uppercase
        }

            .blog-details-content .comment-box .comment .comment-inner .reply-btn i {
                margin-right: 8px;
            }

            .blog-details-content .comment-box .comment .comment-inner .reply-btn:hover {
            }

.default-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

    .default-form .form-group:last-child {
        margin-bottom: 0px;
    }

    .default-form .form-group input[type='text'],
    .default-form .form-group input[type='email'],
    .default-form .form-group textarea {
        position: relative;
        display: block;
        width: 100%;
        height: 56px;
        border: 1px solid #dcdee5;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 16px;
        color: #727383;
        transition: all 500ms ease;
    }

        .default-form .form-group input:focus,
        .default-form .form-group textarea:focus {
        }

    .default-form .form-group textarea {
        height: 120px;
        resize: none;
    }

.blog-details-content .default-form .form-group button {
    display: block;
    width: 100%;
    color: #ffffff !important;
}

.default-form .form-group button:before {
    background: #0a267a;
}

.blog-details-content .comments-form-area .group-title h3 {
    margin-bottom: 5px;
}

.blog-details-content .comment-box {
    margin-bottom: 14px;
}

.blog-details-content .comments-form-area .group-title {
    margin-bottom: 34px;
}


/*** 

====================================================================
                        Shop-Page
====================================================================

***/

.shop-page-section {
    position: relative;
    padding: 120px 0px;
}

.shop-sidebar {
    position: relative;
    display: block;
}

    .shop-sidebar .sidebar-search .search-form .form-group {
        position: relative;
        margin: 0px;
    }

        .shop-sidebar .sidebar-search .search-form .form-group input[type='search'] {
            position: relative;
            width: 100%;
            height: 52px;
            background: #eceff6;
            border: 1px solid #eceff6;
            border-radius: 5px;
            font-size: 18px;
            color: #646578;
            padding: 10px 60px 10px 20px;
            transition: all 500ms ease;
        }

        .shop-sidebar .sidebar-search .search-form .form-group button {
            position: absolute;
            display: inline-block;
            top: 5px;
            right: 5px;
            width: 42px;
            height: 42px;
            line-height: 42px;
            text-align: center;
            font-size: 18px;
            color: #ffffff;
            cursor: pointer;
            border-radius: 3px;
            transition: all 500ms ease;
        }

        .shop-sidebar .sidebar-search .search-form .form-group input:focus {
        }

    .shop-sidebar .sidebar-search {
        margin-bottom: 30px;
    }

    .shop-sidebar .sidebar-widget {
        position: relative;
        display: block;
        background: #e9ecf3;
        padding: 35px 30px 37px 30px;
        border-radius: 5px;
        margin-bottom: 30px;
    }

        .shop-sidebar .sidebar-widget:last-child {
            margin-bottom: 0px;
        }

        .shop-sidebar .sidebar-widget .widget-title {
            position: relative;
            display: block;
            margin-bottom: 16px;
        }

            .shop-sidebar .sidebar-widget .widget-title h5 {
                font-size: 18px;
                line-height: 26px;
                font-weight: 600;
            }

    .shop-sidebar .category-widget .category-list li {
        position: relative;
        display: block;
        margin-bottom: 14px;
    }

        .shop-sidebar .category-widget .category-list li:last-child {
            margin-bottom: 0px;
        }

        .shop-sidebar .category-widget .category-list li a {
            position: relative;
            display: inline-block;
            font-size: 18px;
            color: #646578;
            font-weight: 400;
            padding-left: 20px;
        }

            .shop-sidebar .category-widget .category-list li a:before {
                position: absolute;
                content: "\f101";
                font-family: 'Font Awesome 5 Pro';
                left: 0px;
                top: 0px;
                font-size: 16px;
                font-weight: 400;
            }

            .shop-sidebar .category-widget .category-list li a:hover {
            }

.range-slider {
    position: relative;
}

    .range-slider .title {
        position: relative;
        display: inline-block;
    }

    .range-slider p {
        position: relative;
        display: inline-block;
        color: #646578;
        margin-right: 10px !important;
    }

    .range-slider .title:before {
        position: absolute;
        content: '$';
        left: -5px;
        top: -19px;
        color: #646578;
        font-size: 18px;
    }

    .range-slider .input {
        color: #646578;
        max-width: 75px;
        font-size: 18px;
        margin-top: 5px;
        position: relative;
        display: inline-block;
    }

        .range-slider .input input {
            background: none;
            color: #646578;
            font-size: 15px;
            text-align: left;
        }

    .range-slider .ui-widget.ui-widget-content {
        height: 4px;
        border: none;
        margin-bottom: 14px;
        background: #d0d4dd;
        border-radius: 2px;
    }

    .range-slider .ui-slider .ui-slider-range {
        top: 0px;
        height: 4px;
    }

    .range-slider .ui-state-default,
    .range-slider .ui-widget-content .ui-state-default {
        top: -5px;
        width: 14px;
        height: 14px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        margin-left: 0px;
    }

        .range-slider .ui-state-default:before,
        .range-slider .ui-widget-content .ui-state-default:before {
            position: absolute;
            content: '';
            background: #ffffff;
            width: 6px;
            height: 6px;
            left: 4px;
            top: 4px;
            border-radius: 50%;
        }

.shop-sidebar .price-filters .widget-title {
    margin-bottom: 28px;
}

.shop-sidebar .post-widget .post {
    position: relative;
    padding-left: 90px;
    padding-bottom: 24px;
    margin-bottom: 23px;
    min-height: 108px;
    border-bottom: 1px solid #d0d4dd;
}

    .shop-sidebar .post-widget .post:last-child {
        margin-bottom: 0px;
        border-bottom: none;
    }

    .shop-sidebar .post-widget .post .post-thumb {
        position: absolute;
        left: 0px;
        top: 7px;
        width: 70px;
        height: 70px;
        border: 1px solid #d0d4dd;
        border-radius: 5px;
        transition: all 500ms ease;
    }

    .shop-sidebar .post-widget .post:hover .post-thumb {
    }

    .shop-sidebar .post-widget .post .post-thumb img {
        width: 100%;
        border-radius: 5px;
    }

    .shop-sidebar .post-widget .post a {
        position: relative;
        display: inline-block;
        font-size: 16px;
        line-height: 26px;
        color: #646578;
        margin-bottom: 7px;
    }

        .shop-sidebar .post-widget .post a:hover {
        }

    .shop-sidebar .post-widget .post .price {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 24px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color: #0a267a;
    }

.shop-sidebar .post-widget {
    padding-bottom: 9px;
}

.our-shop .item-shorting {
    position: relative;
    display: block;
    background: #eceff6;
    border-radius: 5px;
    padding: 13px 30px;
    margin-bottom: 30px;
}

    .our-shop .item-shorting .short-box p,
    .our-shop .item-shorting .short-box .select-box {
        float: left;
    }

    .our-shop .item-shorting .short-box .nice-select {
        height: 26px;
        line-height: 26px;
        padding: 0px;
        border: none !important;
        font-size: 18px;
        color: #0a267a;
        font-family: 'Lato', sans-serif;
        padding-right: 78px;
        margin-left: 5px;
    }

        .our-shop .item-shorting .short-box .nice-select:after {
            color: #646578;
            top: -3px;
        }

.shop-block-one .inner-box {
    position: relative;
    display: block;
    border: 1px solid #dcdee5;
    border-radius: 5px;
    margin-bottom: 30px;
    background: #ffffff;
    overflow: hidden;
    transition: all 500ms ease;
}

    .shop-block-one .inner-box:hover {
    }

    .shop-block-one .inner-box .image-box {
        position: relative;
        display: block;
    }

        .shop-block-one .inner-box .image-box img {
            width: 100%;
            transition: all 500ms ease;
        }

    .shop-block-one .inner-box:hover .image-box img {
        opacity: 0.3;
    }

    .shop-block-one .inner-box .image-box .info-list {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        transform: translate(-50%,-50%);
        text-align: center;
    }

        .shop-block-one .inner-box .image-box .info-list li {
            position: relative;
            display: inline-block;
            margin: 0px 3px;
        }

            .shop-block-one .inner-box .image-box .info-list li a {
                position: relative;
                display: inline-block;
                font-size: 20px;
                color: #ffffff;
                width: 46px;
                height: 46px;
                line-height: 46px;
                background: #0a267a;
                border-radius: 50%;
                text-align: center;
                transform: scale(0,0);
            }

    .shop-block-one .inner-box:hover .image-box .info-list li a {
        transform: scale(1,1);
    }

    .shop-block-one .inner-box .image-box .info-list li a:hover {
    }

    .shop-block-one .inner-box .lower-content {
        position: relative;
        display: block;
        padding: 22px 30px;
    }

        .shop-block-one .inner-box .lower-content:before {
            position: absolute;
            content: '';
            background: #dcdee5;
            width: calc(100% - 60px);
            height: 1px;
            left: 30px;
            top: 0px;
        }

        .shop-block-one .inner-box .lower-content .rating-box li {
            position: relative;
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            margin-right: 4px;
        }

            .shop-block-one .inner-box .lower-content .rating-box li.light {
                color: #b6b6c2;
            }

            .shop-block-one .inner-box .lower-content .rating-box li:last-child {
                margin: 0px !important;
            }

        .shop-block-one .inner-box .lower-content .rating-box {
            margin-bottom: 6px;
        }

        .shop-block-one .inner-box .lower-content a {
            position: relative;
            display: inline-block;
            font-size: 18px;
            line-height: 26px;
            color: #646578;
            margin-bottom: 9px;
        }

            .shop-block-one .inner-box .lower-content a:hover {
            }

        .shop-block-one .inner-box .lower-content .price h6 {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            font-weight: 600;
            text-transform: uppercase;
            margin-right: 10px;
        }

        .shop-block-one .inner-box .lower-content .price del {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #b6b6c2;
            text-transform: uppercase;
        }

.our-shop .pagination-wrapper {
    margin-top: 10px;
}


/** shop-details **/

.shop-details {
    position: relative;
    padding: 120px 0px 92px 0px;
}

.product-details-content .slider-content {
    position: relative;
    display: block;
}

    .product-details-content .slider-content .slider-pager {
        position: absolute;
        left: 0px;
        top: 0px;
    }

        .product-details-content .slider-content .slider-pager .thumb-box li {
            margin-bottom: 20px;
            position: relative;
            width: 80px;
            height: 80px;
            cursor: pointer;
            border: 1px solid #dcdee5;
            border-radius: 5px;
            overflow: hidden;
            background: #ffffff;
            z-index: 9;
        }

            .product-details-content .slider-content .slider-pager .thumb-box li:last-child {
                margin-bottom: 0px;
            }

    .product-details-content .slider-content .product-image {
        position: relative;
        padding-left: 100px;
    }

        .product-details-content .slider-content .product-image .image {
            position: relative;
            display: block;
            border: 1px solid #dcdee5;
            border-radius: 5px;
            background: #ffffff;
            overflow: hidden;
        }

            .product-details-content .slider-content .product-image .image img {
                width: 100%;
            }

.product-details-content .slider-inner {
    position: relative;
    margin-right: 30px;
}

.product-details-content .product-details .title-box h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    font-family: 'Lato', sans-serif;
    color: #646578;
    margin-bottom: 8px;
}

.product-details-content .product-details .title-box .customer-review .rating-box {
    position: relative;
    float: left;
    margin-right: 10px;
}

    .product-details-content .product-details .title-box .customer-review .rating-box li {
        position: relative;
        display: inline-block;
        font-size: 15px;
        font-weight: 700;
    }

.product-details-content .product-details .title-box .customer-review a {
    position: relative;
    display: inline-block;
    float: left;
    font-size: 18px;
    color: #0a267a;
    z-index: 1;
}

    .product-details-content .product-details .title-box .customer-review a:hover {
    }

.product-details-content .product-details .title-box .customer-review {
    position: relative;
    margin-bottom: 18px;
}

.product-details-content .product-details .title-box h4 {
    display: block;
    text-transform: uppercase;
}

    .product-details-content .product-details .title-box h4 del {
        color: #b6b6c2;
        margin-left: 10px;
    }

.product-details-content .product-details .title-box {
    position: relative;
    padding-bottom: 34px;
    margin-bottom: 33px;
    border-bottom: 1px solid #dcdee5;
}

.product-details-content .product-details .text .category li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #0a267a;
}

    .product-details-content .product-details .text .category li a {
        display: inline-block;
    }

        .product-details-content .product-details .text .category li a:hover {
            text-decoration: underline;
        }

.product-details-content .product-details .text .category {
    margin-bottom: 17px;
}

.product-details-content .product-details .text {
    margin-bottom: 34px;
}

.product-details-content .product-details .product-info {
    position: relative;
    display: block;
    padding: 14px 0px 16px 0px;
    border-top: 1px solid #dcdee5;
    border-bottom: 1px solid #dcdee5;
    margin-bottom: 33px;
}

    .product-details-content .product-details .product-info li {
        position: relative;
        display: inline-block;
        float: left;
        width: 33.333%;
        font-size: 18px;
        line-height: 30px;
        color: #0a267a;
        padding-left: 27px;
    }

        .product-details-content .product-details .product-info li:before {
            position: absolute;
            content: "\f00c";
            font-family: 'Font Awesome 5 Pro';
            font-size: 15px;
            left: 0px;
            top: 2px;
            font-weight: 700;
        }

        .product-details-content .product-details .product-info li:after {
            position: absolute;
            content: '';
            background: #dcdee5;
            width: 1px;
            height: 100%;
            top: 0px;
            right: 12px;
        }

        .product-details-content .product-details .product-info li:last-child:after {
            display: none;
        }

.product-details-content .addto-cart-box {
    margin-bottom: 33px;
}

.addto-cart-box .clearfix li {
    position: relative;
    display: inline-block;
    float: left;
}

.addto-cart-box .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    max-width: 50px;
    width: 100%;
    height: 33px;
}

.addto-cart-box .cart-btn button {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 15px 63px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 20px;
    transition: all 500ms ease;
}

.addto-cart-box button:hover {
    background: #0a267a;
}

.addto-cart-box .like-btn a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #0a267a;
    background: #eceff6;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 5px;
}

    .addto-cart-box .like-btn a:hover {
        color: #fff;
    }

.addto-cart-box .item-quantity {
    position: relative;
    display: inline-block;
    max-width: 146px;
    width: 100%;
    float: left;
    padding: 0px 45px;
    margin-right: 20px;
    z-index: 1;
}

.addto-cart-box input.quantity-spinner {
    line-height: 56px;
    height: 56px;
    width: 56px !important;
    padding: 0px !important;
    box-shadow: none !important;
    font-family: 'Poppins', sans-serif;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #0a267a;
    background: #eceff6;
    border-radius: 5px !important;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down {
    position: absolute;
    height: 56px;
    line-height: 56px;
    width: 40px;
    background: transparent;
    padding: 0px 0px;
    left: -45px;
    top: -56px;
    border: 1px solid #dcdee5;
    border-radius: 5px;
    text-align: center;
    z-index: 1
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up {
    position: absolute;
    height: 56px;
    width: 40px;
    background: transparent;
    padding: 0px 0px;
    right: -45px;
    top: -56px;
    border: 1px solid #dcdee5;
    border-radius: 5px;
    text-align: center;
    z-index: 1;
}

.bootstrap-touchspin .glyphicon-chevron-up:before {
    content: "\f067";
    font-size: 12px;
    font-style: normal;
    color: #0a267a;
    font-family: 'Font Awesome 5 pro';
    font-weight: 700;
}

.bootstrap-touchspin .glyphicon-chevron-down:before {
    content: "\f068";
    font-size: 12px;
    font-style: normal;
    color: #0a267a;
    font-weight: 700;
    font-family: 'Font Awesome 5 pro';
}

.bootstrap-touchspin .input-group-btn-vertical {
    position: absolute;
    width: 100%;
}

    .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
        margin-top: 0px;
    }

.product-details-content .product-details .addto-cart-box p {
    display: block;
    margin-bottom: 9px;
}

.product-details-content .product-details .share-option p {
    position: relative;
    display: block;
    color: #0a267a;
    margin-bottom: 9px;
}

.product-details-content .product-details .share-option .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

    .product-details-content .product-details .share-option .social-links li:last-child {
        margin: 0px !important;
    }

    .product-details-content .product-details .share-option .social-links li a {
        position: relative;
        display: inline-block;
        font-size: 15px;
        color: #ffffff;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        border-radius: 5px;
    }

    .product-details-content .product-details .share-option .social-links li:first-child a {
    }

    .product-details-content .product-details .share-option .social-links li:nth-child(2) a {
    }

    .product-details-content .product-details .share-option .social-links li:nth-child(3) a {
    }

    .product-details-content .product-details .share-option .social-links li:last-child a {
    }

.product-details-content .product-details {
    position: relative;
    margin-top: -7px;
}

.product-details-content {
    position: relative;
    display: block;
    margin-bottom: 96px;
}

.product-discription .tab-btn-box {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

    .product-discription .tab-btn-box:before {
        position: absolute;
        content: '';
        background: #dcdee5;
        width: 100%;
        height: 1px;
        left: 0px;
        top: 28px;
    }

    .product-discription .tab-btn-box .tab-buttons li {
        position: relative;
        display: inline-block;
        font-size: 15px;
        line-height: 26px;
        font-family: 'Poppins', sans-serif;
        color: #0a267a;
        font-weight: 600;
        border: 1px solid #dcdee5;
        border-radius: 5px;
        background: #ffffff;
        text-align: center;
        padding: 14px 35px;
        cursor: pointer;
        margin: 0px 8px;
        transition: all 500ms ease;
    }

        .product-discription .tab-btn-box .tab-buttons li.active-btn {
            background: #eceff6;
            border-color: #eceff6;
        }

.product-discription .tabs-content .text p {
    position: relative;
    margin-bottom: 17px;
}

    .product-discription .tabs-content .text p:last-child {
        margin-bottom: 0px;
    }

.product-discription .tabs-content .single-review-box {
    position: relative;
    display: block;
    padding: 30px 30px 33px 125px;
    border: 1px solid #dcdee5;
    border-radius: 5px;
}

    .product-discription .tabs-content .single-review-box .image-box {
        position: absolute;
        left: 30px;
        top: 40px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }

        .product-discription .tabs-content .single-review-box .image-box img {
            width: 100%;
            border-radius: 50%;
        }

    .product-discription .tabs-content .single-review-box .rating-box li {
        position: relative;
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
    }

    .product-discription .tabs-content .single-review-box .rating-box {
        margin-bottom: 6px;
    }

    .product-discription .tabs-content .single-review-box h5 {
        display: block;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 14px;
    }

        .product-discription .tabs-content .single-review-box h5 span {
            font-size: 14px;
            text-transform: uppercase;
        }

.product-discription .tabs-content .reviews-box {
    margin-bottom: 65px;
}

.product-discription .tabs-content .comment-form {
    position: relative;
    display: block;
    border: 1px solid #dcdee5;
    padding: 55px 60px 60px 60px;
    border-radius: 5px;
}

    .product-discription .tabs-content .comment-form .title-box {
        position: relative;
        margin-bottom: 27px;
    }

        .product-discription .tabs-content .comment-form .title-box h3 {
            display: block;
            font-size: 24px;
            line-height: 30px;
            font-weight: 600;
            margin-bottom: 6px;
        }

    .product-discription .tabs-content .comment-form .form-group label {
        position: relative;
        display: block;
        margin-bottom: 9px;
    }

    .product-discription .tabs-content .comment-form .form-group {
        margin-bottom: 22px;
    }

    .product-discription .tabs-content .comment-form .rating-box p {
        float: left;
        margin-right: 20px;
    }

    .product-discription .tabs-content .comment-form .rating-box .rating li {
        position: relative;
        display: inline-block;
        font-size: 13px;
    }

    .product-discription .tabs-content .comment-form .rating-box {
        margin-bottom: 33px;
    }

    .product-discription .tabs-content .comment-form .theme-btn-three {
        padding: 16px 50px;
        float: left;
        margin-right: 15px;
    }

    .product-discription .tabs-content .comment-form .message-btn .custom-controls-stacked {
        float: left;
        line-height: 56px;
    }

.custom-control.material-checkbox {
    --color: #ebebeb;
    padding: 0px;
    margin: 0px;
    margin-bottom: 0px !important;
}

    .custom-control.material-checkbox .material-control-input {
        display: none;
    }

    .custom-control.material-checkbox .material-control-indicator {
        display: inline-block;
        position: absolute;
        top: 20px;
        left: 0px;
        width: 16px;
        height: 16px;
        background: #eceff6;
        border: 1px solid #c8c8c8;
        border-radius: 2px;
        cursor: pointer;
    }

    .custom-control.material-checkbox .material-control-input:checked ~ .material-control-indicator {
        border-color: var(--color);
        -webkit-transform: rotateZ(45deg) translate(1px, -5px);
        transform: rotateZ(45deg) translate(1px, -5px);
        width: 8px;
        border: 2px solid #4f68c5;
        border-top: 0px;
        border-left: 0px;
        background: transparent;
        border-radius: 0px;
    }

.product-discription .tabs-content .comment-form .message-btn .custom-controls-stacked .custom-control .text {
    margin-left: 26px;
    font-size: 18px;
    display: block;
    cursor: pointer;
}

.related-products {
    position: relative;
    padding-bottom: 90px;
}

    .related-products .title-box {
        position: relative;
        display: block;
        margin-bottom: 33px;
    }

        .related-products .title-box h3 {
            font-size: 24px;
            line-height: 30px;
            font-weight: 600;
        }


/** cart-section **/

.cart-section {
    position: relative;
    padding: 120px 0px;
}

    .cart-section .cart-title {
        position: relative;
        display: block;
        margin-bottom: 14px;
    }

.cart-outer {
    position: relative;
}

    .cart-outer .table-outer {
        position: relative;
        width: 100%;
        overflow-x: auto;
        margin-bottom: 40px;
    }

    .cart-outer .cart-table {
        width: 100%;
        min-width: 900px;
        border-bottom: 1px solid #dcdee5;
        border-radius: 5px;
    }

        .cart-outer .cart-table tbody {
            padding-bottom: 30px;
        }

.cart-table .cart-header {
    position: relative;
    width: 100%;
    border: 1px solid #e3e3e3;
}

.cart-table thead tr th {
    line-height: 28px;
    padding: 16px 28px 15px 40px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #0a267a;
    border-right: 1px solid #dcdee5;
}

    .cart-table thead tr th .fa {
        font-size: 18px;
    }

.cart-table tbody tr td {
    padding: 30px 30px 30px 30px;
}

.cart-table tbody tr .qty .item-quantity {
    border: 1px solid #dddddd;
}

.cart-table tbody tr .qty .quantity-spinner {
    background: #ffffff;
}

.cart-table tbody tr .prod-column .column-box {
    position: relative;
    min-height: 80px;
    padding-top: 13px;
    padding-left: 140px;
}

.cart-table tbody tr td.prod-column {
    position: relative;
}

    .cart-table tbody tr td.prod-column:before {
        position: absolute;
        content: '';
        background: #dcdee5;
        width: 1px;
        height: 100%;
        left: 140px;
        top: 0px;
    }

.cart-table tbody tr .prod-column .column-box .prod-thumb {
    position: absolute;
    left: 0px;
    top: 5px;
    width: 70px;
    height: 70px;
    border: 1px solid #dcdee5;
    border-radius: 5px;
    transition: all 500ms ease;
}

    .cart-table tbody tr .prod-column .column-box .prod-thumb:hover {
    }

    .cart-table tbody tr .prod-column .column-box .prod-thumb img {
        width: 100%;
        border-radius: 5px;
    }

.cart-table tbody tr .prod-column .column-box h4 {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #646578;
    margin: 0px;
}

.cart-table tbody tr .sub-total {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #0a267a;
}

.cart-table tbody tr .remove-btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #bfbfc9;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #bfbfc9;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .cart-table tbody tr .remove-btn:hover {
    }

.cart-table tbody tr td {
    vertical-align: middle;
    border-left: 1px solid #dcdee5;
    border-bottom: 1px solid #dcdee5;
}

.cart-table tbody tr .total-price {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.cart-table tbody tr td:last-child {
    border-right: 1px solid #dcdee5;
}

.cart-section .cart-outer .totle-table {
    position: relative;
    margin-bottom: 12px;
}

    .cart-section .cart-outer .totle-table p {
        font-weight: 500;
    }

        .cart-section .cart-outer .totle-table p span {
            color: #1e1e2a;
        }

    .cart-section .cart-outer .totle-table .total p {
    }

.cart-table tbody tr td.qty input {
    width: 90px;
    height: 50px;
    text-align: center;
    padding: 10px 10px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #0a267a;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #dcdee5;
}

.cart-section .apply-coupon .form-group {
    position: relative;
    float: left;
    margin-right: 20px;
    margin-bottom: 0px;
}

    .cart-section .apply-coupon .form-group:last-child {
        margin-right: 0px;
    }

    .cart-section .apply-coupon .form-group input[type="text"] {
        position: relative;
        display: block;
        border: 1px solid #dcdee5;
        width: 250px;
        height: 56px;
        font-size: 18px;
        font-weight: 400;
        color: #646578;
        padding: 10px 20px;
        background: #ffffff;
        border-radius: 5px;
        transition: all 500ms ease;
    }

    .cart-section .apply-coupon .form-group input:focus {
    }

    .cart-section .apply-coupon .form-group button {
        background: #eceff6;
        padding: 16px 42px;
    }

        .cart-section .apply-coupon .form-group button:hover {
            color: #fff;
        }

.cart-section .btn-box button {
    float: left;
    margin-right: 20px;
}

    .cart-section .btn-box button:last-child {
        margin-right: 0px;
    }

.cart-section .btn-box .cart-btn {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #dcdee5;
    background: transparent;
    padding: 14px 46px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 500ms ease;
}

    .cart-section .btn-box .cart-btn:hover {
        color: #ffffff;
    }

.cart-section .btn-box button.theme-btn-four {
    padding: 16px 56px;
    color: #ffffff;
}



/** myaccount-section **/

.myaccount-section {
    position: relative;
    padding: 115px 0px;
}

    .myaccount-section .column h3 {
        position: relative;
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
        margin-bottom: 32px;
    }

    .myaccount-section .form-group {
        position: relative;
        margin-bottom: 30px;
    }

        .myaccount-section .form-group:last-child {
            margin-bottom: 0px;
        }

        .myaccount-section .form-group input[type='text'],
        .myaccount-section .form-group input[type='email'],
        .myaccount-section .form-group input[type='password'] {
            position: relative;
            width: 100%;
            height: 56px;
            border: 1px solid #dcdee5;
            font-size: 16px;
            color: #646578;
            border-radius: 5px;
            padding: 10px 50px 10px 20px;
            transition: all 500ms ease;
        }

        .myaccount-section .form-group input:focus {
        }

        .myaccount-section .form-group i {
            position: absolute;
            right: 20px;
            top: 18px;
            font-size: 14px;
            color: #b6b6c2;
            z-index: 1;
        }

        .myaccount-section .form-group .theme-btn-three {
            padding: 16px 73px;
            background: #eceff6;
            color: #0a267a;
        }

    .myaccount-section .custom-controls-stacked .description {
        font-size: 16px;
        cursor: pointer;
        margin-left: 23px;
    }

    .myaccount-section .custom-controls-stacked {
        top: -14px;
        display: inline-block;
    }

    .myaccount-section .custom-control.material-checkbox .material-control-indicator {
        top: 6px;
    }

    .myaccount-section .login-inner .other-option {
        position: absolute;
        right: 0px;
        bottom: 58px;
    }

        .myaccount-section .login-inner .other-option li {
            position: relative;
            display: inline-block;
            margin-right: 6px;
        }

            .myaccount-section .login-inner .other-option li:last-child {
                margin-right: 0px;
            }

            .myaccount-section .login-inner .other-option li p {
                font-size: 16px;
                padding-right: 9px;
            }

            .myaccount-section .login-inner .other-option li a {
                position: relative;
                display: inline-block;
                font-size: 15px;
                color: #ffffff;
                width: 50px;
                height: 50px;
                line-height: 50px;
                border-radius: 5px;
                text-align: center;
            }

            .myaccount-section .login-inner .other-option li:nth-child(2) a {
            }

            .myaccount-section .login-inner .other-option li:nth-child(3) a {
            }

            .myaccount-section .login-inner .other-option li:last-child a {
            }

    .myaccount-section .login-inner {
        position: relative;
    }

    .myaccount-section .form-group button.theme-btn-four {
        padding: 16px 62px;
    }

    .myaccount-section .register-inner {
        position: relative;
    }

        .myaccount-section .register-inner .form-group input {
            border-radius: 5px;
        }

        .myaccount-section .register-inner .text {
            position: absolute;
            right: 0px;
            bottom: 14px;
        }

            .myaccount-section .register-inner .text p {
                font-size: 16px;
            }

                .myaccount-section .register-inner .text p span {
                }


/*** 

====================================================================
                        Contact-Page
====================================================================

***/

.contact-info-section {
    position: relative;
    padding-bottom: 20px;
}

    .contact-info-section .inner-container {
        position: relative;
        background: #ffffff;
        margin-top: -80px;
        border-radius: 5px;
        z-index: 1;
        box-shadow: -23px 0px 30px 0px rgba(0,0,0,0.1);
    }

        .contact-info-section .inner-container:before {
            position: absolute;
            content: '';
            background: #ffffff;
            width: 5000px;
            height: 100%;
            left: -30px;
            top: 0px;
            border-radius: 5px;
        }

        .contact-info-section .inner-container:after {
            position: absolute;
            content: '';
            background: #e3e6ec;
            width: 5000px;
            height: 20px;
            left: 0px;
            bottom: -20px;
            border-bottom-left-radius: 5px;
        }

    .contact-info-section .single-info-box .inner-box {
        position: relative;
        display: block;
        padding: 53px 15px 54px 90px;
    }

        .contact-info-section .single-info-box .inner-box:before {
            position: absolute;
            content: '';
            background: #dcdee5;
            width: 1px;
            height: 88px;
            top: 60px;
            right: 0px;
        }

    .contact-info-section .info-column:last-child .single-info-box .inner-box:before {
        display: none;
    }

    .contact-info-section .single-info-box .inner-box .icon-box {
        position: absolute;
        left: 0px;
        top: 60px;
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 40px;
        background: #004da1;
        text-align: center;
        border-radius: 5px;
    }

    .contact-info-section .single-info-box .inner-box h6 {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
        padding-bottom: 12px;
        margin-bottom: 13px;
        text-transform: uppercase;
    }

        .contact-info-section .single-info-box .inner-box h6:before {
            position: absolute;
            content: '';
            background: url(../images/icons/wave-2.png);
            width: 60px;
            height: 7px;
            left: 0px;
            bottom: 0px;
            background-repeat: no-repeat;
        }

    .contact-info-section .single-info-box .inner-box p a {
        color: #646578;
    }

        .contact-info-section .single-info-box .inner-box p a:hover {
        }


/** contect-section **/

.contact-section {
    position: relative;
}

    .contact-section .default-form .theme-btn-three {
        background: #004da1;
        padding: 16px 43px;
    }

    .contact-section .sec-title h2 {
        margin-bottom: 12px;
    }

    .contact-section .default-form .form-group input {
        height: 60px;
    }

    .contact-section .default-form .form-group textarea {
        height: 140px;
    }


/** area-section **/

.area-section {
    position: relative;
}

    .area-section .inner-container {
        position: relative;
        background: #ffffff;
        margin-bottom: -165px;
        border-radius: 5px;
        padding: 48px 0px 50px 0px;
        z-index: 1;
        box-shadow: -23px 0px 30px 0px rgba(0,0,0,0.1);
    }

        .area-section .inner-container:before {
            position: absolute;
            content: '';
            background: #ffffff;
            width: 5000px;
            height: 100%;
            left: -30px;
            top: 0px;
            border-radius: 5px;
        }

        .area-section .inner-container:after {
            position: absolute;
            content: '';
            background: #e3e6ec;
            width: 5000px;
            height: 20px;
            left: 0px;
            top: -20px;
            border-top-left-radius: 5px;
        }

.google-map-section {
    position: relative;
    width: 100%;
}

    .google-map-section #contact-google-map {
        position: relative;
        width: 100%;
        height: 665px;
    }

.area-section .text h4 {
    margin-bottom: 5px;
}

.area-section .single-area-box h6 {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 11px;
    margin-bottom: 13px;
}

    .area-section .single-area-box h6:before {
        position: absolute;
        content: '';
        background: url(../images/icons/wave-2.png);
        width: 60px;
        height: 7px;
        left: 0px;
        bottom: 0px;
        background-repeat: no-repeat;
    }

.area-section .single-area-box .area-list li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    margin-bottom: 5px;
    padding-left: 18px;
}

    .area-section .single-area-box .area-list li:before {
        position: absolute;
        content: '';
        background: #b6b6c2;
        width: 6px;
        height: 6px;
        left: 0px;
        top: 11px;
        transform: rotate(45deg);
    }

.area-section .owl-nav {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

    .area-section .owl-nav:before {
        position: absolute;
        content: '';
        background: #dcdee5;
        width: 1px;
        height: 124px;
        left: -20px;
        top: -40px;
    }

    .area-section .owl-nav .owl-prev,
    .area-section .owl-nav .owl-next {
        position: relative;
        display: inline-block;
        font-size: 40px;
        line-height: 40px;
        color: #b6b6c2;
        margin: 0px 5px;
        font-weight: 400;
        cursor: pointer;
        transition: all 500ms ease;
    }

        .area-section .owl-nav .owl-prev:hover,
        .area-section .owl-nav .owl-next:hover {
        }

.elements .owl-carousel .owl-stage-outer {
    overflow: visible;
}

    .elements .owl-carousel .owl-stage-outer .owl-item {
        opacity: 0;
    }

        .elements .owl-carousel .owl-stage-outer .owl-item.active {
            opacity: 1;
        }


/** checkout **/

.checkout-page-section {
    position: relative;
    padding: 120px 0px;
}

    .checkout-page-section .information-inner {
        position: relative;
        display: block;
        border: 1px solid #dcdee5;
        border-radius: 5px;
        padding: 54px 60px 36px 60px;
    }

    .checkout-page-section h3 {
        position: relative;
        display: block;
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
        margin-bottom: 22px;
    }

    .checkout-page-section .information-inner .field-input {
        position: relative;
        display: block;
        margin-bottom: 20px;
        min-height: 60px;
    }

        .checkout-page-section .information-inner .field-input input[type='text'],
        .checkout-page-section .information-inner .field-input input[type='email'] {
            position: relative;
            display: block;
            width: 100%;
            height: 60px;
            background: #eceff6;
            border: 1px solid #eceff6;
            border-radius: 5px;
            font-size: 15px;
            color: #646578;
            padding: 10px 20px;
            transition: all 500ms ease;
        }

        .checkout-page-section .information-inner .field-input input:focus {
        }

        .checkout-page-section .information-inner .field-input .nice-select {
            border: 1px solid #eceff6 !important;
            color: #646578;
            background: #eceff6;
            height: 60px;
            line-height: 60px;
            border-radius: 5px;
            padding: 0px 20px;
        }

            .checkout-page-section .information-inner .field-input .nice-select:after {
                right: 20px;
                color: #646578;
                top: -5px;
            }

    .checkout-page-section .information-inner .custom-control.material-checkbox .material-control-indicator {
        top: 6px;
    }

    .checkout-page-section .information-inner .description {
        position: relative;
        display: inline-block;
        margin-left: 22px;
        cursor: pointer;
        font-size: 15px;
        color: #646578;
    }

    .checkout-page-section .information-inner .custom-controls-stacked {
        position: relative;
        margin-top: -8px;
    }

    .checkout-page-section .information-inner .contact-information {
        position: relative;
        padding-bottom: 22px;
    }

    .checkout-page-section .order-summary {
        position: relative;
        display: block;
        background: #eceff6;
        padding: 33px 30px 34px 30px;
        border-radius: 5px;
    }

        .checkout-page-section .order-summary h4 {
            margin-bottom: 15px;
        }

        .checkout-page-section .order-summary .inner-box .single-item {
            position: relative;
            padding-left: 90px;
            padding-bottom: 24px;
            margin-bottom: 23px;
            border-bottom: 1px solid #d0d4dd;
            min-height: 108px;
        }

            .checkout-page-section .order-summary .inner-box .single-item:last-child {
                margin-bottom: 0px;
            }

            .checkout-page-section .order-summary .inner-box .single-item .image-box {
                position: absolute;
                left: 0px;
                top: 7px;
                width: 70px;
                height: 70px;
                overflow: hidden;
                border: 1px solid #d0d4dd;
                border-radius: 5px;
            }

            .checkout-page-section .order-summary .inner-box .single-item p {
                margin-bottom: 7px;
            }

        .checkout-page-section .order-summary .total-box {
            position: relative;
            display: block;
            padding: 22px 0px 24px 0px;
            border-bottom: 1px solid #d0d4dd;
        }

            .checkout-page-section .order-summary .total-box li {
                position: relative;
                display: block;
                color: #0a267a;
                margin-bottom: 8px;
            }

                .checkout-page-section .order-summary .total-box li:last-child {
                    margin-bottom: 0px;
                }

                .checkout-page-section .order-summary .total-box li span {
                    float: right;
                    color: #646578;
                }

        .checkout-page-section .order-summary .tax-box {
            position: relative;
            display: block;
            padding: 18px 0px 15px 0px;
            border-bottom: 1px solid #d0d4dd;
            margin-bottom: 30px;
        }

            .checkout-page-section .order-summary .tax-box h5 {
                font-size: 16px;
                line-height: 26px;
                font-weight: 600;
            }

                .checkout-page-section .order-summary .tax-box h5 span {
                    float: right;
                }

        .checkout-page-section .order-summary .btn-box .theme-btn-four {
            padding: 16px 60px;
        }

    .checkout-page-section .order-information {
        position: relative;
        margin-bottom: 94px;
    }

    .checkout-page-section .accordion .payment-info .field-input {
        position: relative;
        margin-bottom: 20px;
    }

        .checkout-page-section .accordion .payment-info .field-input input[type='text'] {
            position: relative;
            display: block;
            width: 100%;
            height: 60px;
            border: 1px solid #dcdee5;
            border-radius: 5px;
            font-size: 15px;
            color: #646578;
            padding: 10px 20px;
            transition: all 500ms ease;
        }

        .checkout-page-section .accordion .payment-info .field-input input:focus {
        }

        .checkout-page-section .accordion .payment-info .field-input .theme-btn-four {
            display: block;
            width: 100%;
        }

    .checkout-page-section .accordion-box .block .acc-content {
        background: #ffffff;
        padding: 30px 30px 10px 30px;
    }

    .checkout-page-section .accordion-box .block {
        background: #eceff6;
        margin-bottom: 10px;
    }

        .checkout-page-section .accordion-box .block:last-child {
            margin-bottom: 0px;
        }

        .checkout-page-section .accordion-box .block.active-block {
            padding-bottom: 40px;
        }

    .checkout-page-section .payment-method h3 {
        margin-bottom: 32px;
    }

    .checkout-page-section .accordion-box .block .acc-btn .icon-outer {
        background: transparent !important;
        border-color: transparent !important;
        color: #646578 !important;
    }

    .checkout-page-section .accordion-box .block .acc-btn.active .icon-outer i:before {
        content: "\f0dd";
    }


/** page-header-mobile-info **/

.page-header-mobile-info {
    position: relative;
    display: none;
    padding: 0px 0px;
}

    .page-header-mobile-info .toggle-box {
        position: relative;
        display: block;
        padding: 0px 30px;
        background: #fff;
    }

        .page-header-mobile-info .toggle-box .link {
            position: relative;
            float: right;
        }

.page-header-mobile-info-toggle {
    position: relative;
    z-index: 1;
    top: 7px;
    height: 35px;
    width: 35px;
    text-align: center;
    padding: 0px 0px;
    color: #462b34;
    cursor: pointer;
    display: none;
    float: left;
    border: 1px solid #462b34;
}

.page-header-mobile-info-content {
    display: none;
    padding: 30px 30px;
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.page-header-mobile-info-toggle:before {
    position: absolute;
    left: 0px;
    top: -7px;
    display: block;
    font-family: 'Font Awesome 5 Pro';
    content: '\f104';
    font-size: 16px;
    line-height: 50px;
    font-weight: 900;
    position: relative;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.page-header-mobile-info-toggle.opened:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.page-title.contact-page {
    padding-bottom: 225px;
}

.footer-style-three {
    background: #262626;
}


/** modify-section **/

.banner-section.style-one .banner-carousel .slide-item {
    padding: 160px 0px 170px 0px;
}

.banner-section.style-one .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
}

.banner-section.style-one .owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0px 10px;
    cursor: pointer;
    transition: all 500ms ease;
}

    .banner-section.style-one .owl-theme .owl-dots .owl-dot span:before {
        position: absolute;
        content: '';
        border: 2px solid #fff;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        left: -4px;
        top: -4px;
        transform: scale(0,0);
        transition: all 500ms ease;
    }

    .banner-section.style-one .owl-theme .owl-dots .owl-dot.active span:before,
    .banner-section.style-one .owl-theme .owl-dots .owl-dot span:hover:before {
        transform: scale(1,1);
    }

.main-header.style-five {
    position: relative;
}

.header-top-two .top-inner .info li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 52.5px;
    padding-left: 28px;
    color: rgba(255,255,255,0.7);
    margin-right: 26px;
}

    .header-top-two .top-inner .info li:last-child {
        margin: 0px !important;
    }

    .header-top-two .top-inner .info li:before {
        position: absolute;
        content: '';
        /* background: rgba(255,255,255,0.1); */
        width: 1px;
        height: 16px;
        top: 7px;
        right: -14px;
    }

    .header-top-two .top-inner .info li:last-child:before {
        display: none;
    }

    .header-top-two .top-inner .info li i {
        position: absolute;
        left: 0px;
        top: 1px;
        color: #ffffff;
    }

    .header-top-two .top-inner .info li a {
        color: rgba(255,255,255,0.7);
    }

        .header-top-two .top-inner .info li a:hover {
            color: #fff;
            text-decoration: underline;
        }

.header-top-two {
    position: relative;
    width: 100%;
    padding-bottom: 6px;
}

.main-header.style-five .header-upper {
    background: #65cef5;
    padding: 0px;
}

    .main-header.style-five .header-upper .upper-inner {
        position: relative;
        background: #3133d0;
        border-radius: 5px 5px 0px 0px;
    }

.main-header.style-five .header-lower {
    background: #ffffff;
}

.main-header.style-five .header-upper .upper-inner:before {
    position: absolute;
    content: '';
    background: #65cef5;
    width: calc(100% + 80px);
    height: 100%;
    left: -40px;
    top: 0px;
    border-radius: 5px 5px 0px 0px;
}

.main-header.style-five .header-upper .logo-box {
    /* padding: 20px 0px 42px 0px; */
}

.main-header.style-five .header-upper .info-list li i {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #004da1;
    text-align: center;
    border-radius: 5px;
    color: #ffffff;
    font-size: 35px;
    top: -2px;
}

.main-header.style-five .header-upper .info-list li {
    padding-left: 80px;
    padding-top: 0px;
    margin-right: 100px;
}

    .main-header.style-five .header-upper .info-list li h6,
    .main-header.style-five .header-upper .info-list li h5 {
        color: #004da1;
    }

    .main-header.style-five .header-upper .info-list li:first-child:before {
        background: rgba(255,255,255,0.2);
        width: 1px;
    }

    .main-header.style-five .header-upper .info-list li h6 {
        margin-bottom: 3px;
    }

    .main-header.style-five .header-upper .info-list li:nth-child(2) {
        margin-right: 60px;
    }

.main-header.style-five .header-upper .right-column {
    margin-top: 30px;
}

    .main-header.style-five .header-upper .right-column .theme-btn-four {
        background: #004da1;
    }

.main-header.style-five .header-upper .info-list li .shape {
    position: absolute;
    left: -42px;
    top: -2px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
}

.main-header.style-five .menu-right-content {
    float: right;
    margin-top: 16px;
    padding-left: 0px;
    margin-left: 0px;
}

    .main-header.style-five .menu-right-content .restore-option,
    .main-header.style-five .menu-right-content .social-links {
        position: relative;
        float: left;
    }

    .main-header.style-five .menu-right-content:before {
        display: none;
    }

.main-header.style-five .search-box-outer {
    margin-top: 0px;
}

.main-header.style-five .menu-right-content .cart-box {
    margin-top: 0px;
}

.main-header.style-five .menu-right-content .restore-option {
    margin-right: 35px;
}

    .main-header.style-five .menu-right-content .restore-option a {
        position: relative;
        display: inline-block;
        font-size: 16px;
        line-height: 42px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color: #0a267a;
    }

        .main-header.style-five .menu-right-content .restore-option a:hover {
        }

        .main-header.style-five .menu-right-content .restore-option a i {
            margin-right: 10px;
        }

.main-header.style-five .menu-right-content .social-links li {
    position: relative;
    float: left;
    margin-right: 10px;
}

    .main-header.style-five .menu-right-content .social-links li:last-child {
        margin: 0px;
    }

    .main-header.style-five .menu-right-content .social-links li a {
        position: relative;
        display: inline-block;
        width: 42px;
        height: 42px;
        line-height: 42px;
        background: #e3e8ed;
        color: #004da1;
        font-size: 16px;
        text-align: center;
        border-radius: 5px;
    }

        .main-header.style-five .menu-right-content .social-links li a:hover {
            color: #fff;
        }

.main-header.style-five .main-menu .navigation > li {
    padding: 21.5px 0px 23.5px 0px;
}

.main-header.style-five .search-box-outer:after {
    position: absolute;
    content: '';
    background: #e3e3e3;
    width: 2px;
    height: 28px;
    right: -22px;
    top: 7px;
}

.main-header.style-five .search-box-btn:hover {
}

.main-header.style-five .search-box-outer {
    margin-right: 46px;
}

.main-header.style-five .search-box-btn {
    line-height: 42px;
}

.main-header.style-five .search-box-outer:before {
    left: -22px;
    top: 7px;
}

.main-header.style-five .menu-right-content .cart-box a {
    line-height: 42px;
}

.main-header.style-five .page-header-mobile-info-content {
    background: transparent;
}

.main-header.style-five .page-header-mobile-info .toggle-box .btn-box a {
    background: #4547f8;
}

    .main-header.style-five .page-header-mobile-info .toggle-box .btn-box a:before {
        background: #0a267a;
    }

.main-header.style-five .page-header-mobile-info .toggle-box .btn-box {
    float: right;
    display: flex;
}

.main-header.style-five .page-header-mobile-info-toggle {
    top: 10px;
}

.links-list1 li {
    margin-bottom: 14px;
    color: #a4a4ae;
}



#services {
    background-image: linear-gradient(rgb(101 206 245 / 0%), rgb(0 77 161)), url(../images/banner/banner-1.jpg);
    background-size: cover;
    padding: 60px 0;
    margin: 50px 0 0;
}

.btn-call {
    display: flex;
    padding: 10px;
}

.btn-box {
    margin-left: 7px;
}

.logo-mobile{
    display:none;
}
@media screen and (max-width:767px) {
    .best-ro{
        display:none !important;
    }
    .book {
        display: none !important;
    }
    .mishra {
        font-weight: 500;
    }
    .logo-mobile {
        display: block;
    }
    .mobile-view {
        width: 50%;
    }

    .logo-mobile {
        position: absolute;
        left: -160px;
    }
}