
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body::-webkit-scrollbar {
    width: 12px;
}

/* Track */
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #dd0d0d;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: #dd0d0d;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

    body::-webkit-scrollbar-thumb:window-inactive {
        background: #dd0d0d;
    }

body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;
}

.error {
    color: #fe3c47;
    background-color: #FFF;
}

a {
    color: #dd0d0d;
    transition: 0.5s;
}

    a:hover, a:active, a:focus {
        color: #dd0d0d;
        outline: none;
        text-decoration: none;
    }

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

.custom-radio .custom-control-label::before {
    background-color: rgba(127, 137, 161, 0.3);
    color: #fff /* orange */
}

.custom-radio .custom-control-label:hover {
    cursor: pointer;
}
/* This is the checked state */
.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fe3c47; /* green */
    border-radius: 50%;
}

/* active state i.e. displayed while the mouse is being pressed down */
.custom-radio .custom-control-input:active ~ .custom-control-label::before {
    color: #fff;
    background-color: #fe3c47; /* red */
}

/* the shadow; displayed while the element is in focus */
.custom-radio .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 123, 255, 0.25); /* pink, 25% opacity */
}

.topmargin {
    margin-top: 175px;
}

.covid-19 {
    border-radius: 0;
    background: #dd0d0d;
    color: white;
}

    .covid-19:hover {
        background: #111;
        color: white;
        box-shadow: 0 10px 29px 0 #dd0d0d;
        transition: all 0.3s ease-in-out;
    }

.modal {
    padding: 10px !important;
}

    .modal .modal-dialog {
        width: 100%;
        max-width: none;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }

    .modal .modal-header {
        background-color: #343a40;
    }

    .modal .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal .modal-body {
        overflow-y: auto;
        background-color: #dd0d0d;
    }
/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #dd0d0d;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 0;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

    .back-to-top i {
        padding-top: 12px;
        color: #fff;
    }

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #f2f2f2;
        border-top: 6px solid #dd0d0d;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0 20px 0;
    background: #f7f7f7;
    border-bottom: 1px solid #ededed;
    margin-bottom: 40px;
}

    .breadcrumbs h2 {
        font-size: 28px;
        font-weight: 700;
        color: #545454;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 0 5px 0;
        margin: 0;
        font-size: 14px;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #6e6e6e;
                content: "/";
            }

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        font-family: "Poppins", sans-serif;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: #fe3c47;
            bottom: 0;
            left: calc(50% - 25px);
        }

    .section-title p {
        margin-bottom: 0;
    }



/*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
#topbar {
    padding: 10px;
    font-size: 14px;
    background: #f7f7f7;
    transition: all 0.5s;
}

    #topbar p i {
        color: #dd0d0d;
    }

    #topbar p:hover {
        color: #dd0d0d;
        cursor: pointer;
    }

@media (max-width: 991px) {
    #topbar {
        display: none;
    }
}

#topbar .social-links {
    text-align: right;
}

    #topbar .social-links a {
        color: #111;
        padding: 4px 12px;
        display: inline-block;
        line-height: 30px;
    }

        #topbar .social-links a:hover {
            color: #dd0d0d;
        }

        #topbar .social-links a:first-child {
            border-left: 0;
        }


/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    /*height: 120px;*/
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 0px 0;
    position: fixed;
    background-color: white;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

    #header.header-scrolled, #header.header-pages {
        /*height: 70px;*/
        padding: 15px 0;
        background-color: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
    }

        #header.header-scrolled #topbar, #header.header-pages #topbar {
            display: none;
        }

@media (max-width: 991px) {
    #header {
        height: 70px;
        padding: 15px 0;
    }
}

#header .logo h1 {
    font-size: 19px;
    margin: 0;
    padding: 10px 15px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    #header .logo h1 {
        font-size: 16px;
        padding: 8px 0;
    }
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #111;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

.main-pages {
    margin-top: 60px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
    /* Drop Down */
    /* Deep Drop Down */
}

    .main-nav, .main-nav * {
        margin: 0;
        padding: 0;
        background-color: white;
        list-style: none;
    }

        .main-nav > ul > li {
            position: relative;
            white-space: nowrap;
            float: left;
        }

        .main-nav a {
            display: block;
            position: relative;
            color: #111;
            padding: 10px 15px;
            transition: 0.3s;
            font-size: 14px;
            font-family: "Open Sans", sans-serif;
            text-transform: uppercase;
            font-weight: 600;
        }

            .main-nav a:hover, .main-nav .active > a {
                color: #dd0d0d;
                text-decoration: none;
            }

            .main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
                color: #dd0d0d;
                text-decoration: none;
            }

        .main-nav .drop-down ul {
            display: block;
            position: absolute;
            left: 0;
            top: calc(100% - 30px);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            padding: 10px 0;
            background: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
            transition: ease all 0.3s;
        }

        .main-nav .drop-down:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .main-nav .drop-down li {
            min-width: 180px;
            position: relative;
        }

        .main-nav .drop-down ul a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            text-transform: none;
            color: #111;
        }

            .main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
                color: #dd0d0d;
                font-weight: bolder;
                font-size: 16px;
            }

        .main-nav .drop-down > a:after {
            content: "\f107";
            font-family: FontAwesome;
            padding-left: 10px;
        }

        .main-nav .drop-down .drop-down ul {
            top: 0;
            left: calc(100% - 30px);
        }

        .main-nav .drop-down .drop-down:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
        }

        .main-nav .drop-down .drop-down > a {
            padding-right: 35px;
        }

            .main-nav .drop-down .drop-down > a:after {
                content: "\f105";
                position: absolute;
                right: 15px;
            }

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #111;
    transition: 0.4s;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #fff;
        padding: 10px 20px;
        font-weight: 500;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #dd0d0d;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\f078";
        font-family: FontAwesome;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\f077";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        margin: 18px 18px 0 0;
        color: #111;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: #111;
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }

