* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


body {
    font-size: 16px;
    color: #7a7d8a;
    line-height: 34px;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Rubik', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px;
        padding: 0px 15px;
    }
}

.large-container {
    max-width: 1470px;
    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;
    overflow-x: hidden;
    margin: 0 auto;
    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: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

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;
    color: #7a7d8a;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 0px;
    font-style: normal;
    transition: all 500ms ease;
    line-height: 32px;
    font-size: 16px;
    text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    color: #0e1221;
    margin: 0px;
    transition: all 500ms ease;
}


.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;
}


@keyframes pulse {
    50% {
        box-shadow: 0 0 0 20px rgba(14, 18, 33, 0.1);
    }
}

/** button **/

.theme-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 5.5px 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 4px;
    z-index: 1;
    transition: all 500ms ease;
}

    .theme-btn.style-one {
        background: #fff;
        color: #0e1221;
    }

    .theme-btn:hover {
        color: #fff !important;
        background: transparent linear-gradient(90deg, #107ac9 0%, #07CCEC 100%) 0% 0% no-repeat padding-box !important;
    }

    .theme-btn.style-one:before {
        position: absolute;
        content: '';
        background: #fff;
        width: 100%;
        height: 2px;
        left: 0px;
        bottom: -4px;
        transition: all 500ms ease;
    }

    .theme-btn:hover:before {
        background: #0690cd !important;
    }

    .theme-btn.style-two {
        background: #fe0000;
        color: #fff;
    }

        .theme-btn.style-two:before {
            position: absolute;
            content: '';
            background: #f96b39;
            width: 100%;
            height: 2px;
            left: 0px;
            bottom: -4px;
            transition: all 500ms ease;
        }


.pagination {
    position: relative;
    display: block;
}

    .pagination li {
        display: inline-block;
        margin: 0px 6px;
    }

        .pagination li a {
            position: relative;
            display: inline-block;
            font-size: 16px;
            height: 40px;
            width: 40px;
            line-height: 38px;
            font-weight: 500;
            border: 1px solid #bdbdbd;
            border-radius: 50%;
            text-align: center;
            color: #777;
            background: transparent;
            transition: all 500ms ease;
        }

            .pagination li a:hover,
            .pagination li a.active {
                color: #fff;
                border-color: #4527a4;
                background: #4527a4;
            }

        .pagination li:last-child a,
        .pagination li:first-child a {
            background: #222222;
            border-color: #222222;
            color: #fff;
        }

.sec-pad {
    padding: 63px 0px 54px 0px;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 999999;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.gif);
}

.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 105%;
    right: 50px;
    font-size: 16px;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: #f96b39;
    transition: 1s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

    .scroll-top:hover {
        background: #0690cd;
    }

    .scroll-top.open {
        bottom: 30px;
    }

    .scroll-top span {
        color: #fff;
    }




/*** 

====================================================================
                        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;
    background: #fff;
    left: 0px;
    top: 0px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 0;
    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;
}



    .fixed-header .sticky-header .logo-box img {
        height: 88px;
    }

    .fixed-header .sticky-header .logo-box {
        padding: 5px 0;
        width: 110px;
        height: 103px;
    }

    .fixed-header .sticky-header .menu-area {
        padding: 12px 0;
    }

.main-header .outer-container {
    position: relative;
    width: 100%;
    background: #fff;
    padding-left: 0;
}



    .main-header .outer-container .header-top {
        position: relative;
        padding: 8px 0 8px 0px;
    }

        .main-header .outer-container .header-top .logo-box .logo {
            position: relative;
            padding: 0;
        }

        .main-header .outer-container .header-top .top-left .info-box li {
            position: relative;
            display: inline-block;
            font-size: 16px;
            color: #7a7d8a;
            margin-right: 45px;
        }

            .main-header .outer-container .header-top .top-left .info-box li:last-child {
                margin-right: 0px;
            }

        .main-header .outer-container .header-top .top-left .info-box {
            position: relative;
            margin-top: 16px;
        }

            .main-header .outer-container .header-top .top-left .info-box li a {
                display: inline-block;
                color: #7a7d8a;
            }

                .main-header .outer-container .header-top .top-left .info-box li a:hover {
                    color: #f96b39;
                }

            .main-header .outer-container .header-top .top-left .info-box li i {
                position: relative;
                font-size: 19px;
                color: #f96b39;
                margin-right: 10px;
            }

        .main-header .outer-container .header-top .top-right .social-links li {
            position: relative;
            display: inline-block;
            margin-right: 6px;
        }

            .main-header .outer-container .header-top .top-right .social-links li:last-child {
                margin-right: 0px;
            }

            .main-header .outer-container .header-top .top-right .social-links li a {
                position: relative;
                display: inline-block;
                font-size: 20px;
                color: #7a7d8a;
                background: #eff0f4;
                width: 40px;
                height: 40px;
                line-height: 40px;
                text-align: center;
                border-radius: 50%;
            }

                .main-header .outer-container .header-top .top-right .social-links li a:hover {
                    background: #0690cd;
                    color: #fff;
                }

        .main-header .outer-container .header-top .top-right .social-links {
            position: relative;
            margin-top: 15px;
        }

    .main-header .outer-container .header-upper {
        position: relative;
        background: transparent linear-gradient(90deg, #033356 0%, #0f5965 100%) 0% 0% no-repeat padding-box;
        color: #fff;
        width: 100%;
    }



        .main-header .outer-container .header-upper .menu-right-content .info-box {
            position: relative;
            padding: 19px 0px 10px 0px;
        }

            .main-header .outer-container .header-upper .menu-right-content .info-box li {
                position: relative;
                display: inline-block;
                font-size: 16px;
                color: #fff;
                margin-right: 30px;
            }

                .main-header .outer-container .header-upper .menu-right-content .info-box li:last-child {
                    margin: 0px;
                }

                .main-header .outer-container .header-upper .menu-right-content .info-box li a {
                    color: #fff;
                }

                    .main-header .outer-container .header-upper .menu-right-content .info-box li a:hover {
                        text-decoration: underline;
                    }

                .main-header .outer-container .header-upper .menu-right-content .info-box li i {
                    margin-right: 10px;
                }



/** main-menu **/

