/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    background-color: #273a78;;
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 100px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/ci.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* ==Lister CSS start== */

.head-text {
    margin-top: 17px;
    font-size: 33px !important;
}

.text-dark {
    color: #e2e6e9 !important;
}

.dashboard-content-inner {
    padding: 0px !important;
}

.pset {
    overflow-x: hidden;
    padding: 60px 0px;
}


.listar-feature-item-wrapper {
    margin-bottom: 120px;
    padding-left: 27px;
    padding-right: 27px;
}

.listar-feature-item {
    height: calc(100% - 20px);
}

    .listar-feature-item.listar-feature-has-link ~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
        position: relative;
        display: block;
        width: 100%;
        height: 30px;
    }

.popular-courses-items .item {
    height: 100%;
}

.listar-feature-item a {
    position: absolute;
    top: -12px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% + 4px);
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-with-image .listar-feature-item a:before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    margin-left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-item a:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 1000px;
    z-index: 10;
    animation: ripple 0.7s linear infinite;
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6), -5px -5px 10px rgba(255, 255, 255, 0.5);
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
    }

    100% {
        box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
    }
}

.listar-feature-item .listar-feature-item-inner {
    padding: 50px 30px;
    border-radius: 6px;
    z-index: 5;
    position: relative;
    height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .listar-feature-item .listar-feature-item-inner:before {
        border: 0;
        border-radius: 1000px;
        background: rgba(255, 255, 255, 0);
        background: -moz-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 100% );
        background: -webkit-gradient( left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(40%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 1)) );
        background: -webkit-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 100% );
        background: -o-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 100% );
        background: -ms-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 100% );
        background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF',endColorstr='#FFFFFF',GradientType=1);
    }

    .listar-feature-item .listar-feature-item-inner:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.listar-feature-right-border {
    position: absolute;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    top: -12px;
    left: 50%;
    overflow: hidden;
}

.listar-feature-items a {
    cursor: auto;
    pointer-events: none;
}

.listar-feature-items {
    margin-top: 100px;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features
.listar-feature-item
a:hover ~ .listar-feature-item-inner
.listar-feature-right-border:before {
    border: 11px solid #2F53BF;
}

.listar-feature-right-border:before,
.listar-hovering-features
.listar-feature-item
a:hover ~ .listar-feature-item-inner
.listar-feature-right-border:before,
.listar-hovering-features-grey
.listar-feature-item
a:hover ~ .listar-feature-item-inner
.listar-feature-right-border:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 11px solid #0C0F37;
    border-radius: 800px;
    left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
    position: relative;
    display: block;
    text-decoration: none;
    margin: -30px;
    padding: 30px;
    height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
    margin-bottom: 120px;
    padding-left: 27px;
    padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
    content: "";
    background-color: #fff;
    z-index: 6;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
}

.listar-feature-icon-wrapper {
    width: 148px;
    height: 148px;
    line-height: 148px;
    border-radius: 500px;
    position: relative;
    background-color: #fff;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    left: 50%;
    vertical-align: middle;
    margin-left: -74px;
    top: -66px;
    margin-top: -74px;
}

.listar-feature-icon-inner {
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 500px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
    background: #fff;
}

    .listar-feature-icon-inner div {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        display: inline-block;
        position: relative;
        width: 120px;
        height: 120px;
        line-height: 120px;
        text-align: left;
    }

    .listar-feature-icon-inner img {
        position: relative;
        margin: 0 auto;
        vertical-align: middle;
        display: inline-block;
        width: auto;
        left: 50%;
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -ms-transform: translate(-50%);
        -o-transform: translate(-50%);
        transform: translate(-50%);
        height: 55px;
    }

.listar-feature-item img,
.listar-feature-item i {
    position: relative;
    display: inline-block;
    border-bottom: 0;
    font-size: 40px;
    top: 0;
    padding: 0;
    color: #258BD5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
    top: 0;
}

.listar-feature-content-wrapper {
    position: relative;
    margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
    padding-top: 0;
    margin: 0 0 30px;
    text-align: center;
    line-height: 1.5;
}

    .listar-feature-item
    .listar-feature-item-title.listar-feature-counter-added > span {
        margin-left: 25px;
        border-radius: 0 50px 50px 0;
    }

    .listar-feature-item .listar-feature-item-title > span {
        box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12), 5px 0px 40px rgba(80, 80, 80, 0.1);
        padding: 10px 20px;
        display: inline-block;
        position: relative;
        background-color: #fff;
    }

        .listar-feature-item .listar-feature-item-title > span span {
            box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2), 5px 0px 80px rgba(80, 80, 80, 0.15);
            padding: 10px 0;
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 30px;
            white-space: nowrap;
            position: absolute;
            top: -3px;
            left: -40px;
            border-radius: 50px;
            background-color: #fff;
        }

    .listar-feature-item .listar-feature-item-title span {
        display: inline-block;
        font-size: 14px;
        line-height: normal;
        font-weight: 400;
        text-shadow: none;
        border-radius: 50px;
        color: #252525;
        font-size: 18px;
    }