/*--------------------------------------------------------------
  # slider Section
  --------------------------------------------------------------*/
.home {
    width: 100%;
    height: 500px;
}

.home_slider_container {
    width: 100%;
    height: 100%;
}

.home_slider {
    margin-top: 150px;
    width: 100%;
    height: 100%;
}

.home_slider_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.home_slider_content {
    position: absolute;
    top: 41%;
    left: 0;
    width: 100%;
    height: auto;
}

.home_slider_title {
    font-family: 'Roboto Slab', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: #384158;
}

.home_slider_subtitle {
    font-size: 24px;
    color: #76777a;
    margin-top: 9px;
}

.home_slider_form_container {
    width: 832px;
    margin: 0 auto;
    margin-top: 35px;
}

.home_slider_nav {
    position: absolute;
    top: 52.8%;
    width: 50px;
    background: #dd0d0d;
    border-radius: 0;
    text-align: center;
    z-index: 10;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.home_slider_prev {
    left: 35px;
}

.home_slider_next {
    right: 35px;
}

.home_slider_nav i {
    line-height: 50px;
    color: #FFFFFF;
    font-size: 22px;
}

.home_slider_nav:hover {
    background: #111;
}
/*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
/* Sections Header
  --------------------------------*/
.section-header h3 {
    font-size: 36px;
    color: #dd0d0d;
    text-align: center;
    font-weight: 700;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    padding-bottom: 60px;
    color: #dd0d0d;
    width: 50%;
}

@media (max-width: 767px) {
    .section-header p {
        width: 100%;
    }
}

/* Section with background
  --------------------------------*/
.section-bg {
    background: #f5f8fd;
}

/* About Us Section
  --------------------------------*/
#about {
    padding: 80px 0;
}

    #about .about-content {
        padding-top: 40px;
    }

        #about .about-content h2 {
            color: #dd0d0d;
            font-family: "Montserrat", sans-serif;
            font-weight: 700;
        }

        #about .about-content h3 {
            color: #dd0d0d;
            font-weight: 400;
            font-size: 22px;
            font-style: italic;
        }

        #about .about-content .readmore {
            border-radius: 0;
            background: #dd0d0d;
            color: white;
        }

            #about .about-content .readmore:hover {
                background: #111;
                color: white;
                box-shadow: 0 10px 29px 0 #dd0d0d;
                transition: all 0.3s ease-in-out;
            }

        #about .about-content ul {
            list-style: none;
            padding: 0;
        }

            #about .about-content ul li {
                padding-bottom: 10px;
            }

                #about .about-content ul li i {
                    font-size: 20px;
                    padding-right: 4px;
                    color: #dd0d0d;
                }

    #about .about-img {
        position: relative;
        margin: 30px 30px 30px 30px;
    }

        #about .about-img img {
            width: 100%;
            border: 8px solid #fff;
            transition: .5s;
        }

            #about .about-img img:hover {
                width: 100%;
                transform: scale(1.03);
            }

        #about .about-img::before {
            position: absolute;
            left: -31px;
            top: -30px;
            width: 90%;
            height: 92%;
            z-index: -1;
            content: '';
            background-color: #ebf1fa;
            transition: .5s;
        }

        #about .about-img::after {
            position: absolute;
            right: -31px;
            bottom: -30px;
            width: 90%;
            height: 92%;
            z-index: -1;
            content: '';
            background-color: #ebf1fa;
            transition: .5s;
        }

/* Services Section
  --------------------------------*/
#services {
    padding: 60px 0 40px 0;
}

    #services .box {
        padding: 30px;
        position: relative;
        overflow: hidden;
        border-radius: 0;
        margin: 0 10px 40px 10px;
        background: #fff;
        height: 330px;
        transition: all 0.3s ease-in-out;
        text-align: center;
    }

        #services .box:hover {
            box-shadow: 0 10px 29px 0 rgba(127, 137, 161, 0.3);
        }

    #services .icon {
        margin: 0 auto 15px auto;
        padding-top: 12px;
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        width: 60px;
        height: 60px;
    }

        #services .icon i {
            font-size: 36px;
            line-height: 1;
        }

    #services .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        #services .title a {
            color: #111;
        }

    #services .box:hover .title a {
        color: #dd0d0d;
    }

    #services .description {
        font-size: 14px;
        line-height: 28px;
        margin-bottom: 0;
        text-align: left;
    }

    #services .viewmore {
        border-radius: 0;
        background: #dd0d0d;
        color: white;
    }

        #services .viewmore:hover {
            background: #111;
            color: white;
            box-shadow: 0 10px 29px 0 #dd0d0d;
            transition: all 0.3s ease-in-out;
        }

/* Why Us Section
  --------------------------------*/
#why-us {
    padding: 60px 0;
}

@media (max-width: 991px) {
    #why-us .why-us-content {
        padding-top: 30px;
    }
}

#why-us .why-us-content .features {
    margin: 0 0 15px 0;
    padding: 0;
    transition: 0.3s ease-in-out;
}

    #why-us .why-us-content .features i {
        font-size: 36px;
        float: left;
    }

    #why-us .why-us-content .features h4 {
        font-size: 24px;
        font-weight: 600;
        margin-left: 56px;
        color: #111;
        margin-bottom: 5px;
    }

    #why-us .why-us-content .features p {
        font-size: 16px;
        margin-left: 56px;
        color: #111;
    }