.main-menu {
    position: relative;
    float: left;
    margin-top: 6px;
}

    .main-menu .navbar-collapse {
        padding: 0px;
        display: block !important;
    }

    .main-menu .navigation {
        position: relative;
        margin: 0px;
    }

        .main-menu .navigation > li {
            position: relative;
            float: left;
            z-index: 2;
            -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 > a {
                position: relative;
                display: block;
                text-align: center;
                font-size: 16px;
                line-height: 30px;
                font-weight: 500;
                opacity: 1;
                font-family: 'Rubik', sans-serif;
                color: #000;
                padding: 0px;
                z-index: 1;
                -webkit-transition: all 500ms ease;
                -moz-transition: all 500ms ease;
                -ms-transition: all 500ms ease;
                -o-transition: all 500ms ease;
                transition: all 500ms ease;
                padding: 8px 20px;
            }



            .main-menu .navigation > li.current a {
                color: #8079b0;
            }



            .main-menu .navigation > li > ul {
                position: absolute;
                left: 0px;
                top: 100%;
                width: 250px;
                z-index: 100;
                display: none;
                opacity: 0;
                visibility: hidden;
                padding: 7px 0px;
                background-color: #ffffff;
                border-top: 3px solid #f96b39;
                -moz-transform: translateY(30px);
                -webkit-transform: translateY(30px);
                -ms-transform: translateY(30px);
                -o-transform: translateY(30px);
                transform: translateY(30px);
                -webkit-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                -ms-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                -o-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                -moz-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                -webkit-transform-origin: top;
                -ms-transform-origin: top;
                transform-origin: top;
                -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 > ul.from-right {
                    left: auto;
                    right: 0px;
                }

                .main-menu .navigation > li > ul > li {
                    position: relative;
                    width: 100%;
                    padding: 0px 30px;
                }

                    .main-menu .navigation > li > ul > li:last-child {
                        border-bottom: none;
                    }





                    .main-menu .navigation > li > ul > li > a {
                        position: relative;
                        display: block;
                        padding: 6px 0px;
                        line-height: 24px;
                        font-weight: 400;
                        font-size: 14px;
                        text-transform: capitalize;
                        color: #222;
                        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:hover {
                            color: #f96b39;
                        }

                    .main-menu .navigation > li > ul > li.dropdown > a:after {
                        font-family: 'Font Awesome 5 Free';
                        content: "\f105";
                        position: absolute;
                        right: 20px;
                        top: 6px;
                        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: -2px;
                        width: 230px;
                        z-index: 100;
                        display: none;
                        padding: 20px 0px;
                        background-color: #ffffff;
                        border-top: 3px solid #f96b39;
                        -moz-transform: translateY(30px);
                        -webkit-transform: translateY(30px);
                        -ms-transform: translateY(30px);
                        -o-transform: translateY(30px);
                        transform: translateY(30px);
                        -webkit-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                        -ms-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                        -o-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                        -moz-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                        box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
                    }

                .main-menu .navigation > li > ul > li {
                    padding: 0 10px;
                }




                    .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%;
                    }

                        .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;
                            font-size: 16px;
                            padding: 6px 20px;
                            line-height: 24px;
                            font-weight: 400;
                            font-size: 15px;
                            text-transform: capitalize;
                            color: #222;
                            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:hover > a {
                            color: #f96b39;
                        }

                        .main-menu .navigation > li > ul > li > ul > li.dropdown > a:after {
                            font-family: 'Font Awesome 5 Free';
                            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 {
                visibility: visible;
                opacity: 1;
                -moz-transform: translateY(0);
                -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                -o-transform: translateY(0);
                transform: translateY(0);
                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.dropdown:hover > ul {
            visibility: visible;
            opacity: 1;
            -moz-transform: translateY(0);
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
            transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -webkit-transition: all 500ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
        }

        .main-menu .navigation li.dropdown .dropdown-btn {
            position: absolute;
            right: 10px;
            top: 8px;
            width: 34px;
            height: 30px;
            border: 1px solid #ffffff;
            text-align: center;
            font-size: 16px;
            line-height: 26px;
            color: #ffffff;
            cursor: pointer;
            z-index: 5;
            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: #fff;
        -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;
        }


/** 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;
}

    .mobile-menu .navbar-collapse {
        display: block !important;
    }

    .mobile-menu .nav-logo {
        position: relative;
        padding: 30px 25px;
        text-align: left;
    }

.mobile-menu-visible {
    overflow: hidden;
}

    .mobile-menu-visible .mobile-menu {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.70;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-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 .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #202020;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-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 {
    color: #00aeef;
    -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;
        border-left: 5px solid #f96b39;
        -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,
    .mobile-menu .navigation li > a:hover {
        color: #f96b39;
    }

        .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 {
            background: #f96b39;
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg);
        }

    .mobile-menu .navigation li > ul,
    .mobile-menu .navigation li > ul > li > ul {
        display: none;
    }

.mobile-menu .social-links {
    position: relative;
    padding: 30px 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 {
                color: #f96b39;
            }

div#mCSB_1_container {
    top: 0px !important;
}

.mobile-menu .contact-info {
    position: relative;
    padding: 80px 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 {
                color: #f96b39;
            }

        .mobile-menu .contact-info ul li:last-child {
            margin-bottom: 0px;
        }

/** stricky-header **/

.sticky-header .main-menu .navigation > li {
    margin: 0px;
}

    .sticky-header .main-menu .navigation > li > a {
        padding: 5px 25px !important;
        border-radius: 8px;
    }

    .sticky-header .main-menu .navigation > li > a {
        color: #0e1221 !important;
    }

    .sticky-header .main-menu .navigation > li.current > a,
    .sticky-header .main-menu .navigation > li:hover > a {
        background: transparent linear-gradient(90deg, #033356 0%, #0f5965 100%) 0% 0% no-repeat padding-box;
        color: #fff !important;
    }

.sticky-header .logo-box {
    top: 0;
}

.sticky-header .menu-area {
    position: relative;
    float: right;
}

.sticky-header .main-menu .navigation > li > a:before {
    display: none;
}

.sticky-header .main-menu .navigation > li {
    padding: 0px !important;
    margin: 0px !important;
    border: none !important;
}

    .sticky-header .main-menu .navigation > li:before {
        display: none;
    }

.anim-icon {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}



/** main-slider **/

.main-slider {
    position: relative;
}

    .main-slider .slide {
        position: relative;
        padding: 0 !important;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }


        .main-slider .slide img {
            width: 100%;
        }

    .main-slider .content-box {
        position: relative;
        display: block;
        max-width: 550px;
        width: 100%;
    }

        .main-slider .content-box:before {
            position: absolute;
            content: '';
            width: 560px;
            height: 560px;
            left: -200px;
            top: -315px;
            border: 100px solid #f96b39;
            border-radius: 50%;
            background: transparent;
            -webkit-animation: zoom-fade 5s infinite linear;
            animation: zoom-fade 5s infinite linear;
        }

    .main-slider .top-text {
        position: relative;
        display: inline-block;
        font-size: 18px;
        color: #0e1221;
        border: 1px solid #0e1221;
        text-align: center;
        padding: 9.5px 40px;
        opacity: 0;
        margin-bottom: 22px;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translateY(-50px);
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        -o-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    .main-slider .active .top-text {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        transition-delay: 500ms;
    }


    .main-slider .btn-box {
        opacity: 0;
        -webkit-transition: all 1500ms ease;
        -moz-transition: all 1500ms ease;
        -ms-transition: all 1500ms ease;
        -o-transition: all 1500ms ease;
        transition: all 1500ms ease;
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -ms-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
    }

    .main-slider .active .btn-box {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        transition-delay: 1500ms;
    }

    /* slide nav */


    .main-slider .owl-dots {
        position: absolute;
        text-align: center;
        left: 50%;
        bottom: 52px;
        display: none;
    }

    .main-slider .owl-nav {
        position: absolute;
        top: 50%;
        z-index: 1;
        width: 100%;
        transform: translateY(-50%);
    }

        .main-slider .owl-nav [class*="owl-"] {
            position: absolute;
            cursor: pointer;
            display: inline-block;
            color: #0e1221;
            font-size: 17px;
            font-weight: 600;
            background: #fff;
            width: 40px;
            height: 40px;
            line-height: 40px;
            margin: 0px;
            cursor: pointer;
            border-radius: 50%;
            text-align: center;
            transition: all 500ms ease;
        }

        .main-slider .owl-nav .owl-prev {
            position: absolute;
            left: 10px;
        }

        .main-slider .owl-nav .owl-next {
            position: absolute;
            right: 10px;
        }

        .main-slider .owl-nav [class*="owl-"]:hover {
            background: #0690cd;
            color: #fff;
        }


/** intro-section **/

.intro-section {
    position: relative;
    border-bottom: 1px solid #eff0f4;
}

    .intro-section .single-intro-box {
        position: relative;
        float: left;
        width: 33.33%;
        background: #fff;
        padding: 90px 50px 95px 130px;
        border-right: 1px solid #eff0f4;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .intro-section .single-intro-box:before {
            position: absolute;
            content: '';
            background: #f5f6fa;
            width: 100%;
            height: 0%;
            left: 0px;
            bottom: 0px;
            right: 0px;
            transition: 1s ease;
        }

        .intro-section .single-intro-box:hover:before {
            height: 100%;
            top: 0px;
            transition: 1s ease;
        }

        .intro-section .single-intro-box:last-child {
            border-right: none;
        }

        .intro-section .single-intro-box .inner-box {
            position: relative;
        }

            .intro-section .single-intro-box .inner-box .icon-box {
                position: absolute;
                left: 0px;
                top: 26px;
                font-size: 60px;
                line-height: 60px;
                color: #0690cd;
            }

            .intro-section .single-intro-box .inner-box .content-box {
                position: relative;
                padding-left: 100px;
            }

                .intro-section .single-intro-box .inner-box .content-box .text {
                    position: relative;
                    font-weight: 500;
                    margin-bottom: 13px;
                }

                .intro-section .single-intro-box .inner-box .content-box h3 {
                    position: relative;
                    display: block;
                    font-size: 24px;
                    line-height: 29px;
                    font-weight: 600;
                    color: #0e1221;
                    margin: 0px;
                }

                    .intro-section .single-intro-box .inner-box .content-box h3 a {
                        display: inline-block;
                        color: #0e1221;
                    }

                        .intro-section .single-intro-box .inner-box .content-box h3 a:hover {
                            color: #f96b39;
                        }


/** welcome-section **/

.welcome-section {
    position: relative;
}

    .welcome-section .image-box {
        position: relative;
        margin-right: 20px;
        margin-top: 8px;
    }

        .welcome-section .image-box img {
            width: 100%;
        }

        .welcome-section .image-box .image-2 {
            position: absolute;
            left: -140px;
            bottom: -100px;
        }

        .welcome-section .image-box .text-box {
            position: absolute;
            right: 0px;
            bottom: -104px;
            background: #0a7667;
            max-width: 164px;
            width: 100%;
            text-align: center;
            padding: 24px 20px 24px 20px;
        }

            .welcome-section .image-box .text-box h1 {
                font-size: 52px;
                line-height: 35px;
                font-weight: 900;
                color: #fff;
                margin-bottom: 14px;
            }

            .welcome-section .image-box .text-box h3 {
                font-size: 18px;
                color: #fff;
                line-height: 21px;
                font-weight: 500;
                margin: 0px;
            }

.sec-title {
    position: relative;
    margin-bottom: 50px;
}

    .sec-title.text-center {
        text-align: center;
    }

    .sec-title .top-text {
        position: relative;
        font-size: 18px;
        color: #0690cd;
        line-height: 30px;
        margin-bottom: 12px;
    }

    .sec-title h1 {
        position: relative;
        font-size: 38px;
        font-weight: 700;
        line-height: 45px;
        padding-bottom: 22px;
        margin-bottom: 0px;
    }

        .sec-title h1:before {
            position: absolute;
            content: '';
            background: #a020f0;
            width: 55px;
            height: 2px;
            left: 0px;
            bottom: 0px;
        }

        .sec-title h1:after {
            position: absolute;
            content: '';
            background: #f96b39;
            width: 55px;
            height: 2px;
            left: 59px;
            bottom: 0px;
        }

    .sec-title.text-center h1:before {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -29px;
    }

    .sec-title.text-center h1:after {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 29px;
    }

.welcome-section .content-box .video-box .video-inner {
    position: relative;
    padding: 19px 0px 25px 150px;
    margin-bottom: 41px;
    min-height: 116px;
}

    .welcome-section .content-box .video-box .video-inner .video-btn {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 116px;
        height: 116px;
        line-height: 116px;
        text-align: center;
        border-radius: 50%;
        overflow: hidden;
        background: url(../images/resource/video-icon-bg.png);
    }

        .welcome-section .content-box .video-box .video-inner .video-btn:before {
            position: absolute;
            content: '';
            background: rgba(14, 18, 33, 0.5);
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
            border-radius: 50%;
        }

        .welcome-section .content-box .video-box .video-inner .video-btn a {
            position: relative;
            font-size: 20px;
            color: #fff;
        }

            .welcome-section .content-box .video-box .video-inner .video-btn a:hover {
                color: #f96b39;
            }

    .welcome-section .content-box .video-box .video-inner h2 {
        position: relative;
        font-size: 30px;
        line-height: 36px;
        font-weight: 500;
    }

.welcome-section .content-box .text {
    position: relative;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 37px;
    text-align: justify;
}





    .welcome-section .content-box .text p {
        text-align: justify;
        font-size: 16px;
        line-height: 33px;
    }

.welcome-section .content-box .list {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

    .welcome-section .content-box .list li {
        position: relative;
        font-size: 18px;
        margin-bottom: 2px;
        padding-left: 35px;
    }

        .welcome-section .content-box .list li:before {
            position: absolute;
            content: "\f058";
            font-size: 15px;
            color: #0690cd;
            font-family: 'Font Awesome 5 Free';
            left: 0px;
            top: 0px;
        }

        .welcome-section .content-box .list li:last-child {
            margin-bottom: 0px;
        }


/** cta-section **/

.cta-section {
    position: relative;
    overflow: hidden;
    background: #0a7667;
    padding: 40px 0px 40px 0px;
    margin-top: 105px;
}



@keyframes bg-animate {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    50% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

.cta-section .inner-box h1 {
    position: relative;
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    color: #fff;
}

.cta-section .inner-box small {
    color: #fff;
}


/** research-fields **/

.research-fields {
    position: relative;
}

.single-research-box .inner-box {
    position: relative;
    display: block;
    text-align: center;
    background: #fff;
    border: 1px solid #eff0f4;
    padding: 59px 40px 47px 40px;
}

    .single-research-box .inner-box .icon-box {
        position: relative;
        display: inline-block;
        font-size: 60px;
        line-height: 115px;
        height: 115px;
        width: 115px;
        background: #f5f6fa;
        color: #f96b39;
        border-radius: 50%;
        text-align: center;
        margin-bottom: 20px;
        z-index: 1;
        transition: all 500ms ease;
    }

    .single-research-box .inner-box:before {
        position: absolute;
        content: '';
        background: #f96b39;
        width: calc(0% - 2px);
        height: 2px;
        right: 0px;
        bottom: 0px;
        transition: all 500ms ease;
    }

    .single-research-box .inner-box:after {
        position: absolute;
        content: '';
        background: #0690cd;
        width: calc(0% - 2px);
        height: 2px;
        left: 0px;
        bottom: 0px;
        transition: all 500ms ease;
    }

.single-research-box:hover .inner-box:after,
.single-research-box:hover .inner-box:before {
    width: calc(50% - 2px);
}

.single-research-box:hover .inner-box .icon-box {
    color: #fff;
}

.single-research-box .inner-box .icon-box:before {
    position: absolute;
    content: '';
    background: #f96b39;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    border-radius: 50%;
    transform: scale(0,0);
    z-index: -1;
    transition: all 500ms ease;
}

.single-research-box:hover .inner-box .icon-box:before {
    transform: scale(1,1);
}

.single-research-box .inner-box h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 27px;
}

    .single-research-box .inner-box h3 a {
        display: inline-block;
        color: #0e1221;
    }

        .single-research-box .inner-box h3 a:hover {
            color: #f96b39;
        }

.single-research-box .inner-box .text {
    position: relative;
    margin-bottom: 34px;
}

.single-research-box .inner-box .link-btn a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #0e1221;
}

    .single-research-box .inner-box .link-btn a:hover {
        color: #f96b39;
    }


/** testimonial-section **/

.testimonial-section {
    position: relative;
    background: #fff;
    padding: 54px 0px;
}

    .testimonial-section:before {
        position: absolute;
        content: '';
        background: #f5f6fa;
        width: 60%;
        height: 100%;
        top: 0px;
        right: 0px;
    }

    .testimonial-section .slider-pager {
        position: relative;
        margin-right: 10px;
    }

        .testimonial-section .slider-pager li {
            position: relative;
            background: #0e1221;
            margin-bottom: 19px;
        }

            .testimonial-section .slider-pager li:last-child {
                margin-bottom: 0px;
            }

        .testimonial-section .slider-pager img {
            width: 100%;
            transition: all 500ms ease;
        }

        .testimonial-section .slider-pager li a.active img {
            opacity: 0.7;
        }

    .testimonial-section .inner-box {
        position: relative;
        margin-left: -20px;
        background: #fff;
        padding: 0 65px 0 0;
        box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
    }

        .testimonial-section .inner-box .image-box {
            position: relative;
            float: left;
            width: 30%;
            margin-right: 20px;
            margin-top: 0;
            background: #5982c4;
            text-align: center;
            padding: 46px;
        }

        .testimonial-section .inner-box .content-box .text {
            position: relative;
            font-weight: normal;
            color: #0e1221;
            font-family: 'EB Garamond', serif;
            margin-bottom: 46px;
            text-align: justify;
        }

        .testimonial-section .inner-box .content-box .author-info h5 {
            position: relative;
            display: inline-block;
            font-size: 25px;
            font-family: 'Rubik', sans-serif;
            font-weight: 500;
            color: #a020f0;
            margin-right: 12px;
            padding-right: 20px;
        }

            .testimonial-section .inner-box .content-box .author-info h5:before {
                position: absolute;
                content: '.';
                right: 0px;
                bottom: 0px;
                color: #7a7d8a;
            }

        .testimonial-section .inner-box .content-box .author-info .designation {
            position: relative;
        }

    .testimonial-section .inner-container {
        position: relative;
    }

        .testimonial-section .inner-container .title-text {
            position: absolute;
            left: -270px;
            bottom: 170px;
            font-size: 90px;
            line-height: 90px;
            color: #f5f6fa;
            transform: rotate(-90deg);
        }


/** researches-section **/

.researches-section {
    position: relative;
    overflow: hidden;
    background: #0a7667;
}

    .researches-section:before {
        position: absolute;
        content: '';
        background: url(../images/icons/pattern-1.png);
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        right: 0px;
        background-repeat: no-repeat;
        background-position: center;
        -webkit-animation: zoom-fade 15s infinite linear;
        animation: zoom-fade 15s infinite linear;
    }

    .researches-section .sec-title .top-text {
        color: #b6bbcd;
    }

    .researches-section .sec-title h1 {
        color: #fff;
    }

    .researches-section .sec-title {
        margin-bottom: 30px;
    }

    .researches-section .single-item {
        position: relative;
        float: left;
        width: 100%;
        z-index: 1;
        text-align: center;
    }

        .researches-section .single-item .inner-box {
            position: relative;
            margin-right: 10px;
            text-align: center;
        }

            .researches-section .single-item .inner-box .image-box {
                position: relative;
                margin-bottom: 10px;
                overflow: hidden;
            }





            .researches-section .single-item .inner-box .lower-content {
                position: relative;
                background: #fff;
                padding: 11px 15px 11px 15px;
                border-radius: 10px;
                min-height: 73px;
            }

                .researches-section .single-item .inner-box .lower-content h4 {
                    position: relative;
                    display: block;
                    font-size: 16px;
                    line-height: 25px;
                    font-weight: 600;
                }

                    .researches-section .single-item .inner-box .lower-content h4 a {
                        display: inline-block;
                        color: #0e1221;
                    }

                        .researches-section .single-item .inner-box .lower-content h4 a:hover {
                            color: #f96b39;
                        }

    .researches-section .discover-btn {
        position: relative;
        text-align: center;
    }


/** team-section **/

.team-section {
    position: relative;
}

.team-details .single-progress-box {
    position: relative;
    margin-bottom: 26px;
}

    .team-details .single-progress-box:last-child {
        margin-bottom: 0px;
    }

    .team-details .single-progress-box .progress {
        position: relative;
        background-color: #fff;
        height: 5px;
        border-radius: 0px;
        overflow: visible;
    }

    .team-details .single-progress-box .progress-bar {
        position: absolute;
        top: 0px;
        left: 0px;
        background: #f96b39;
        height: 5px;
        box-shadow: none;
        border-radius: 0px;
        -webkit-transition: all 3s ease 0s;
        -moz-transition: all 3s ease 0s;
        -ms-transition: all 3s ease 0s;
        -o-transition: all 3s ease 0s;
        transition: all 3s ease 0s;
        width: 0;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .team-details .single-progress-box .progress-bar .value-holder {
            position: absolute;
            bottom: 12px;
            right: 0px;
            color: #7a7d8a;
            text-align: center;
            font-size: 16px;
        }

.team-details .inner-box {
    position: relative;
    background: #f5f6fa;
}

    .team-details .inner-box .image-box {
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: 1;
    }

        .team-details .inner-box .image-box img {
            width: 100%;
        }

    .team-details .inner-box .content-box {
        position: relative;
        padding: 9px 0px 65px 470px;
    }

    .team-details .inner-box .image-box .link {
        position: relative;
        display: block;
        text-align: center;
    }

        .team-details .inner-box .image-box .link a {
            position: relative;
            display: block;
            background: transparent linear-gradient(90deg, #107ac9 0%, #07CCEC 100%) 0% 0% no-repeat padding-box;
            font-size: 18px;
            font-weight: 500;
            color: #fff;
            padding: 4px 30px;
        }

            .team-details .inner-box .image-box .link a:hover {
                background: #fe0000;
            }

    .team-details .inner-box .content-box .info .name {
        position: relative;
        font-size: 36px;
        line-height: 45px;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .team-details .inner-box .content-box .info .designation {
        position: relative;
        font-size: 16px;
        font-weight: 500;
        color: #0690cd;
    }

    .team-details .inner-box .content-box .info {
        position: relative;
        margin-bottom: 29px;
    }

    .team-details .inner-box .content-box .text {
        position: relative;
        margin-bottom: 34px;
    }

.team-details .single-progress-box h5 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 19px;
}

.team-details .progress-content {
    position: relative;
    margin-bottom: 50px;
}

.team-details .content-box .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

    .team-details .content-box .social-links li:last-child {
        margin-right: 0px;
    }

    .team-details .content-box .social-links li a {
        position: relative;
        display: inline-block;
        font-size: 12px;
        color: #7a7d8a;
        background: #fff;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
    }

        .team-details .content-box .social-links li a:hover {
            background: #0690cd;
            color: #fff;
        }

.team-section .team-details {
    position: relative;
    margin-bottom: 60px;
}

.single-team-block .inner-box {
    position: relative;
    text-align: center;
}

    .single-team-block .inner-box:before {
        position: absolute;
        content: '';
        background: #f96b39;
        width: calc(0% - 2px);
        height: 2px;
        right: 0px;
        bottom: 0px;
        transition: all 500ms ease;
    }

    .single-team-block .inner-box:after {
        position: absolute;
        content: '';
        background: #0690cd;
        width: calc(0% - 2px);
        height: 2px;
        left: 0px;
        bottom: 0px;
        transition: all 500ms ease;
    }

.single-team-block:hover .inner-box:after,
.single-team-block:hover .inner-box:before {
    width: calc(50% - 2px);
}

.single-team-block .inner-box .image-holder {
    position: relative;
    overflow: hidden;
    background: #0e1221;
}

    .single-team-block .inner-box .image-holder img {
        width: 100%;
        transition: all 500ms ease;
    }

.single-team-block:hover .inner-box .image-holder img {
    opacity: 0.5;
    transform: scale(1.05);
}

.single-team-block .inner-box .image-holder .social-links {
    position: absolute;
    left: 0px;
    bottom: -40px;
    width: 100%;
    opacity: 0;
    transition: all 900ms ease;
}

.single-team-block:hover .inner-box .image-holder .social-links {
    bottom: 20px;
    opacity: 1;
}

.single-team-block .inner-box .image-holder .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 3px;
}

    .single-team-block .inner-box .image-holder .social-links li a {
        position: relative;
        display: inline-block;
        font-size: 12px;
        background: #fff;
        color: #7a7d8a;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
    }

        .single-team-block .inner-box .image-holder .social-links li a:hover {
            color: #fff;
            background: #0690cd;
        }

.single-team-block .inner-box .lower-content {
    position: relative;
    padding: 22px 15px 18px 15px;
    border-bottom: 1px solid #eff0f4;
}

    .single-team-block .inner-box .lower-content h4 {
        position: relative;
        display: block;
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
    }

        .single-team-block .inner-box .lower-content h4 a {
            display: inline-block;
            color: #0e1221;
        }

            .single-team-block .inner-box .lower-content h4 a:hover {
                color: #f96b39;
            }

    .single-team-block .inner-box .lower-content .designation {
        position: relative;
    }

.team-section .sec-title {
    margin-bottom: 24px;
}


/** video-section **/

.video-section {
    position: relative;
    width: 100%;
    padding: 120px 0px 220px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

    .video-section .inner-box .video-btn a {
        position: relative;
        display: inline-block;
        width: 115px;
        height: 115px;
        line-height: 115px;
        text-align: center;
        background: #f96b39;
        font-size: 24px;
        color: #fff;
        border-radius: 50%;
        -webkit-animation: pulse 3s infinite;
        -o-animation: pulse 3s infinite;
        animation: pulse 3s infinite;
    }

    .video-section .inner-box .video-btn {
        position: relative;
        margin-bottom: 40px;
    }

    .video-section .inner-box h1 {
        position: relative;
        font-size: 40px;
        line-height: 46px;
        font-weight: 800;
        color: #fff;
    }


/** fact-counter **/

.fact-counter {
    position: relative;
}

    .fact-counter .inner-container {
        position: relative;
        background: transparent linear-gradient(90deg, #107ac9 0%, #07CCEC 100%) 0% 0% no-repeat padding-box;
        padding: 25px 15px 15px 15px;
        margin-top: -100px;
        box-shadow: 0 0 0 20px #fff;
    }

    .fact-counter .single-counter-box {
        position: relative;
    }

        .fact-counter .single-counter-box:before {
            position: absolute;
            content: '';
            background: rgba(255, 255, 255, 0.2);
            height: 135px;
            width: 1px;
            top: -16px;
            right: -15px;
        }

    .fact-counter .counter-column:last-child .single-counter-box:before {
        display: none;
    }

    .fact-counter .single-counter-box .count-outer span {
        position: relative;
        display: block;
        font-size: 30px;
        font-family: 'EB Garamond', serif;
        line-height: 40px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 5px;
    }

    .fact-counter .single-counter-box .text {
        position: relative;
        color: #fff;
        font-weight: 500;
    }


/** news-section **/

.news-section {
    position: relative;
    padding-bottom: 150px;
    border-bottom: 1px solid #eff0f4;
}

    .news-section .sec-title {
        margin-bottom: 60px;
    }

.news-block-one .inner-box {
    position: relative;
}

    .news-block-one .inner-box .image-holder {
        position: relative;
        overflow: hidden;
        background: #0e1221;
        margin-bottom: 10px;
    }

        .news-block-one .inner-box .image-holder .image img {
            width: 100%;
            transition: all 500ms ease;
        }

.news-block-one:hover .inner-box .image-holder .image img {
    opacity: 0.5;
    transform: scale(1.05);
}

.news-block-one .inner-box .image-holder .date-box {
    position: absolute;
    right: 30px;
    top: 30px;
    background: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    color: #0e1221;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    padding: 15px 0px;
    font-family: 'EB Garamond', serif;
    transition: all 500ms ease;
}

.news-block-one:hover .inner-box .image-holder .date-box {
    color: #fff;
    background: #f96b39;
}

.news-block-one .inner-box .image-holder .date-box span {
    font-size: 20px;
    display: block;
    line-height: 20px;
}

.news-block-one .inner-box .lower-content {
    position: relative;
    background: #f5f6fa;
    padding: 0;
}

    .news-block-one .inner-box .lower-content .info-box li {
        position: relative;
        display: inline-block;
        margin-right: 20px;
    }

        .news-block-one .inner-box .lower-content .info-box li:last-child {
            margin-right: 0px;
        }

        .news-block-one .inner-box .lower-content .info-box li a {
            position: relative;
            display: inline-block;
            color: #7a7d8a;
        }

            .news-block-one .inner-box .lower-content .info-box li a:hover,
            .news-block-one .inner-box .lower-content h2 a:hover {
                color: #f96b39;
            }

        .news-block-one .inner-box .lower-content .info-box li i {
            margin-right: 10px;
        }

    .news-block-one .inner-box .lower-content .info-box {
        position: relative;
        margin-bottom: 1px;
    }

    .news-block-one .inner-box .lower-content h2 {
        position: relative;
        display: block;
        font-size: 18px;
        font-weight: 600;
        line-height: 29px;
    }

        .news-block-one .inner-box .lower-content h2 a {
            color: #0e1221;
        }

    .news-block-one .inner-box .lower-content .link-btn {
        position: absolute;
        left: 60px;
        bottom: -30px;
    }

        .news-block-one .inner-box .lower-content .link-btn a {
            position: relative;
            display: inline-block;
            font-size: 20px;
            font-weight: 600;
            width: 60px;
            height: 60px;
            line-height: 60px;
            background: #fff;
            color: #7a7d8a;
            text-align: center;
            border-radius: 50%;
        }

.news-block-one:hover .inner-box .lower-content .link-btn a {
    color: #fff;
    background: #0690cd;
}


/** clients-section **/

.clients-section {
    position: relative;
    padding: 100px 0px;
}

    .clients-section .image-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;
    }



.owl-dots-none .owl-dots {
    display: none !important;
}


/** main-footer **/

.main-footer {
    position: relative;
    overflow: hidden;
    background: #0a7667;
}

    .main-footer:before {
        position: absolute;
        content: '';
        background: url(../images/icons/pattern-2.png);
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        right: 0px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        -webkit-animation: zoom-fade 15s infinite linear;
        animation: zoom-fade 15s infinite linear;
    }

    .main-footer .anim-icon {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        right: 0px;
    }

        .main-footer .anim-icon .icon-1 {
            position: absolute;
            left: -230px;
            top: -230px;
            width: 560px;
            height: 560px;
            border: 100px solid #f96b39;
            border-radius: 50%;
            background: transparent;
        }

        .main-footer .anim-icon .icon-2 {
            position: absolute;
            right: -150px;
            bottom: 60px;
            width: 410px;
            height: 410px;
            border: 70px solid #0690cd;
            border-radius: 50%;
            background: transparent;
        }

    .main-footer .footer-top {
        position: relative;
        padding: 25px 0px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .main-footer .footer-top .social-links ul li {
            position: relative;
            display: inline-block;
            margin-right: 6px;
        }

            .main-footer .footer-top .social-links ul li:last-child {
                margin-right: 0px;
            }

            .main-footer .footer-top .social-links ul li a {
                position: relative;
                display: inline-block;
                font-size: 12px;
                color: #fff;
                background: #1e2230;
                width: 40px;
                height: 40px;
                line-height: 40px;
                text-align: center;
                border-radius: 50%;
            }

                .main-footer .footer-top .social-links ul li a:hover {
                    background: #0690cd;
                }

    .main-footer .footer-upper {
        position: relative;
        padding: 35px 0px 29px 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-footer .widget-section .widget-title {
        position: relative;
        display: block;
        font-size: 22px;
        line-height: 30px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 15px;
    }

    .main-footer .widget-section .about-widget {
        position: relative;
        margin-right: 70px;
    }

        .main-footer .widget-section .about-widget .widget-content .text {
            position: relative;
            color: #b6bbcd;
            margin-bottom: 21px;
            font-size: 14px;
            line-height: 27px;
        }

        .main-footer .widget-section .about-widget .subscribe-form .form-group {
            position: relative;
            margin: 0px;
        }

            .main-footer .widget-section .about-widget .subscribe-form .form-group input[type='email'] {
                position: relative;
                width: 100%;
                height: 65px;
                padding: 10px 65px 10px 15px;
                background: #1e2230;
                border: 3px solid #1e2230;
                color: #b6bbcd;
                transition: all 500ms ease;
            }

            .main-footer .widget-section .about-widget .subscribe-form .form-group input:focus {
                border-color: #f96b39;
            }

            .main-footer .widget-section .about-widget .subscribe-form .form-group input::-webkit-input-placeholder {
                color: #b6bbcd;
            }

            .main-footer .widget-section .about-widget .subscribe-form .form-group button {
                position: absolute;
                right: 30px;
                top: 16px;
                font-size: 20px;
                background: transparent;
                color: #f96b39;
                cursor: pointer;
                z-index: 1;
                transition: all 500ms ease;
            }

    .main-footer .widget-section .links-widget .widget-content ul li {
        position: relative;
        display: block;
        margin-bottom: 5px;
    }

        .main-footer .widget-section .links-widget .widget-content ul li:last-child {
            margin-bottom: 0px;
        }

        .main-footer .widget-section .links-widget .widget-content ul li a {
            position: relative;
            display: inline-block;
            color: #b6bbcd;
        }

            .main-footer .widget-section .links-widget .widget-content ul li a:hover {
                color: #f96b39;
            }

    .main-footer .widget-section .post-widget .widget-content .post {
        position: relative;
        padding: 0px 0px 0px 65px;
        margin-bottom: 30px;
    }

        .main-footer .widget-section .post-widget .widget-content .post:last-child {
            margin-bottom: 0px;
        }

        .main-footer .widget-section .post-widget .widget-content .post .image-box {
            position: absolute;
            left: 0px;
            top: 8px;
            width: 40px;
            height: 40px;
            background: #f96b39;
            overflow: hidden;
        }

            .main-footer .widget-section .post-widget .widget-content .post .image-box img {
                width: 100%;
                transition: all 500ms ease;
            }

        .main-footer .widget-section .post-widget .widget-content .post:hover .image-box img {
            opacity: 0.5;
        }

        .main-footer .widget-section .post-widget .widget-content .post .text a {
            position: relative;
            display: inline-block;
            color: #b6bbcd;
            line-height: 30px;
            margin-bottom: 3px;
        }

            .main-footer .widget-section .post-widget .widget-content .post .text a:hover,
            .main-footer .widget-section .contact-widget .widget-content li a:hover,
            .main-footer .footer-bottom a:hover {
                color: #f96b39;
            }

        .main-footer .widget-section .post-widget .widget-content .post .post-date {
            position: relative;
            font-size: 14px;
            line-height: 26px;
            color: #f96b39;
        }

    .main-footer .widget-section .contact-widget .widget-content li {
        position: relative;
        padding: 0px 0px 0px 38px;
        color: #b6bbcd;
        margin-bottom: 9px;
        font-size: 14px;
        line-height: 21px;
    }

        .main-footer .widget-section .contact-widget .widget-content li:last-child {
            margin-bottom: 0px;
        }

        .main-footer .widget-section .contact-widget .widget-content li a {
            color: #b6bbcd;
        }

        .main-footer .widget-section .contact-widget .widget-content li h6 {
            font-size: 16px;
            line-height: 26px;
            font-weight: 700;
            color: #fff;
        }

        .main-footer .widget-section .contact-widget .widget-content li i {
            position: absolute;
            left: 0px;
            top: 0px;
            color: #f96b39;
            font-size: 20px;
        }

    .main-footer .widget-section .contact-widget .widget-title {
        margin-bottom: 15px;
    }

    .main-footer .footer-bottom {
        position: relative;
        text-align: center;
        color: #b6bbcd;
        padding: 20px 0px;
    }

        .main-footer .footer-bottom a {
            color: #b6bbcd;
        }



/*** 

====================================================================
                        Home-Page-Two
====================================================================

***/

/** header-style-two **/

.main-header.style-two {
    position: relative;
}

    .main-header.style-two .header-top {
        padding: 32px 80px;
        border-bottom: 1px solid #f0f1f5;
    }

        .main-header.style-two .header-top .logo-box {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .main-header.style-two .outer-container .header-top .logo-box .logo {
        margin: 0px;
    }

    .main-header.style-two .outer-container {
        padding: 0px;
    }

        .main-header.style-two .outer-container .header-top .top-left .info-box {
            margin-top: 10px;
        }

        .main-header.style-two .outer-container .header-top .top-right .social-links {
            margin-top: 4px;
        }

        .main-header.style-two .outer-container .header-upper {
            background: #fff;
            padding-left: 0px;
        }

    .main-header.style-two .main-menu .navigation > li > a {
        color: #7a7d8a;
    }

    .main-header.style-two .main-menu .navigation > li.current > a,
    .main-header.style-two .main-menu .navigation > li:hover > a {
        color: #0e1221;
    }

    .main-header.style-two .main-menu .navigation > li {
        padding: 21px 80px 20px 80px;
        margin: 0px 0px;
        cursor: pointer;
        border-right: 1px solid #f0f1f5;
    }

        .main-header.style-two .main-menu .navigation > li:before,
        .main-header.style-two .main-menu .navigation > li:hover:before {
            position: absolute;
            content: '';
            background: #1696d0 !important;
            width: 100%;
            height: 1px;
            left: 0px;
            top: -1px;
            right: 0px;
            transform: scale(0,0);
            transition: all 500ms ease;
        }

        .main-header.style-two .main-menu .navigation > li.current:before,
        .main-header.style-two .main-menu .navigation > li:hover:before {
            transform: scale(1,1);
        }

        .main-header.style-two .main-menu .navigation > li:last-child {
            border-right: none;
        }

    .main-header.style-two .outer-container .header-upper .menu-right-content .info-box li,
    .main-header.style-two .outer-container .header-upper .menu-right-content .info-box li a {
        color: #7a7d8a;
    }

    .main-header.style-two .outer-container .header-upper:before {
        position: absolute;
        content: '';
        background: #f5f6fa;
        width: 470px;
        height: 100%;
        top: 0px;
        right: 0px;
    }


/** slider-style-two **/

.main-slider.style-two {
    position: relative;
    overflow: hidden;
}

    .main-slider.style-two .slide {
        padding: 0px;
    }

.owl-nav-none .owl-nav {
    display: none !important;
}

.main-slider.style-two .inner-box {
    position: relative;
    padding: 152px 0px 163px 0px;
}

.main-slider.style-two .content-box:before {
    display: none;
}

.main-slider.style-two .inner-box .image-box {
    position: absolute;
    right: -145px;
    bottom: 0px;
    z-index: 1;
}

    .main-slider.style-two .inner-box .image-box:before {
        position: absolute;
        content: '';
        background: transparent;
        border: 100px solid #f96b39;
        width: 560px;
        height: 560px;
        right: -100px;
        bottom: -100px;
        border-radius: 50%;
    }

    .main-slider.style-two .inner-box .image-box:after {
        position: absolute;
        content: '';
        left: -100px;
        bottom: -100px;
        width: 410px;
        height: 410px;
        border: 70px solid #0690cd;
        border-radius: 50%;
        background: transparent;
        z-index: -1;
    }

.main-slider.style-two .inner-box .content-box .top-text {
    border: none;
    padding: 0px;
    color: #f96b39;
    font-size: 22px;
}

.main-slider.style-two h1 {
    margin-bottom: 50px;
}

    .main-slider.style-two h1 span {
        color: #0690cd;
    }

.main-slider.style-two .inner-box .image {
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.main-slider.style-two .active .inner-box .image {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1500ms;
}

.main-slider.style-two .image-box .icon-box {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
}

    .main-slider.style-two .image-box .icon-box .icon {
        position: absolute;
        display: inline-block;
        width: 120px;
        height: 120px;
        line-height: 120px;
        text-align: center;
        background: #fff;
        border-radius: 50%;
        font-size: 50px;
        color: #0e1221;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        -webkit-animation: zoom-fade 3s infinite linear;
        animation: zoom-fade 3s infinite linear;
    }

    .main-slider.style-two .image-box .icon-box .icon-1 {
        top: 35%;
        left: 60px;
    }

    .main-slider.style-two .image-box .icon-box .icon-2 {
        top: 100px;
        right: 80px;
    }

    .main-slider.style-two .image-box .icon-box .icon-3 {
        right: 0px;
        bottom: 240px;
        z-index: 1;
    }


/** research-style-two **/

.research-style-two {
    position: relative;
    padding-bottom: 50px;
}

    .research-style-two .title-box {
        position: relative;
        background: #0e1221;
        padding: 112px 0px 307px 0px;
    }

        .research-style-two .title-box:before {
            position: absolute;
            content: '';
            background: url(../images/icons/pattern-3.png);
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
            right: 0px;
            background-repeat: no-repeat;
            background-position: center;
            -webkit-animation: zoom-fade 15s infinite linear;
            animation: zoom-fade 15s infinite linear;
        }

        .research-style-two .title-box .sec-title .top-text {
            color: #b6bbcd;
        }

        .research-style-two .title-box .sec-title h1 {
            color: #fff;
        }

    .research-style-two .main-content .single-item .inner-box {
        position: relative;
    }

        .research-style-two .main-content .single-item .inner-box .image-box {
            position: relative;
            margin-bottom: 10px;
            background: #1e2230;
            overflow: hidden;
            margin-bottom: 10px;
        }

            .research-style-two .main-content .single-item .inner-box .image-box img {
                width: 100%;
                transition: all 500ms ease;
            }

    .research-style-two .main-content .single-item:hover .inner-box .image-box img {
        transform: scale(1.05);
        opacity: 0.7;
    }

    .research-style-two .main-content .single-item .inner-box .lower-content {
        position: relative;
        background: #f5f6fa;
        padding: 51px 45px 60px 60px;
    }

        .research-style-two .main-content .single-item .inner-box .lower-content h3 {
            position: relative;
            display: block;
            font-size: 24px;
            line-height: 35px;
            font-weight: 700;
            margin-bottom: 20px;
        }

            .research-style-two .main-content .single-item .inner-box .lower-content h3 a {
                color: #0e1221;
            }

                .research-style-two .main-content .single-item .inner-box .lower-content h3 a:hover {
                    color: #f96b39;
                }

        .research-style-two .main-content .single-item .inner-box .lower-content .text {
            position: relative;
            margin-bottom: 22px;
        }

        .research-style-two .main-content .single-item .inner-box .lower-content .link-btn {
            position: absolute;
            left: 60px;
            bottom: -30px;
        }

            .research-style-two .main-content .single-item .inner-box .lower-content .link-btn a {
                position: relative;
                display: inline-block;
                font-size: 20px;
                font-weight: 600;
                width: 60px;
                height: 60px;
                line-height: 60px;
                background: #fff;
                color: #7a7d8a;
                text-align: center;
                border-radius: 50%;
            }

    .research-style-two .main-content .single-item:hover .inner-box .lower-content .link-btn a {
        color: #fff;
        background: #0690cd;
    }

    .research-style-two .main-content .inner-container {
        position: relative;
        margin-top: -297px;
    }

.clients-section.home-2 {
    border-bottom: 1px solid #eff0f4;
}


/** innovative-solutions **/


.innovative-solutions {
    position: relative;
}

    .innovative-solutions .content-box {
        position: relative;
        margin-right: 70px;
    }

        .innovative-solutions .content-box .text {
            position: relative;
            font-size: 18px;
            line-height: 36px;
            margin-bottom: 52px;
        }

        .innovative-solutions .content-box .experience-box {
            position: relative;
            display: block;
            background: #f5f6fa;
            font-family: 'EB Garamond', serif;
            color: #0e1221;
            padding: 36px 30px 36px 145px;
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 40px;
        }

            .innovative-solutions .content-box .experience-box h1 {
                position: absolute;
                left: 50px;
                top: 14px;
                font-size: 70px;
                line-height: 75px;
                color: #0690cd;
                font-weight: 800;
            }

    .innovative-solutions .image-box {
        position: relative;
        margin: 8px 100px 0px -30px;
        padding-bottom: 275px;
    }

        .innovative-solutions .image-box img {
            position: relative;
            width: 100%;
        }

        .innovative-solutions .image-box .image-2 {
            position: absolute;
            right: -160px;
            bottom: 0px;
            z-index: 1;
        }

            .innovative-solutions .image-box .image-2:after {
                position: absolute;
                content: '';
                background: #f96b39;
                width: 100%;
                height: 100%;
                left: -30px;
                top: 0px;
                z-index: -1;
            }

            .innovative-solutions .image-box .image-2:before {
                position: absolute;
                content: '';
                background: #0690cd;
                width: 100%;
                height: 100%;
                left: -30px;
                top: -30px;
                z-index: -1;
            }


/** discover-section **/

.discover-section {
    position: relative;
    padding-bottom: 120px;
}

    .discover-section .upper-box {
        position: relative;
        padding: 103px 0px 222px 0px;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
    }

        .discover-section .upper-box:before {
            position: absolute;
            content: '';
            background: rgba(6, 144, 205, 0.8);
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
        }

        .discover-section .upper-box .upper-content .title-box h1 {
            position: relative;
            font-size: 70px;
            line-height: 84px;
            color: #fff;
            max-width: 710px;
            width: 100%;
            font-weight: 800;
        }

        .discover-section .upper-box .upper-content .theme-btn.style-two:hover,
        .discover-section .upper-box .upper-content .theme-btn.style-two:hover:before {
            background: #0e1221 !important;
        }

        .discover-section .upper-box .upper-content .btn-box {
            margin-top: 45px;
        }

    .discover-section .lower-box .single-item .inner-box {
        position: relative;
        background: #fff;
        padding: 64px 40px 46px 60px;
        border-bottom: 1px solid #eff0f4;
        transition: all 500ms ease;
    }

    .discover-section .lower-box .single-item:hover .inner-box {
        transform: translateY(-15px);
    }

    .discover-section .lower-box .single-item .inner-box:before {
        position: absolute;
        content: '';
        background: #f96b39;
        width: calc(0% - 2px);
        height: 2px;
        right: 0px;
        bottom: 0px;
        transition: all 500ms ease;
    }

    .discover-section .lower-box .single-item .inner-box:after {
        position: absolute;
        content: '';
        background: #0690cd;
        width: calc(0% - 2px);
        height: 2px;
        left: 0px;
        bottom: 0px;
        transition: all 500ms ease;
    }

    .discover-section .lower-box .single-item:hover .inner-box:after,
    .discover-section .lower-box .single-item:hover .inner-box:before {
        width: calc(50% - 2px);
    }

    .discover-section .lower-box .single-item .inner-box .icon-box {
        position: relative;
        font-size: 60px;
        line-height: 60px;
        color: #0690cd;
        margin-bottom: 28px;
    }

    .discover-section .lower-box .single-item .inner-box .text {
        position: relative;
        font-weight: 500;
        margin-bottom: 13px;
    }

    .discover-section .lower-box .single-item .inner-box h3 {
        position: relative;
        display: block;
        font-size: 24px;
        font-weight: 600;
        line-height: 29px;
        margin-bottom: 15px;
    }

        .discover-section .lower-box .single-item .inner-box h3 a {
            display: inline-block;
            color: #0e1221;
        }

            .discover-section .lower-box .single-item .inner-box h3 a:hover {
                color: #f96b39;
            }

    .discover-section .lower-box .inner-container {
        position: relative;
        margin-top: -120px;
    }


/** chooseus-section **/

.chooseus-section {
    position: relative;
    padding-bottom: 120px;
}

    .chooseus-section .inner-container {
        position: relative;
        margin-top: -73px;
    }

    .chooseus-section .title-text {
        position: relative;
        display: block;
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
        color: #fff;
        background: #f96b39;
        text-align: center;
        padding: 21.5px 15px;
        margin-bottom: 10px;
    }

    .chooseus-section .chooseus-content .inner-box .inner .single-item {
        position: relative;
        display: block;
        background: #f5f6fa;
        padding: 44px 45px 42px 140px;
        margin-bottom: 10px;
        transition: all 500ms ease;
    }

        .chooseus-section .chooseus-content .inner-box .inner .single-item:hover {
            background: #fff;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
        }

        .chooseus-section .chooseus-content .inner-box .inner .single-item:last-child {
            margin-bottom: 0px;
        }

        .chooseus-section .chooseus-content .inner-box .inner .single-item .icon-box {
            position: absolute;
            left: 60px;
            top: 56px;
            font-size: 60px;
            line-height: 60px;
            color: #f96b39;
        }

        .chooseus-section .chooseus-content .inner-box .inner .single-item h3 {
            position: relative;
            display: block;
            font-size: 22px;
            line-height: 30px;
            font-weight: 600;
            margin-bottom: 23px;
        }

            .chooseus-section .chooseus-content .inner-box .inner .single-item h3 a {
                display: inline-block;
                color: #0e1221;
            }

                .chooseus-section .chooseus-content .inner-box .inner .single-item h3 a:hover {
                    color: #f96b39;
                }

        .chooseus-section .chooseus-content .inner-box .inner .single-item .text {
            position: relative;
        }

    .chooseus-section .appointment-content .inner-box .title-text {
        background: #0690cd;
    }

    .chooseus-section .appointment-content .inner-box .inner {
        position: relative;
        background: #f5f6fa;
        padding: 57px 60px 60px 60px;
    }

    .chooseus-section .appointment-content .appointment-form .form-group {
        position: relative;
        margin-bottom: 10px;
    }

        .chooseus-section .appointment-content .appointment-form .form-group input[type='text'],
        .chooseus-section .appointment-content .appointment-form .form-group input[type='email'],
        .chooseus-section .appointment-content .appointment-form .form-group textarea {
            position: relative;
            width: 100%;
            height: 75px;
            background: #fff;
            font-size: 16px;
            padding: 15px 25px;
            border: 3px solid #fff;
            transition: all 500ms ease;
        }

        .chooseus-section .appointment-content .appointment-form .form-group textarea {
            height: 170px;
            resize: none;
            display: block;
        }

            .chooseus-section .appointment-content .appointment-form .form-group input:focus,
            .chooseus-section .appointment-content .appointment-form .form-group textarea:focus {
                border-color: #f96b39;
            }

        .chooseus-section .appointment-content .appointment-form .form-group.message-btn {
            margin: 0px;
        }

    .chooseus-section .appointment-content .inner .text {
        position: relative;
        font-size: 18px;
        line-height: 36px;
        margin-bottom: 42px;
    }

        .chooseus-section .appointment-content .inner .text a {
            position: relative;
            display: inline-block;
            background: #fff;
            color: #0690cd;
            line-height: 32px;
            padding: 0px 13px;
            margin: 0px 10px;
        }

            .chooseus-section .appointment-content .inner .text a:hover {
                background: #0690cd;
                color: #fff;
            }

.video-section.home-2 {
    padding-bottom: 173px;
}


/** news-style-two **/

.news-style-two {
    position: relative;
    padding: 112px 0px 105px 0px;
}

    .news-style-two .sec-title {
        margin-bottom: 60px;
    }

.news-block-two .inner-box {
    position: relative;
}

    .news-block-two .inner-box .image-holder {
        position: relative;
        overflow: hidden;
        background: #0e1221;
    }

        .news-block-two .inner-box .image-holder .image img {
            width: 100%;
            transition: all 500ms ease;
        }

.news-block-two:hover .inner-box .image-holder .image img {
    opacity: 0.5;
    transform: scale(1.05);
}

.news-block-two .inner-box .image-holder .date-box {
    position: absolute;
    right: 30px;
    top: 30px;
    background: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    color: #0e1221;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    padding: 15px 0px;
    font-family: 'EB Garamond', serif;
    transition: all 500ms ease;
}

.news-block-two:hover .inner-box .image-holder .date-box {
    color: #fff;
    background: #f96b39;
}

.news-block-two .inner-box .image-holder .date-box span {
    font-size: 20px;
    display: block;
    line-height: 20px;
}

.news-block-two .inner-box .lower-content {
    position: relative;
    padding-top: 22px;
}

    .news-block-two .inner-box .lower-content .info-box li {
        position: relative;
        display: inline-block;
        margin-right: 20px;
    }

        .news-block-two .inner-box .lower-content .info-box li:last-child {
            margin-right: 0px;
        }

        .news-block-two .inner-box .lower-content .info-box li a {
            position: relative;
            display: inline-block;
            color: #7a7d8a;
        }

            .news-block-two .inner-box .lower-content .info-box li a:hover,
            .news-block-two .inner-box .lower-content h2 a:hover {
                color: #f96b39;
            }

        .news-block-two .inner-box .lower-content .info-box li i {
            margin-right: 10px;
        }

    .news-block-two .inner-box .lower-content h2 {
        position: relative;
        display: block;
        font-size: 30px;
        font-weight: 600;
        line-height: 40px;
        margin-bottom: 33px;
    }

        .news-block-two .inner-box .lower-content h2 a {
            color: #0e1221;
        }

    .news-block-two .inner-box .lower-content .text {
        position: relative;
        margin-bottom: 34px;
    }

    .news-block-two .inner-box .lower-content .link-btn a {
        position: relative;
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        color: #0e1221;
    }

        .news-block-two .inner-box .lower-content .link-btn a:hover {
            color: #f96b39;
        }



/*** 

====================================================================
                        Research-Page
====================================================================

***/


/** page-title **/

.page-title {
    position: relative;
    padding: 88px 0px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .page-title .content-box h1 {
        position: relative;
        display: block;
        font-size: 33px;
        line-height: 45px;
        font-weight: 700;
    }

    .page-title .content-box .bread-crumb li {
        position: relative;
        display: inline-block;
        font-size: 15px;
        color: #0e1221;
        margin-right: 10px;
        padding-right: 22px;
    }

        .page-title .content-box .bread-crumb li:last-child {
            margin: 0px;
            padding: 0px;
        }

        .page-title .content-box .bread-crumb li a {
            color: #0e1221;
        }

            .page-title .content-box .bread-crumb li a:hover {
                color: #f96b39;
            }

        .page-title .content-box .bread-crumb li:before {
            position: absolute;
            content: '/';
            font-size: 16px;
            line-height: 34px;
            color: #0e1221;
            top: 1px;
            right: 0px;
        }

        .page-title .content-box .bread-crumb li:last-child:before {
            display: none;
        }

.particles-pattern {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}


/** research-page-section **/

.research-page-section {
    position: relative;
    padding: 120px 0px 90px 0px;
}

    .research-page-section .single-item {
        position: relative;
        margin-bottom: 60px;
    }

        .research-page-section .single-item .inner-box .image-box {
            position: relative;
            overflow: hidden;
            background: #0e1221;
            margin-bottom: 10px;
        }

        .research-page-section .single-item .image-box img {
            width: 100%;
            transition: all 500ms ease;
        }

        .research-page-section .single-item:hover .inner-box .image-box img {
            opacity: 0.5;
            transform: scale(1.05);
        }

        .research-page-section .single-item .inner-box .lower-content {
            position: relative;
            background: #f5f6fa;
            padding: 51px 40px 60px 60px;
        }

            .research-page-section .single-item .inner-box .lower-content h3 {
                position: relative;
                display: block;
                font-size: 24px;
                line-height: 35px;
                font-weight: 600;
                margin-bottom: 27px;
            }

                .research-page-section .single-item .inner-box .lower-content h3 a {
                    display: inline-block;
                    color: #0e1221;
                }

                    .research-page-section .single-item .inner-box .lower-content h3 a:hover {
                        color: #f96b39;
                    }

            .research-page-section .single-item .inner-box .lower-content .text {
                position: relative;
                margin-bottom: 15px;
            }

            .research-page-section .single-item .inner-box .lower-content .link-btn {
                position: absolute;
                left: 60px;
                bottom: -30px;
            }

                .research-page-section .single-item .inner-box .lower-content .link-btn a {
                    position: relative;
                    display: inline-block;
                    font-size: 20px;
                    font-weight: 600;
                    width: 60px;
                    height: 60px;
                    line-height: 60px;
                    background: #fff;
                    color: #7a7d8a;
                    text-align: center;
                    border-radius: 50%;
                }

        .research-page-section .single-item:hover .inner-box .lower-content .link-btn a {
            color: #fff;
            background: #0690cd;
        }


/** research-details **/

.research-details {
    position: relative;
    padding: 0 0px 20px 0px;
}

    .research-details .research-details-content .inner-box .text {
        position: relative;
        font-size: 18px;
        line-height: 36px;
    }

    .research-details .research-details-content .inner-box .image-box {
        position: relative;
        margin-bottom: 50px;
    }

        .research-details .research-details-content .inner-box .image-box img {
            width: 100%;
        }

    .research-details .research-details-content .inner-box .content-style-one h1 {
        position: relative;
        font-size: 46px;
        line-height: 55px;
        font-weight: 600;
        margin-bottom: 37px;
    }

    .research-details .research-details-content .inner-box .content-style-one {
        position: relative;
        margin-bottom: 70px;
    }

    .research-details .research-details-content .inner-box .content-style-two .upper-box h3 {
        position: relative;
        font-size: 26px;
        line-height: 35px;
        font-weight: 600;
        margin-bottom: 39px;
    }

    .research-details .research-details-content .inner-box .content-style-two .upper-box {
        margin-bottom: 55px;
    }

    .research-details .research-details-content .inner-box .content-style-two .lower-box .single-item .title-box {
        position: relative;
        padding: 0;
        margin-bottom: 10px;
    }

        .research-details .research-details-content .inner-box .content-style-two .lower-box .single-item .title-box h3 {
            position: relative;
            font-size: 24px;
            line-height: 35px;
            font-weight: 500;
        }

        .research-details .research-details-content .inner-box .content-style-two .lower-box .single-item .title-box .icon-box {
            position: absolute;
            left: 0px;
            top: 0px;
            font-size: 60px;
            line-height: 60px;
            color: #f96b39;
        }

    .research-details .research-details-content .inner-box .content-style-two .lower-box .single-item {
        position: relative;
        margin-bottom: 55px;
    }

        .research-details .research-details-content .inner-box .content-style-two .lower-box .single-item:last-child {
            margin-bottom: 0px;
        }



/*** 

====================================================================
                        Professor-Page
====================================================================

***/


.Professor-page-section {
    position: relative;
    padding: 120px 0px 90px 0px;
}

    .Professor-page-section .single-team-block {
        margin-bottom: 30px;
    }

.professor-details-page {
    position: relative;
    padding: 120px 0px 111px 0px;
}

    .professor-details-page .inner-box {
        background: transparent;
    }

        .professor-details-page .inner-box .content-box {
            background: #f5f6fa;
            margin-bottom: 92px;
        }

    .professor-details-page .single-progress-box .progress {
        background: #eff0f4;
        height: 15px;
    }

    .professor-details-page .single-progress-box .progress-bar {
        height: 15px;
    }

    .professor-details-page .single-progress-box h4 {
        position: relative;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 19px;
    }

    .professor-details-page .single-progress-box .progress-bar .value-holder {
        bottom: 26px;
    }

    .professor-details-page .progress-content {
        margin: 0px;
    }

    .professor-details-page .team-details {
        position: relative;
        padding-bottom: 100px;
        border-bottom: 1px solid #eff0f4;
    }

    .professor-details-page .certificates-education .certificates-inner {
        position: relative;
        padding: 111px 0px 119px 0px;
    }

        .professor-details-page .certificates-education .certificates-inner .content-box h1 {
            position: relative;
            font-size: 36px;
            line-height: 45px;
            font-weight: 700;
            margin-bottom: 31px;
        }

        .professor-details-page .certificates-education .certificates-inner .content-box .text {
            position: relative;
            font-size: 18px;
            line-height: 36px;
        }

        .professor-details-page .certificates-education .certificates-inner .certificates-box .certificates {
            position: relative;
            float: left;
            width: 33.33333%;
        }

            .professor-details-page .certificates-education .certificates-inner .certificates-box .certificates figure {
                position: relative;
                margin: 0px 15px;
            }

        .professor-details-page .certificates-education .certificates-inner .certificates-box .list {
            position: relative;
            margin: 0px -15px;
        }

        .professor-details-page .certificates-education .certificates-inner .certificates-box {
            margin-top: 9px;
        }

    .professor-details-page .certificates-education .education-inner {
        position: relative;
        border-top: 1px solid #eff0f4;
    }

        .professor-details-page .certificates-education .education-inner .single-item .date {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 24px;
            color: #0690cd;
            font-weight: 500;
            margin-bottom: 4px;
            padding-top: 41px;
        }

            .professor-details-page .certificates-education .education-inner .single-item .date:before {
                position: absolute;
                content: '';
                background: #f96b39;
                height: 12px;
                width: 12px;
                left: 0px;
                top: -7px;
            }

        .professor-details-page .certificates-education .education-inner .single-item h4 {
            position: relative;
            font-size: 20px;
            line-height: 30px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .professor-details-page .certificates-education .education-inner .single-item .text {
            position: relative;
        }



/*** 

====================================================================
                        About-Page
====================================================================

***/


/** about-section **/

.about-section {
    position: relative;
    padding: 120px 0px;
    border-bottom: 1px solid #eff0f4;
}

    .about-section .image-box {
        margin-bottom: 50px;
    }

        .about-section .image-box .image img {
            width: 100%;
        }

    .about-section .content-box {
        position: relative;
        max-width: 750px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

        .about-section .content-box .text {
            position: relative;
            font-size: 18px;
            line-height: 36px;
            margin-bottom: 52px;
        }




/*** 

====================================================================
                        Error-Page
====================================================================

***/


.error-section {
    position: relative;
    padding: 78px 0px 97px 0px;
}

    .error-section .content-box h1 {
        position: relative;
        display: inline-block;
        font-size: 200px;
        line-height: 200px;
        color: #f96b39;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .error-section .content-box h2 {
        position: relative;
        font-size: 44px;
        line-height: 52px;
        font-weight: 600;
        margin-bottom: 21px;
    }

    .error-section .text {
        position: relative;
        font-size: 18px;
        line-height: 28px;
    }

        .error-section .text a {
            color: #f96b39;
        }

            .error-section .text a:hover {
                text-decoration: underline;
            }


/*** 

====================================================================
                        Blog-Page
====================================================================

***/


/** blog-page-section **/

.blog-page-section {
    position: relative;
    padding: 120px 0px 90px 0px;
}

    .blog-page-section .news-block-one {
        margin-bottom: 60px;
    }


/** blog-details **/

.sidebar-page-container {
    position: relative;
    padding: 120px 0px;
}

    .sidebar-page-container .blog-details-content .inner-box .lower-content {
        position: relative;
        background: #f5f6fa;
        padding: 53px 65px 0px 60px;
    }

    .sidebar-page-container .blog-details-content .inner-box .image-holder {
        position: relative;
        overflow: hidden;
        margin-bottom: 10px;
    }

        .sidebar-page-container .blog-details-content .inner-box .image-holder .image img {
            width: 100%;
        }

        .sidebar-page-container .blog-details-content .inner-box .image-holder .date-box {
            position: absolute;
            right: 30px;
            top: 30px;
            background: #fff;
            width: 70px;
            height: 70px;
            text-align: center;
            color: #0e1221;
            font-size: 14px;
            font-weight: 600;
            line-height: 16px;
            padding: 15px 0px;
            font-family: 'EB Garamond', serif;
            transition: all 500ms ease;
        }

            .sidebar-page-container .blog-details-content .inner-box .image-holder .date-box span {
                font-size: 20px;
                display: block;
                line-height: 20px;
            }

    .sidebar-page-container .blog-details-content .inner-box .lower-content .info-box li {
        position: relative;
        display: inline-block;
        margin-right: 20px;
    }

        .sidebar-page-container .blog-details-content .inner-box .lower-content .info-box li:last-child {
            margin-right: 0px;
        }

        .sidebar-page-container .blog-details-content .inner-box .lower-content .info-box li a {
            position: relative;
            display: inline-block;
            color: #7a7d8a;
        }

            .sidebar-page-container .blog-details-content .inner-box .lower-content .info-box li a:hover {
                color: #f96b39;
            }

        .sidebar-page-container .blog-details-content .inner-box .lower-content .info-box li i {
            margin-right: 10px;
        }

    .sidebar-page-container .blog-details-content .inner-box .lower-content .inner h1 {
        position: relative;
        font-size: 46px;
        line-height: 60px;
        font-weight: 600;
        margin-bottom: 31px;
    }

    .sidebar-page-container .blog-details-content .inner-box .lower-content .inner .text p {
        margin-bottom: 34px;
    }

        .sidebar-page-container .blog-details-content .inner-box .lower-content .inner .text p:last-child {
            margin-bottom: 0px;
        }

    .sidebar-page-container .blog-details-content .inner-box .lower-content .inner {
        padding-bottom: 52px;
        border-bottom: 1px solid #fff;
    }

    .sidebar-page-container .blog-details-content .inner-box .post-share-option {
        position: relative;
        padding: 40px 0px;
    }

        .sidebar-page-container .blog-details-content .inner-box .post-share-option .tags-list {
            margin-top: 3px;
        }

            .sidebar-page-container .blog-details-content .inner-box .post-share-option .tags-list li {
                position: relative;
                display: inline-block;
                font-size: 16px;
            }

                .sidebar-page-container .blog-details-content .inner-box .post-share-option .tags-list li a {
                    color: #7a7d8a;
                }

                    .sidebar-page-container .blog-details-content .inner-box .post-share-option .tags-list li a:hover {
                        color: #f96b39;
                    }

                .sidebar-page-container .blog-details-content .inner-box .post-share-option .tags-list li h4 {
                    position: relative;
                    display: inline-block;
                    font-size: 20px;
                    font-weight: 600;
                }

        .sidebar-page-container .blog-details-content .inner-box .post-share-option .social-links li {
            position: relative;
            display: inline-block;
            margin-right: 6px;
        }

            .sidebar-page-container .blog-details-content .inner-box .post-share-option .social-links li:last-child {
                margin-right: 0px;
            }

            .sidebar-page-container .blog-details-content .inner-box .post-share-option .social-links li a {
                position: relative;
                display: inline-block;
                font-size: 12px;
                color: #7a7d8a;
                background: #fff;
                width: 40px;
                height: 40px;
                line-height: 40px;
                text-align: center;
                border-radius: 50%;
            }

                .sidebar-page-container .blog-details-content .inner-box .post-share-option .social-links li a:hover {
                    color: #fff;
                    background: #0690cd;
                }

    .sidebar-page-container .blog-details-content .inner-box {
        margin-bottom: 30px;
    }

    .sidebar-page-container .blog-details-content .author-box {
        position: relative;
        background: #f5f6fa;
        padding: 51px 60px 60px 60px;
        margin-bottom: 47px;
    }

        .sidebar-page-container .blog-details-content .author-box .author-inner {
            position: relative;
            padding-left: 210px;
            padding-bottom: 5px;
        }

            .sidebar-page-container .blog-details-content .author-box .author-inner .image-box {
                position: absolute;
                left: 0px;
                top: 9px;
                width: 170px;
                height: 160px;
            }

            .sidebar-page-container .blog-details-content .author-box .author-inner h3 {
                position: relative;
                font-size: 24px;
                line-height: 35px;
                font-weight: 700;
                margin-bottom: 27px;
            }

            .sidebar-page-container .blog-details-content .author-box .author-inner .text {
                position: relative;
            }

    .sidebar-page-container .blog-details-content .group-title {
        position: relative;
        display: block;
        font-size: 40px;
        line-height: 50px;
        font-weight: 700;
        margin-bottom: 41px;
    }

    .sidebar-page-container .blog-details-content .comments-area .comment {
        position: relative;
        margin-bottom: 52px;
        padding-bottom: 54px;
        border-bottom: 1px solid #eff0f4;
    }

        .sidebar-page-container .blog-details-content .comments-area .comment:last-child {
            margin-bottom: 0px;
        }

        .sidebar-page-container .blog-details-content .comments-area .comment .image-box {
            position: absolute;
            left: 0px;
            top: 8px;
            width: 170px;
            height: 160px;
        }

        .sidebar-page-container .blog-details-content .comments-area .comment .comment-inner {
            position: relative;
            padding-left: 210px;
        }

            .sidebar-page-container .blog-details-content .comments-area .comment .comment-inner h4 {
                position: relative;
                display: block;
                font-size: 20px;
                line-height: 30px;
                font-weight: 700;
                margin-bottom: 28px;
            }

            .sidebar-page-container .blog-details-content .comments-area .comment .comment-inner .text {
                position: relative;
                margin-bottom: 14px;
            }

            .sidebar-page-container .blog-details-content .comments-area .comment .comment-inner .replay-btn a {
                position: relative;
                display: inline-block;
                font-size: 16px;
                font-weight: 500;
                color: #0e1221;
            }

                .sidebar-page-container .blog-details-content .comments-area .comment .comment-inner .replay-btn a:hover {
                    color: #0690cd;
                }

    .sidebar-page-container .blog-details-content .comments-area {
        position: relative;
        margin-bottom: 47px;
    }

    .sidebar-page-container .blog-details-content .comments-form-area .comment-form .form-group {
        position: relative;
        margin-bottom: 10px;
        padding: 0px 5px;
    }

        .sidebar-page-container .blog-details-content .comments-form-area .comment-form .form-group input[type='text'],
        .sidebar-page-container .blog-details-content .comments-form-area .comment-form .form-group input[type='email'],
        .sidebar-page-container .blog-details-content .comments-form-area .comment-form .form-group textarea {
            position: relative;
            width: 100%;
            height: 75px;
            background: #f5f6fa;
            border: 3px solid #f5f6fa;
            font-size: 16px;
            padding: 15px 25px;
            transition: all 500ms ease;
        }

        .sidebar-page-container .blog-details-content .comments-form-area .comment-form .form-group textarea {
            height: 210px;
            display: block;
            resize: none;
        }

            .sidebar-page-container .blog-details-content .comments-form-area .comment-form .form-group input:focus,
            .sidebar-page-container .blog-details-content .comments-form-area .comment-form .form-group textarea:focus {
                border-color: #f96b39;
            }

    .sidebar-page-container .blog-details-content .comments-form-area .comment-form {
        position: relative;
        margin: 0px 10px;
    }

        .sidebar-page-container .blog-details-content .comments-form-area .comment-form .form-group.message-btn {
            margin: 0px;
        }

    .sidebar-page-container .blog-details-content .comments-form-area .group-title {
        margin-bottom: 49px;
    }

    .sidebar-page-container .sidebar .widget-title {
        position: relative;
        display: block;
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .sidebar-page-container .sidebar .sidebar-widget {
        position: relative;
        padding: 40px 50px;
        border: 1px solid #eff0f4;
        margin-bottom: 30px;
    }

        .sidebar-page-container .sidebar .sidebar-widget:last-child {
            margin-bottom: 0px;
        }

        .sidebar-page-container .sidebar .sidebar-widget:before {
            position: absolute;
            content: '';
            background: #f96b39;
            width: calc(50% - 2px);
            height: 2px;
            right: 0px;
            top: 0px;
        }

        .sidebar-page-container .sidebar .sidebar-widget:after {
            position: absolute;
            content: '';
            background: #0690cd;
            width: calc(50% - 2px);
            height: 2px;
            left: 0px;
            top: 0px;
        }

    .sidebar-page-container .sidebar .sidebar-search .form-group {
        position: relative;
        margin: 0px;
    }

        .sidebar-page-container .sidebar .sidebar-search .form-group input[type='search'] {
            position: relative;
            width: 100%;
            height: 75px;
            background: #f5f6fa;
            border: 3px solid #f5f6fa;
            font-size: 16px;
            padding: 15px 50px 15px 25px;
            transition: all 500ms ease;
        }

        .sidebar-page-container .sidebar .sidebar-search .form-group input:focus {
            border-color: #f96b39;
        }

        .sidebar-page-container .sidebar .sidebar-search .form-group button {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 20px;
            color: #f96b39;
            background: transparent;
            cursor: pointer;
            transition: all 500ms ease;
        }

    .sidebar-page-container .sidebar .sidebar-search {
        padding: 43px 50px 49px 50px;
    }

    .sidebar-page-container .sidebar .sidebar-post .post-inner .post {
        position: relative;
        padding: 6px 0px 9px 85px;
        margin-bottom: 30px;
        min-height: 67px;
    }

        .sidebar-page-container .sidebar .sidebar-post .post-inner .post:last-child {
            margin-bottom: 0px;
        }

        .sidebar-page-container .sidebar .sidebar-post .post-inner .post .image-box {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 66px;
            height: 67px;
            background: #0e1221;
            overflow: hidden;
        }

            .sidebar-page-container .sidebar .sidebar-post .post-inner .post .image-box img {
                transition: all 500ms ease;
                opacity: 1;
            }

        .sidebar-page-container .sidebar .sidebar-post .post-inner .post:hover .image-box img {
            opacity: 0.5;
        }

        .sidebar-page-container .sidebar .sidebar-post .post-inner .post h5 {
            position: relative;
            font-size: 18px;
            line-height: 26px;
            font-weight: 600;
        }

            .sidebar-page-container .sidebar .sidebar-post .post-inner .post h5 a {
                display: inline-block;
                color: #0e1221;
            }

                .sidebar-page-container .sidebar .sidebar-post .post-inner .post h5 a:hover {
                    color: #f96b39;
                }

    .sidebar-page-container .sidebar .sidebar-categories .categories-list li {
        position: relative;
        display: block;
        margin-bottom: 18px;
    }

        .sidebar-page-container .sidebar .sidebar-categories .categories-list li:last-child {
            margin-bottom: 0px;
        }

        .sidebar-page-container .sidebar .sidebar-categories .categories-list li a {
            position: relative;
            display: inline-block;
            color: #7a7d8a;
        }

            .sidebar-page-container .sidebar .sidebar-categories .categories-list li a:hover {
                color: #f96b39;
            }

    .sidebar-page-container .sidebar .sidebar-tags .tags-list li {
        position: relative;
        display: inline-block;
    }

        .sidebar-page-container .sidebar .sidebar-tags .tags-list li a {
            display: inline-block;
            color: #7a7d8a;
        }

            .sidebar-page-container .sidebar .sidebar-tags .tags-list li a:hover {
                color: #f96b39;
            }



/*** 

====================================================================
                        Contact-Page
====================================================================

***/


.contact-section {
    position: relative;
}

    .contact-section .content-box .text {
        position: relative;
        margin-bottom: 48px;
    }

    .contact-section .content-box .info-content .single-info-box {
        position: relative;
        display: block;
        border: 1px solid #eff0f4;
        padding: 40px 45px 28px 40px;
        transition: all 500ms ease;
    }

        .contact-section .content-box .info-content .single-info-box:hover {
            border-color: #f96b39;
        }

        .contact-section .content-box .info-content .single-info-box .icon-box {
            position: relative;
            display: inline-block;
            font-size: 45px;
            line-height: 45px;
            color: #f96b39;
            margin-bottom: 10px;
        }

        .contact-section .content-box .info-content .single-info-box .text {
            position: relative;
            display: block;
            font-size: 18px;
            color: #0e1221;
            margin: 0px;
        }

            .contact-section .content-box .info-content .single-info-box .text a {
                display: inline-block;
                color: #0e1221;
            }

                .contact-section .content-box .info-content .single-info-box .text a:hover {
                    color: #f96b39;
                }

    .contact-section .sec-title {
        margin-bottom: 41px;
    }

    .contact-section .form-inner .form-group {
        position: relative;
        margin-bottom: 10px;
    }

        .contact-section .form-inner .form-group:last-child {
            margin-bottom: 0px;
        }

        .contact-section .form-inner .form-group input[type='text'],
        .contact-section .form-inner .form-group input[type='email'],
        .contact-section .form-inner .form-group textarea {
            position: relative;
            width: 100%;
            height: 60px;
            background: #f5f6fa;
            border: 3px solid #f5f6fa;
            font-size: 16px;
            padding: 10px 25px;
            transition: all 500ms ease;
        }

        .contact-section .form-inner .form-group textarea {
            height: 185px;
            resize: none;
            display: block;
        }

            .contact-section .form-inner .form-group input:focus,
            .contact-section .form-inner .form-group textarea:focus {
                border-color: #f96b39;
            }

    .contact-section .form-inner {
        position: relative;
        margin-top: 8px;
    }

.map-section {
    position: relative;
}

    .map-section .google-map {
        position: relative;
    }

    .map-section #contact-google-map {
        position: relative;
        width: 100%;
        height: 525px;
    }


.main-footer .footer-bottom .copyright {
    font-size: 14px;
}



.tz-gallery {
    width: 100%;
    float: left;
}

    /* Override bootstrap column paddings */
    .tz-gallery .row > div {
        padding: 2px;
    }

    .tz-gallery .lightbox img {
        width: 100%;
        border-radius: 0;
        position: relative;
    }

    .tz-gallery .lightbox:before {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -13px;
        margin-left: -13px;
        opacity: 0;
        color: #fff;
        font-size: 26px;
        font-family: 'Glyphicons Halflings';
        content: '+';
        pointer-events: none;
        z-index: 9000;
        transition: 0.4s;
    }


    .tz-gallery .lightbox:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background-color: rgba(46, 132, 206, 0.7);
        content: '';
        transition: 0.4s;
    }

    .tz-gallery .lightbox:hover:after,
    .tz-gallery .lightbox:hover:before {
        opacity: 1;
    }

    .tz-gallery .lightbox img {
        height: 300px;
    }






.why-choose-main-image {
    padding: 10px;
    position: relative;
    z-index: 1;
}


    .why-choose-main-image img {
        height: 410px;
        object-fit: cover;
        border-radius: 50%;
    }

    .why-choose-main-image:before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        background-color: #00468b;
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        border-radius: 50%;
        -webkit-transition: .5s;
        transition: .5s;
        -webkit-animation: border-transform-default 10s linear infinite alternate forwards;
        animation: border-transform-default 10s linear infinite alternate forwards;
        -webkit-box-shadow: 0 0 10px 0 #e4ae6e;
        box-shadow: 0 0 10px 0 #e4ae6e;
    }

    .why-choose-main-image:after {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        background-color: #f5890d;
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        border-radius: 50%;
        -webkit-transition: .5s;
        transition: .5s;
        -webkit-animation: border-transform-default 50s linear infinite alternate forwards;
        animation: border-transform-default 50s linear infinite alternate forwards;
    }






.counter-icon {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: transparent linear-gradient(90deg, #033356 0%, #0f5965 100%) 0% 0% no-repeat padding-box;
    font-size: 24px;
    color: #fff;
    border-radius: 50%;
    -webkit-animation: pulse 3s infinite;
    -o-animation: pulse 3s infinite;
    animation: pulse 3s infinite;
    margin-bottom: 10px;
}


    .counter-icon img {
        height: 38px;
    }



@-webkit-keyframes border-transform-default {
    0%, to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%
    }
}

@keyframes border-transform-default {
    0%, to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%
    }
}




.researches-section .single-item .inner-box .image-box img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: solid 10px #fff;
    margin: auto;
}


.service-style-three {
    border-collapse: collapse;
    caption-side: bottom;
    width: 100%;
}

    .service-style-three th, .service-style-three td {
        border: solid 1px #000;
        padding: 3px;
    }


    .service-style-three td {
        font-size: 14px;
        vertical-align: top;
        line-height: 24px;
    }


.team-section .team-details ul {
    padding-top: 10px;
    width: 100%;
    float: left;
}

    .team-section .team-details ul li {
        float: left;
        width: 30%;
        position: relative;
        padding-left: 20px;
        font-size: 14px;
        line-height: 25px;
    }

        .team-section .team-details ul li:after {
            content: "";
            width: 5px;
            height: 5px;
            background: #000;
            position: absolute;
            left: 0;
            top: 10px;
        }

.testimonial-section .inner-box p {
    text-align: justify;
    font-size: 16px;
    line-height: 33px;
}


.team-section p {
    text-align: justify;
    font-size: 16px;
    line-height: 33px;
}


.layout-pt-lg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    padding: 100px 0;
}

    .layout-pt-lg p {
        line-height: 26px;
        margin-bottom: 15px;
    }

.images-class {
    width: 100%;
    float: left;
    text-align: center;
}

    .images-class img {
        border-radius: 8px;
        margin: auto;
    }

.name-c {
    width: 100%;
    text-align: center;
    padding-top: 10px;
    float: left;
}

    .name-c p {
        text-align: center;
    }

.table td, .table th {
    padding: 5px 10px;
    font-size: 14px;
}

    .table td a {
        color: #000;
    }


.pdf-box {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    line-height: 23px;
    float: left;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
    padding: 30px;
    border: solid 1px #bbcbd8;
    position: relative;
}

    .pdf-box i {
        display: block;
        margin-bottom: 10px;
        font-size: 30px;
        color: red;
    }

    .pdf-box a {
        color: #000;
        font-size: 16px;
        line-height: 19px;
        min-height: 107px;
        display: block;
    }



    .pdf-box:before {
        content: '';
        background-color: #33d687;
        position: absolute;
        width: 3px;
        height: 40%;
        top: 30%;
        left: -3px;
        transition: all 0.3s linear;
    }

    .pdf-box:hover i {
        animation: move 1s linear;
    }


    .pdf-box:hover:before {
        top: 0;
        height: 100%;
        transition: all 0.3s linear;
    }

.table .thead-dark th {
    color: #fff;
    background: #0a7667;
    border-color: #fff;
}



.header-topbar {
    background: transparent linear-gradient(90deg, #0a7667 0%, #0a7667  100%) 0% 0% no-repeat padding-box;
    color: #777;
    padding: 5px 0;
    float: left;
    position: relative;
    z-index: 999;
    width: 100%;
}


    .header-topbar .info-box {
        float: left;
        list-style: none;
    }

        .header-topbar .info-box li {
            float: left;
            margin-right: 20px;
            color: #fff;
            font-size: 16px;
        }

            .header-topbar .info-box li i {
                margin-right: 5px;
                color: #fff;
            }

            .header-topbar .info-box li a {
                color: #fff;
                font-size: 16px;
            }




    .header-topbar .social-links li {
        position: relative;
        display: inline-block;
        margin-right: 6px;
    }

    .header-topbar li:last-child {
        margin-right: 0px;
    }

    .header-topbar .social-links li a {
        position: relative;
        display: inline-block;
        font-size: 13px;
        color: #7a7d8a;
        background: #eff0f4;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
    }

    .header-topbar .social-links a:hover {
        background: #0690cd;
        color: #fff;
    }

    .header-topbar .social-links {
        position: relative;
        margin-top: 0;
    }



.logo-box {
    position: absolute;
    top: 44px;
    background: #fff;
    width: 120px;
    text-align: center;
    padding: 5px 0;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
    height: 130px;
}

    .logo-box img {
        height: 112px;
    }

.fixed-header .main-menu {
    margin-top: 2px;
}


.footer-logo img {
    height: 90px;
}

.header-topbar .social-links li a.twitter {
    background: #0690cd;
    color: #fff;
}

.header-topbar .social-links li a.facebook {
    background: #3b5a9a;
    color: #fff;
}

.header-topbar .social-links li a.youtube {
    background: #e20001;
    color: #fff;
}

.banner-details {
    position: absolute;
    right: 30px;
    top: 34%;
    width: 555px;
    z-index: 99;
    display: none;
}

    .banner-details::after {
        content: "";
        position: absolute;
        height: 107%;
        width: 100%;
        top: -21px;
        left: -30px;
        background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
        z-index: -1;
    }

    .banner-details:before {
        content: "";
        background: url(../images/slider-title.png) no-repeat;
        position: absolute;
        width: 100%;
        height: 100%;
        background-position: -4px 8px;
        top: -35px;
        left: -30px;
    }


    .banner-details .btn-heading {
        background: #ffffff;
        opacity: 1;
        padding: 15px 20px 15px 20px;
        box-shadow: none;
        border: 0px solid RGBA(0,0,0,1);
        border-radius: 0 10px 10px 0;
        width: auto;
        float: left;
        margin-left: -30px;
        margin-top: 40px;
        font-size: 20px;
    }

    .banner-details h1 {
        vertical-align: top;
        font-family: 'Rubik', sans-serif;
        font-size: 34px;
        font-weight: bold;
        color: #fff;
        padding: 30px 0 0 0;
    }

    .banner-details small {
        font-weight: bold;
        font-family: 'Rubik', sans-serif;
        font-size: 23px;
        font-style: italic;
        color: #c4ba9f;
        width: 100%;
        float: left;
    }


    .banner-details .btn-heading img {
        width: auto;
        margin-right: 10px;
    }

    .banner-details .btn-heading strong {
        font-weight: 600;
        font-size: 23px;
    }


.video-gallery {
    position: relative;
    width: 100%;
    padding: 100px 0;
    display: block;
}

    .video-gallery .thumbnail {
        position: relative;
        margin-bottom: 27px;
    }

        .video-gallery .thumbnail:before {
            position: absolute;
            content: '';
            left: 0px;
            top: 0px;
            right: 0px;
            bottom: 0px;
            background-color: rgba(20,29,56,0.6);
        }

        .video-gallery .thumbnail a {
            position: absolute;
            z-index: 99;
            width: 100%;
            height: 100%;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }


.video-play {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
    top: 27%;
}

    .video-play strong {
        display: block;
        color: #fff;
        line-height: 26px;
    }

    .video-play .video-btn {
        position: relative;
        display: inline-block;
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        background: #f96b39;
        font-size: 17px;
        color: #fff;
        border-radius: 50%;
        -webkit-animation: pulse 3s infinite;
        -o-animation: pulse 3s infinite;
        animation: pulse 3s infinite;
    }

.notices-section {
    width: 100%;
    float: left;
    position: relative;
}

    .notices-section .blog-meta {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px 18px;
        background-color: #0a7667;
        position: relative;
        margin: 0px 0 5px 0;
    }

        .notices-section .blog-meta:before {
            content: '';
            height: 100%;
            width: 14%;
            background-color: #f74000;
            position: absolute;
            top: 0;
            left: 0;
            -webkit-clip-path: polygon(calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%, 0 0);
            clip-path: polygon(calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%, 0 0)
        }

    .notices-section strong {
        color: #fff;
        font-size: 26px;
        position: relative;
        z-index: 9;
        padding-left: 40px;
    }

    .notices-section marquee {
        width: 85%;
        overflow: hidden;
        position: relative;
        z-index: 9;
    }

    .notices-section .li {
        float: left;
        width: 85%;
        height: 28px;
    }

    .notices-section marquee a {
        color: #fff;
        display: inline-block;
        margin-right: 20px;
        font-size: 14px;
    }



.upcoming-events-section {
    width: 100%;
    float: left;
    position: relative;
}

    .upcoming-events-section .blog-meta {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px 18px;
        background-color: #f74000;
        position: relative;
        margin: -1px 0 30px 0;
    }

        .upcoming-events-section .blog-meta:before {
            content: '';
            height: 100%;
            width: 16%;
            background-color: #00468b;
            position: absolute;
            top: 0;
            left: 0;
            -webkit-clip-path: polygon(calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%, 0 0);
            clip-path: polygon(calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%, 0 0);
        }

    .upcoming-events-section strong {
        color: #fff;
        font-size: 26px;
        position: relative;
        z-index: 9;
        padding-left: 5px;
        font-family: math;
        text-transform: uppercase;
        line-height: normal;
        top: 2px;
    }

    .upcoming-events-section marquee {
        width: 85%;
        overflow: hidden;
        position: relative;
        z-index: 9;
    }

    .upcoming-events-section .li {
        float: left;
        width: 84%;
        height: 28px;
    }


    .upcoming-events-section marquee a {
        color: #fff;
        display: inline-block;
        margin-right: 20px;
        font-size: 16px;
        line-height: 20px;
        position: relative;
        top: -3px;
    }

        .upcoming-events-section marquee a b {
        }


@charset "UTF-8";

[data-toggle=collapse] i:before {
    content: "";
}

[data-toggle=collapse].collapsed i:before {
    content: "";
}

#accordion .card-header {
    margin-bottom: 8px;
}

#accordion .accordion-title {
    position: relative;
    display: block;
    padding: 8px 0 8px 50px;
    background: #213744;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    text-align: left;
    transition: all 0.4s ease-in-out;
}

    #accordion .accordion-title i {
        position: absolute;
        width: 40px;
        height: 100%;
        left: 0;
        top: 0;
        color: #fff;
        background: radial-gradient(rgba(33, 55, 68, 0.8), #213744);
        text-align: center;
        border-right: 1px solid transparent;
    }

    #accordion .accordion-title:hover {
        padding-left: 60px;
        background: #213744;
        color: #fff;
    }

        #accordion .accordion-title:hover i {
            border-right: 1px solid #fff;
        }

#accordion .accordion-body {
    padding: 10px 0;
}

    #accordion .accordion-body ul {
        list-style: none;
        margin-left: 0;
        padding-left: 0;
    }

    #accordion .accordion-body li {
        padding-left: 1.2rem;
        text-indent: -1.2rem;
    }

        #accordion .accordion-body li:before {
            content: "";
            padding-right: 5px;
            font-family: "Flaticon";
            font-size: 16px;
            font-style: normal;
            color: #213744;
        }

.upcoming-events-section marquee a b {
    padding: 0px 15px;
}

.upcoming-events-section marquee a img {
    width: 60px;
    position: relative;
    top: -3px;
}

.btn-conf {
    position: absolute;
    right: 0px;
    bottom: -42px;
    padding: 0px 15px;
    background: #ccc;
    color: #fff !important;
    cursor: pointer;
    animation: color-change 1s infinite;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 20px 40px 0px rgba(42, 11, 88, 0.1);
}

@keyframes color-change {
    0% {
        background: #f74000;
    }

    50% {
        background: #00468b;
    }

    100% {
        background: #f74000;
    }
}

.blink-t {
    animation: blinker 1s linear infinite;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

.waitingForConnection {
    -webkit-animation-name: blinker;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.5, 0, 1, 1);
    -webkit-animation-duration: 1.7s;
}

.blink_me {
    animation: blinker 1s linear infinite;
    color: red;
    font-size: 13px;
    font-weight: 600;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.p-album-box {
    display: flex;
    justify-content: center;
    padding: 0px 0px 60px;
    transition: background 0.4s ease;
    -webkit-transition: background 0.4s ease;
    -moz-transition: background 0.4s ease;
    -ms-transition: background 0.4s ease;
    -o-transition: background 0.4s ease;
}

    .p-album-box .project-card {
        position: relative;
        overflow: visible;
        max-width: 440px;
        margin: 0 auto;
       /* border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;*/
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

        .p-album-box .project-card .project-img {
            position: relative;
            z-index: 1;
            overflow: hidden;
            /*border-radius: 20px;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            -ms-border-radius: 20px;
            -o-border-radius: 20px;*/
            box-shadow: 0 2px 4px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 8%);
        }

            .p-album-box .project-card .project-img img {
                width: 100%;
                /* height: 450px; */
                object-fit: cover;
                transition: all 0.4s ease-in-out;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -ms-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
               /* border-radius: 20px;
                -webkit-border-radius: 20px;
                -moz-border-radius: 20px;
                -ms-border-radius: 20px;
                -o-border-radius: 20px;*/
            }
    .p-album-box .fancy-box {
        position: absolute;
        z-index: 2;
        bottom: -35px;
        left: 25px;
        right: 25px;
        
        min-height: 70px;
        background-color: #0a7667;
        /* overflow: hidden; */
        border-left: 0px solid #fff;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 4px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 8%);
        /* min-height: 50px; */
        justify-content: center;
        align-content: center;
        align-items: center;
    }
        .p-album-box .fancy-box:hover {
            background: transparent linear-gradient(90deg, #107ac9 0%, #07CCEC 100%) 0% 0% no-repeat padding-box !important;
            transition: all 0.4s ease-in-out;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -ms-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
        }
        .p-album-box .fancy-box a {
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-top: 0px;
            margin-bottom: 0;
            padding: 14px 20px 15px;
            color: #ffffff;
            /* background: #0a4a5f; */
            text-align: center;
            width: 100%;
        }
.p-album-box .project-card:hover .project-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}