.listar-feature-item-excerpt {
    padding: 0 20px;
}

.listar-feature-item-excerpt {
    color: #252525;
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.listar-map-button-text span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    height: 44px;
    line-height: 1.6;
    padding: 10px 25px;
    box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    background-color: rgba(35, 40, 45, 0.9);
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
    background-color: #fff;
    color: #252525;
    text-shadow: none;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

    .listar-map-button-text span:after {
        border: 12px solid #fff;
    }

    .listar-map-button-text span:after {
        content: "";
        position: absolute;
        top: -14px;
        left: -14px;
        width: calc(100% + 28px);
        height: calc(100% + 28px);
        border-radius: 36px;
    }

.listar-map-button:hover .listar-map-button-text span {
    padding: 10px 43px 10px 51px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    margin-left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    box-shadow: 10px 10px 40px rgba(80, 80, 80, 0.15), 15px 15px 30px rgba(80, 80, 80, 0.05), 0 0 120px rgba(80, 80, 80, 0.6);
    bottom: -30px;
    background-image: url("https://image.flaticon.com/icons/svg/2316/2316674.svg");
    background-size: 40%;
    color: #555;
    line-height: 52px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    /* align-self: flex-start; */
}

    .col-md-12 .thumb img {
        width: 30%;
        border-radius: 50% !important;
        margin: auto;
        margin-bottom: 10px;
    }

.banner-wrapper {
    position: relative;
    display: inline-block;
}

.banner-text {
    position: absolute;
    top: 23%;
    left: 51%;
    transform: translate(-50%, -50%);
    font-size: 19px;
    color: #000;
    text-align: center;
    width: 100%;
    bottom: 52%;
    max-width: 100%;
    padding: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.register-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #020325;
    padding: 5px 20px;
    font-size: xx-large;
    text-decoration: none;
    color: #fff;
    border: 1px solid red;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .register-button {
        font-size: 12PX;
        margin-right: 16px;
        padding: 0px 1px;
    }
}

.image-with-headline {
    position: relative;
}

.headline {
    margin-top: 17px;
    position: absolute;
    /* top: 35px; */
    left: 8%;
    color: red;
    font-size: 42px;
    font-weight: bold;
    /* text-shadow:
     */
}

.blue-text {
    color: #020325;
    margin-left: 40%;
}



.site-heading {
	margin-bottom: 0px;
	margin-top: -5px;
	overflow: hidden;
	width: 100%;
}

	.site-heading h2 {
		display: inline-block;
		font-weight: 700;
		padding-bottom: 20px;
		position: relative;
		z-index: 1;
	}

.bg-dark .site-heading h2 {
	color: #FFFFFF;
}

.bg-dark .site-heading p {
	color: #CCCCCC;
}

.site-heading h2::before {
	background: #FFB606 none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	margin-left: -40px;
	position: absolute;
	width: 40px;
	z-index: 1;
}

.site-heading h2::after {
	background: #FFB606 none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	margin-left: 5px;
	position: absolute;
	width: 40px;
}

.site-heading.text-left h2::before {
	left: 0;
	margin: 0;
}

.site-heading.text-left h2::after {
	left: 45px;
	margin: 0;
	width: 20px;
}



/* ==Lister CSS end== */



/* Why Choose US Start*/

.wcs-area .site-heading {
	margin-bottom: 20px;
}

.wcs-area .thumb,
.wcs-area .content {
	display: table-cell;
	float: none;
	vertical-align: middle;
}

.wcs-area.content-default .thumb,
.wcs-area.content-default .content {
	display: inline-block;
	float: left;
}

.wcs-area.content-default .content {
	padding: 0 15px;
}

.wcs-area .content {
	padding: 50px 50px;
	padding-right: 120px;
}

.wcs-area .item .icon, .wcs-area .item .info {
	display: table-cell;
	vertical-align: top;
}

.wcs-area .item .info {
	padding-left: 20px;
}

.wcs-area .item .icon i {
	border: 1px solid rgba(255, 255, 255, 0.2);
	-moz-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
	-webkit-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
	-o-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
	box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
	color: #FFB606;
	display: inline-block;
	font-size: 50px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	width: 80px;
}

.wcs-area.bg-light .item .icon i {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-moz-box-shadow: 0 0 10px #CCCCCC;
	-webkit-box-shadow: 0 0 10px #CCCCCC;
	-o-box-shadow: 0 0 10px #CCCCCC;
	box-shadow: 0 0 10px #CCCCCC;
	font-size: 40px;
}

.wcs-area .item .info h4 a {
	color: #FFFFFF;
	font-weight: 600;
	text-transform: capitalize;
}

.wcs-area.bg-light .item .info h4 a {
	color: #002147;
	font-weight: 700;
}

.wcs-area .item .info p {
	color: #CCCCCC;
}

.wcs-area.bg-light .item .info p {
	color: #666666;
}

.wcs-area .item {
	border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.wcs-area.bg-light .item {
	border-bottom: inherit;
	margin-bottom: 50px;
	padding-bottom: 0;
}

.wcs-area .item .info p {
	margin: 0;
}

.wcs-area h2 {
	font-weight: 600;
	margin-bottom: 30px;
	padding-bottom: 20px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.wcs-area .item:last-child {
	border: medium none;
	margin: 0;
	padding: 0;
}

.contact-info-area .contact-info .item {
	-moz-box-shadow: 0 0 10px #CCCCCC;
	-webkit-box-shadow: 0 0 10px #CCCCCC;
	-o-box-shadow: 0 0 10px #CCCCCC;
	box-shadow: 0 0 10px #CCCCCC;
	padding: 50px 30px;
	text-align: center;
	background: #FFFFFF none repeat scroll 0 0;
}

	.contact-info-area .contact-info .item i {
		color: #FFB606;
		display: block;
		font-size: 60px;
		text-align: center;
	}

	.contact-info-area .contact-info .item .info {
		margin-top: 20px;
	}
.contact-info{
	margin-top: 40px;
}

.contact-info-area .contact-info .item .info h4 {
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
}

		.contact-info-area .contact-info .item .info p {
			margin: 0;
		}

/* Why Choose US End*/


/* Smaller Footer Start */

.small-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 0px;
    /* width: calc(100% + 80px); */
    left: -40px;
    position: relative;
    padding: 25px 40px;
    display: flex;
    margin: 10px ;
}

    .small-footer strong {
        color: #333;
    }

.small-footer-copyrights {
    flex: 2;
}

.small-footer .footer-social-links {
    transform: none;
    flex: 1;
    text-align: right;
    float: right;
    display: inline-block;
    margin: 0 -5px 0 0;
    position: relative;
    top: 2px;
}

    .small-footer .footer-social-links li {
        color: #333;
        transform: none;
        float: none;
        margin: 0 -3px;
    }

        .small-footer .footer-social-links li a {
            color: #333;
            transform: none;
        }






     
/* Smaller Footer End */

/* Footer Css Start */
.footer-social-links {
		list-style: none;
		margin: 0 -10px;
		margin-top: 3px;
		padding: 0;
	}

		.footer-social-links li {
			display: inline-block;
			padding: 0;
			margin: 0;
			float: left;
		}

			.footer-social-links li a {
				font-size: 20px;
				padding: 0 10px;
				color: #fff;
				display: inline-block;
				transition: 0.3s;
				opacity: 0.5;
				transform: translate3d(0,-0.5px,0);
			}

				.footer-social-links li a:hover {
					opacity: 1;
				}

	/* Middle Section */
	.footer-middle-section {
		padding: 60px 0;
		position: relative;
		z-index: 10;
	}

	#footer h3,
	#footer h2,
	.footer-links h3 {
		font-size: 18px;
		color: #fff;
		margin: 0 0 15px 0;
		padding: 0;
		display: block
	}

		#footer h3 i {
			position: relative;
			margin-right: 5px;
			top: 2px;
			font-size: 20px;
			font-weight: 400 !important;
		}

	.footer-links ul {
		list-style: none;
		text-align: left;
		margin: 0;
		padding: 0;
	}

		.footer-links ul li {
			margin-bottom: 0;
			display: block;
		}

			.footer-links ul li:first-child a {
				padding-top: 0;
			}

			.footer-links ul li:last-child a {
				padding-bottom: 0;
			}

			.footer-links ul li a {
				color: #c0c0c0;
				display: block;
				line-height: 25px;
				position: relative;
				z-index: 100;
				padding: 4px 0;
			}

				.footer-links ul li a span {
					display: inline-block;
					position: relative;
				}

				.footer-links ul li a:hover {
					color: #fff;
				}

				.footer-links ul li a span:before {
					content: "";
					position: absolute;
					left: 0;
					bottom: 0;
					background-color: #66676b;
					height: 2px;
					display: block;
					transition: all 0.25s, opacity 0.2s;
					z-index: -1;
					border-radius: 3px;
					opacity: 0.5;
					width: 0;
				}

				.footer-links ul li a:hover span:before {
					width: 100%;
					opacity: 1;
				}
/* Footer Css End */