#why-us .counters {
    padding-top: 40px;
}

    #why-us .counters span {
        font-family: "Montserrat", sans-serif;
        font-weight: bold;
        font-size: 48px;
        display: block;
        color: #111;
    }

    #why-us .counters p {
        padding: 0;
        margin: 0 0 20px 0;
        font-family: "Montserrat", sans-serif;
        font-size: 14px;
        color: #111;
    }

/* Call To Action Section
  --------------------------------*/
#call-to-action {
    background: #111;
    background-size: cover;
    padding: 40px 0;
}

    #call-to-action .cta-title {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    #call-to-action .cta-text {
        color: #fff;
    }

@media (min-width: 991px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

#call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    border: 3px solid #fff;
    color: #fff;
}

    #call-to-action .cta-btn:hover {
        background: #dd0d0d;
        border: 3px solid #dd0d0d;
    }

/* Features Section
  --------------------------------*/
#features {
    padding: 80px 0;
}

    #features h4 {
        font-weight: 600;
        font-size: 24px;
    }

/* Portfolio Section
  --------------------------------*/
#portfolio {
    padding: 60px 0;
}

    #portfolio #portfolio-flters {
        padding: 0;
        margin: 5px 0 35px 0;
        list-style: none;
        text-align: center;
    }

        #portfolio #portfolio-flters li {
            cursor: pointer;
            margin: 15px 15px 15px 0;
            display: inline-block;
            padding: 6px 10px;
            font-size: 16px;
            line-height: 20px;
            color: #111;
            margin-bottom: 5px;
            transition: all 0.3s ease-in-out;
        }

            #portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
                color: #dd0d0d;
            }

            #portfolio #portfolio-flters li:last-child {
                margin-right: 0;
            }

    #portfolio .portfolio-item {
        position: relative;
        overflow: hidden;
        margin-bottom: 30px;
    }

        #portfolio .portfolio-item .portfolio-wrap {
            overflow: hidden;
            position: relative;
            margin: 0;
        }

            #portfolio .portfolio-item .portfolio-wrap:hover img {
                opacity: 0.4;
                transition: 0.3s;
            }

            #portfolio .portfolio-item .portfolio-wrap .portfolio-info {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                text-align: center;
                opacity: 0;
                transition: 0.2s linear;
            }

                #portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
                    font-size: 22px;
                    line-height: 1px;
                    font-weight: 700;
                    margin-bottom: 14px;
                    padding-bottom: 0;
                }

                    #portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
                        color: #fff;
                    }

                        #portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
                            color: #dd0d0d;
                        }

                #portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
                    padding: 0;
                    margin: 0;
                    color: #f8fcff;
                    font-weight: 500;
                    font-size: 14px;
                    text-transform: uppercase;
                }

                #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
                    display: inline-block;
                    line-height: 1;
                    text-align: center;
                    width: 36px;
                    height: 36px;
                    background: #dd0d0d;
                    border-radius: 50%;
                    margin: 10px 4px 0 4px;
                }

                    #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
                        padding-top: 6px;
                        font-size: 22px;
                        color: #fff;
                    }

                    #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
                        background: #dd0d0d;
                    }

                        #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
                            color: #fff;
                        }

            #portfolio .portfolio-item .portfolio-wrap:hover {
                background: #111;
            }

                #portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
                    opacity: 1;
                }

/* Testimonials Section
  --------------------------------*/
#testimonials {
    padding: 60px 0;
}

    #testimonials .section-header {
        margin-bottom: 40px;
    }

@media (max-width: 767px) {
    #testimonials .testimonial-item {
        text-align: center;
    }
}

#testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    float: left;
}

@media (max-width: 767px) {
    #testimonials .testimonial-item .testimonial-img {
        float: none;
        margin: auto;
    }
}

#testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
    margin-left: 140px;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
    margin-left: 140px;
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
    }
}

@media (max-width: 767px) {
    #testimonials .testimonial-item h3, #testimonials .testimonial-item h4, #testimonials .testimonial-item p {
        margin-left: 0;
    }
}

#testimonials .owl-nav, #testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background-color: #ddd;
}

    #testimonials .owl-dot.active {
        background-color: #dd0d0d;
    }

/* Team Section
  --------------------------------*/
#team {
    padding: 60px 0;
}

    #team .member {
        text-align: center;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
    }

        #team .member .member-info {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            transition: 0.2s;
            padding: 15px 0;
            background: #111;
        }

        #team .member .member-info-content {
            transition: margin 0.2s;
            height: 40px;
            transition: height 0.4s;
        }

        #team .member:hover .member-info {
            transition: 0.4s;
        }

        #team .member:hover .member-info-content {
            height: 80px;
        }

        #team .member h4 {
            font-weight: 700;
            margin-bottom: 2px;
            font-size: 18px;
            color: #fff;
        }

        #team .member span {
            font-style: italic;
            display: block;
            font-size: 13px;
            color: #fff;
        }

        #team .member .social {
            margin-top: 15px;
        }

            #team .member .social a {
                transition: none;
                color: #fff;
            }

                #team .member .social a:hover {
                    color: #dd0d0d;
                }

            #team .member .social i {
                font-size: 18px;
                margin: 0 2px;
            }

/* Clients Section
  --------------------------------*/
#clients {
    padding: 60px 0;
}

    #clients img {
        max-width: 80%;
        opacity: 0.5;
        transition: 0.3s;
        padding: 15px 0;
    }

        #clients img:hover {
            opacity: 1;
        }

    #clients .owl-nav, #clients .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    #clients .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 0;
        background-color: #ddd;
    }

        #clients .owl-dot.active {
            background-color: #dd0d0d;
        }

