/*
** General Styles for HTML tags
*/

* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
    background: #ffffff;
    color: #000000;
    letter-spacing: 0.5px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-repeat: repeat;
    height: 100vh;
    z-index: -1;
    opacity: 0.03;
    background-size: inherit;
    /* background-image: url(../img/bg-element-gray_c.png); */
}

html, body, .wrapper {
    height: 100%;
    overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #232323;
    font-weight: normal;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin: 0;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
}

h5, h5 {
    margin-bottom: 10px;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
}

a, .btn, button {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    outline: medium none;
}

a img, iframe {
    border: none;
}

p {
    color: #666666;
    line-height: 26px;
    margin: 0 0 15px;
    text-transform: none;
    font-weight: 400;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eee;
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333;
    border: 1px solid #ededed;
    border-radius: inherit;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
}

input:focus, textarea:focus,
select:focus {
    outline: none;
    box-shadow: inherit;
}

ul {
    margin: 0;
    list-style-type: none;
}

a, a:active, a:focus, a:hover {
    outline: none;
    text-decoration: none;
    color: #232323;
}

a:hover {
    color: #232323;
}

a {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

b, strong {
    font-weight: 900;
}

.btn.active, .btn:active {
    background-image: inherit !important;
}

.btn.focus,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover {
    outline: 0;
}

.btn.circle {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.btn.active, .btn:active {
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    box-shadow: inherit;
    min-height: 50px;
}

/* Default CSS */
.container-half {
    margin: 0 auto;
    width: 60%;
    padding: 0 15px;
}

.bg-cover {
    background-position: center center;
    background-size: cover;
}

.bg-contain {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-fixed {
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
}

.bg-gray {
    background-color: #f7f7f7;
}

.bg-theme-small {
    background-color: #edf5ff;
}

.bg-gray-hard {
    background: linear-gradient(90deg, rgba(237, 245, 255, 1) 0%, rgba(204, 223, 247, 1) 100%);
}

.bg-light {
    background-color: #ffffff;
}

.bg-theme {
    background-color: #0c90db;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light a {
    color: #ffffff;
}

.shadow {
    position: relative;
    z-index: 1;
}

.shadow.dark::after {
    /* background: #1d2024 none repeat scroll 0 0; */
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.dark-hard::after {
    background: #1d2024 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.75;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.light::after {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.theme::after {
    background: #0c90db none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.theme-hard::after {
    background: #0c90db none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.default-padding {
    padding: 50px 0;
}

.default-padding-top {
    padding-top: 120px;
}

.default-padding-bottom {
    padding-bottom: 120px;
}

.default-padding.bottom-less {
    padding-top: 70px;
    padding-bottom: 70px;
}

.default-padding.bottom-30 {
    padding-top: 120px;
    padding-bottom: 30px;
}

.default-padding.bottom-20 {
    padding-top: 120px;
    padding-bottom: 20px;
}

.padding-xl {
    padding-top: 180px;
    padding-bottom: 180px;
}

.carousel-shadow {
    padding-bottom: 105px;
}

.btn {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    letter-spacing: 1px;
    /*border-radius: 5px;*/
    overflow: hidden;
    border-radius: 4px !important;
}

.btn-md {
    padding: 10px 20px;
}

.btn-sm {
    padding: 3px 10px;
    font-size: 12px;
}

.btn.btn-sm-pro {
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
    padding: 4px 35px;
    display: inline-block;
}

.btn-border-light {
    border: 2px solid #ffffff;
}

.btn.btn-sm-pro.btn-border-light:hover,
.btn.btn-sm-pro.btn-border-light:focus {
    background-color: #ffffff;
    color: #232323;
    border: 2px solid #ffffff;
}

.btn-dark {
    background-color: #232323;
    color: #ffffff;
    border: 2px solid #232323;
}

.btn-dark.border {
    background-color: transparent;
    color: #232323;
    border: 2px solid #232323;
}

.btn-dark.border:hover {
    background-color: #232323;
    color: #ffffff !important;
    border: 2px solid #232323;
}

.btn.btn-light {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid #ffffff;
    color: #232323;
}

.btn.btn-light:hover,
.btn.btn-light:focus {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn.btn-light.effect:hover,
.btn.btn-light.effect:focus {
    background-color: #0c90db;
    color: #ffffff !important;
    border: 2px solid #0c90db;
}

.btn.btn-light.border {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn.btn-light.border:hover {
    background: #ffffff none repeat scroll 0 0 !important;
    border: 2px solid #ffffff !important;
    color: #232323 !important;
}

.btn-dark:hover,
.btn-dark:focus {
    color: #232323 !important;
    background: transparent;
}

.bg-dark {
    background: #1d2024 none repeat scroll 0 0;
}

.btn-theme {
    /* background-color: #0c90db; */
    color: #ffffff !important;
    border: none;
    background: #251376;
    border-radius: 4px !important;
    box-shadow: rgb(0 0 0 / 21%) 0px 0px 15px;
}

.btn-theme.border {
    background-color: transparent;
    color: #0c90db !important;
    border: 2px solid #0c90db;
}

.btn-theme.border:hover {
    background-color: #0c90db;
    color: #ffffff !important;
    border: 2px solid #0c90db;
}

.btn-theme.effect:hover,
.btn-theme.effect:focus {
    background: #0c90db none repeat scroll 0 0;
    /*border: 2px solid #0c90db;*/
    color: #ffffff;
}

.btn.btn-sm-lm {
    font-size: 12px;
    padding: 4px 35px;
}

.bg-theme a.btn-theme.btn:hover,
.bg-theme a.btn-theme.btn:focus {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.bg-fixed {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

.bg-cover {
    background-position: center center;
    background-size: cover;
}

.container-full {
    padding: 0 15px;
    width: 100%;
}

.container-mid {
    padding: 0 15px;
    width: 90%;
    margin: auto;
}

.oh {
    overflow: hidden;
}

.less-margin {
    margin: 0;
}

/* Default CSS */
.container-medium {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}

.container-full {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}

.container-fill {
    padding: 0 15px;
    margin: auto;
    max-width: 100%;
}

@media (min-width: 576px) {
    .container-medium {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-medium {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-medium {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-medium {
        max-width: 1400px;
        width: 80%;
    }
}

.container-full {
    position: relative;
}

@media (min-width: 576px) {
    .container-full {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-full {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-full {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-full {
        max-width: 1400px;
        width: 90%;
    }
}

.container-fluid {
    width: 100%;
}

@media (min-width: 576px) {
    .container-fluid {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-fluid {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-fluid {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container-fluid {
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 576px) {
    .container-fill {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-fill {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-fill {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-fill {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

header {
    position: relative;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a {
    position: relative;
    z-index: 1;
    margin-left: 3px;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a {
    border: medium none;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: -2px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 0;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a.active::after,
header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a:hover::after {
    width: 100%;
}

header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a.active::after,
header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a:hover::after {
    width: 0;
}

.attr-nav .social.right li {
    margin-left: 20px;
}

.attr-nav .social li a {
    font-size: 16px;
}

/* Navbar */
nav.bootsnav.navbar-default.info-topbar .navbar-header {
    display: none;
}

nav.bootsnav.navbar-default.info-topbar ul li a {
    margin-right: 30px;
    padding: 35px 0;
}

nav.bootsnav.navbar-default.info-topbar.active-full ul li a {
    margin-right: 0;
    padding: 35px 20px;
}

.attr-nav > a.btn-theme.effect:hover,
.attr-nav > a.btn-theme.effect,
.attr-nav > a.btn-theme.effect:focus {
    background: #0c90db none repeat scroll 0 0;
    border: 2px solid #0c90db;
    color: #ffffff !important;
}

nav.bootsnav.navbar-default.info-topbar.sticked ul li a {
    margin-right: 30px;
    padding: 35px 0;
}

.attr-nav.social li {
    display: inline-block;
    padding: 25px 0 !important;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.attr-nav.social li a {
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #0c90db;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    margin-left: 10px;
    padding: 0 !important;
    text-align: center;
    width: 40px;
}

nav.navbar.bootsnav.sticked .attr-nav.social li {
    display: inline-block;
    padding: 20px 0 !important;
}

.site-heading h2 {
    display: inline-block;
    font-weight: 600;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
}

.site-heading h4 {
    text-transform: uppercase;
}

.site-heading.clean h2 {
    padding-bottom: 0;
}

.site-heading.clean h2 span {
    color: #0c90db;
}

.site-heading h2 span {
    color: #0c90db;
}

.site-heading.barber h2 span {
    color: #bc9355;
}

.site-heading p {
    margin: 0;
}



.bg-theme .site-heading h2::before,
.shadow .site-heading h2::before,
.half-bg .site-heading h2::before {
    background: #0c90db none repeat scroll 0 0;
}

.site-heading h2 span {
    color: #0c90db;
}

.site-heading {
    /* margin-bottom: 60px; */
    overflow: hidden;
    margin-top: -5px;
}

.site-heading.single {
    margin-bottom: 35px;
}

.carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.top-border {
    border-top: 1px solid #e7e7e7;
}

@media screen and (min-width: 1200px) {
    .item-flex {
        display: flex;
    }

}

.item-flex.center {
    align-items: center;
}


/* ==============================================================
     # Bradcrumb
=================================================================== */
.breadcrumb-area {
    padding: 80px 0;
    padding-top: 180px;
}

.breadcrumb-area .breadcrumb {
    background: #0606069e;
    display: inline-block;
    margin: 0;
    padding: 15px;
    position: relative;
    z-index: 1;
    border-radius: 40px !important;
    display: none;
}

.breadcrumb-area .breadcrumb::after {
    /* background: #232323 none repeat scroll 0 0; */
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.breadcrumb-area h1 {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 40px;
    margin: 0;

}

.breadcrumb > li + li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    padding: 0 5px;
    color: #ffffff;
    display: none;
}

.breadcrumb-area .breadcrumb li i {
    margin-right: 5px;
}

.breadcrumb-area .breadcrumb li {
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb-area .breadcrumb li::after {
    border: 2px solid #ffffff;
    content: "";
    height: 10px;
    left: -7px;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    width: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.breadcrumb-area .breadcrumb li:first-child::after {
    display: none;
}

.breadcrumb-area .breadcrumb a,
.breadcrumb-area .breadcrumb li {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
}

.breadcrumb-area .breadcrumb li.active {
    color: #0c90db;
}


/* Topbar CSS */
.top-bar-area {
    border-bottom: 1px solid #656565;
    padding: 5px 0;
    overflow: hidden;
    /* border-radius: 0 0 33% 33%; */
    background: #261477;
    position: relative;
}

.top-bar-area .row {
    align-items: center;
    display: flex;
    float: none;
    vertical-align: middle;
}

.top-bar-area .info.box li {
    display: inline-block;
    text-align: left;
    float: left;
    font-size: 13px;
}

.top-bar-area .info.box li .icon,
.top-bar-area .info.box li .info {
    display: table-cell;
    vertical-align: middle;
}

.top-bar-area .info.box li .info span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: white;
    line-height: 20px;
    /* text-transform: uppercase; */
}

.top-bar-area .info.box li .icon i {
    color: #0a398a;
    font-size: 19px;
    color: white !important;
}

.top-bar-area.bg-light .info.box li .icon i {
    color: #0c90db;
}

.top-bar-area .info.box li .icon {
    padding-right: 15px;
}

.top-bar-area .address-info.text-right .info.box li {
    margin-left: 10px;
    padding-left: 10px;
    position: relative;
}

.top-bar-area .address-info.text-left .info.box li {
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

.top-bar-area .address-info.text-right .info.box li::after {
    background: #e7e7e7 none repeat scroll 0 0;
    content: "";
    height: 200px;
    left: 0;
    position: absolute;
    top: -50%;
    width: 1px;
}

.top-bar-area .address-info.text-left .info.box li::after {
    /*background: #e7e7e7 none repeat scroll 0 0;*/
    content: "";
    height: 200px;
    right: 0;
    position: absolute;
    top: -50%;
    width: 1px;
}

.top-bar-area .address-info.text-right .info.box li:first-child::after {
    display: none;
}

.top-bar-area .address-info.text-left .info.box li:last-child::after {
    display: none;
}

.top-bar-area .address-info.text-right .info.box li:first-child {
    border: medium none;
    margin-left: 0;
    padding-left: 0;
}

.top-bar-area .address-info.text-left .info.box li:last-child {
    border: medium none;
    margin-right: 0;
    padding-right: 0;
}

.top-bar-area .address-info.text-right .info {
    display: inline-block;
}

.top-bar-area .link.text-right a {
    margin-left: 5px;
}

.top-bar-area .social li {
    display: inline-block;
    width: 18px;
}

.top-bar-area .social li a {
    color: #ffffff;
    display: inline-block;
    font-size: 22px;
}

.top-bar-area .social.text-right li {
    margin-left: 15px;
}

.top-bar-area.one-line li {
    margin-right: 15px;
    padding-right: 15px;
}

.top-bar-area.bg-dark li {
    color: #ffffff;
}

.top-bar-area.one-line.bg-dark li {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-area.one-line li:last-child {
    border: medium none;
    margin-right: 0;
    padding-right: 0;
}

.top-bar-area.one-line li i {
    margin-right: 5px;
}

.top-bar-area.one-line li i {
    color: #0c90db;
}

.top-bar-area.one-line .link a {
    border-left: 1px solid #e7e7e7;
    font-weight: 500;
    margin-left: 13px;
    padding-left: 15px;
    text-transform: uppercase;
}

.top-bar-area.one-line.bg-dark .link a {
    border-left: 1px solid #ffffff;
}

.top-bar-area.one-line .link a:hover,
.top-bar-area.one-line .link a:last-child:hover {
    color: #0c90db;
}

.top-bar-area.one-line .link a:last-child {
    color: #232323;
}

.top-bar-area.one-line.bg-dark .link a:last-child {
    color: #ffffff;
}

.top-bar-area.one-line .link a:first-child {
    border: medium none;
    padding-left: 0;
}


/* ==============================================================
     # Banner
=================================================================== */
body,
.banner-area,
.banner-area div {
    height: 100%;
}

.banner-area.auto-height,
.banner-area.auto-height div {
    height: auto;
}

.banner-area .box-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.banner-area .box-table {
    display: table;
    width: 100%;
}

.banner-area .box-cell,
.banner-area .box-cell div {
    height: auto;
}

.banner-area {
    position: relative;
    overflow: hidden;
    margin-top: 8pc;
}

.banner-area .wavesshape {
    bottom: -2px;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
    width: 100%;
}

.banner-area .wavesshape.shape {
    bottom: -50px;
    height: auto;
}

.banner-area .content {
    position: relative;
    z-index: 9;
}

div#bootcarousel {
    z-index: 1;
}

.banner-area.wavesshape {
    position: relative;
    z-index: 1;
}

.banner-area.triangle-shadow {
    position: relative;
    z-index: 1;
}

.banner-area.triangle-shadow::before {
    border-bottom: 0 solid transparent;
    border-right: 100vw solid #fff;
    border-top: 80px solid transparent;
    bottom: 0;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 101;
}

.banner-area.shadow-inner .content {
    padding: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-area.content-double .double-items {
    align-items: center;
    align-self: center;
    display: flex;
    justify-content: center;
    vertical-align: middle;
}

.banner-area .banner-carousel .owl-item.center img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.banner-area .banner-carousel .owl-item img {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}

/* Animation delays */
.banner-area .item h1:first-child,
.banner-area .item h2:first-child,
.banner-area .item h3:first-child,
.banner-area .item h4:first-child,
.banner-area .item h5:first-child,
.banner-area .item h6:first-child {
    animation-delay: .5s;
}

.banner-area .item h1:nth-child(2),
.banner-area .item h2:nth-child(2),
.banner-area .item h3:nth-child(2),
.banner-area .item h4:nth-child(2),
.banner-area .item h5:nth-child(2),
.banner-area .item h6:nth-child(2) {
    animation-delay: .7s;
}

.carousel-caption h1:nth-child(3),
.carousel-caption h2:nth-child(3),
.carousel-caption h3:nth-child(3),
.carousel-caption h4:nth-child(3),
.carousel-caption h5:nth-child(3),
.carousel-caption h6:nth-child(3) {
    animation-delay: .9s;
}

.banner-area .item p {
    animation-delay: .5s;
}

.banner-area .item ul {
    animation-delay: .6s;
}

.banner-area .item a,
.banner-area .item button {
    animation-delay: .7s;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
    z-index: 2;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.2, 1.2);
    }
}

@-moz-keyframes zoom {
    from {
        -moz-transform: scale(1, 1);
    }

    to {
        -moz-transform: scale(1.2, 1.2);
    }
}

@-o-keyframes zoom {
    from {
        -o-transform: scale(1, 1);
    }

    to {
        -o-transform: scale(1.2, 1.2);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.2, 1.2);
    }
}

.carousel-inner .item > .slider-thumb {
    -webkit-animation: zoom 20s;
    animation: zoom 20s;
}

.banner-area .carousel-zoom .slider-thumb {
    height: 100%;
    position: absolute;
    width: 100%;
}

#particles-js,
#ripple {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.banner-area .carousel-control {
    background: transparent none repeat scroll 0 0;
    font-size: 40px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 1;
}

.banner-area .carousel-control.shadow {
    background: transparent none repeat scroll 0 0;
    color: #ffffff;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    opacity: 1;
    padding: 0;
    position: absolute;
    text-shadow: inherit;
    top: 50%;
    width: 50px;
    z-index: 1;
}

.banner-area .carousel-control.shadow::after {
    background: #1e2726 none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.banner-area .carousel-control.left {
    left: -50px;
}

.banner-area:hover .carousel-control.left {
    left: 0;
}

.banner-area:hover .carousel-control.shadow.left {
    left: 20px;
}

.banner-area .carousel-control.right {
    right: -50px;
}

.banner-area:hover .carousel-control.right {
    right: 0;
}

.banner-area:hover .carousel-control.shadow.right {
    right: 20px;
}

/* Carousel Indicators */
.banner-area .carousel-indicators {
    position: absolute;
    right: 40px;
    left: auto;
    width: auto;
    height: auto;
    top: 50%;
    transform: translate(10px, -50%);
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    -o-transform: translate(10px, -50%);
    bottom: auto;
    margin: 0;
}

.banner-area .carousel-indicators li {
    display: block;
    height: 20px;
    width: 20px;
    margin: 10px 0;
    border: 2px solid #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: transparent;
    position: relative;
    z-index: 1;
}

.banner-area .carousel-indicators li.active::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}


/* Content */

.banner-area .transparent-nav .content {
    padding-top: 60px;
}

.banner-area .content {
    overflow: hidden;
}

.banner-area .content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    /* text-transform: capitalize; */
    line-height: 1.1;
}

.banner-area .heading-uppercase .content h1 {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: rgb(0, 0, 0) 0px 5px 5px;
}

.banner-area .text-center .content h1 {
    line-height: 1.2;
}

.banner-area .content h1 span {
    color: #0c90db;
    font-weight: 700;
}

.banner-area .content p {
    font-size: 18px;
    line-height: 30px;
}

.banner-area .content a {
    margin-top: 15px;
    margin-right: 8px;
}

.banner-area .text-right .content a {
    margin-left: 8px;
}

.banner-area .text-center .content a {
    margin: 15px 4px 0;
}

.banner-area .text-center.inc-top-heading .content a {
    margin: 5px 4px 0;
}

.banner-area .inc-top-heading h3 {
    text-transform: capitalize;
    margin-bottom: 25px;
}

.banner-area .inc-top-heading a {
    margin-top: 5px;
}

.banner-area .text-center p {
    padding: 0 15%;
}

.banner-area .text-dark p {
    color: #232323;
}

.banner-area.video-bg-live .mbYTP_wrapper {
    z-index: 1 !important;
}

.banner-area .fixed-thumb {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
}

.banner-area.top-pad-60 .content {
    padding-top: 60px;
}

.banner-area.standard .thumb img {
    margin-top: 200px;
}

.banner-area.standard .thumb {
    padding-left: 35px;
}

.banner-area.standard .info h4 {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 25px;
    display: inline-block;
    color: #999999;
}

.banner-area.standard .info h2 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 0;
}

.banner-area.standard .info a {
    margin-top: 41px;
}

.banner-area.standard .info-box {
    padding: 80px 50px;
    background: #ffffff;
    border-bottom: 3px solid #0c90db;
}

.banner-area.standard .info::after {
    position: absolute;
    left: -80px;
    top: -80px;
    content: "";
    height: 180px;
    width: 180px;
    background: url(assets/img/bg-dotted.png);
    background-size: contain;
    background-position: left top;
    z-index: -1;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.banner-area.standard .info {
    position: relative;
    z-index: 1;
}

/* ==============================================================
     # Video Button Play
=================================================================== */
.video-play-button {
    color: #0c90db;
    font-size: 30px;
    left: 50%;
    padding-left: 7px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ffffff repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ffffff repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-play-button i {
    display: block;
    position: relative;
    z-index: 3;
    color: #0c90db;
}


/* ==============================================================
     # About
=================================================================== */

.about-area .about-info {
    border-left: 1px solid #e7e7e7;
    padding-left: 30px;
}

.about-area.full-width .about-info {
    border: medium none;
    padding-left: 15px;
}

.about-area.inc-video .about-info {
    border: medium none;
}

.about-area.reverse.inc-video .about-info {
    padding-left: 15px;
    padding-right: 15px;
}

.about-area.reverse.inc-video .video-info {
    float: right;
}

.about-area .management-quote {
    padding-right: 30px;
}

.about-area .management-quote .management-items p {
    padding-top: 50px;
    position: relative;
}

.about-area .management-quote .management-items p::before {
    content: ",,";
    font-family: "Times New Roman";
    font-size: 120px;
    left: 5px;
    letter-spacing: -10px;
    color: #0c90db;
    opacity: 0.4;
    position: absolute;
    top: 55px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.management-area .managements-items .item .thumb img {
    display: block;
    width: 100%;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid #e7e7e7;
}

.about-area .about-info li {
    float: left;
    margin-top: 30px;
    width: 50%;
}

.about-area.full-width .single-item {
    margin-bottom: 30px;
}

.about-area .about-info li:first-child,
.about-area .about-info li:nth-child(2) {
    margin-top: 10px;
}

.about-area .about-items .item a {
    transition: 0.5s;
    position: relative;
    z-index: 9;
    padding: 30px 22px;
    display: block;
    -moz-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    -webkit-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    -o-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    border-radius: 25px;
    background: white;
}

.about-area .about-items .item:hover a {
    scale: 1.03;
}

.about-main:hover a {
    scale: 1.01 !important;
}

.about-area .about-info li i,
.about-area .about-items .item i {
    color: #0c90db;
    display: inline-block;
    font-size: 50px;
    margin-bottom: 20px;
}

.about-area .about-info li h4,
.about-area .about-info li h5,
.about-area .about-items .item h4,
.about-area .about-items .item h5 {
    font-weight: 500;
    margin-bottom: 0;
    /* text-transform: uppercase; */
}

.about-area h2 {
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.about-area .author {
    align-items: center;
    border-top: 1px dashed #999999;
    display: flex;
    margin-top: 14px;
    padding-top: 20px;
    justify-content: center;
}

.about-area .author .thumb {
    max-width: 100px;
}

.about-area .author .info {
    font-family: "Poppins", sans-serif;
    padding-left: 15px;
}

.about-area .author .info span {
    display: block;
    text-transform: uppercase;
}

.about-area .author .info b {
    color: #0c90db;
    display: block;
    font-weight: 500;
}

.about-area .management-quote .management-items .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.about-area .management-quote .management-items .owl-dots .owl-dot span {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #cccccc;
    height: 20px;
    margin: 0 5px;
    width: 20px;
}

.about-area .management-quote .management-items .owl-dots .owl-dot.active span {
    background: #0c90db none repeat scroll 0 0;
    border: 2px solid transparent;
}


.about-area .about-content .thumb img {
    position: relative;
    z-index: 1;
    /*height: 27pc;*/
    width: 90%;
    object-fit: cover;
}

.about-area.full-width.mt .about-items {
    margin-top: 50px;
}

.about-area .about-content .info h4 {
    color: #0c90db;
    font-weight: 600;
    text-transform: uppercase;
}

.about-area .about-content .info h2 {
    display: inline-block;
    line-height: 1.3;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-area .about-content .info a {
    margin-top: 10px;
}

.about-area .about-content .info a.btn-contact {
    padding: 10px;
}

.about-area .about-content .info h2::after {
    background: #0c90db none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 50px;
}

.about-area .about-content ul {
    margin-bottom: 15px;
    margin-top: 25px;
}

.about-area .about-content ul li {
    border-bottom: 1px solid #e7e7e7;
    margin-left: 20px;
    /*margin-bottom: 20px;*/
    /*padding-bottom: 20px;*/
}

.about-area .about-content ul li .icon, .about-area .about-content ul li .info {
    display: table-cell;
    vertical-align: top;
}

.about-area .about-content ul li .info span {
    color: #232323;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.about-area .about-content ul li .info {
    padding-left: 15px;
}

.about-area .about-content ul li .icon i {
    color: #0c90db;
    font-size: 40px;
}

.about-area.side-bg .about-content ul li .icon i {
    color: #ffffff;
    font-size: 40px;
}

.about-area .about-content ul li .icon i.fa-clock {
    font-weight: 500;
}

.about-area .about-content ul li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-area .about-content .about-list {
    border: none;
}

.about-area.side-bg {
    position: relative;
    z-index: 1;
}

.about-area.side-bg::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 50%;
    background: #0c90db;
    z-index: -1;
}

.about-area .about-box ul li {
    float: left;
    width: 50%;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #232323;
}

.about-area .about-box ul {
    overflow: hidden;
    margin-top: 25px;
}

.about-area .about-box ul li i {
    display: inline-block;
    font-size: 40px;
    padding-right: 15px;
    color: #0c90db;
}

.about-area .about-box .thumb {
    padding-right: 35px;
}

.about-area .about-box blockquote {
    line-height: 32px;
}

.about-area .clients-area {
    margin-top: 55px;
    padding-top: 50px;
    border-top: 1px solid #e7e7e7;
}

.about-area .clients-area h4 {
    font-weight: 600;
    padding: 0;
}

.about-area .clients-area h4::after {
    display: none;
}

.about-area .clients-area p {
    margin: 0;
}

.about-area .clients-area .left-info {
    border: none;
    padding-right: 15px;
}

.about-area .clients-area .clients-box {
    padding-left: 15px;
}


/* ==============================================================
     # Standard About
=================================================================== */

.about-standard-area .thumb-box {
    position: relative;
    z-index: 1;
    margin-right: 35px;
}

.about-standard-area .thumb-box::after {
    position: absolute;
    left: -290px;
    bottom: -120px;
    content: "";
    height: 150%;
    width: 120%;
    background: url(assets/img/shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: -1;
}

.about-standard-area .thumb-box {
    text-align: center;
}

.about-standard-area .info {
    position: relative;
    z-index: 1;
}

.about-standard-area .info h2.heading {
    position: absolute;
    font-size: 130px;
    text-transform: uppercase;
    font-weight: 900;
    z-index: -1;
    top: -87px;
    opacity: 0.05;
    left: 0;
}

.about-standard-area .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

.about-standard-area .info a {
    margin-top: 20px;
}

/* ==============================================================
     # Top Features
=================================================================== */

.top-features-area {
    margin-bottom: -50px;
}

.top-features-area .features-items {
    padding: 50px 30px;
    position: relative;
    top: -50px;
    background: #ffffff;
    z-index: 1;
    border-radius: 5px;
    float: left;
    width: 100%;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

.top-features-area .features-items i {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 30px;
    color: #0c90db;
}

.top-features-area .features-items h4 {
    text-transform: capitalize;
    font-weight: 600;
}

.top-features-area .features-items span {
    color: #e7e7e7;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 800;
    display: block;
    margin-top: 20px;
    margin-bottom: -5px;
}

/* ==============================================================
     # Services
=================================================================== */

.section-together {
    overflow: hidden;
}

.services-inc-area.half-bg {
    position: relative;
    z-index: 1;
}

.services-inc-area.half-bg::after {
    background: #1d2024 none repeat scroll 0 0;
    content: "";
    height: 50%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgb(10 57 138) 30%, rgb(50 158 72) 100%);
}

.services-inc-area.circle-shape.half-bg::before {
    position: absolute;
    right: -100px;
    top: -200px;
    content: "";
    height: 450px;
    width: 450px;
    border: 60px solid #0c90db;
    border-radius: 50%;
}

.services-area .services-items .equal-height {
    margin-bottom: 30px;
    right: -1px;
    padding: 0;
}

.services-inc-area.inc-colum .equal-height {
    margin-bottom: 30px;
}

.services-items.colum-items .single-item {
    margin-bottom: 30px;
}

.services-area .services-items .item {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0 0px 11px 0 rgb(197 197 197 / 41%);
    padding: 50px 30px;
}

.services-area .services-items .item i {
    border: 1px solid #e7e7e7;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #0c90db;
    display: inline-block;
    font-size: 50px;
    height: 100px;
    line-height: 95px;
    position: relative;
    text-align: center;
    width: 100px;
}

.services-area .services-items .item i::after {
    border-bottom: 2px solid;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border-left: 2px solid;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    width: 100%;
}

.services-area .services-items .item:hover i::after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.services-area .services-items .item .icon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.services-area .services-items .item h4 {
    font-weight: 600;
    text-transform: capitalize;
    display: block;
}

.services-area .services-items .item p {
    margin: 0;
}

.services-area .services-items .item a {
    color: #666666;
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    bottom: 18px;
    position: absolute;
}

.services-area .services-items .item a:hover {
    color: #0c90db;
}

/* Services Shadow */

.services-area.shadow .services-items .item {
    background: transparent none repeat scroll 0 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inherit;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.services-area.shadow .services-items .item::after {
    background: #1d2024 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    border-radius: 8px;
}

.services-area.shadow .services-items .item:hover:after {
    background: #ffffff;
    opacity: 1;
}

.services-area.shadow .services-items .item i,
.services-area.shadow .services-items .item h4,
.services-area.shadow .services-items .item p,
.services-area.shadow .services-items .item i {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.services-area.shadow .services-items .item:hover p,
.services-area.shadow .services-items .item:hover h4 {
    color: #666666;
    opacity: 1;
}

.services-area.shadow .services-items .item:hover i {
    color: #0c90db;
    opacity: 1;
}

.services-area.shadow .services-items .item a {
    color: #0c90db;
}

.services-area.shadow .services-items .item i {
    border: medium none;
    color: #ffffff;
    height: inherit;
    line-height: inherit;
    width: inherit;
    border-radius: inherit;
}

.services-area.shadow .services-items .item a i {
    float: right;
    font-size: 14px;
    margin-left: 3px;
    margin-top: 1px;
    color: #0c90db;
}

.services-area.shadow .services-items .item i::after {
    border: none;
    border-radius: inherit !important;
}


/* Thumbnail Services */

.services-inc-area .services-items .item {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

.services-inc-area .item .thumb {
    position: relative;
    z-index: 1;
}

.services-inc-area .item .overlay > a {
    bottom: 0;
    display: flex;
    left: 0;
    width: 100%;
    padding: 15px 15px;
    position: absolute;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.services-inc-area .services-items.overlay-gap .item .overlay > a {
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
}

.services-inc-area .services-items.overlay-gap .item .overlay i {
    font-size: 40px;
}

.services-inc-area .item .thumb .overlay > a::after {
    background: #000000 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.services-inc-area .item .overlay i {
    color: #ffffff;
    display: inline-block;
    font-size: 50px;
}

.services-inc-area .item .overlay h4 {
    /*border-left: 1px solid #ffffff;*/
    /*margin-left: 15px;*/
    /*padding-left: 15px;*/
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 16px;
}

.services-inc-area .item .overlay h4 a {
    color: #ffffff;
}

.services-inc-area .item .overlay > a {
    color: #0c90db;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.services-inc-area .item .info {
    background: #ffffff none repeat scroll 0 0;
    padding: 15px;
    text-align: center;
}

.services-inc-area .item .info a {
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-inc-area .item .info a:hover {
    color: #0c90db;
}

.services-inc-area .services-carousel .owl-nav {
    margin: 0;
}

.services-inc-area .services-carousel .owl-nav .owl-prev,
.services-inc-area .services-carousel .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #0c90db;
    font-size: 30px;
    height: 40px;
    left: -50px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
}

.services-inc-area .services-carousel .owl-nav .owl-next {
    left: auto;
    right: -50px;
}

.services-inc-area .services-items.services-carousel .owl-dots {
    margin: -25px 0 0;
    position: absolute;
    right: -45px;
    top: 50%;
}

.services-inc-area .services-items.services-carousel .owl-dots .owl-dot {
    display: block;
}

.services-inc-area .services-items.services-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid #cccccc;
    height: 20px;
    margin: 10px 0;
    width: 20px;
}

.services-inc-area .services-items.services-carousel .owl-dots .owl-dot.active span {
    background: #0c90db none repeat scroll 0 0;
    border-color: #0c90db;
}


/* Services item cell */

.services-area .services-items.item-cell .item .icon,
.services-area .services-items.item-cell .item .info {
    display: table-cell;
    vertical-align: bottom;
}

.services-area .services-items.item-cell .item .info {
    padding-left: 25px;
}

.services-area .services-items.item-cell .item {
    padding: 30px 20px;
    height: 17pc;
    position: relative;
    transition: 0.5s;
}

.services-area .services-items.item-cell .item:hover .btn {
    background: #0c90db;
    color: white !important;
}

.services-area .services-items.item-cell .item:hover {
    scale: 1.05;
}

.services-area .services-items.item-cell .item .icon {
    position: relative;
    z-index: 1;
}

.services-area .services-items.item-cell .item .icon span {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 900;
    left: 0;
    opacity: 0.06;
    position: absolute;
    top: 0;
}

.services-area .services-items.item-cell .item .icon i {
    border: medium none;
    height: inherit;
    line-height: inherit;
    width: inherit;
}

.services-area .services-items.item-cell .item .icon i::after {
    display: none;
}


/* Services Single */

.services-single-area .sidebar-item {
    border: 1px solid #e7e7e7;
    margin-bottom: 30px;
    padding: 30px;
}

.services-single-area .sidebar-item:last-child {
    margin-bottom: 0;
}

.services-single-area .sidebar-item .title h4 {
    font-weight: 500;
    margin-top: -5px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.services-single-area .sidebar-item .title h4::before {
    background: #0c90db none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 50px;
    z-index: -1;
}

.services-single-area .sidebar-item.link li {
    display: block;
    margin-bottom: 15px;
}

.services-single-area .sidebar-item.link li a {
    color: #666666;
    font-size: 16px;
}

.services-single-area .sidebar-item.link li:last-child {
    margin-bottom: 0;
}

.services-single-area .sidebar-item li {
    display: block;
    margin-bottom: 30px;
}

.services-single-area .sidebar-item li .icon,
.services-single-area .sidebar-item li span {
    display: table-cell;
    vertical-align: top;
}

.services-single-area .sidebar-item li span {
    padding-left: 15px;
}

.services-single-area .sidebar-item li .icon i.fa-clock,
.services-single-area .sidebar-item li .icon i.fa-envelope-open {
    font-weight: 500;
}

.services-single-area .sidebar-item li .icon i {
    color: #0c90db;
    display: inline-block;
    font-size: 50px;
}

.services-single-area .sidebar-item.project li span {
    float: left;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 0;
    text-transform: capitalize;
}

.services-single-area .sidebar-item.project li {
    margin-bottom: 15px;
    text-align: right;
}

.services-single-area .sidebar-item.project li:last-child {
    margin-bottom: 0;
}

.services-single-area .info h2 {
    font-weight: 600;
}

.services-single-area .services-content img {
    margin-bottom: 30px;
}

.services-single-area .info h4 {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ==============================================================
     # Features Area
=================================================================== */

.features-area .features-items {
    float: left;
    width: 100%;
    padding-top: 15px;
}

.features-area .features-items .single-item {
    margin-bottom: 30px;
}

.features-area .features-items .item .icon {
    position: relative;
    z-index: 1;
    /* height: 170px; */
    margin-bottom: 13px;
    display: flex;
    justify-content: center;
}

.features-area .features-items .item .icon i {
    display: inline-block;
    font-size: 60px;
    margin-bottom: 30px;
    color: #0c90db;
}

.features-area .features-items .single-item:nth-child(2n) .item .icon i {
    color: #ff4450;
}

.features-area .features-items .single-item:nth-child(3n) .item .icon i {
    color: #1BDBAC;
}

.features-area .features-items .single-item:nth-child(4n) .item .icon i {
    color: #F48687;
}

.features-area .features-items .item .icon span {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    font-size: 45px;
    z-index: -1;
    opacity: 0.07;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.features-area .features-items .item .info h4 {
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 15px;
    font-size: 12px;
}

.features-area .features-items .item .info p {
    margin-bottom: 0;
}


/* ==============================================================
     # Work Place
=================================================================== */
.work-place-area .work-place-items .item {
    display: flex;
}

.work-place-area .work-place-items .item .info {
    background: #f9f9f9 none repeat scroll 0 0;
    padding: 80px;
}

.work-place-area ul {
    padding-left: 20px;
}

.work-place-area ul li {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.work-place-area ul li::after {
    border-radius: 50%;
    color: #0c90db;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-size: 19px;
    font-weight: 900;
    height: 30px;
    left: 0;
    position: absolute;
    top: 0;
    width: 30px;
}

.work-place-area ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.work-place-items .info a {
    margin-top: 30px;
}

.work-place-area .work-place-items .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

.work-place-area .work-place-items .info h4 {
    color: #0c90db;
    font-weight: 600;
    text-transform: uppercase;
}

.work-place-area .work-place-items.workplace-carousel .owl-dots {
    bottom: 25px;
    left: 50%;
    position: absolute;
    width: 50%;
}

.work-place-area .work-place-items.workplace-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid;
    height: 20px;
    width: 20px;
}

.work-place-area .work-place-items.workplace-carousel .owl-dots .owl-dot.active span {
    background: #0c90db none repeat scroll 0 0;
    border-color: #0c90db;
}

.work-place-area .work-place-items.workplace-carousel .owl-nav {
    margin: 0;
}

.work-place-area .work-place-items.workplace-carousel .owl-nav .owl-prev,
.work-place-area .work-place-items.workplace-carousel .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #0c90db;
    font-size: 30px;
    height: 40px;
    left: 15px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
}

.work-place-area .work-place-items.workplace-carousel .owl-nav .owl-next {
    left: auto;
    right: 15px;
}


/* ==============================================================
     # Skill
=================================================================== */
.skill-area.full .row {
    display: flex;
}

.skill-area.full .skill-items {
    padding: 80px;
}

.skill-area.full .skill-items h2 {
    margin-bottom: 50px;
}

.skill-area .info {
    padding-right: 30px;
}

.skill-area .skill-items {
    margin-top: 30px;
}

.skill-area .info h2 {
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.skill-area .info h2 span {
    color: #0c90db;
}

.skill-area .skill-items .progress {
    background: #e7e7e7 none repeat scroll 0 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    height: 5px;
    margin-bottom: 25px;
}

.skill-area .skill-items .progress .progress-bar {
    background: #0c90db none repeat scroll 0 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.skill-area .skill-items .progress-box:last-child .progress {
    margin-bottom: 0;
}

.skill-area .skill-items .progress-box h5 {
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
}

.skill-area .tab-content h2,
.skill-area .tab-content h3,
.skill-area .tab-content h4 {
    font-weight: 500;
    text-transform: capitalize;
}

.skill-area .tab-items .nav-pills a {
    border: medium none;
    border-radius: inherit;
    float: left;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 50px;
    padding: 10px 0;
    position: relative;
    text-align: left;
    z-index: 1;
}

.skill-area .tab-items .nav-pills .active a,
.skill-area .tab-items .nav-pills a:focus {
    background: transparent none repeat scroll 0 0;
    color: #0c90db;
}

.skill-area .tab-items .nav-pills a:hover {
    color: #0c90db;
    background: transparent none repeat scroll 0 0;
}

.skill-area .tab-items .nav-pills {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 25px;
    margin-top: -10px;
    justify-content: center;
    display: flex;
}

.skill-area .tab-items .nav-pills .active a::after {
    background: #0c90db none repeat scroll 0 0;
    bottom: -2px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 60px;
}

.skill-area .tab-content p:last-child {
    margin-bottom: 0;
}


/* ==============================================================
     # Portfolio
=================================================================== */
.portfolio-area .portfolio-carousel .owl-nav,
.portfolio-area .portfolio-carousel-3-colo .owl-nav {
    margin: 0;
}

.portfolio-area .portfolio-carousel .owl-nav .owl-prev,
.portfolio-area .portfolio-carousel-3-col .owl-nav .owl-prev,
.portfolio-area .portfolio-carousel .owl-nav .owl-next,
.portfolio-area .portfolio-carousel-3-col .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #ffffff;
    font-size: 30px;
    height: 40px;
    left: 0;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
}

.portfolio-area .portfolio-carousel .owl-nav .owl-next,
.portfolio-area .portfolio-carousel-3-col .owl-nav .owl-next {
    left: auto;
    right: 0;
}

.portfolio-area .mix-item-menu button {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    box-shadow: inherit;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin: 0 5px;
    padding: 5px 10px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
    color: #232323;
}

.portfolio-area .mix-item-menu {
    margin-bottom: 20px;
    margin-top: -10px;
}

.portfolio-area.full-width .mix-item-menu {
    margin-bottom: 50px;
}

.portfolio-area .mix-item-menu button::after {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid #0c90db;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 10px;
    margin-top: -5px;
    position: absolute;
    right: -12px;
    top: 50%;
    width: 10px;
}

.portfolio-area .mix-item-menu button:last-child::after {
    display: none;
}

.portfolio-area .mix-item-menu button.active {
    color: #0c90db;
}

.portfolio-area.inc-colum {
    padding-bottom: 60px;
}

.portfolio-area.full-width.inc-colum {
    padding-bottom: 0;
    margin-bottom: -5px;
}

.portfolio-area .portfolio-items.col-3 .pf-item {
    float: left;
    padding: 15px;
    width: 33.3333%;
}

.portfolio-area .portfolio-items.col-2 .pf-item {
    float: left;
    padding: 15px;
    width: 50%;
}

.portfolio-area .portfolio-items.col-4 .pf-item {
    float: left;
    padding: 15px;
    width: 25%;
}


/* Effect(3) left slide */
.effect-left-swipe {
    position: relative;
    overflow: hidden;
    background: #232323;
    /* height: 17pc; */
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
}

.effect-left-swipe * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.portfolio-area .effect-left-swipe a i {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #0c90db;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}

.effect-left-swipe img {
    max-width: 100%;
    position: relative;
    /* height: 18pc; */
    -webkit-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
}

.effect-left-swipe:after {
    background: #1d2024 none repeat scroll 0 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    opacity: 0.5;
}

.effect-left-swipe .icons {
    height: auto;
    bottom: 25px;
    left: 30px;
    position: absolute;
    text-align: left;
    z-index: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.effect-left-swipe .icons .cat span {
    color: #ffffff;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    position: relative;
    padding-right: 5px;
}

.effect-left-swipe .icons .cat span::after {
    bottom: 0;
    content: ",";
    position: absolute;
    right: 0;
}

.effect-left-swipe .icons .cat span:last-child::after {
    display: none;
}

.effect-left-swipe .cat,
.effect-left-swipe h4 {
    display: block;
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.swipe-inline .effect-left-swipe .icons {
    bottom: 20px;
    left: 30px;
}

.swipe-inline .effect-left-swipe .cat {
    display: inline-block;
    margin-right: 3px;
    width: auto;
}

.effect-left-swipe h4 {
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.portfolio-area .portfolio-items.col-4 .pf-item h4 {
    font-size: 16px;
}

.portfolio-area.full-width .container-full {
    padding: 0;
}

.portfolio-area.full-width .container-full .portfolio-items .pf-item {
    padding: 0;
    overflow: hidden;
}

.portfolio-area.full-width .container-full .portfolio-items .pf-item .effect-left-swipe {
    border: 2px solid #ffffff;
    border-top: 3px solid #fff;
}


.effect-left-swipe h4 a {
    color: #ffffff;
}

.effect-left-swipe .cat {
    display: inline-block;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.effect-left-swipe:hover img,
.effect-left-swipe.hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.effect-left-swipe:hover:after,
.effect-left-swipe.hover:after {
    opacity: .5;
}

.effect-left-swipe:hover .icons .cat,
.effect-left-swipe.hover .icons .cat,
.effect-left-swipe:hover .icons h4,
.effect-left-swipe.hover .icons h4 {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.effect-left-swipe:hover h4,
.effect-left-swipe.hover h4,
.effect-left-swipe:hover .cat,
.effect-left-swipe.hover .cat {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.effect-left-swipe > a {
    color: #ffffff;
    font-size: 20px;
    opacity: 0;
    position: absolute;
    right: 30px;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    z-index: 1;
}

.effect-left-swipe:hover > a,
.effect-left-swipe.hover > a {
    opacity: 1;
    top: 30px;
}


/* ==============================================================
     # Team
=================================================================== */

.team-area .team-items .single-item {
    margin-bottom: 30px;
}

.team-area .team-items .item {
    /*background: #0a398a;*/
    background-image: url(../img/team-bg.jpg);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 33pc;
    border-radius: 15px;
    transition: 0.2s;
    background-size: cover;
}

/*.team-area .team-items .item:hover {*/
/*    scale: 1.04;*/
/*}*/

.team-area .team-items .item .info {
    /*background: #0a398a none repeat scroll 0 0;*/
    /*background-image: url(../img/team-bg.jpg);*/
    padding: 10px;
}

.team-area .team-items .item .info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.team-area .team-items .item .info p:last-child {
    margin-bottom: 0;
}

.team-area .team-items .item .info span {
    color: #0c90db;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-area .team-items.team-standard .item .info span {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.team-area .team-items.team-standard .item .info span::after {
    background: #0c90db none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    width: 40px;
}

.team-area .team-items .item .thumb {
    position: relative;
    z-index: 1;
}

.team-area .info .social li {
    display: inline-block;
}

.team-area .info .social li a {
    color: #666666;
    display: inline-block;
    font-size: 20px;
    margin: 0 10px;
}

.team-area .info .social {
    border-top: 1px dashed #dbdbdb;
    padding-top: 20px;
}

.team-area .team-items .item .thumb .icon {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 0;
    content: "";
    height: 50px;
    left: 50%;
    margin-bottom: -25px;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}

.team-area .team-items .item .thumb .icon::after {
    color: #0c90db;
    content: "\f508";
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 900;
    height: 100%;
    left: 0;
    letter-spacing: -2px;
    position: absolute;
    top: 5px;
    width: 100%;
}

.team-area .team-items.team-standard .thumb {
    overflow: hidden;
    background: rgb(211 211 211);
}

.team-area .team-items.team-standard .item:hover .thumb::after {
    opacity: 1;
}

.team-area .team-items.team-standard .thumb .social ul {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 30px;
    display: inline-block;
    padding: 10px 30px;
}

.team-area .team-items.team-standard .thumb .social li {
    display: inline-block;
}

.team-area .team-items.team-standard .thumb .social li a {
    color: #0c90db;
    display: inline-block;
    font-size: 20px;
    margin: 5px 10px 0;
}

.team-area .team-items.team-standard .thumb .social {
    bottom: -55px;
    left: 0;
    padding: 15px 25px;
    position: absolute;
    text-align: center;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.team-area .team-items.team-standard .item:hover .thumb .social {
    bottom: 0;
}

.team-area .team-items.team-carousel .owl-nav {
    margin: 0;
}

.team-area .team-items.team-carousel .owl-nav .owl-prev,
.team-area .team-items.team-carousel .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #0c90db;
    font-size: 30px;
    height: 40px;
    left: -50px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
}

.team-area .team-items.team-carousel .owl-nav .owl-next {
    left: auto;
    right: -50px;
}

.team-area .team-items.team-carousel .owl-dots {
    margin: -25px 0 0;
    position: absolute;
    right: -45px;
    top: 50%;
}

.team-area .team-items.team-carousel .owl-dots .owl-dot {
    display: block;
}

.team-area .team-items.team-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid #cccccc;
    height: 20px;
    margin: 10px 0;
    width: 20px;
}

.team-area .team-items.team-carousel .owl-dots .owl-dot.active span {
    background: #0c90db none repeat scroll 0 0;
    border-color: #0c90db;
}


/* Team Single */

.team-items.single .bio h4 {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-items.single .bio {
    -moz-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    -webkit-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    -o-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    padding: 30px;
    text-align: center;
}

.team-items.single .bio span {
    color: #0c90db;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.team-items.single .bio li {
    display: inline-block;
}

.team-items.single .bio li a {
    color: #666666;
    display: inline-block;
    font-size: 20px;
    margin: 0 10px;
}

.team-items.single .bio ul {
    margin-top: 10px;
}

.team-items.single .content h2 {
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.team-items.single .content h4 {
    font-weight: 600;
    text-transform: capitalize;
}

.team-items.single .content h3 {
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 20px;
    text-transform: capitalize;
}

.team-items.single .profile {
    padding-right: 30px;
}

.team-items.single .content .progress {
    height: 5px;
}

.team-items.single .content .progress .progress-bar {
    background: #0c90db none repeat scroll 0 0;
}

.team-items.single .progress-box h5 {
    color: #666666;
    font-weight: 600;
    text-transform: capitalize;
}

.team-items.single .progress-box .progress {
    margin-bottom: 30px;
}

.team-items.single .progress-box:last-child .progress {
    margin-bottom: 0;
}

.team-area .team-items.single .content ul li {
    border-top: 1px solid #e7e7e7;
    padding: 15px 0;
}

.team-area .team-items.single .content ul li:first-child {
    border-top: medium none navy;
    padding-top: 0;
}

.team-area .team-items.single ul li:last-child {
    padding-bottom: 0;
}

.team-area .team-items.single .content ul li i {
    color: #0c90db;
    font-size: 20px;
    min-width: 25px;
}


/* ==============================================================
     # Pricing Table
=================================================================== */

.pricing-area .pricing-item {
    background: #ffffff none repeat scroll 0 0;
    -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);
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
    border: 1px solid #0c90db;
}

.pricing-area .col-md-3,
.pricing-area .col-md-4,
.pricing-area .col-md-6 {
    margin-bottom: 30px;
}

.pricing-area .pricing-item .title {
}

.pricing-area .pricing-item .title h4 {
    color: #666666;
    display: inline-block;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.pricing-area .pricing-item.active .title h4::after,
.pricing-area .pricing-item.active .title h4::before {
    background: #ffffff none repeat scroll 0 0;
}

.pricing-area .pricing-item i {
    color: #0c90db;
    display: inline-block;
    font-size: 80px;
    margin-bottom: 15px;
}

.pricing-area .pricing-item h2 {
    color: #666666;
    font-size: 50px;
    font-weight: 600;
    margin: 0;
}

.pricing-area .pricing-item.active h2 {
    color: #ffffff;
}

.pricing-area .pricing-item h2 sup {
    bottom: auto;
    font-size: 30px;
    font-weight: 500;
    right: 5px;
    top: -15px;
}

.pricing-area .pricing-item h2 sub {
    font-size: 15px;
}

.pricing-area .pricing-item .footer a {
    margin-top: 20px;
}

.pricing-area .pricing-item li {
    line-height: 40px;
}

.pricing-area .pricing-item li.pricing-header {
    color: #666666;
    line-height: inherit;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.pricing-area .pricing-item li.pricing-header::after {
    background: #f4f4f4 none repeat scroll 0 0;
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    bottom: 0;
    content: "";
    height: 100%;
    left: -50%;
    position: absolute;
    width: 200%;
    z-index: -1;
}

.pricing-area .pricing-item.active li.pricing-header::after {
    background: #0c90db none repeat scroll 0 0;
    border-color: transparent;
}

.pricing-simple li.pricing-header span.badge {
    background: #ffffff none repeat scroll 0 0;
    border-radius: inherit;
    color: #0c90db;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 13px 0;
    position: absolute;
    right: -87px;
    text-transform: uppercase;
    top: -68px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    width: 200px;
}


/* ==============================================================
     # Achivement
=================================================================== */

.achivement-area .info {
    padding-right: 30px;
}

.achivement-area .info h2 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    padding-bottom: 25px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.achivement-area .info h2::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 50px;
}

.achivement-area .info a {
    margin-top: 15px;
}

.achivement-area .achivement-items .fun-fact {
    padding: 30px 30px;
    position: relative;
    /* z-index: 1; */
    text-align: center;
    border-radius: 20px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    height: 14pc;
}

.achivement-area .achivement-items .fun-fact::after {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid rgba(255, 255, 255, 0.57);
    content: "";
    height: 180px;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    /* border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.achivement-area .achivement-items .item {
    /* margin-top: 30px; */
}

.achivement-area .achivement-items .item:first-child,
.achivement-area .achivement-items .item:nth-child(2) {
    margin-top: 0;
}

.achivement-area .achivement-items .fun-fact .timer {
    color: #0c90db;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-top: 10px;
}

.achivement-area .achivement-items .fun-fact .medium {
    color: #232323;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    /* margin-top: 10px; */
    text-transform: uppercase;
    font-weight: 600;
}


/* ==============================================================
     # Fun Factor
=================================================================== */

.latest-fun-fact-area {
    font-family: 'Poppins', sans-serif;
}

.latest-fun-fact-area .single-item .counter {
    position: relative;
}

.latest-fun-fact-area .single-item .counter {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: 600;
    color: #232323;
    line-height: 1;
    margin-bottom: 15px;
}

.latest-fun-fact-area .single-item .counter .operator {
    font-size: 40px;
    margin-left: 2px;
}

.latest-fun-fact-area .single-item .medium {
    font-weight: 600;
    color: #232323;
}

.latest-fun-fact-area .fun-factor-box .progress-box .progress {
    position: relative;
    height: 5px;
    background: #ddd;
    border-radius: 30px;
    margin-top: 15px;
    margin-bottom: 0;
}

.latest-fun-fact-area .fun-factor-box .progress-box .progress .progress-bar {
    background: #0c90db;
}

/* ==============================================================
     # Work Process
=================================================================== */

.work-process-area .thumb {
    padding-right: 35px;
}

.work-process-area .process-item .icon,
.work-process-area .process-item .info {
    display: table-cell;
    vertical-align: top;
}

.work-process-area .process-item .info {
    padding-left: 30px;
}

.work-process-area .process-item .icon i {
    color: #ffffff;
    font-size: 27px;
    background: #0c90db;
    width: 50px;
    height: 50px;
    border-radius: 30%;
    text-align: center;
    line-height: 50px;
    /* box-shadow: inset 0 0 25px 0 #058d37; */
}
.work-process-area .process-item .info span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 10px;
    opacity: 0.2;
}

.work-process-area .process-item .info h4 {
    font-weight: 600;
    text-transform: capitalize;
}

.work-process-area .process-items h2 {
    font-weight: 600;
    text-transform: capitalize;
}

.work-process-area .process-items .heading {
    margin-bottom: 30px;
}

.work-process-area .process-item {
    transition: 0.5s;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.work-process-area .process-item p:last-child {
    margin-bottom: 0;
}

.work-process-area .process-item:last-child {
    border: medium none;
    margin: 0;
    padding: 0;
}

.work-process-area .process-item .info {
    transition: 0.5s;
}

.work-process-area .process-item:hover .info {
    padding-left: 45px;
}


/* ==============================================================
     # Faq Accordion
=================================================================== */

.faq-area {
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.faq-items .panel-group,
.acd-items .panel-group {
    margin-bottom: 0;
}

.faq-area .faq-items {
    margin-top: -15px;
}

.acd-items .panel-heading .panel-title a span {
    background: #ff5a6e none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
    text-align: center;
    width: 30px;
}

.acd-items .panel-heading .panel-title a {
    color: #232323;
    display: block;
    font-weight: 600;
    padding: 19px 0 20px 15px;
    position: relative;
}

.acd-items .panel-heading {
    padding: 0;
}

.faq-area .acd-items .panel-body {
    padding: 15px 15px;
}

.acd-items .panel.panel-default {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    box-shadow: inherit;
    margin: 0 0 10px;
}

.acd-items .panel.panel-default:last-child {
    margin-bottom: 0;
}

.acd-items .panel-body p:last-child {
    margin: 0;
}

.faq-items .panel-body {
    padding: 20px;
}

.faq-items .acd-items .panel .panel-body {
    border-color: #e7e7e7;
}

.acd-arrow .panel-group.symb .panel-heading a::after {
    content: "\f107";
    font-size: 20px;
    position: absolute;
    right: 0px;
    top: 0px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    background: #0c90db;
    height: 100%;
    width: 44px;
    text-align: center;
    line-height: 60px;
}

.acd-arrow.left .panel-group.symb .panel-heading a::after {
    content: "\f01b" !important;
    font-size: 20px;
    position: absolute;
    right: auto;
    left: 10px;
    top: 12px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.acd-arrow.left .panel-group.symb .panel-heading a.collapsed:after {
    content: "\f01a" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.faq-area .faq-items .panel-group {
    margin: 0;
}

.acd-arrow .panel-group.symb .panel-heading a.collapsed:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}


/* ==============================================================
     # Product
=================================================================== */

.buspro-product-area .product-single {
    margin-bottom: 30px;
}

.product-list .product-thumb {
    position: relative;
    z-index: 1;
}

.product-list .product-thumb .overlay {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 5px;
    bottom: -35px;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    left: 15px;
    padding: 15px;
    position: absolute;
    right: 15px;
    text-align: center;
}

.product-list .product-thumb .overlay li {
    display: inline-block;
}

.product-list .product-thumb .overlay li a {
    border: 1px solid;
    border-radius: 50%;
    color: #0c90db;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 0 3px;
    text-align: center;
    width: 40px;
}

.product-list .product-content {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e7e7e7;
    padding: 65px 30px 30px;
}

.product-list .product-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.product-list .product-content h4 a:hover {
    color: #0c90db;
}

.product-list .product-content span {
    color: #232323;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 3px;
}

.product-list .product-content span del {
    color: #999999;
}


/* ==============================================================
     # Error Page
=================================================================== */

.error-page-area .error-box {
    position: relative;
}

.error-page-area .error-box h1 {
    color: #666666;
    font-size: 300px;
    font-weight: 600;
    left: 50%;
    line-height: 1;
    opacity: 0.09;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: -1;
}

.error-page-area h2 {
    font-weight: 600;
    text-transform: uppercase;
}

.error-page-area a {
    margin-top: 15px;
}

.error-box .search {
    margin-bottom: 15px;
    margin-top: 30px;
    text-align: center;
}

.error-box .search form {
    margin: auto;
    position: relative;
    width: 400px;
}

.error-box .search .input-group {
    width: 100%;
}

.error-box .search form input {
    border: 1px solid #e7e7e7;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    box-shadow: inherit;
}

.error-box .search form button {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    line-height: 50px;
    padding: 0 15px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

/* ==============================================================
     # Blog
=================================================================== */

.blog-area .single-item {
    margin: 15px 0 !important;
}

.blog-area.full-blog .single-item {
    margin-bottom: 50px;
}

.blog-area .thumb {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.blog-area .item .thumb img {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    height: 250px;
    object-fit: cover;
    width: 100%;
}
.blog-area .item:hover .thumb img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.blog-area .thumb .post-formats {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 15px;
    width: 50px;
    z-index: 1;
}

.blog-area .thumb .post-formats::after {
    background: #0c90db none repeat scroll 0 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.blog-area .info {
    /* box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06); */
    /* overflow: hidden; */
    padding: 10px;
    background: #ffffff none repeat scroll 0 0;
    border-radius: 0 0 10px 10px;
}

.blog-area .info a:hover {
    color: #0c90db;
}

.blog-area .info h4 {
    margin-bottom: 0px;
}

.blog-area .info h2,
.blog-area .info h3,
.blog-area .info h4 {
    font-weight: 600;
    text-transform: capitalize;
    line-height: 30px;
    transition: 0.5s;
}

.blog-area .single-item .item:hover .info h4 a {
    color #00b9f1;
}

.blog-area .info .cats {
    margin-bottom: 10px;
}

.blog-area .info .cats i {
    margin-right: 5px;
}

.blog-area .info .cats a {
    color: #666666;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding-right: 8px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.blog-area .info .cats a:hover {
    color: #0c90db;
}

.blog-area .info .cats a::after {
    bottom: 0;
    content: ",";
    font-family: "Times New Roman";
    font-size: 15px;
    position: absolute;
    right: 0;
}

.blog-area .info .cats a:last-child::after {
    display: none;
}

.blog-area .info .meta li {
    color: #666666;
    float: left;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-area .info .meta li i {
    margin-right: 5px;
}

.blog-area .info .meta > a {
    color: #0c90db;
    float: right;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-area .info .meta {
    border-top: 1px solid #e7e7e7;
    float: left;
    padding-top: 15px;
    position: absolute;
    bottom: 15px;
    right: 18px;
    width: 90%;
    margin-bottom: -5px;
}

.blog-area .blog-carousel .owl-nav {
    margin: 0;
}

.blog-area .blog-carousel .owl-nav .owl-prev,
.blog-area .blog-carousel .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #0c90db;
    font-size: 30px;
    height: 40px;
    left: -50px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
}

.blog-area .blog-carousel .owl-nav .owl-next {
    left: auto;
    right: -50px;
}

.blog-area .blog-carousel .owl-dots {
    margin: -25px 0 0;
    position: absolute;
    right: -45px;
    top: 50%;
}

.blog-area .blog-carousel .owl-dots .owl-dot {
    display: block;
}

.blog-area .blog-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid #cccccc;
    height: 20px;
    margin: 10px 0;
    width: 20px;
}

.blog-area .blog-carousel .owl-dots .owl-dot.active span {
    background: #0c90db none repeat scroll 0 0;
    border-color: #0c90db;
}

.blog-area.left-sidebar .blog-content {
    float: right;
}

/* Pagination */

.blog-area .pagi-area .pagination li a {
    border: 1px solid #e7e7e7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #0c90db;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    margin-top: 5px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    width: 50px;
}

.blog-area .pagi-area .pagination li.active a {
    background: #0c90db none repeat scroll 0 0;
    border-color: transparent;
    color: #ffffff;
}

.blog-area .pagi-area .pagination {
    margin-bottom: -10px;
    margin-top: -5px;
}

/* Sidebar */

.blog-area .sidebar .title {
    display: block;
}

.blog-area .sidebar .title h4 {
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: -5px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}
.blog-area .sidebar .title h4::before {
    background: #0c90db none repeat scroll 0 0;
    bottom: 5px;
    content: "";
    height: 2px;
    left: 41%;
    position: absolute;
    width: 50px;
    z-index: -1;
}

.blog-area .sidebar input[type="text"] {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    box-shadow: inherit;
}

.blog-area .sidebar form {
    position: relative;
}

.blog-area .sidebar input[type="submit"] {
    background: #232323 none repeat scroll 0 0;
    border: medium none;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 15px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.blog-area .sidebar input[type="submit"]:hover {
    background: #0c90db none repeat scroll 0 0;
}

.blog-area .sidebar .sidebar-item {
    float: left;
    margin-bottom: 50px;
    width: 100%;
}

.blog-area .sidebar .sidebar-item.gallery {
    margin-bottom: 40px;
}

.blog-area .sidebar .sidebar-item:last-child {
    margin-bottom: 0;
}

.blog-area .sidebar .sidebar-item.category .sidebar-info,
.blog-area .sidebar .sidebar-item.archives .sidebar-info {
    margin-top: -5px;
}

.blog-area .sidebar .sidebar-item.category li {
    display: block;
    padding: 10px 0;
    /* border-bottom: 1px solid #d3d3d3; */
    position: relative;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 0 !important;
    /* background: #f3f3f3; */
    /* background-image: linear-gradient(to left, var(--tw-gradient-stops)); */
    --tw-gradient-stops: #ffffff00, #d5d5d585;
    font-weight: 600;
    font-size: 17px;
}

.blog-area .sidebar .sidebar-item.category li a {
    display: inline-block;
    text-transform: capitalize;
    padding-left: 10px;
}

.blog-area .sidebar .sidebar-item li a:hover {
    color: #0c90db;
}

.sidebar-item.category ul li a::after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "\f07b";
    font-family: "Font Awesome 5 Free";
    height: 8px;
    left: 0;
    position: absolute;
    width: 8px;
    top: 10px;
}

.blog-area .sidebar .sidebar-item.category li a span {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #666666;
    font-weight: 500;
    padding: 0 8px;
    position: absolute;
    right: 0;
    top: 10px;
}

.sidebar-item.recent-post li a {
    color: #333333;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.sidebar-item.recent-post .meta-title {
    color: #999999;
    font-family: "Poppins", sans-serif;
    margin-top: 5px;
}

.sidebar-item.recent-post li a:hover {
    color: #0c90db;
}

.color-yellow .sidebar-item.recent-post li a:hover {
    color: #ff9800;
}

.sidebar-item.recent-post li a span {
    display: inline-block;
    color: #232323;
}

.sidebar-item.recent-post li span {
    display: inline-block;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.sidebar-item.recent-post .meta-title a {
    text-transform: capitalize;
    color: #999999;
}

.sidebar-item.recent-post li {
    color: #cdd0d3;
}

.sidebar-item.recent-post li {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.sidebar-item.recent-post li:last-child {
    border: medium none;
    margin: 0;
    padding: 0;
}

.sidebar-item.recent-post li .thumb {
    display: table-cell;
    padding-top: 5px;
    vertical-align: top;
    width: 80px;
}

.sidebar-item.recent-post .thumb img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.sidebar-item.recent-post li .info {
    box-shadow: inherit;
    color: #837f7e;
    display: table-cell;
    line-height: 26px;
    padding: 0 0 0 20px;
    vertical-align: top;
}

.sidebar-item.gallery ul li {
    box-sizing: border-box;
    float: left;
    padding: 0 10px 10px 0;
    width: 33.333%;
    float: left;
}

.sidebar-item.gallery ul li img {
    min-height: 70px;
    width: 100%;
}

.sidebar-item.archives ul li {
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-item.archives ul li:last-child {
    margin-bottom: 0;
}

.sidebar-item.archives ul li a {
    color: #666666;
    display: inline-block;
    font-weight: 500;
    text-transform: capitalize;
    z-index: 1;
    padding-left: 25px;
}

.sidebar-item.archives ul li a::after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "\f07b";
    font-family: "Font Awesome 5 Free";
    height: 8px;
    left: 0;
    position: absolute;
    width: 8px;
}

.sidebar-item.social-sidebar li {
    display: inline-block;
    float: left;
    margin-right: 5px;
}

.sidebar-item.social-sidebar li a {
    background: #232323 none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 5px;
    text-align: center;
    width: 60px;
}

.sidebar-item.social-sidebar li a:hover {
    color: #ffffff !important;
}

.sidebar-item.social-sidebar li.facebook a {
    background: #3B5998 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.twitter a {
    background: #1DA1F2 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.pinterest a {
    background: #BD081C none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.g-plus a {
    background: #DB4437 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.linkedin a {
    background: #0077B5 none repeat scroll 0 0;
}

.sidebar-item.tags ul li {
    display: inline-block;
}

.sidebar-item.tags ul li a {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e7e7e7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 8px;
    margin-right: 5px;
    padding: 10px 25px;
    text-transform: capitalize;
}

.sidebar-item.tags ul li a:hover {
    color: #0c90db;
}


/* Blog Single */
.blog-area.single .item .content-box span {
    background: #0c90db none repeat scroll 0 0;
    color: #ffffff;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 3px 20px;
    text-transform: uppercase;
}

.blog-area.single .item .content-box h2,
.blog-area.single .item .content-box h3,
.blog-area.single .item .content-box h4 {
    font-weight: 500;
}

.blog-area.single .content-box .cats {
    float: left;
    margin-right: 5px;
}

.blog-area.single .content-box .meta .date {
    float: right;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-area.single .content-box .meta {
    overflow: hidden;
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

.blog-area.single .content-box .cats a:last-child::after {
    display: none;
}

.blog-area.single .item {
    margin-bottom: 0;
}

.blog-area .item blockquote {
    background: #f6f6f6 none repeat scroll 0 0;
    border-color: #0c90db;
    color: #414141;
    font-size: 15px;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.blog-area .item blockquote p {
    margin: 0;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.author-bio {
    display: block;
    margin-top: 30px;
    width: 100%;
}

.author-bio .avatar {
    display: table-cell;
    vertical-align: top;
    width: 200px;
}

.author-bio .content {
    display: table-cell;
    padding: 0 0 0 30px;
    vertical-align: middle;
}

.author-bio .content p {
    margin: 0;
    position: relative;
    z-index: 1;
    padding-top: 5px;
}

.author-bio .content p::after {
    content: ",,";
    font-family: "Times New Roman";
    font-size: 60px;
    left: 0;
    letter-spacing: -4px;
    opacity: 0.5;
    position: absolute;
    top: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.author-bio .content h4 {
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 15px;
    text-transform: uppercase;
}

.blog-area.single .post-pagi-area {
    background: #f9f9f9 none repeat scroll 0 0;
    margin: 30px 0 45px;
    overflow: hidden;
    padding: 15px;
}

.blog-area.single .post-pagi-area a {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-area.single .post-pagi-area a:hover {
    color: #0c90db;
}

.blog-area.single.color-yellow .post-pagi-area a:hover {
    color: #ff9800;
}

.blog-area.single .post-pagi-area a:last-child {
    float: right;
}

.blog-area.single .post-pagi-area a:first-child i {
    margin-right: 3px;
}

.blog-area.single .post-pagi-area a:last-child i {
    margin-left: 3px;
}

.blog-area.single .post-tags span {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-right: 5px;
    text-transform: uppercase;
}

.blog-area.single .post-tags a {
    border: 1px solid #e7e7e7;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #232323;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
    padding: 3px 25px;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.comments-area .commen-item .comments-info p {
    display: block;
    margin: 0;
}

.blog-area .contact-comments .submit {
    margin-bottom: 0;
}

.blog-area.single .post-tags a:hover {
    color: #0c90db;
}

.blog-area.single.color-yellow .post-tags a:hover {
    color: #ff9800;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comments-list .commen-item .avatar {
    float: left;
    height: 100px;
    width: 100px;
}

.comments-list .commen-item .content {
    display: table-cell;
    vertical-align: top;
}

.comments-list .commen-item .avatar img {
    height: 80px;
    width: 80px;
}

.comments-list .commen-item {
    margin-bottom: 30px;
}

.comments-list .commen-item.reply {
    padding-left: 80px;
}

.comments-area {
    margin-top: 40px;
}

.comments-area .comments-title h2,
.comments-area .comments-title h3,
.comments-area .comments-title h4 {
    border-bottom: 1px solid #e2e2e2;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.comments-list .commen-item .content h3,
.comments-list .commen-item .content h4,
.comments-list .commen-item .content h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.comments-info a {
    border: 1px solid #e7e7e7;
    color: #232323;
    display: inline-block;
    font-size: 12px;
    margin-top: 15px;
    padding: 1px 10px;
    text-transform: uppercase;
}

.comments-info a:hover {
    color: #0c90db;
}

.color-yellow .comments-info a:hover {
    color: #ff9800;
}

.comments-info a i {
    margin-right: 10px;
}

.comments-form input,
.comments-form textarea {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #e7e7e7;
    border-image: none;
    border-radius: inherit;
    border-style: none none solid;
    border-width: medium medium 1px;
    box-shadow: inherit;
}

.comments-form textarea {
    min-height: 180px;
    padding: 15px;
}

.blog-area.full-blog.single-blog .form-group.submit {
    margin-bottom: 0;
}

.comments-form button {
    background-color: #1d2024;
    border: 1px solid transparent;
    color: #ffffff;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 25px;
    margin-top: 20px;
    padding: 12px 40px;
    text-transform: uppercase;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.comments-form button:hover {
    color: #ffffff;
    background-color: #0c90db;
    border: 1px solid transparent;
}

.comments-area .commen-item .comments-info {
    margin-bottom: 15px;
}

.comments-form .title h2,
.comments-form .title h3,
.comments-form .title h4 {
    border-bottom: 1px solid #e7e7e7;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.blog-area .contact-comments .comments {
    margin-top: 20px;
}

.blog-area.single .blog-items .item .contact-comments .col-md-6 {
    float: left;
    padding: 0 15px;
}

/* ==============================================================
     # Clients
=================================================================== */

.clients-area h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.clients-area h4::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 50px;
}

.clients-area.bg-light h4::after {
    background: #0c90db none repeat scroll 0 0;
}

.clients-area .left-info {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 30px;
}

.clients-area.bg-light .left-info {
    border-right: 1px solid #e7e7e7;
}

.clients-area .clients-box {
    padding-left: 30px;
}

.clients-area .clients-items img {
    width: auto;
    margin: auto;
}

.clients-area .row {
    align-items: center;
    display: flex;
}


/* ==============================================================
     # Contact Area
=================================================================== */

.contact-area .contact-items {
    overflow: hidden;
}

.contact-area .contact-form h2 {
    font-weight: 600;
    text-transform: capitalize;
}

.contact-area .contact-form p {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
}

.contact-area .contact-form p::after {
    background: #0c90db none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 50px;
}

.contact-area .contact-form input {
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    box-shadow: inherit;
}

.contact-area .contact-form textarea {
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    box-shadow: inherit;
    min-height: 180px;
    padding: 15px 12px;
}

.contact-area .contact-form button {
    background: #0c90db none repeat scroll 0 0;
    border: medium none;
    border-radius: 15px;
    box-shadow: inherit;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    text-transform: uppercase;
}

.contact-area .contact-form button i {
    margin-left: 2px;
}

.contact-area form img.loader {
    margin-left: 5px;
}

.contact-area .contact-form {
    padding: 30px;
    background: #f5f5f5;
    margin: 20px 0px 20px 0px;
    border-radius: 40px;
    box-shadow: rgb(73 73 73 / 27%) 0px 0px 15px;
    width: 65%;
    border: 10px solid #fff;
}

.contact-area .address-items h4 {
    border-bottom: 1px solid #e7e7e7;
    font-weight: 600;
    padding-bottom: 15px;
    text-transform: capitalize;
}

.contact-area .address-items li {
    display: block;
    margin-bottom: 30px;
}

.contact-area .address-items li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-area .address-items li .icon,
.contact-area .address-items li span {
    display: table-cell;
    vertical-align: top;
}

.contact-area .address-items li span {
    padding-left: 15px;
}

.contact-area .address-items li .icon i {
    color: #ffffff;
    display: inline-block;
    font-size: 26px;
    margin-top: 7px;
}

.contact-area .address-items li .icon i.fa-clock,
.contact-area .address-items li .icon i.fa-envelope-open {
    font-weight: 500;
}

form .alert-notification {
    padding: 0;
}

form .alert-notification .alert-success h3 {
    color: green;
}

form .alert-notification h3 {
    margin-bottom: 5px;
}

form .alert-notification .alert {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e7e7e7;
    margin-top: 30px;
}


/* Google Maps */

.google-maps iframe {
    height: 500px;
    margin-bottom: -10px;
    padding: 3px;
    width: 100%;
}

.maps-area.full .google-maps iframe {
    border: medium none;
    height: 500px;
    margin-bottom: -10px;
}

.maps-area {
    overflow: hidden;
}

/* Call Back Area */
.callback-area {
    position: relative;
}

.callback-area .side-icon {
    color: #666666;
    font-size: 300px;
    font-weight: 600;
    left: 50%;
    line-height: 1;
    opacity: 0.09;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.callback-area h2 {
    font-weight: 600;
}

.callback-area .heading {
    margin-bottom: 25px;
    padding-bottom: 5px;
    position: relative;
    z-index: 1;
}

.callback-area .heading::after {
    background: #232323 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 50px;
}

.callback-area input {
    border: 1px solid #e7e7e7;
    box-shadow: inherit;
}

.callback-area button {
    background: #0c90db none repeat scroll 0 0;
    border: medium none;
    border-radius: 5px;
    box-shadow: inherit;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 35px;
    text-transform: uppercase;
}

.callback-area .loader {
    margin-left: 5px;
}


/* ==============================================================
     # Login Register
=================================================================== */
form.white-popup-block {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 5px;
    margin: auto;
    overflow: hidden;
    padding: 50px 30px;
    position: relative;
    width: 50%;
}

form.white-popup-block button.mfp-close {
    color: red;
}

form.white-popup-block li {
    display: inline-block;
    float: left;
    margin-bottom: 5px;
    margin-right: 5px;
}

form.white-popup-block li a {
    background: #002147 none repeat scroll 0 0;
    border: medium none;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    height: 50px;
    line-height: 53px;
    text-align: center;
    width: 50px;
}

form.white-popup-block li.facebook a {
    background: #3b5998 none repeat scroll 0 0;
}

form.white-popup-block li.twitter a {
    background: #1da1f2 none repeat scroll 0 0;
}

form.white-popup-block li.pinterest a {
    background: #bd081c none repeat scroll 0 0;
}

form.white-popup-block li.g-plus a {
    background: #db4437 none repeat scroll 0 0;
}

form.white-popup-block li.linkedin a {
    background: #0077b5 none repeat scroll 0 0;
}

form.white-popup-block .col-md-6:last-child {
    border-left: 1px solid #e7e7e7;
}

form.white-popup-block .col-md-6:last-child {
    border-left: 1px solid;
}

form.white-popup-block h3, form.white-popup-block h4 {
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: capitalize;
}

form.white-popup-block .login-social {
    padding-right: 30px;
}

form.white-popup-block .login-custom {
    border-left: 1px solid #e7e7e7;
    padding-left: 30px;
}

form.white-popup-block input {
    border: 1px solid #e7e7e7;
    box-shadow: inherit;
}

form.white-popup-block .lost-pass-link {
    float: right;
}

form.white-popup-block .lost-pass-link:hover {
    text-decoration: underline;
}

form.white-popup-block label {
    float: left;
}

form.white-popup-block label input {
    float: left;
    margin-right: 5px;
    min-height: 20px;
}

form.white-popup-block button[type="submit"] {
    background: #0c90db none repeat scroll 0 0;
    border: medium none;
    color: #ffffff;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 50px;
    text-transform: uppercase;
}

form.white-popup-block .link-bottom {
    display: block;
    float: left;
    margin-bottom: 0;
    margin-top: 15px;
    width: 100%;
}

form.white-popup-block .link-bottom a:hover {
    text-decoration: underline;
}

.login-area form.white-popup-block {
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    width: auto;
}

/* ==============================================================
     # Counter
=================================================================== */
.counter-content-area,
.counter-content-area div {
    height: 100%;
}

.counter-content-area {
    background-position: right center;
}

.counter-content-box div {
    height: auto;
}

.counter-content-box {
    display: flex;
    align-items: center;
    height: 100%;
}

.counter-content-area {
    position: relative;
    z-index: 1;
}

.counter-content-area::before {
    position: absolute;
    left: -8%;
    top: 0;
    content: "";
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(35, 40, 46, 1) 75%);
    transform: skewX(-10deg);
    border-right: 3px solid #0c90db;
}


.counter-content-box img {
    margin-bottom: 30px;
}

.counter-content-box h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

.counter-content-box .info {
    padding-right: 70px;
}

.counter-content-box .info form {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.counter-content-box .info form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding-left: 30px;
    min-height: 60px;
}

.counter-content-box .info form button {
    position: absolute;
    right: 5px;
    top: 5px;
    min-height: 50px;
    border-radius: 30px;
    border: none;
    padding: 0 30px;
    background: #0c90db;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.item-list .counter-item {
    float: left;
    width: 50%;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.counter-content-box .item-list {
    overflow: hidden;
    margin: 0 -15px;
}

.item-list .counter-item span {
    display: block;
    padding-top: 45px;
    font-size: 30px;
    margin-bottom: 10px;
}

.item-list .counter-item .item {
    background: linear-gradient(90deg, rgba(28, 185, 200, 1) 0%, rgba(17, 138, 149, 1) 75%);
    height: 150px;
    width: 150px;
    margin: auto;
    color: #ffffff;
    border-radius: 37% 63% 70% 30% / 42% 42% 58% 58%;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.item-list .counter-item .item::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 110%;
    width: 110%;
    background: #0c90db;
    z-index: -1;
    border-radius: 37% 63% 70% 30% / 42% 42% 58% 58%;
    opacity: 0.3;
}

/* ==============================================================
     # Footer
=================================================================== */

.footer-top .content li {
    display: inline-block;
    margin-left: 100px;
    text-align: left;
}

.footer-top {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    overflow: hidden;
    padding: 30px 0;
}

.footer-top .row {
    align-items: center;
    display: flex;
}

.footer-top .form form {
    float: right;
    width: 70%;
}

.footer-top .form form input {
    border: 1px solid #e7e7e7;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    border-radius: 30px !important;
    box-shadow: inherit;
    min-height: 60px;
    padding-left: 30px;
    width: 100%;
}

.footer-top .form form .input-group-addon {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    box-shadow: inherit;
    padding: 0;
}

.footer-top .form form .input-group-addon button {
    background: #0c90db none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 60px;
    padding: 0 30px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
    z-index: 9;
}

.footer-top form .input-group.stylish-input-group {
    position: relative;
    width: 100%;
}

/*footer .f-items {*/
/*    overflow: hidden;*/
/*}*/

footer.bg-dark p {
    color: #cccccc;
}

.footer-top .logo a {
    display: inline-block;
    margin-top: 10px;
}

footer .footer-top img {
    height: 50px;
}

footer .f-item h4 {
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

footer.bg-dark .f-item h4 {
    color: #ffffff;
}

footer .f-item.link li {
    /* float: left; */
    margin-bottom: 5px;
    /* width: 50%; */
    padding-right: 15px;
}

footer.col-3 .f-item.link li {
    padding-right: 0;
    width: 100%;
}

footer .f-item.link li a {
    display: inline-block;
    font-size: 14px;
    padding-left: 15px;
    position: relative;
}

footer .f-item.link li a:hover {
    color: rgb(11 177 233);
}

footer .f-item.link li a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 6px;
}

footer .f-item.link li:last-child {
    margin: 0;
}

footer .f-item .address h5 {
    text-transform: uppercase;
}

footer .f-item .address li {
    margin-bottom: 15px;
}

footer .f-item .address li:last-child {
    margin: 0;
}

footer .f-item .address h5 i {
    color: rgb(108 199 255);
    margin-right: 5px;
}

footer .f-item .social li {
    display: inline-block;
    margin-right: 10px;
}

footer .f-item .social li a {
    border: 1px solid #e7e7e7;
    color: #5cc1ff;
    display: inline-block;
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
}

footer.bg-dark .f-item .social li a {
    border: 1px solid rgb(255 255 255 / 57%);
}

footer .f-item .social {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
    padding-top: 16px;
    padding-bottom: 20px;
    display: flex;
}

.footer-social {
    display: flex;
}

footer.bg-dark li a {
    color: #cccccc;
}

footer.bg-dark .f-item .social {
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

footer .f-item.recent-post li a:last-child {
    display: inline-block;
    font-weight: 400;
}

footer .f-item.recent-post .meta-title,
footer .f-item.recent-post .meta-title a {
    color: #666666;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    text-transform: uppercase !important;
}

footer.bg-dark .f-item.recent-post .meta-title,
footer.bg-dark .f-item.recent-post .meta-title a {
    color: #ffffff;
}

footer.bg-dark .f-item.recent-post .meta-title a {
    color: #0c90db;
}

footer .f-item.recent-post .meta-title {
    margin-top: 5px;
    text-transform: uppercase;
}

footer .f-item.recent-post li a span {
    display: inline-block;
    color: #cdd0d3;
}

footer .f-item.recent-post li a:hover {
    color: rgb(11 177 233);
}

footer .f-item.recent-post li span {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

footer .f-item.recent-post li span i {
    margin-right: 5px;
}

footer .f-item.recent-post .meta-title a {
    text-transform: capitalize;
}

footer .f-item.recent-post li {
    color: #cdd0d3;
}

footer .f-item.recent-post li {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
    padding-bottom: 20px;
}

footer.bg-dark .f-item.recent-post li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .f-item.recent-post li:last-child {
    border: medium none;
    margin: 0;
    padding: 0;
}

footer .f-item.recent-post li .thumb {
    display: table-cell;
    vertical-align: top;
    width: 80px;
}

footer .f-item .thumb img {
    width: 100%;
    height: 55px;
    object-fit: cover;
    margin-top: 5px;
}

footer .f-item.recent-post li .info {
    display: table-cell;
    padding-left: 20px;
    vertical-align: top;
    line-height: 26px;
    color: #837f7e;
}

footer .f-item .twitter-item a {
    color: #0c90db;
    margin-left: 5px;
}

footer .f-item .twitter-item .twitter-context {
    color: #666666;
}

footer .f-item .twitter-item .twitter-context i {
    color: #0c90db;
    margin-right: 5px;
}

footer .f-item .twitter-item {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

footer.bg-dark .f-item .twitter-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .f-item .twitter-item:last-child {
    border: medium none;
    margin-bottom: 0;
    padding: 0;
}

/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid #e7e7e7;
    padding: 20px 0;
}

footer.bg-dark .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom.bg-theme-small {
    border-top: medium none;
}

.footer-bottom li {
    display: inline-block;
}

.footer-bottom li a {
    display: inline-block;
    margin-left: 15px;
}

.footer-bottom li a:hover {
    color: #0c90db;
}

.footer-bottom p {
    margin: 0;
}


/* ==============================================================
     # Preloader
=================================================================== */
.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url(assets/img/preloader.svg) center no-repeat #fff;
    text-align: center;
}


/* ==============================================================
     # Demo
=================================================================== */

.demo-area.demo-conten.default-padding {
    padding-bottom: 30px;
}

.demo-area .single-item {
    position: relative;
    z-index: 1;
}

.demo-area .item {
    margin-bottom: 50px
}

.demo-area .single-item .info {
    padding: 15px 10px;
    text-align: center;
}

.demo-area .single-item .info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    margin-top: 15px;
}

.banner-area .demo-banner h1 {
    font-weight: 700;
    margin-bottom: 25px;
}

.banner-area .demo-banner img {
    height: auto;
    margin-bottom: 20px;
    max-height: 80px;
}

.demo-area .def-heading h2 {
    font-weight: 900;
    margin: 30px 0;
    text-transform: uppercase;
    color: #333333;
}

.demo-footer {
    padding-bottom: 80px;
}

.introduction-area h2 span {
    color: #fd0060;
}

.introduction-area h4 {
    font-weight: 300;
    line-height: 30px;
}

.introduction-area h2 {
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.introduction-area h2::before {
    background: #fd0060 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    width: 50px;
}

.introduction-area h2::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -40px;
    position: absolute;
    width: 25px;
}

footer.demo .copyright {
    margin-top: 15px;
}

.demo-area .comming-soon.item img {
    opacity: 0.3;
}

.banner-area.demo-banner {
    padding: 50px 0;
}

.demo-area .site-heading {
    margin-bottom: 30px;
}

.demo-area img {
    background: #ffffff none repeat scroll 0 0;
    padding: 10px;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

.demo-area.demo-conten .single-item a {
    position: relative;
    display: block;
}

.demo-area.demo-conten .single-item a span {
    position: absolute;
    right: 15px;
    top: -14px;
    background: #0c90db;
    color: #ffffff;
    padding: 1px 35px;
    border-radius: 30px;
    box-shadow: 0 0 10px #cccccc;
}

footer.text-light.demo.default-padding.centered.bg-dark.text-center img {
    margin-bottom: 0;
}


.demo-banner.auto-height {
    min-height: auto;
    padding: 250px 0;
    padding-top: 300px;
}

footer.demo img {
    height: 50px;
}

/* dev */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

.logo img {
    width: 18pc;
}

/* .address-info {
  margin-top: 12px;
} */
.top-bar-area .info.box li .icon img {
    width: 35px;
}

.info a {
    color: #000;
}

/* nav.bootsnav .container {
  display: flex;
  justify-content: center;
} */
.contact-area .address-items li .icon img {
    width: 50px;
}

.breadcrumb-area::after {
    background: black;
}

.about-area {
    padding: 50px 0;
}

.about-area .about-items .item p {
    font-size: 15px;
    margin-top: 10px;
}

.about-area .about-items .item h5 {
    font-size: 20px;
}

.about-area .about-items .item img {
    width: 60px;
    margin-bottom: 15px;
}

nav.navbar .quote-btn-2 a {
    background: rgb(11 177 233) none repeat scroll 0 0;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

nav.navbar .quote-btn-2 {
    margin-top: -4px;
    padding-left: 40px;
}

.db-none {
    display: none;
}

.features-area {
    padding: 75px 0;
}

.features-area .features-items .item .icon img {
    height: 100%;
    width: auto;
}

#achivements .owl-item img {
    display: unset;
}

/*.owl-theme .owl-nav{*/
/*  display: none !important;*/
/*}*/
.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #0c90db !important;
}

.skill-area .about-area .single-item .item {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 30px 30px;
    border-radius: 20px;
    margin: 15px 0;
    height: 14pc;
    transition: 0.5s;
}

.skill-area .about-area .single-item .item:hover {
    scale: 1.05;
}

.skill-area .about-area .single-item .item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 28px;
    transition: 0.5s;
}

.skill-area .about-area .single-item .item:hover a h5 {
    color: #0c90db;
}

.skill-area .about-area .single-item .item img {
    width: 100px;
    height: 100px;
}

.achivement-area {
    position: relative;
}

.achivement-area::after {
    background-color: black;
}

.blog-area .single-item .item {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 28pc;
    background: rgb(255 255 255);
    position: relative;
    transition: 0.3s;
    border-radius: 10px;
    z-index: 9;
}

/*.blog-area .single-item .item:hover {*/
/*    scale: 1.04;*/
/*}*/

.about-area.full-width.mt .about-items .single-item .item a {
    height: 25pc;
}

img.f-logo {
    width: 12pc;
    padding: 0px 0 25px 0;
    /* padding: 50px 0 0 0; */
}

.lab-doc {
    padding: 25px !important;
    position: relative !important;
    /*height:27pc !important;*/
    height: unset !important;
    margin-top: 100px !important;
}

.lab-doc .thumb {
    background: none !important;
    position: fixed !important;
    right: 38% !important;
    /* top: -26% !important; */
    top: -7pc !important;
    padding: 12px;
}

.lab-doc .thumb img {
    height: 200px !important;
    border-radius: 50% !important;
    width: 200px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 15px;
}

.lab-doc .info {
    margin-top: 100px !important;
}


/* popup */
.overlay-1 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.overlay-1:target {
    visibility: visible;
    opacity: 1;
}

.popup-1 {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    width: 40%;
    position: relative;
    transition: all 5s ease-in-out;
    top: 22%;
    padding-bottom: 40px;
}

.popup-1 h2 {
    /*margin-top: 10px;*/
    color: #0c90db;
    margin-bottom: 5px;
    font-family: Tahoma, Arial, sans-serif;
}

.popup-1 img {
    width: 190px;
    float: left;
    margin-right: 13px;
    max-height: 142px;
    margin-bottom: 10px;
    object-fit: cover;
    border-radius: 10px;
}

.popup-1 .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: rgb(0 0 0);
}

.popup-1 .close:hover {
    color: rgb(0 46 114);
}

.popup-1 .content {
    max-height: 30%;
    overflow: auto;
    color: rgb(139 139 139);
    font-weight: 600;
    font-size: 16px;
}

.popup-1 .content p {
    margin-bottom: 0px;
}

.achivement-area .achivement-items .fun-fact img {
    width: 70px;
    margin-bottom: 12px;
}

.single-b-item img {
    height: auto !important;
}

/* newslatter */
.sidebar-item.newslatter {
    background: rgb(16 89 134);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.sidebar-item.newslatter .title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.sidebar-item.newslatter .description {
    color: rgb(237 237 237);
    font-size: 14px;
}

.sidebar-item.newslatter .description a {
    color: rgb(255 255 255);
    font-weight: 700;
    font-size: 16px;
}

.sidebar-item.newslatter input {
    line-height: 1.5rem;
    font-size: 15px;
    color: rgb(255 255 255);
    padding: 0.5rem 0.875rem;
    /* background-color: rgb(255 255 255 / 5%); */
    border: 1px solid rgb(253 253 253 / 36%);
    border-radius: 0.375rem;
    flex: 1 1 auto;
}

.sidebar-item.newslatter button {
    padding: 10px 14px;
    line-height: 27px;
    border: none;
    background: rgb(65 166 229);
    border-radius: 10px;
    margin-left: 5px;
}

.blog-area {
    padding: 75px 0;
}

.contact-area .contact-form select {
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    box-shadow: inherit;
    padding: 15px 12px;
    width: 100%;
    color: rgb(161 161 161);
}

.effect-left-swipe .icons .read {
    color: rgb(255 255 255);
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgb(236 151 35);
    text-transform: uppercase;
}

.c-opening-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 25px 10px;
    border-radius: 15px;
    margin-top: 30px;
}

.c-opening-card h3 {
    font-weight: 600;
    padding-left: 6px;
}

.c-opening-card img {
    width: 100px;
}

.c-opening-card p, .c-opening-card h5 {
    margin: 0;
}

.c-opening-card .col-md-3 {
    width: unset;
}

.c-opening-card-2 {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 40px 30px;
    border-radius: 15px;
}

.c-opening-card-2 h3 {
    font-weight: 600;
}

.c-opening-card-2 .l-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 15px 0;
    color: black;
}

.c-opening-card-2 h4 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 12px;
}

.c-opening-card-2 .p-titel {
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
}

.c-opening-card-2 table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.c-opening-card-2 th,
.c-opening-card-2 td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.c-opening-card-2 tr:nth-child(even) {
    background-color: #f2f2f2;
}

.c-opening-card-2 p {
    font-size: 16px;
}

/*dev-ex-css*/
.pagination > li > a, .pagination > li > span {
    width: 50px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    justify-content: center;
    margin: 4px;
    height: 50px;
    font-weight: 600;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #0c90db;
    border-color: #0c90db;
}

.footer-social li a::before {
    display: none;
}

.footer-social li {
    margin-right: 0 !important;
}

.footer-social li a {
    padding-left: 0 !important;
    color: white !important;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.elementor-counter-number-suffix {
    color: #0b43a9;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-top: 10px;
    margin-left: 5px;
}

.blog-area .info p {
    margin-bottom: 10px;
}

/*dev css 29-03-2024*/
.skill-area {
    position: relative;
}

.skill-area::after {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.07;
    z-index: -1;
    top: 0px;
    pointer-events: none;
    bottom: 0;
    background-repeat: repeat;
    position: absolute;
    /* background-image: url(../img/bg-testimonial.jpg); */
}

.bg-video {
    position: relative;
    padding: 0 !important;
    /*height: 43pc;*/
}

.blog-area.bg-gray.bg-video video {
    width: 100%;
    object-fit: cover;
    height: 48pc;
}

.bg-video .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 99;
    /*width: 100%;*/
}

.blog-area.bg-gray.bg-video:before {
    content: '';
    position: absolute;
    background-color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 100%;
    opacity: 0.7;
}

.blog-area.bg-gray.bg-video .overlay {
    position: absolute;
    z-index: 99;
    top: 0px;
    left: 0;
    width: 100%;
    height: 99%;
    /*background-color: rgba(0,0,0,0.5);*/
    background-color: rgb(0 0 0 / 82%);
}

.site-heading-white h2::before {
    background: #0c90db none repeat scroll 0 0;
}

/*animation*/
.shape-1 {
    position: absolute;
    top: 3pc;
    left: 10pc;
    width: 55px;
    animation: zoom-in-zoom-out 2s ease-out infinite;
    z-index: 0;
    /* display: none; */
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.3, 1.3);
    }
    100% {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes shape-1 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*testimonial*/
.testi-area {
    position: relative;
}

.testi-area::after {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.05;
    /*top: -21px;*/
    pointer-events: none;
    bottom: 0;
    background-repeat: repeat;
    position: absolute;
    background-image: url(../img/bg-testimonial.webp);
    background-size: cover;
}

/*.management-items {*/
/*    background: white;*/
/*    padding: 19px 30px;*/
/*    box-shadow: rgb(0 0 0 / 15%) 0px 0px 15px;*/
/*    border-radius: 10px;*/
/*}*/
.about-area .management-quote h2 {
    margin-bottom: 35px;
    text-align: center;
}


/*bg-iframe video*/
/* The outer-div to move the elements */
.box-video {
    position: relative;
    width: 100%;
    margin: 0 auto 0px auto;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
}

/* Set Cover aka Background-Image */
.box-video .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

/* Add light shade to make play button visible*/
.bg-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 3;
}


/* The Play-Button using CSS-Only */
.box-video .bt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgb(0 0 0 / 51%);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    text-indent: -999em;
    cursor: pointer;
    z-index: 2;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

/* The Play-Triangle */
.box-video .bt-play:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0;
    width: 0;
    margin: -12px 0 0 -6px;
    border: solid transparent;
    border-left-color: #fff;
    border-width: 12px 20px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.box-video:hover .bt-play {
    transform: scale(1.1);
}

/* When Class added the Cover gets hidden... */
.box-video.open .bg-video {
    visibility: hidden;
    opacity: 0;

    -webkit-transition: all .6s .8s;
    transition: all .6s .8s;
}

/* and iframe shows up */
.box-video.open .video-container {
    opacity: 1;
    -webkit-transition: all .6s .8s;
    transition: all .6s .8s;
}

/* Giving the div ratio of 16:9 with padding */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    margin: 0;
    z-index: 1;
    padding-bottom: 56.27198%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*.management-carousel {*/
/*    width: 500px; */
/*    margin: 0 auto;*/
/*}*/
/*.management-carousel .item {*/
/*    width: 100%; */
/*}*/

/*circle bobbles animate*/
/* 08-02-2024 */
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    /*background:rgb(109 31 156 / 19%);*/
    background: rgb(0 0 0 / 6%);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1300px) rotate(720deg);
        opacity: 1;
        border-radius: 50%;
    }

}

/*dev 01-04-2024*/
/*.navbar-brand>img {*/
/*    width: 170px;*/
/*}*/
.navbar-right {
    /*margin-right: 30px;*/
    margin-right: 85px;
}

/*.top-bar-area {*/
/*       background: #0b44a8 none repeat scroll 0 0;*/
/*}*/
.top-bar-area .info.box li {
    letter-spacing: 1px;
    color: black;
    border-right: 1px solid white;
}

.top-bar-area.one-line li i {
    color: #ffffff;
    font-size: 17px;
}

.top-bar-area .info.box li:last-child {
    border-right: none;
}

.container-fluid {
    /*max-width: 1198px;*/
    max-width: 1250px;
}

footer.bg-dark .footer-bottom p {
    font-weight: 500;
    letter-spacing: 1px;
}

footer.bg-dark .footer-bottom a {
    color: #0c90db;
}

.about-block-vise img {
    /*width: 456px;*/
    border-radius: 10px;
    /*float: left;*/
    /*margin: 0px 30px 10px 0px;*/
    /*height: 356px;*/
    object-fit: cover;
    /*box-shadow: rgb(0 185 241) 15px 15px;*/
}

.about-block-vise h2 {
    display: unset !important;
    padding-bottom: 7px !important;
}

.bg-sky {
    background: #8282821a;
}

.testi-main {
    position: absolute;
    z-index: 9;
    right: -15px;
    height: 562px;
    top: 0px;
}

.testi-main img {
    width: 100%;
    height: 91%;
    object-fit: cover;
    /*clip-path: circle(50% at 50% 50%);*/
}

.about-area .management-quote .management-items p {
    color: white;
    text-align: center !important;
}

.about-area .management-quote .management-items p span {
    font-size: 18px !important;
    text-align: center !important;
    color: #6c6c6c !important;
}

.skill-area .owl-dots {
    margin-top: 30px;
}

.about-block-vise2 img {
    width: 456px;
    border-radius: 10px;
    float: right;
    margin: 0px 0px 10px 30px;
    height: 356px;
    object-fit: cover;
    /*box-shadow: rgb(11 177 233) -14px 15px;*/
}

.service-item .thumb img {
    width: 100%;
    /*border-radius: 30px 0 0 0;*/
    height: 17pc !important;
    object-fit: cover;
}

.service-item {
    margin: 14px 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 15px;
}

.services-inc-area .item .info p {
    margin-bottom: 7px;
}

/*.services-inc-area .item .info {*/
/*    border-radius: 0 0 30px 0;*/
/*}*/
/*.service-item {*/
/*    border-radius: 30px 0 30px 0;*/
/*}*/
.p-0 {
    padding: 0;
}

.service-item2 .thumb img {
    width: 100%;
    border-radius: 30px 0 0 0;
    height: 161px !important;
    object-fit: cover;
}

.service-item2 .info {
    text-align: left !important;
}

.verticle-item {
    height: unset !important;
}

.verticle-item .thumb img {
    height: 154px !important;
    object-fit: cover;
}

.verticle-item .info {
    text-align: left;
}

/*.f-item iframe {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*}*/

.verticle-item img {
    /*width: 20% !important;*/
    width: 187px !important;
    float: left;
    height: 187px !important;
    scale: 1.3;
    margin-left: -40px;
    border-radius: 50%;
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
    box-shadow: rgb(0 0 0 / 12%) 0px 0px 15px;
    object-fit: cover;
}

.verticle-item .info {
    margin-left: 55px;
}

.verticle-item .info span {
    margin-bottom: 0;
}

.video-carousel .owl-nav .owl-prev, .video-carousel .owl-nav .owl-next {
    background: #0000008c none repeat scroll 0 0;
    color: #fff;
    font-size: 30px;
    height: 40px;
    left: 1px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 45%;
    width: 30px;
    border-radius: 0;
}

.video-carousel .owl-nav .owl-next {
    left: auto;
    right: 1px;
}

.btn-theme:hover {
    background: #0c90db !important;
}

.panel-default > .panel-heading {
    color: #fff !important;
    background-color: #0a398a !important;
    border-color: #0a398a !important;
}

.acd-items .panel-heading .panel-title a {
    color: #ffffff !important;
}

/*dev 17-04-2024*/
.achivement-area .achivement-items .fun-fact-2 {
    position: relative;
    /* z-index: 1; */
}

.achivement-area .achivement-items .fun-fact-2::after {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid rgba(255, 255, 255, 0.57);
    content: "";
    height: 180px;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    /* border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.achivement-area .achivement-items .item {
    /* margin-top: 30px; */
}

.achivement-area .achivement-items .item:first-child,
.achivement-area .achivement-items .item:nth-child(2) {
    margin-top: 0;
}

.achivement-area .achivement-items .fun-fact-2 .timer {
    color: #0b43a9;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-top: 10px;
}

.achivement-area .achivement-items .fun-fact-2 .medium {
    color: #232323;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    /* margin-top: 10px; */
    text-transform: uppercase;
    font-weight: 600;
}

.achivement-area .achivement-items .fun-fact-2 img {
    width: 62px;
    object-fit: cover;
    height: 62px;
    float: left;
    margin-right: 14px;
}

.services-inc-area .item .thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-under .single-item .item {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 15px;
    margin-bottom: 25px;
}

.service-under .single-item .item .info h4 {
    margin-bottom: 0;
}


/*06-05-2024*/
/*nookappoinment modal*/
/* The Modal (background) */
.bookappoinment {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.bookappoinment .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.bookappoinment .close {
    color: black;
    float: right;
    font-size: 38px;
    font-weight: bold;
    opacity: 0.7;
}

.bookappoinment .close:hover,
.bookappoinment .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.bookappoinment .modal-header {
    padding: 15px 16px;
    /*background-color: #5cb85c;*/
    color: white;
}

.bookappoinment .modal-header h2 {
    margin-bottom: 0;
}

.bookappoinment .modal-body {
    padding: 2px 16px;
}

.bookappoinment .modal-footer {
    padding: 15px 15px;
    /*background-color: #5cb85c;*/
    color: white;
}

.bookappoinment .modal-footer h3 {
    margin-bottom: 0;
}

.bookappoinment .contact-form {
    margin: 17px 0px 67px 0px;
}

.bookappoinment .contact-form .form-control {
    height: 40px;
    padding: 6px 12px;
    min-height: 40px;
}

.before-none li a {
    padding: 0;
    display: flex !important;
}

.before-none li a::before {
    display: none;
}

h4.follow-title {
    padding: 20px 0;
    /* line-height: 0px; */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    margin-bottom: 0 !important;
}

.before-none li a i {
    font-size: 19px;
    line-height: 25px;
    min-width: 25px;
    color: #0c90db;
}

.before-none li a span {
    display: block;
    margin-left: 12px;
}

.align-items-center {
    align-items: center;
}

.col-md-7.info.about-block-vise2 p, .about-block-vise p {
    text-align: justify;
    margin-top: 20px;
}

/*.bg-blue {*/
/*    background: #0a398a;*/
/*}*/
.about-items .bg-blue {
    padding: 50px 30px;
    border-radius: 10px;
}

.about-items .bg-blue .info h5 {
    color: white;
}

.about-items .bg-blue .about-list {
    text-align: left !important;
}

.about-items .bg-blue .about-list .site-heading h4 {
    font-weight: 500;
    margin-bottom: 25px;
}

.about-items .bg-blue .icon i {
    min-width: 45px !important;
}

.facilitate-img img {
    border-radius: 10px;
}

.management-items .item {
    text-align: center;
}

.about-area .management-quote .management-items p::before {
    display: none;
}

.about-area .management-quote .management-items p {
    padding-top: 0 !important;
}

.testimonials-faq {
    background: #001f62f5;
}

.faq-area img {
    border-radius: 10px;
    width: 100%;
}

.testi-area .mb-2 {
    margin-bottom: 30px;
}

.testimonials-faq .panel-default > .panel-heading {
    color: #0a398a !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

.testimonials-faq .acd-items .panel-heading .panel-title a {
    color: #0a398a !important;
}

.team-area .team-items .item .info h4 {
    color: white;
}

/*.team-area .team-items .item .info span {*/
/*    color: #ffffff !important;*/
/*}*/

.team-area .team-items.team-standard .item .info p {
    color: white;
}

.address-items {
    padding: 30px 30px;
    background: #0a398a;
    border-radius: 30px;
    position: relative;
    left: 45px;
    box-shadow: rgb(165 198 255) 0px 0px 15px;
}

nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle::after {
    display: none;
}

nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a.active {
    background: #0c90db;
    color: white;
    border-color: #0c90db;
}

.blog-area.bg-gray.bg-video video {
    height: 47pc;
}

/*gallery-slider*/
.gallery-slider {
    position: relative;
    /*width: 620px;*/
    padding: 0 60px;
    /*height: 345px;*/
}

.gallery-slider .swiper-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.gallery-slider .swiper-slide {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.gallery-slider .swiper-slide__bg-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    margin-top: -26px;
}

.gallery-slider .swiper-button-next {
    right: 15px;
}

.gallery-slider .swiper-button-prev {
    left: 15px;
}

.swiper-pagination {
    width: 100%;
    font-size: 0;
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 4px;
    background-color: blue;
    border-radius: 0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: blue;
}

.swiper-button-next, .swiper-button-prev {
    z-index: 1;
    width: 36px;
    padding: 10px 0;
    height: 52px;
    background-color: #ffffff45;
    background-size: 10px auto;
    background-position: center center;
    /* border: 1px solid #f00; */
    /* box-shadow: 0 1px 3px 0 blue; */
    /* transition: border-color 0.3s; */
}

.swiper-button-next.-dark {
    background-color: #ffffff45;
    /* border: solid 1px blue; */
    /* box-shadow: 0 1px 1px 0 blue; */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border-color: blue;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: unset !important;
    right: 10px;
    /* left: auto; */
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: unset !important;
    left: 10px;
    right: auto;
}

.gallery-slider .swiper-button-prev i {
    margin-left: 7px;
    color: white;
}

.gallery-slider .swiper-button-next i {
    margin-left: 7px;
    color: white;
}

.swiper-container-fade .swiper-slide iframe {
    height: 345px;
}

/*main video*/
main {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
    background: #fff;
    min-height: 400px;
}

.video-thumb {
    display: inline-block;

    text-decoration: none;
    font-weight: bold;
    text-align: center;
    color: #fff;

    background-color: #D95BA2;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);

    -webkit-transition: background-color 0.2s ease-out 0.05s,
    -webkit-transform 0.2s ease-out 0.05s;
    transition: background-color 0.2s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
}

.video-thumb:hover {
    background-color: #CF007D;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}


/* Video Modal - Theater Mode
-------------------------------------------------------------------------------*/
.video-modal,
.video-modal .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 300;
}

.video-modal {
    overflow: hidden;
    position: fixed;
    opacity: 0.0;

    -webkit-transform: translate(500%, 0%);
    transform: translate(500%, 0%);

    -webkit-transition: -webkit-transform 0s linear 0s;
    transition: transform 0s linear 0s;


    /* using flexbox for vertical centering */

    /* Flexbox display */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;

    /* Horizontal alignment */
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    /* Vertical alignment */
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.video-modal .overlay {
    z-index: 0;
    background: rgba(0, 93, 171, 0.80); /* dark blue */

    opacity: 0.0;

    -webkit-transition: opacity 0.2s ease-out 0.05s;
    transition: opacity 0.2s ease-out 0.05s;
}


.video-modal-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;

    height: auto;
    /*   width: 76%; */
    width: calc(100% - 200px);
    max-width: 1000px;
    max-height: calc(100% - 100px);
    margin: 0 auto;

    overflow-y: visible;

    /*background: #fff;*/ /* container will have a transparent BG—moving the BG color and shadow to the iframe element to make it look more seamless */

    /* Transition looks a bit janky with the iframe */
    /*-webkit-transform: translate(0%,-20%);
    transform: translate(0%,-20%);

    -webkit-transition: -webkit-transform 0.2s ease-out 0.15s;
    transition: transform 0.2s ease-out 0.15s; */
}

/* Mobile Layout Tweaks */
@media (max-width: 640px) {
    .video-modal-content {
        width: calc(100% - 16px);
    }
}

/* close button */
.close-video-modal {
    display: block;
    position: absolute;
    right: 0;
    top: -40px;

    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #fff;

    /*border: 2px solid red;*/
}

/* using a 16:9 image to resize the video frame */
.video-sizer {
    display: block;
    width: 100%;
    height: auto;
}

/* set the iframe element to stretch to fit its parent element */
iframe#youtube {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;

    background: #fff;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
}

/* show the modal */
/* add class to the body */
.show-video-modal .video-modal {
    opacity: 1.0;

    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
}

.show-video-modal .video-modal .overlay {
    opacity: 1.0;
}

.show-video-modal .video-modal-content {
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
}

/*17-05-2024*/
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    /* background-color: #25d366; */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}

.wpchat-popup {
    display: none;
    position: fixed;
    bottom: 32px;
    right: 15px;
    /* border: 3px solid #f1f1f1; */
    z-index: 999;
    border-radius: 24px;
}

.wpchat-popup .card-header {
    background: #00eb78;
    border-radius: 24px 24px 0 0;
    margin: -1px -1px;
    padding: 15px 15px;
}

.wpchat-popup .card-header img {
    width: 130px;
}

.wpchat-popup .card-header i {
    color: white;
    background: rgb(38 213 103);
    float: right;
    width: 20px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
    margin-top: 3px;
}

.joinchat__message {
    position: relative;
    min-height: 60px;
    padding: 17px 20px;
    margin: 26px 26px 26px;
    border-radius: 32px;
    background: #fff;
    color: #4a4a4a;
    word-break: break-word;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    transform: translateZ(0);
}

.joinchat__message:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 20px;
    left: -15px;
    width: 17px;
    height: 25px;
    background: inherit;
    clip-path: polygon(100% 59%, 0% 100%, 100% 100%);
}

.form-container-2 {
    width: 370px !important;
    padding: 0;
}

.wp-bg {
    background-color: #e6ddd4;
    position: relative;
    height: 250px;
    padding: 20px 20px 20px 10px;
    overflow: auto;
    border-radius: 0 0 20px 20px;
}

.wp-bg::before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url(https://www.jqueryscript.net/demo/whatsapp-click-to-chat/assets/whatsapp.png);
}

.joinchat__button {
    border-radius: 10px;
    color: white;
    margin-bottom: 0px;
    background: rgb(38 213 103) !important;
    /* opacity: 29.3; */
    position: absolute;
    z-index: 999;
    right: 25px;
    bottom: 21px;
}

.form-container-2 .btn img {
    width: 30px;
    margin-left: 5px;
}

.form-container-2 .btn {
    font-size: 14px;
}

.whatsapp-t:hover .joinchat__tooltip {
    opacity: 1;
    animation: none;
    transition: opacity 0.2s;
}

.joinchat__tooltip {
    font-size: 16px;
    position: absolute;
    top: 16px;
    right: 74px;
    max-width: calc(100vw - var(--s) - 45px);
    height: 32px;
    padding: 0px 18px;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    line-height: 31px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease-out 0.4s;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.joinchat__tooltip:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -6px;
    border: 8px solid transparent;
    border-width: 6px 0 6px 8px;
    border-left-color: #fff;
}

.float-4:hover {
    scale: 1.2;
}

.scroll-design::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.scroll-design::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.scroll-design::-webkit-scrollbar-thumb {
    background-color: #0a398a;
}


img.chhoseimg {
    position: relative;
    bottom: -50px;
}

/* devstyle */
.about-area .about-list:first-child {
    border-right: 1px solid #e7e7e7;
    padding-right: 30px;
    text-align: right;
}

.about-area .about-list:last-child {
    border-right: 0;
    padding-right: 0;
    border-left: 1px solid #e7e7e7;
    padding-left: 30px;
    text-align: left;
}

.about-area .about-list ul {
    margin-bottom: -5px;
}

.about-area .about-list li .icon,
.about-area .about-list li .info {
    display: table-cell;
    vertical-align: middle;
}

.about-area .about-list li .info {
    padding-top: 5px;
}

.about-area .about-list li .icon i {
    color: #0c90db;
    display: inline-block;
    font-size: 50px;
    min-width: 70px;
}

.about-area .about-list li .info h5 {
    font-weight: 600;
    font-size: 17px;
    text-transform: capitalize;
}

.about-area .about-list li {
    border-top: 1px solid #e7e7e7;
    margin-top: 10px;
    padding: 10px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 10px;
}

.about-area .about-list li p:last-child {
    margin-bottom: 0;
}

.about-area .about-list li:first-child {
    border: medium none;
    margin-top: 0;
    padding-top: 0;
    padding: 10px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 10px;
}

.steps-area .process-item {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 35px;
}

.steps-area .process-item .info {
    /* background: white; */
    width: 100%;
    margin-left: 23px;
    border-radius: 0 50px 50px 0;
    right: -12px;
    position: relative;
    padding: 10px 10px 10px 35px;
}

.steps-area .process-item:hover .info {
    padding-left: 35px;
}

.steps-area .process-item .info h4 {
    margin-bottom: 0;
    line-height: 38px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.steps-area .process-item .info span {
    position: absolute;
    font-size: 35px;
    left: -77px;
    top: -24px;
    color: #0c90db;
}

.steps-area .process-item .icon i {
    position: relative;
    left: 30px;
    top: 0px;
    height: 58px;
    z-index: 9;
    line-height: 58px;
    width: 58px;
}

.steps-area .process-items {
    position: relative;
}

.steps-area .process-items::before {
    content: '';
    position: absolute;
    background: white;
    width: 100%;
    height: 100%;
}

.steps-area .process-items::before {
    content: '';
    position: absolute;
    background: white;
    width: 0px;
    height: 100%;
    border-left: dashed 4px #0c90db;
    left: 73px;
}

.steps-area .site-heading {
    margin-bottom: 20px;
}

.about-area .about-list li .info {
    transition: 0.5s;
}

.about-area .about-list:first-child li:hover .info {
    padding-right: 10px;
}

.about-area .about-list:last-child li:hover .info {
    padding-left: 10px;
}

.steps-area .process-item .info {
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
    --tw-gradient-stops: #ffffff00, #ffffff;
}

.container {
    width: 1280px !important;
}

.sidebar-item.category ul li a::after {
    display: none;
}

/* .blog-area .sidebar .sidebar-item.category li:first-child{
  border-radius: 10px 10px 0 0;
}
.blog-area .sidebar .sidebar-item.category li:last-child{
  border-radius: 0 0 10px 10px;
} */

.blog-area .sidebar .sidebar-item.category li {
    transition: 0.5s;
    margin-bottom: 8px;
}

.blog-area .sidebar .sidebar-item.category li:hover {
    padding-left: 12px;
    /* background: #0c90db38; */
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
    --tw-gradient-stops: #ffffff00, #309d462e;
    color: black;
}

.blog-area .sidebar .sidebar-item.category li.active a, .blog-area .sidebar .sidebar-item.category li.active a i {
    color: #2c9a43;
}

.blog-area .sidebar .sidebar-item.category li a i {
    padding-right: 5px;
    font-size: 19px;
    color: #0c90db;
}

.justify-content-between {
    justify-content: space-between;
}

.lines {
    position: absolute;
    top: 0;
    left: -14pc;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
}

.line {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 0%;
    background: rgb(255 255 255 / 7%);
    overflow: hidden;
}

.line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgb(18 227 61) 0%, #0c90db 75%, #0c90db 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.line:nth-child(1) {
    margin-left: 16.66%;
}

.line:nth-child(2) {
    margin-left: 33.32%;
}

.line:nth-child(1)::after {
    animation-delay: 2s;
}

.line:nth-child(3) {
    margin-left: 50%;
}

.line:nth-child(4) {
    margin-left: 66%;
}

.line:nth-child(5) {
    margin-left: 82%;
}

.line:nth-child(6) {
    margin-left: 98%;
}

.line:nth-child(3)::after {
    animation-delay: 2.5s;
}

@keyframes drop {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

.iq-bg {
    background-color: rgba(0, 0, 0, 0);
    background-origin: initial;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover !important;
    position: relative;
    z-index: 0;
}

.iq-bg-fixed {
    background-color: rgba(0, 0, 0, 0);
    background-origin: initial;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover !important;
    position: relative;
    z-index: 0;
    background-attachment: fixed !important;
}

/*---------------------------------------------------------------------
                     Background Gradient
---------------------------------------------------------------------*/
.iq-over-black-80:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    background: rgba(9, 179, 239, 0.8);
    background: -moz-linear-gradient(left, rgba(9, 179, 239, 0.8) 0%, rgba(30, 80, 226, 0.8) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(9, 179, 239, 0.8)), color-stop(100%, rgba(30, 80, 226, 0.8)));
    background: -webkit-linear-gradient(left, rgba(9, 179, 239, 0.8) 0%, rgba(30, 80, 226, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(9, 179, 239, 0.8) 0%, rgba(30, 80, 226, 0.8) 100%);
    background: -ms-linear-gradient(left, rgba(9, 179, 239, 0.8) 0%, rgba(30, 80, 226, 0.8) 100%);
    background: linear-gradient(to right, rgba(9, 179, 239, 0.8) 0%, rgba(30, 80, 226, 0.8) 100%);
    background: linear-gradient(126deg, rgba(3, 14, 78, 1) 0%, rgba(26, 46, 164, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#09b3ef', endColorstr='#1e50e2', GradientType=1);
}

.iq-over-black-90:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    background: rgba(9, 179, 239, 0.9);
    background: -moz-linear-gradient(left, rgba(9, 179, 239, 0.9) 0%, rgba(30, 80, 226, 0.9) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(9, 179, 239, 0.9)), color-stop(100%, rgba(30, 80, 226, 0.9)));
    background: -webkit-linear-gradient(left, rgba(9, 179, 239, 0.9) 0%, rgba(30, 80, 226, 0.9) 100%);
    background: -o-linear-gradient(left, rgba(9, 179, 239, 0.9) 0%, rgba(30, 80, 226, 0.9) 100%);
    background: -ms-linear-gradient(left, rgba(9, 179, 239, 0.9) 0%, rgba(30, 80, 226, 0.9) 100%);
    background: linear-gradient(to right, rgba(9, 179, 239, 0.9) 0%, rgba(30, 80, 226, 0.9) 100%);
    background: linear-gradient(180deg, rgb(10 57 138) 0%, rgb(50 158 72) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#09b3ef', endColorstr='#1e50e2', GradientType=1);
}

[class*='iq-over-']:before {
    z-index: 0;
}

.banner.iq-bg {
    padding: 65px 0;
}

.banner.iq-bg .img-one img {
    width: 100%;
    object-fit: cover;
    height: 500px;
}

.banner-text {
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

.img-one {
    width: 80%;
}

.banner-text h1 {
    color: white;
    font-size: 45px;
    font-weight: 600;
    line-height: 70px;
    /* margin-bottom: 30px; */
    text-shadow: 0px 20px 10px rgba(0, 0, 0, 0.1);
    /* margin-top: 15%; */
    letter-spacing: 2px;
}

.banner-text h1 small {
    font-size: 18px;
    display: block;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
    color: #12e33d;
}

.banner-text .link h5 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: white;
    font-size: 18px;
}

.banner-text .link h5:before {
    position: absolute;
    top: 20px;
    right: -25px;
    content: "";
    background: url('../img/arrow.png') no-repeat 0 0;
    width: 61px;
    height: 58px;
}

.banner-text .link li {
    margin: 0 5px;
}

.banner-text .link li a {
    font-size: 40px;
    color: #fff;
    text-shadow: 0px 2px 10px rgba(0, 0, 195, 0.15);
}

.banner .carousel-indicators {
    bottom: inherit;
    left: inherit;
    width: 25px;
    right: 0;
    top: 50%;
    margin-top: -60px;
    margin-right: 15px;
}

.banner .carousel-indicators li {
    border: none;
    background: rgba(255, 255, 255, 0.6);
    padding-left: 0;
}

.banner .carousel-indicators .active {
    background: rgba(255, 255, 255, 1.0);
}

/* Animation delays */
.banner-text h1 {
    animation-delay: 0.5s;
}

.banner-text h5 {
    animation-delay: 1s;
}

.banner-text ul.list-inline {
    animation-delay: 1.5s;
}

.banner-text img {
    animation-delay: 2s;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.allroundsection .item h5 {
    font-size: 15px !important;
}

.allroundsection .col-md-2 {
    /* width: 20%; */
    margin-top: 65px !important;
}

/* .allroundsection .col-md-2 a {
  padding: 25px 15px !important;
} */
.allroundsection .col-md-2 a {
    padding: 45px 15px 25px 15px !important;
    background: white;
    border: 1px solid #dbdbdb;
    box-shadow: rgb(50 50 93 / 24%) 0px 50px 100px -20px, rgb(0 0 0 / 10%) 0px 30px 60px -30px !important;
}

.allroundsection.about-area .about-items .item:hover a {
    scale: 1 !important;
}

.allroundsection .single-item {
    margin-bottom: 0 !important;
}

.allroundsection .about-items .item i {
    position: absolute;
    top: -25px;
    left: 39%;
    font-size: 27px;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid #dbdbdb;
}

.banner.iq-bg video.background-video {
    z-index: 0;
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
    opacity: 0.2;
}

.main-top {
    background: #0a398a;
}

.bg-dark {
    background: #1d2024 none repeat scroll 0 0;
}

footer.bg-dark {
    position: relative;
    /* margin-top: 70px; */
}

.aboutussection.about-area .about-list li .icon i {
    color: #0c90db;
    display: inline-block;
    font-size: 30px;
    min-width: 70px;
}

.aboutussection.about-area .about-list li .info h4 {
    margin-bottom: 8px;
}

.aboutussection.about-area .about-list li {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
    text-align: justify;
}

.learning-area.blog-area .item .thumb img {
    height: 260px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.learning-area.blog-area .single-item .item {
    height: auto;
}

.learning-area.blog-area .info h4 {
    margin-bottom: 0;
    text-align: center;
}

.learning-area.blog-area .thumb .post-formats {
    font-size: 28px;
}

.learning-area.blog-area .thumb .post-formats::after {
    background: #ff0909 none repeat scroll 0 0;
}

.learning-area.blog-area .thumb .post-formats i {
    line-height: 50px;
}

.learning-area.blog-area .single-item .item {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 15px;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.top-bar-area .social li a:hover {
    color: #26ff52 !important;
}

nav.bootsnav .megamenu-content h2.title {
    font-size: 26px;
    text-transform: capitalize;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a {
    background: none !important;
    border: 0 !important;
    color: black;
    font-weight: 500;
    font-size: 16px;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a:hover nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a.active {
    color: green !important;
}

.sm-show {
    display: none !important;
}

.sechead h2::before {
    display: none
}

.sechead h2 {
    /* padding-bottom: 0 !important; */
    margin-bottom: -5px !important;
    color: #494949;
}

.sechead h2 span {
    font-size: 40px;
}

.sechead h3 {
    font-size: 22px;
    font-weight: 600;
    color: #474747;
}

.sechead p {
    letter-spacing: 1px
}

.single-item.offer-item .item a {
    box-shadow: none;
}

.single-item.offer-item .item a i {
    position: unset;
}

.single-item.offer-item .item a i {
    position: unset;
    padding: 0;
    width: unset;
    height: unset;
    border: 0;
    font-size: 50px;
}

.single-item.offer-item .item a h5 {
    font-weight: 500;
    font-size: 16px !important;
    letter-spacing: 1px;
}

.text-center.bottom-title .semi {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #09398b;
}

.text-center.bottom-title .text32 {
    font-size: 32px;
}

.text-center.bottom-title .btn {
    border-radius: 25px !important;
    font-size: 17px;
    padding: 12px 40px;
    /* border: 2px solid green; */
}

.text-center.bottom-title {
    margin-top: 30px;
}

.text-center.bottom-title .btn.whatsappbtn {
    margin-left: 16px;
    background: none;
    color: green !important;
    box-shadow: none;
    /* border: 2px solid green; */
    padding-left: 0
}

.text-center.bottom-title .btn.whatsappbtn:hover {
    background: none !important;
}

.item-group .row {
    display: flex;
    justify-content: center;
}

.item-group .row .col {
    flex: 0 0 calc(20% - 10px); /* 5 items per row (20% width each) with spacing */
    margin: 5px;
}

.item-group {
    padding: 10px;
}

font, body, span, b, p, label, h1, h2, h3, h4, h5, h6, strong, a, div, ul, ol, li, img, table, tr, td, th, form, input, button, textarea, select, option, header, footer, main, section, article, aside, nav, figure, figcaption, blockquote, pre, code, video, audio, canvas, iframe, details, summary, mark, time, progress, meter, svg, path, g, polyline, circle, rect, line, polygon, ellipse, clipPath, marquee {
    font-family: "Lato", sans-serif !important;
}

.features-area .features-items .item .info h3 {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    text-align: center;
    background: #251376;
    color: white;
    margin-right: 5px;
    border-radius: 7px;
}

/* 06-12-2024 */
/* .offer-item .item a{
  color: #F57B06;
  font-family:'Mada', sans-serif;
  text-align: center;
  width: 100%;
  padding: 30px 10px 30px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: 0.9s;
}
.offer-item .item a img{
  transition: 0.9s;
}
.offer-item .item a:hover img {
  transform: rotateY(360deg);
}
.offer-item .item a:before, .offer-item .item a:after {
  content: "";
  border: 2px solid #0c90db;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border-radius: 50px 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.offer-item .item a:after{
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 42px 0;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
} */

.offer-item .item a {
    color: #2db7b7;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 210px;
    height: 210px;
    padding: 28px 13px 0;
    margin: 20px auto 0;
    border-radius: 50% !important;
    border: 8px solid #0c90db;
    border-bottom-color: transparent !important;
    position: relative;
    z-index: 1;
    transition: 0.9s;
}

.offer-item .item a:before,
.offer-item .item a:after {
    content: '';
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
    z-index: -1;
    transition: 0.9s;
}

.offer-item .item a:before {
    background-color: transparent;
    height: 27px;
    width: 27px;
    border: 8px solid #0c90db;
    top: -27px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.single-item.offer-item .item a:hover, .single-item.offer-item .item a:hover::before {
    border-color: #0a3989;
}

.offer-item .item a img {
    transition: 0.9s;
}

.offer-item .item a:hover img {
    transform: rotateY(360deg);
}

.skill-area .tab-items .nav-pills {
    position: relative;
    top: 29px;
}

.work-place-items .bg-cover {
    height: 22pc;
    border-radius: 15px;
}

ul.nav.nav-pills.inner-tabs li a {
    box-shadow: rgb(0 0 0 / 18%) 0px 0px 15px;
    margin: 0px 9px;
    padding: 7px 10px;
    border-radius: 6px;
    /* background: #0080001f; */
}

ul.nav.nav-pills.inner-tabs li.active a {
    background: #0080000f;
    /* color: white; */
}

ul.nav.nav-pills.inner-tabs {
    border-bottom: 0;
}

.nav-pills.main-nav-cal a.main-tab {
    background: #e5e5e5;
}

body {
    overflow-x: hidden;
}

.whyus-item {
    transition: 0.5s;
}

.item.whyus-item:hover {
    background: #0a398a;
}

.item.whyus-item p, .item.whyus-item i, .item.whyus-item h4 {
    transition: 0.5s;
}

.item.whyus-item:hover p {
    color: white;
}

.item.whyus-item:hover i {
    color: #0edf39;
}

.item.whyus-item:hover h4 {
    color: #0edf39;
}

.whyus-item::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 40px;
    width: 0;
    height: 0;
    border-top: 3px solid #0ed83c;
    border-left: 3px solid #0ed83c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    opacity: 0;
}

.whyus-item:hover::before {
    width: 50px;
    height: 50px;
    opacity: 1;
}

.whyus-item::after {
    content: "";
    position: absolute;
    bottom: 25px;
    right: 40px;
    width: 0;
    height: 0;
    border-bottom: 3px solid #0ed83c;
    border-right: 3px solid #0ed83c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    opacity: 0;
}

.whyus-item:hover::after {
    width: 50px;
    height: 50px;
    opacity: 1;
}

.whyus-item {
    transition: 0.5s;
    border-radius: 10px;
}

/*new css/*/
.whyus-item {
    margin: 15px 0;
}

.main-top {
    position: fixed;
    background: #0a398a;
    top: 0pc;
    z-index: 999;
    width: 100%;
}
.banner.iq-bg {
    margin-top: 125px;
}


.award-items img {
    height: 120px;
    width: 100% !important;
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: rgb(0 0 0 / 25%) 0px 0px 15px;
    /*border-radius: 10px;*/
    position: relative;
    background: white;
}
.award-items .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}
.award-items a{
    position: relative;
    background: white;
}
.award-items a::before {
    content: '';
    position: absolute;
    width: 66px;
    height: 66px;
    background: #0a398a;
    top: -12px;
    right: -12px;
    z-index: -1;
}
.award-items a::after {
    content: '';
    position: absolute;
    width: 66px;
    height: 66px;
    background: #0a398a;
    bottom: -12px;
    left: -115px;
    z-index: -1;
}
.award-items h3 {
    font-weight: 500;
}
.award-items.owl-carousel .owl-stage {
    margin: 20px 0px 10px;
}

.testi-item .p-img {
    width: 100px !important;
    height: 100px;
    margin-bottom: 10px;
    margin: 0 auto 11px;
    border-radius: 50%;
    border: 4px solid white;
}
.product-items .item {
    margin: 135px 0 10px;
    padding: 135px 30px 25px !important;
    position: relative;
    box-shadow: 0 0px 11px 0 rgb(197 197 197 / 45%) !important;
    background: #f5f5f5 !important;
    border-radius: 10px;
    transition: 0.5s;
}
.product-items .item .img-area{
    position: absolute;
}
.product-items .item a {
    position: unset !important;
    /* display: none !important; */
    opacity: 0;
}
.product-items .item .img-area {
    position: absolute;
    top: -50%;
    left: 7%;
    width: 85%;
}
.left-style h2::before {
    left: 24px;
    bottom: 6px;
}
 .owl-prev {
    position: absolute;
    left: -45px;
    top: 50%;
    background: none !important;
    color: #0a398a !important;
    margin: 0;
    font-size: 20px !important;
}
 .owl-next{
    position: absolute;
    right: -45px;
    top: 50%;
    background: none !important;
    color: #0a398a !important;
    margin: 0;
    font-size: 20px !important;
}
.product-slider .owl-stage-outer {
    overflow: visible;
}
.product-items .item:hover {
    background: #0a398a !important;
    padding: 150px 30px 25px !important;
}
.product-items .item:hover h4 {
    color: white;
}
.product-items .item:hover p{
    color: #d1d1d1;
}
.product-items .item:hover a{
    opacity: 1;
    color: white;
}
.Industries-slider {
    margin-top: 30px;
}
.Industries-slider .owl-prev,.Industries-slider .owl-next {
    top: 39%;
}
.sidebar.col-md-3.info.about-block-vise {
    box-shadow: rgb(0 0 0 / 6%) 0px 0px 15px;
    background: #f5f5f5;
}
.blog-area .sidebar .sidebar-item.category li:first-child {
    border-top: 1px solid #dbdbdb;
}
.float-2 {
    left: 33px;
    position: fixed;
    width: 300px;
    height: 60px;
    bottom: 25px;
    right: 40px;
    /* background: red; */
    /* background-color: #25d366; */
    color: #fff;
    border-radius: 50px;
    /* text-align: center; */
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}
.float-2 button {
    background: #261477;
    padding: 8px 50px 10px 25px;
    border: 0;
    font-size: 20px;
    border-radius: 25px;
    position: relative;
}
.float-2 button i {
    position: absolute;
    right: -6px;
    background: #0c90db;
    padding: 7px;
    font-size: 30px;
    top: 0;
    color: #ffffff;
    border-radius: 50%;
}
.float-2:hover {
    color: white;
}

/*translater*/
a.VIpgJd-ZVi9od-l4eHX-hSRGPd {
    display: none;
}

.goog-te-gadget span,
.goog-te-gadget a {
    display: none !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0;
    padding: 0px;
    color: white;
    font-size: 17px;
    background: none;
    border: 0;
}

div#google_translate_element {
    margin-top: -10px;
}

.goog-te-gadget {
    color: #3a3a78 !important;
    font-size: 0px !important;
}

.goog-te-gadget .goog-te-combo option {
    color: black;
}

.VIpgJd-ZVi9od-ORHb {
    display: none !important;
}

.skiptranslate iframe {
    display: none;
}

body {
    top: 0 !important
}

.lh-set {
    line-height: 54px;
    height: 20px;
}

@media (max-width: 767px) {
    .lh-set {
        line-height: 0px;
        height: 30px;
        position: relative;
        top: -9px;
        text-align: center;
    }
    div#google_translate_element {
        margin-top: 5px;
    }
}
.banner-area .content {
    padding: 75px 30px;
}
.banner-area .carousel-inner .item::before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    z-index: 1;
}
.wpchat-popup.contact-area {
    left: 15px;
    right: auto;
}

/*.site-heading h2::before {*/
/*    background: #0c90db none repeat scroll 0 0;*/
/*    bottom: 0;*/
/*    content: "";*/
/*    height: 3px;*/
/*    left: 50%;*/
/*    margin-left: -20px;*/
/*    position: absolute;*/
/*    width: 40px;*/
/*}*/

.site-heading h2:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: 18px;
    left: 50%;
    margin-left: -14px;
    background-color: #0c90db;
}
.site-heading h2:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 22px;
    left: 50%;
    margin-left: -50px;
    background-color: #0c90db;
}

.site-heading.left-style h2:after {
    left: 28px;
    background-color: #0c90db;
    /* width: 50%; */
    width: 180px;
    bottom: 7px;
}
.site-heading.left-style h2:before {
    width: 70px;
    left: 0;
    bottom: 25px;
}
.testimonials-faq .site-heading h2:after,.testimonials-faq .site-heading h2:before{
    display: none;
}

.sechead h2::before {
    display: none;
}
.f-address-map {
    position: relative;
    width: 94%;
    z-index: 2;
    height: 410px;
    top: -8pc;
    background: #fff;
    padding: 5px;
    padding-bottom: 0;
    border-radius: 0px;
}
/*footer.bg-dark {*/
/*    margin-top: 8pc;*/
/*}*/
.f-address-map iframe {
    border-radius: 25px;
    height: 25pc;
}
.blog-light{
    background-image: none;
}
.blog-light {
    background-image: none !important;
    height: unset !important;
    box-shadow: rgb(0 0 0 / 13%) 0px 0px 15px !important;
}
.blog-light .info h4 {
    color: #000000 !important;
}
.blog-light .info span {
    margin-bottom: 0px !important;
    color: #0c90db !important;
    font-size: 17px;
    font-weight: 600 !important;
}
.blog-light .info{
    padding: 20px 15px;
}
.blog-light .info span::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px !important;
    height: 3px;
    left: 44%;
    bottom: 23px;
    background: #0c90db;
}
.blog-area .info {
    padding-bottom: 32px !important;
}
.team-area .team-items .item .info {
    padding: 20px 15px !important;
}
.pocess-area-2 .process-item {
    padding: 10px 0px;
    margin-bottom: 5px;
}
.pocess-area-2 .process-item h4 {
    margin-bottom: 5px;
}
.pocess-area-2 .process-item .icon{
    display: table-cell;
    vertical-align: middle;
}

.achivement-area {
    padding: 85px 0;
    position: relative;
}
.achiev-item img {
    object-fit: contain !important;
    /* height: 10pc !important; */
}
.achiev-item .meta {
    padding-top: 8px !important;
    margin-top: 10px;
}
.achiev-item {
    box-shadow: rgb(0 0 0 / 11%) 0px 0px 15px;
    /* height: 93%; */
}
.achiev-item .info {
    padding-bottom: 10px !important;
}