/* Pricing Section
  --------------------------------*/
#pricing {
    padding: 45px 0 80px 0px;
}

@media (max-width: 991px) {
    #pricing {
        padding-bottom: 30px;
    }
}

#pricing .card {
    border: 0;
    border-radius: 0px;
    box-shadow: 0 3px 0px 0 #dd0d0d;
    transition: all .3s ease-in-out;
    padding: 0;
    position: relative;
}

@media (max-width: 991px) {
    #pricing .card {
        margin-bottom: 50px;
    }
}

#pricing .card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: #dd0d0d;
    transition: 0.5s;
}

#pricing .card:hover {
    /*transform: scale(1.05);*/
    box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.08);
    /*box-shadow: 0 10px 29px 0 #dd0d0d;*/
}

    #pricing .card:hover:after {
        width: 100%;
    }

#pricing .card .card-header {
    background-color: white;
    border-bottom: 0px;
    -moz-text-align-last: center;
    text-align-last: center;
}

#pricing .card .card-title {
    margin-bottom: 16px;
    color: #111;
}

#pricing .card .card-block {
    padding-top: 0;
    text-align: center;
    height: 320px;
}

#pricing .card .list-group-item {
    border: 0px;
    padding: 6px;
    color: #111;
    font-weight: 300;
}

#pricing .card h3 {
    font-size: 64px;
    margin-bottom: 0px;
    color: #111;
}

    #pricing .card h3 .currency {
        font-size: 30px;
        position: relative;
        font-weight: 400;
        top: -30px;
        letter-spacing: 0px;
    }

    #pricing .card h3 .period {
        font-size: 16px;
        color: #111;
        letter-spacing: 0px;
    }

#pricing .card .list-group {
    margin-bottom: 15px;
}

#pricing .card .btn {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    border-radius: 0;
    padding: 10px 24px;
    letter-spacing: 1px;
    display: inline-block;
    background: #dd0d0d;
    color: #fff;
}

    #pricing .card .btn:hover {
        background: #111;
    }

/* Frequently Asked Questions Section
  --------------------------------*/
#faq {
    padding: 60px 0;
    overflow: hidden;
}

    #faq #faq-list {
        padding: 0;
        list-style: none;
    }

        #faq #faq-list li {
            border-bottom: 1px solid #ebebeb;
        }

        #faq #faq-list a {
            padding: 22px 0;
            display: block;
            position: relative;
            font-family: "Montserrat", sans-serif;
            font-size: 20px;
            line-height: 1;
            font-weight: 400;
            padding-right: 20px;
        }

        #faq #faq-list i {
            font-size: 24px;
            position: absolute;
            right: 0;
            top: 20px;
        }

        #faq #faq-list p {
            margin-bottom: 20px;
        }

@media (max-width: 768px) {
    #faq #faq-list a {
        font-size: 18px;
    }

    #faq #faq-list i {
        top: 13px;
    }
}

#faq #faq-list a.collapse {
    color: #dd0d0d;
}

#faq #faq-list a.collapsed {
    color: #000;
}

    #faq #faq-list a.collapsed i::before {
        content: "\f2c7" !important;
    }
/*********************************
    Sample Section
*********************************/

.heading-section h2 {
    font-size: 30px;
    font-weight: 700;
}

.heading-section:hover {
    box-shadow: 0px 15px 34px -10px rgba(0, 0, 0, 0.09);
}

@media (max-width: 767.98px) {
    .heading-section h2 {
        font-size: 28px;
    }
}

.heading-section.heading-section-white .subheading {
    color: rgba(255, 255, 255, 0.5);
}

.heading-section.heading-section-white h2 {
    font-size: 40px;
    color: #fff;
}

.heading-section.heading-section-white p {
    color: rgba(255, 255, 255, 0.9);
}

.services-wrap {
    position: relative;
    z-index: 0;
}

    .services-wrap:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        content: '';
        height: 140px;
        background: #dd0d0d;
    }

@media (max-width: 767.98px) {
    .services-wrap:after {
        height: 100%;
    }
}

.services {
    width: 100%;
    background: #fff;
    padding: 20px;
    position: relative;
    border-radius: 0;
    -webkit-box-shadow: 0px 15px 34px -10px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 15px 34px -10px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 15px 34px -10px rgba(0, 0, 0, 0.09);
}

@media (max-width: 991.98px) {
    .services {
        margin-bottom: 30px;
    }
}

.services .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

    .services .icon span {
        color: #dd0d0d;
        font-size: 30px;
    }

.services .text h3 {
    font-size: 18px;
    font-weight: 600;
}

.services .btn-custom {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: #dd0d0d;
    margin: 0 auto;
    opacity: 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .services .btn-custom span {
        color: #fff;
    }

.services:hover .btn-custom {
    opacity: 1;
    bottom: -25px;
}

.practice-area {
    display: block;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

@media (max-width: 767.98px) {
    .practice-area {
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}
/*..............................................................
    #DonateBlood
................................................................*/
.Appointment {
    padding-bottom: 30px;
}

    .Appointment .entry {
        padding: 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .Appointment .entry .entry-img {
            max-height: 600px;
            margin: -30px -30px 20px -30px;
            overflow: hidden;
        }

        .Appointment .entry .entry-title {
            font-size: 28px;
            font-weight: bold;
            padding: 0;
            margin: 0 0 20px 0;
        }

            .Appointment .entry .entry-title a {
                color: #545454;
                transition: 0.3s;
            }

                .Appointment .entry .entry-title a:hover {
                    color: #fe3c47;
                }


        .Appointment .entry .entry-content p {
            line-height: 24px;
        }

        .Appointment .entry .entry-content .read-more {
            -moz-text-align-last: right;
            text-align-last: right;
        }

            .Appointment .entry .entry-content .read-more a {
                display: inline-block;
                background: #fe3c47;
                color: #fff;
                padding: 6px 20px 8px 20px;
                transition: 0.3s;
                font-size: 14px;
                border-radius: 0;
            }

                .Appointment .entry .entry-content .read-more a:hover {
                    background: #fe3c47;
                }

        .Appointment .entry .entry-content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

.appointment-wrap {
    width: 100%;
}

    .appointment-wrap h3 {
        font-size: 20px;
        margin-bottom: 40px;
        color: #fe3c47;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: bolder;
    }

.appointment-form {
    width: 100%;
}

    .appointment-form .form-group {
        position: relative;
        width: 100%;
        display: block;
    }

        .appointment-form .form-group .icon {
            position: absolute;
            top: 50% !important;
            right: 15px;
            font-size: 16px;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }

            .appointment-form .form-group .icon span {
                color: rgba(0, 0, 0, 0.2) !important;
            }

        .appointment-form .form-group .select-wrap, .appointment-form .form-group .input-wrap {
            position: relative;
        }

            .appointment-form .form-group .select-wrap select, .appointment-form .form-group .input-wrap select {
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
            }

        .appointment-form .form-group .btn {
            width: 100%;
            display: block !important;
        }

            .appointment-form .form-group .btn:hover {
                background-color: #fe3c47;
            }

    .appointment-form .form-control {
        height: 45px !important;
        padding-left: 15px;
        padding-right: 15px;
        background: #fff !important;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(127, 137, 161, 0.3);
        color: rgba(0, 0, 0, 0.5) !important;
        font-size: 16px;
        border-radius: 0;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

        .appointment-form .form-control::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            color: rgba(0, 0, 0, 0.5);
        }

        .appointment-form .form-control::-moz-placeholder {
            /* Firefox 19+ */
            color: rgba(0, 0, 0, 0.5);
        }

        .appointment-form .form-control:-ms-input-placeholder {
            /* IE 10+ */
            color: rgba(0, 0, 0, 0.5);
        }

        .appointment-form .form-control:-moz-placeholder {
            /* Firefox 18- */
            color: rgba(0, 0, 0, 0.5);
        }

        .appointment-form .form-control:focus, .appointment-form .form-control:active {
            border-color: #dd0d0d;
        }

    .appointment-form textarea.form-control {
        height: inherit !important;
    }




/*********************************
13. Newsletter
*********************************/

.newsletter {
    width: 100%;
    background-color: lightgray;
    padding: 10px;
}

.newsletter_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
}

.newsletter_container {
    width: 100%;
    height: 120px;
}

.newsletter_title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #dd0d0d;
}

.newsletter_subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    margin-top: 6px;
}

.newsletter_form_container {
    width: 100%;
    padding: 20px;
}

.newsletter_form {
    display: block;
    position: relative;
    width: 100%;
}

.newsletter_input {
    width: calc(100% - 136px);
    height: 40px;
    background: rgba(255,255,255,0.4);
    border: none;
    outline: none;
    padding-left: 20px;
    color: #111;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

    .newsletter_input::-webkit-input-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #111 !important;
    }

    .newsletter_input:-moz-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #111 !important;
    }

    .newsletter_input::-moz-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #111 !important;
    }

    .newsletter_input:-ms-input-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #111 !important;
    }

    .newsletter_input::input-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #111 !important;
    }

.newsletter_button {
    width: 136px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 0;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    color: #dd0d0d;
    font-weight: 500;
    letter-spacing: 0.1em;
}
/************Contact US*********************/

.counter_form_content {
    display: block;
    position: relative;
    padding: 20px;
    width: 100%;
    height: 550px;
}

.counter_form_title {
    font-size: 24px;
    font-weight: 700;
    color: #384158;
    text-transform: uppercase;
    line-height: 0.75;
    margin-bottom: 30px;
}

.counter_input {
    width: 100%;
    height: 46px;
    border: solid 1px rgba(0, 0, 0, 0.09);
    background: rgba(0, 0, 0, 0.09);
    border-radius: 0;
    padding-left: 20px;
    outline: none;
    color: #384158;
    font-size: 14px;
}

    .counter_input:not(:last-child) {
        margin-bottom: 10px;
    }

.counter_text_input {
    height: 90px;
    padding-top: 10px;
}


    .counter_input::-webkit-input-placeholder,
    .counter_text_input::-webkit-input-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #b5b8be !important;
    }

    .counter_input:-moz-placeholder,
    .counter_text_input:-moz-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #b5b8be !important;
    }

    .counter_input::-moz-placeholder,
    .counter_text_input::-moz-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #b5b8be !important;
    }

    .counter_input:-ms-input-placeholder,
    .counter_text_input:-ms-input-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #b5b8be !important;
    }

    .counter_input::input-placeholder,
    .counter_text_input::input-placeholder {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #b5b8be !important;
    }

.counter_form_button {
    width: 100%;
    height: 46px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    outline: none;
    background: #dd0d0d;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0px 5px 40px rgba(29,34,47,0.15);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

    .counter_form_button:hover {
        box-shadow: 0px 5px 40px rgba(29,34,47,0.45);
    }

/*--------------------------------------------------------*/
.contact .info-wrap {
    box-shadow: 0px 2px 15px #dadada;
    padding: 30px;
}

.contact .info {
    background: #fff;
}

    .contact .info i {
        font-size: 20px;
        color: #dd0d0d;
        float: left;
        width: 44px;
        height: 44px;
        background: #ffeee8;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #2b2320;
    }

    .contact .info p {
        padding: 0 0 0 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: #65534c;
    }

    .contact .info:hover i {
        background: #dd0d0d;
        color: #fff;
    }

/*********************************
14. Footer
*********************************/

.footer {
    display: block;
    position: relative;
    width: 100%;
    background: #111;
    padding-top: 60px;
}

.footer_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer_content {
    padding-bottom: 53px;
}

.footer_logo_text {
    font-family: 'Roboto Slab', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 0.75;
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

    .footer_logo_text span {
        color: #14bdee;
    }

.footer_title {
    font-size: 18px;
    padding-left: 40px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 0.75;
}

.footer_logo_container {
    margin-top: -14px;
}

.footer_about_text {
    margin-top: 31px;
}

    .footer_about_text p {
        color: #FFFFFF;
    }

.footer_social {
    margin-top: 23px;
}

    .footer_social ul li {
        display: inline-block;
        width: 45px;
        height: 45px;
        background: #4b505d;
        border-radius: 50%;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

        .footer_social ul li:not(:last-child) {
            margin-right: 6px;
        }

        .footer_social ul li a {
            display: block;
            position: relative;
            text-align: center;
        }

            .footer_social ul li a i {
                color: #FFFFFF;
                line-height: 45px;
            }

        .footer_social ul li:hover {
            background: #dd0d0d;
        }

.footer_contact {
}

.footer_contact_info {
    margin-top: 33px;
}

    .footer_contact_info ul {
        list-style: none;
    }

        .footer_contact_info ul li {
            font-size: 14px;
            font-weight: 400;
            color: #b5b8be;
        }

            .footer_contact_info ul li:not(:last-child) {
                margin-bottom: 15px;
            }

.footer_links {
}

.footer_links_container ul {
    columns: 2;
    list-style: none;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.footer_links_container {
    margin-top: 33px;
}

    .footer_links_container ul li a {
        font-size: 14px;
        color: #b5b8be;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

    .footer_links_container ul li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer_links_container ul li a:hover {
        color: #dd0d0d;
        border-bottom: 1px solid #dd0d0d;
    }

.footer_mobile {
    display: inline-block;
    float: left;
}

.footer_mobile_content {
    padding-top: 35px;
}

.footer_image:not(:last-child) {
    margin-bottom: 10px;
}

.copyright {
    height: 54px;
    border-top: solid 1px #353a49;
    text-align: center;
}

.cr_list li {
    display: inline-block;
}

.copyright div {
    font-size: 14px;
    color: #b5b8be;
}

.cr_text a {
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

    .cr_text a:hover {
        color: #dd0d0d;
    }

.cr_list li:not(:last-child) {
    margin-right: 50px;
}

.cr_list li a {
    font-size: 14px;
    color: #b5b8be;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

    .cr_list li a:hover {
        color: #dd0d0d;
    }
/*******EventsSection********************************/
.image-event {
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    display: block;
    width: 100%;
    height: 400px;
}

.blog-entry {
    overflow: hidden;
    transition: all 0.5s;
    border-radius: 5px;
    box-shadow: 5px 5px 5px 5px #aaaaaa;
}

    .blog-entry .line-clamp {
        /* display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow-y: hidden;*/
    }

#blog-entry:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 29px 0 #dd0d0d;
}

.blog-entry:hover {
    /*transform: scale(1.05);*/
    /*box-shadow: 0 10px 29px 0 #dd0d0d;*/
}

.blog-entry .descriptionheight {
    height: 125px;
}

@media (min-width: 768px) {
    .blog-entry {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .blog-entry {
        margin-bottom: 30px;
    }
}

.blog-entry .text {
    position: relative;
    background: rgba(0, 0, 0, 0.08);
    width: 100%;
    margin: 0 auto;
}

    .blog-entry .text .heading {
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .blog-entry .text .topper {
        margin-top: -61px;
        position: absolute;
        top: 0;
        left: 20px;
        background: #dd0d0d;
    }

        .blog-entry .text .topper:after {
            position: absolute;
            bottom: -10px;
            left: 40px;
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 10px 10px 0 10px;
            border-color: #dd0d0d transparent transparent transparent;
        }

    .blog-entry .text .heading {
        font-size: 18px;
        margin-bottom: 16px;
        font-weight: 500;
    }

        .blog-entry .text .heading a {
            color: #000000;
        }

            .blog-entry .text .heading a:hover, .blog-entry .text .heading a:focus, .blog-entry .text .heading a:active {
                color: #dd0d0d;
            }

.blog-entry .meta > div {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 0;
    font-size: 14px;
}

    .blog-entry .meta > div a {
        color: gray;
        font-size: 15px;
    }

        .blog-entry .meta > div a:hover {
            color: #dd0d0d;
        }

.blog-entry .one {
    width: 70px;
}

.blog-entry .two {
    width: calc(100% - 70px);
}

.blog-entry span.day {
    font-size: 44px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.blog-entry span.yr, .blog-entry span.mos {
    font-size: 13px;
    line-height: 1.6;
    display: block;
    color: rgba(255, 255, 255, 0.7);
}

.pagination ul {
    padding: 0;
    margin: 0;
}

    .pagination ul li {
        display: inline-block;
        margin-bottom: 4px;
        font-weight: 400;
    }

        .pagination ul li a, .pagination ul li span {
            color: gray;
            text-align: center;
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            border-radius: 50%;
            border: 1px solid #e6e6e6;
        }

        .pagination ul li.active a, .pagination ul li.active span {
            background: #dd0d0d;
            color: #fff;
            border: 1px solid transparent;
        }

/* News Listing
================================================== */
img.pull-left {
    margin-right: 20px;
    margin-bottom: 20px;
}

img.pull-right {
    margin-left: 20px;
    margin-bottom: 20px;
}

.unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
}


/*===============sidebar=================================== */

.sidebar .widget-title {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin: 0 0 30px;
    padding-left: 15px;
    text-transform: uppercase;
    border-left: 3px solid #ffb600;
}



/* Widget common */

.sidebar .widget {
    margin-bottom: 40px;
}

.sidebar-left .widget {
    margin-right: 20px;
}

.sidebar-right .widget {
    margin-left: 20px;
}

.sidebar .widget.box {
    padding: 25px;
}

.widget.box.solid {
    background: #f2f2f2;
}

.widget.box.red {
    background: #ec483b;
    color: #fff;
}

    .widget.box.red .widget-title {
        color: #fff;
    }

.widget ul li {
    line-height: 30px;
}

.sidebar .widget ul li a {
    color: #303030;
}

    .sidebar .widget ul li a:hover {
        color: #dd0d0d;
    }

.sidebar .widget ul li i {
    margin-right: 5px;
}

.sidebar .btn {
    font-weight: 700;
    font-size: 12px;
    margin-top: 15px;
    padding: 10px 25px;
}


/* Sidebar nav */

.sidebar ul.nav-tabs {
    border: 0;
}

    .sidebar ul.nav-tabs li a {
        color: #303030;
        border-radius: 0;
        padding: 15px 0;
        padding-left: 0;
        font-weight: 400;
        border-bottom: 1px solid #ddd;
        -webkit-transition: 400ms;
        -moz-transition: 400ms;
        -o-transition: 400ms;
        transition: 400ms;
    }

    .sidebar ul.nav-tabs li.active a,
    .sidebar ul.nav-tabs li:hover a {
        color: #dd0d0d;
    }

    .sidebar ul.nav-tabs li {
        color: #303030;
        line-height: normal;
    }

        .sidebar ul.nav-tabs li:last-child a {
            border-bottom: 0;
        }


/* Service menu */

.sidebar ul.service-menu li a {
    background-color: #f4f4f4;
    padding: 15px 20px;
    border: 0;
    margin-bottom: 8px;
    position: relative;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms;
}

.sidebar ul.service-menu li.active a,
.sidebar ul.service-menu li:hover a {
    background: #dd0d0d;
    color: #fff;
    cursor: pointer;
}


/* Recent News */
#main-container .newscard {
    padding-left: 1px;
    padding-right: 1px;
    padding-top: 5px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px 5px #aaaaaa;
}

.widget.recent-posts {
    margin-bottom: 35px;
}

    .widget.recent-posts .widget-title {
        margin-bottom: 35px;
    }

    .widget.recent-posts ul li {
        border-bottom: 1px solid #dadada;
        /*padding-bottom: 5px;
    margin-bottom: 5px;*/
    }

        .widget.recent-posts ul li:last-child {
            border: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }

    .widget.recent-posts .posts-thumb img {
        margin-right: 15px;
        width: 90px;
        height: 70px;
    }

    .widget.recent-posts .post-info .entry-title {
        font-size: 13px;
        font-weight: 600;
        line-height: 20px;
        margin: 0;
    }

    .widget.recent-posts .entry-title a {
        color: #303030;
    }

        .widget.recent-posts .entry-title a:hover {
            color: #dd0d0d;
        }

    .widget.recent-posts .post-date {
        font-weight: 400;
        color: #999;
        text-transform: capitalize;
    }


/* Widget tags */

.widget-tags ul > li {
    float: left;
    margin: 3px;
}

.sidebar .widget-tags ul > li a {
    border: 1px solid #dadada;
    color: #303030;
    display: block;
    font-size: 14px;
    padding: 3px 15px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    .sidebar .widget-tags ul > li a:hover {
        background: #dd0d0d;
        color: #fff;
        border: 1px solid transparent;
    }
/*department section*/
.blog-section .section-title h3 {
    position: relative;
    font-size: 36px;
}

.blog-section .blog-side {
    margin-right: -30px;
}

.blog-section .item-holder {
    position: relative;
    margin-top: 60px;
}

.blog-section .image-box {
    position: relative;
    display: table-cell;
}

.blog-section .content-text {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding-left: 30px;
}

    .blog-section .content-text h6 {
        font-size: 18px;
        font-weight: 700;
        color: #222222;
        padding-bottom: 4px;
        letter-spacing: .4px;
        margin-top: -5px;
        text-transform: uppercase;
    }

    .blog-section .content-text span {
        font-size: 13px;
        font-weight: 400;
        color: #777777;
        line-height: 24px;
    }

    .blog-section .content-text p {
        font-size: 15px;
        font-weight: 400;
        color: #777777;
        line-height: 24px;
        padding: 10px 0px 15px 0px;
        letter-spacing: .4px;
    }

.blog-section.style-two .section-title h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 22px;
}

    .blog-section.style-two .section-title h3:before {
        position: absolute;
        content: '';
        background: #ececec;
        bottom: 0px;
        left: 50%;
        margin-left: -115px;
        height: 1px;
        width: 230px;
    }

    .blog-section.style-two .section-title h3:after {
        position: absolute;
        content: '';
        background: #48bdc5;
        bottom: 0px;
        left: 50%;
        margin-left: -25px;
        height: 1px;
        width: 50px;
    }

.blog-section.style-two .section-title p {
    font-size: 15px;
    line-height: 26px;
    color: #777777;
    font-weight: 400;
    padding-bottom: 40px;
}

.blog-section.style-two .item-holder {
    margin-top: 0px;
}

.blog-section.style-two .content-text {
    padding: 55px 37px;
    border: 1px solid #ececec;
}

.blog-section.style-four .content-text h5 {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    line-height: 26px;
    padding-bottom: 4px;
    letter-spacing: .4px;
    margin-top: -5px;
    text-transform: uppercase;
}

.blog-section.style-four .left-side {
    margin-right: 45px;
}

.blog-section.style-four .item-holder {
    margin-top: 50px;
}

    .blog-section.style-four .item-holder:first-child {
        margin-top: 0px;
    }

.blog-section.style-four .image-box {
    display: block;
}

    .blog-section.style-four .image-box img {
        border-radius: 10px;
        width: 100%;
        box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
    }

.blog-section.style-four .content-text {
    display: block;
    padding-top: 40px;
    padding-left: 10px;
}

.blog-section.style-four .right-side {
    margin-left: -15px;
    margin-top: 10px;
}

.blog-section.style-four .link-btn a {
    border-radius: 4px;
}

.btn-style-one {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 27px;
    padding: 8px 36px;
    background: #dd0d0d;
    border: 1px solid #dd0d0d;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Source Sans Pro", sans-serif;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .btn-style-one:hover {
        color: #dd0d0d;
        border: 1px solid #dd0d0d;
        background: #ffffff;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

.affiliation-main p {
    margin-bottom: 5px;
}

.affiliation-main img {
    object-fit: contain;
    aspect-ratio: 3/2;
}


#header .col-xl-2.col-lg-2.col-md-2.col-sm-4.col-4.p-0 {
    align-self: center;
}
#header .col-xl-3.col-lg-3.col-md-3.col-sm-3.col-3.p-0 {
    align-self: center;
}
.maltex a,.teltex a {
    color: #000 !important;
}
.maltex a:hover {
    color: #dd0d0d !important;
}
.teltex a:hover {
    color: #dd0d0d !important;
}
.goog-te-gadget-simple {
    border: none !important; 
}
.container.logcontainer {
    padding: 0px;
}
#topbar .row {
    padding: 0px 15px;
}
.dbox a {
color:#000;
}
.dbox a:hover {
    color: #dd0d0d !important;
}
.services.dbo .btn-custom span {
    color: #fff;
    margin-top: 15px;
}
.card-block {
    padding: 20px !important;
}
/*#pricing h3 {
    margin-bottom: 40px;
}   
*/
#pricing h3 {
    margin-bottom: 40px;
}
#why-us h3 {
    margin-bottom: 30px;
}
#why-us .container {
    margin-bottom: 30px;
}
#why-us .container p{
    margin-bottom: 0px;
}
.bank-pding {
    padding-bottom: 30px !important;
}
.home_slider_nav {
  top: 5.8%;
}


/*new media query*/
@media (min-width:1920px) { /* For 1920 */
    .home {
        width: 100%;
        height: 700px;
    }
}
@media (min-width:2150px) { /* For 1920 */
    .home {
        width: 100%;
        height: 800px;
    }
}
@media (min-width:2500px) { /* For 1920 */
    .home {
        height: 810px;
    }
}


@media (max-width:1919.98px) { /* For 1670 */
	.home {
  		height: 580px;
	}
}

@media (max-width:1679.98px) { /* For 1560 */
}

@media (max-width:1559.98px) { /* For 1440 */
    .home {
        height: 500px;
    }
}

@media (max-width: 1439.98px) { /* For 1366 */
	.home {
    	height: 500px;
	}
}

@media (max-width: 1365.98px) { /* For 1280 */
    .home {
        height: 460px;
    }
}

@media (max-width: 1279.98px) { /* For 1152 */
    .home {
        height: 410px;
    }
}

@media (max-width: 1151.98px) { /* For 1024 */
    .home {
        height: 350px;
    }
    .home_slider_nav.home_slider_prev, .home_slider_nav.home_slider_next {
        display: none;
    }
}

@media (max-width: 1023.98px) { /* For 992 */

}

@media (max-width: 991.98px) { /* For 768 */
    .home {
        height: 250px;
    }
}

@media (max-width: 767.98px) { /* For 576 */
    .home_slider {
        margin-top:0px;
    }
    #header .logo h1 {
        padding: 8px 15px;
    }
    #services .box {
        margin: 0 10px 0px 10px;
        height: auto;
    }
    #services .description {
        text-align: center;
    }
    #about .about-content h3 {
        font-size: 18px;
    }
    #about {
        padding: 80px 0 0px;
    }
    .footer ul {
        padding-left: 0px;
    }
    .footer_title {
        padding-left: 0px;
    }
    .btn-common.mt-5.ml-5 {
        margin: 0px !important;
    }
    .section-header h3 {
        font-size: 25px;
    }
    .topmargin {
        margin-top: 80px;
    }
    .blog-section.style-four .content-text {
        padding-top: 0px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .phoservices img {
        width: 100%;
    }
	.owl-item .home_slider_background {
  		background-size: contain !important;
	}
	.home {
  		height: 280px;
	}
	.home_slider_nav {
  		top: 1.5%;
	}
}

@media (max-width: 575.98px) { /* For 414 */
}

@media (max-width: 413.98px) { /* For 375 */
}

@media (max-width: 374.98px) { /* For 360 */
}

@media (max-width: 359.98px) { /* For 320 */
}