* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #666666;
    margin: 0;
}

html,
body,
.wrapper {
    height: 100%;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #232323;
    font-weight: normal;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0;
    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: #2c2c2c;
    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-light {
    background-color: #ffffff;
}

.bg-theme {
    background-color: #f71735;
}

.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: #002147 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.dark-hard::after {
    background: #002147 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.light-hard::after {
    opacity: 0.7;
}

.shadow.theme::after {
    background: #f71735 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: #f71735 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-top: 100px;
    padding-bottom: 100px;
}

.default-padding-top {
    padding-top: 100px;
}

.default-padding-bottom {
    padding-bottom: 100px;
}

.default-padding.bottom-less {
    padding-top: 100px;
    padding-bottom: 70px;
}

.default-padding.bottom-30 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.default-padding.bottom-20 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.padding-xl {
    padding-top: 180px;
    padding-bottom: 180px;
}

.carousel-shadow {
    padding-bottom: 85px;
}

.btn {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    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;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: inherit;
    overflow: hidden;
}

.btn-md {
    padding: 10px 25px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-sm {
    padding: 8px 35px;
    font-size: 12px;
}

i.fas.fa-envelope-open {
    font-weight: 300;
}

.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: #f71735;
    color: #ffffff !important;
    border: 2px solid #f71735;
}

.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: #002147 none repeat scroll 0 0;
}

.bg-dark-hard {
    background: #03173d none repeat scroll 0 0;
}

.btn-theme {
    background-color: #f71735;
    color: #ffffff;
    border: 2px solid #f71735;
}

.btn-theme.border {
    background-color: transparent;
    color: #232323;
    border: 2px solid #ffffff;
}

.btn-theme.border:hover {
    background-color: #000000;
    color: #ffffff !important;
    border: 2px solid #000000;
}

.btn-theme.effect:hover,
.btn-theme.effect:focus {
    background: #f71735 none repeat scroll 0 0;
    border: 2px solid #f71735;
    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%;
}

.oh {
    overflow: hidden;
}

.less-margin {
    margin: 0;
}

.top-border {
    overflow: hidden;
    border-top: 1px solid #e7e7e7;
}

header {
    position: fixed;
    top: 58px;
    z-index: 2;
    width: 100%;
}

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: #f71735 none repeat scroll 0 0;
    border: 2px solid #f71735;
    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: #f71735;
    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: 700;
    position: relative;
    text-transform: uppercase;
}

.site-heading h3 {
    font-size: 30px;
    display: inline-block;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
}


.site-heading h4 {
    font-size: 30px;
    display: inline-block;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
}

.site-heading h4 {
    text-transform: uppercase;
}

.site-heading.clean h2 {
    padding-bottom: 0;
}

.site-heading.clean h2 span {
    color: #f71735;
}

.site-heading h2 span {
    color: #f71735;
}

.site-heading.barber h2 span {
    color: #bc9355;
}

.site-heading p {
    margin: 0;
}

.site-heading .devider {
    height: 2px;
    width: 30px;
    background: #f71735;
    margin: auto;
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.site-heading .devider::after {
    position: absolute;
    left: -15px;
    bottom: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: #f71735;
}

.site-heading .devider::before {
    position: absolute;
    right: -15px;
    height: 2px;
    width: 10px;
    background: #f71735;
    content: "";
    top: 0;
}

.bg-theme .site-heading h2::before,
.shadow .site-heading h2::before,
.half-bg .site-heading h2::before {
    background: #ffffff none repeat scroll 0 0;
}

.site-heading h2 span {
    color: #f71735;
}

.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;
}


/* ============================================================== 
     # Site Title 
=================================================================== */

.site-title-area {
    padding: 180px 0;
}

.site-title-area h1 {
    /* text-transform: uppercase; */
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: -5px;
}


/* ============================================================== 
     # Bradcrumb 
=================================================================== */

.breadcrumb-area .breadcrumb {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    margin: 0;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.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 {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    left: -5px;
    font-weight: 600;
    position: absolute;
    top: 1px;
}

.breadcrumb-area .breadcrumb li:first-child::after {
    display: none;
}

.breadcrumb-area .breadcrumb a,
.breadcrumb-area .breadcrumb li {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb-area .breadcrumb li.active {
    color: #f71735;
    text-decoration: underline;
}


/* ============================================================== 
     # Topbar Area 
=================================================================== */

.top-bar-area li {
    display: inline-block;
    padding: 15px 0;
}

.top-bar-area.inc-border {
    border-bottom: 1px solid #e7e7e7;
}

.top-bar-area .info li {
    margin-right: 15px;
    float: left;
}

.top-bar-area .info li i {
    z-index: 1;
    position: relative;
    color: #f71735;
    font-size: 20px;
    padding-right: 16px;
    margin-right: 10px;
}

.top-bar-area .info li p {
    margin: 0;
    padding-left: 10px;
}

.top-bar-area .info li i,
.top-bar-area .info li p {
    display: table-cell;
    vertical-align: middle;
}

.top-bar-area .text-right ul {
    border-left: 1px solid #e7e7e7;
    display: inline-block;
}

.top-bar-area .info li i::after {
    position: absolute;
    right: 0;
    top: 5px;
    content: "";
    height: 15px;
    width: 1px;
    background: #e2e2e2;
}

.top-bar-area.bg-dark .info li i::after {
    background: rgba(255, 255, 255, 0.3);
}

.top-bar-area .social li {
    padding: 15px 0;
}

.top-bar-area .social a {
    display: inline-block;
    color: #666666;
    margin-left: 20px;
}

.top-bar-area.bg-dark .social a {
    color: #ffffff;
}

.top-bar-area .button {
    display: inline-block;
}

.top-bar-area .button a {
    display: inline-block;
    padding: 8px 30px;
    border: 2px solid #f71735;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666666;
    font-weight: 600;
}

.top-bar-area .item-flex>div {
    display: inline-block;
    border-right: 1px solid #e7e7e7;
    padding-right: 15px;
}

.top-bar-area .item-flex.border-less>div {
    border: none;
}

.top-bar-area .item-flex {
    display: inline-block;
    float: right;
}

.top-bar-area .item-flex .language-switcher .dropdown-toggle {
    background: transparent;
    border: none;
    color: #666666;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 15px;
    text-transform: capitalize;
}

.top-bar-area .item-flex.border-less .language-switcher .dropdown-toggle {
    background: #f71735;
    color: #ffffff;
}

.top-bar-area .item-flex .language-switcher .dropdown-toggle li {
    display: block;
}

.top-bar-area .item-flex .language-switcher .dropdown-menu li {
    display: block;
    padding: 0;
}

.top-bar-area .item-flex .language-switcher .dropdown-menu {
    margin: 0;
    min-width: 200px;
    border-radius: inherit;
    border: 1px solid #e7e7e7;
}

.top-bar-area .item-flex .language-switcher .dropdown-menu li a {
    padding: 10px 15px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.top-bar-area .item-flex>div:last-child {
    padding: 0;
    border: none;
}

.language-switcher span {
    font-size: 12px;
}

.top-bar-area.multi-info {
    padding: 15px 0;
}

.top-bar-area.multi-info .address-info ul {
    margin-top: 10px;
    display: inline-block;
}

.top-bar-area .item-box {
    display: flex;
    align-items: center;
}

.top-bar-area .address-info.text-right li {
    margin-right: 0;
    margin-left: 15px;
    padding: 0;
}

.top-bar-area.multi-info .text-right ul {
    border: none;
}

.top-bar-area.bg-dark .info li p {
    color: #cccccc;
}


/* ============================================================== 
     # 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.auto-height .transparent-nav .content {
    padding-top: 280px;
}

.banner-area .transparent-nav .content {
    padding-top: 80px;
}

.banner-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-area.left-shadow::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    z-index: -1;
    height: 100%;
    width: 80%;
    background: #f71735;
}

.banner-area .content {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.banner-area.content-double .double-items {
    align-items: center;
    align-self: center;
    display: flex;
    justify-content: center;
    vertical-align: middle;
}


/* 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: .7s;
}

.banner-area .item ul {
    animation-delay: .6s;
}

.banner-area .item a,
.banner-area .item button {
    animation-delay: .9s;
}


/* 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;
}


/* Content */

.banner-area.auto-height .content {
    padding: 200px 0;
}

.banner-area .content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
}

.banner-area.text-large .content h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
}

.banner-area .content span {
    color: #f71735;
}

.banner-area .content h3 {
    font-weight: 300;
    margin-bottom: 25px;
    position: relative;
}

.banner-area.small-first .content h3 {
    margin-bottom: 30px;
    display: inline-block;
}

.banner-area.multi-heading .content h2 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

.banner-area.multi-heading .content h1 {
    font-size: 70px;
    font-weight: 600;
}

.banner-area.title-uppercase .content h1 {
    font-size: 60px;
    text-transform: capitalize;
    font-weight: 600;
}

.banner-area.title-uppercase .content a {
    margin-top: 15px;
}

.banner-area.inc-info .content p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 30px;
}

.banner-area.text-dark .content p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 300;
    color: #232323;
}

.banner-area.button-less .content p {
    margin: 0;
}

.banner-area a {
    margin-right: 5px;
}

.banner-area.text-center a {
    margin-left: 3px;
    margin-right: 3px;
}


/* ============================================================== 
     # Video Button Play
=================================================================== */

.video-play-button {
    color: #f71735;
    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: #f71735;
}

.video-play-button.relative {
    position: relative;
    height: 80px;
    width: 80px;
    display: inline-block;
    left: 0;
    top: 0;
    line-height: 80px;
    text-align: center;
    transform: inherit;
}

.video-play-button.relative.theme::after,
.video-play-button.relative.theme::before {
    background: #f71735;
}

.video-play-button.relative.theme i {
    color: #ffffff;
}


/* ============================================================== 
     # About
=================================================================== */

.about-area .tab-navs .nav-pills li {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.about-area .tab-navs .nav-pills li:last-child {
    margin-bottom: 0;
}

.about-area .tab-navs .nav-pills li a {
    border: 1px solid #e7e7e7;
    padding: 15px;
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    border-radius: inherit;
    background: #f4f4f4;
}

.about-area .tab-navs .nav-pills li a i {
    display: block;
    font-size: 45px;
    margin-bottom: 15px;
}

.about-area .tab-navs .nav-pills li.active a {
    background: #f71735;
    color: #ffffff;
}

.about-area .tab-navs .nav-pills li.active a::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    border-right: 3px solid #000000;
    height: 100%;
}

.about-area .tab-content ul li {
    float: left;
    width: 50%;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    margin-top: 15px;
    font-size: 16px;
    display: flex;
}

.about-area .tab-content ul li:first-child,
.about-area .tab-content ul li:nth-child(2) {
    margin-top: 0;
}

.about-area .tab-content ul li i {
    color: #f71735;
    padding-right: 8px;
    padding-top: 5px;
}

.about-area .tab-content ul li i.fa-check-circle {
    font-weight: 300;
}

.about-area .tab-content ul {
    overflow: hidden;
    margin-top: 25px;
    font-size: 14px;
}

.about-area .tab-content .info h3,
.about-area .info>h3 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-area .tab-content .info td {
    padding: 15px;
    border-color: #e7e7e7;
}

.about-area .tab-content .info table {
    margin-top: 10px;
}

.about-area .tab-content .info h4,
.about-area .info>h4 {
    text-transform: uppercase;
    color: #999999;
}

.about-area .tab-content .info h2,
.about-area .info>h2 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-area .tab-content .info p:last-child {
    margin-bottom: 0;
}

.about-area .tab-content .info>a,
.about-area .info>a {
    margin-top: 10px;
}

.about-area .content>.info {
    padding-left: 20px;
}


/* About including features */

.about-items .info .founder {
    margin-top: 35px;
}

.about-items .info .founder img {
    height: 150px;
    width: 150px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 10px;
    -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);
    margin-bottom: 20px;
}

.about-items .info .founder h4 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-items .info .founder span {
    text-transform: capitalize;
    color: #f71735;
}

.about-items .our-features {
    border-top: 1px solid #e7e7e7;
}

.about-items .info h2 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-items .info a {
    margin-top: 10px;
}

.about-items .info {
    margin-bottom: 50px;
}

.about-items .our-features .single-item:last-child {
    border: none;
}

.about-items .our-features .single-item {
    border-right: 1px solid #e7e7e7;
}

.about-items .our-features .item {
    padding: 80px 15px;
}

.about-items .our-features .item i {
    display: inline-block;
    font-size: 35px;
    margin-bottom: 25px;
    background: #f71735;
    height: 80px;
    width: 80px;
    line-height: 78px;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
    border: 1px solid transparent;
}

.about-items .our-features .item:hover i {
    background: #ffffff;
    color: #f71735;
    border: 2px solid #f71735;
}

.about-items .our-features .item h4 {
    text-transform: uppercase;
    font-weight: 600;
}

.about-items .our-features .item p {
    margin: 0;
}

.about-items .our-features .item>a {
    display: block;
    font-family: 'Roboto', sans-serif;
}


/* ============================================================== 
     # Services
=================================================================== */

.services-area.half-bg {
    position: relative;
    z-index: 1;
}

.services-area.half-bg::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 50%;
    width: 100%;
    background: #002147 none repeat scroll 0 0;
}

.services-area.inc-thumb .item .info {
    padding: 30px;
    background: #ffffff;
}

.services-area.inc-thumb .item {
    -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);
    border-bottom: 3px solid #f71735;
    background: #ffffff;
}

.services-area.inc-thumb.half-bg .item {
    border: none;
}

.services-area.inc-thumb .item .info h4 {
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.services-area.inc-thumb .item .info .icon {
    display: block;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.services-area.inc-thumb .item .info i {
    display: inline-block;
    font-size: 50px;
    color: #f71735;
    padding: 0 10px;
    background: #ffffff;
}

.services-area.inc-thumb .item .thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
}

.services-area.inc-thumb .item .thumb img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.services-area.inc-thumb .item:hover .thumb img {
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    background-position: top;
    -webkit-filter: grayscale(0.4) blur(2px);
    filter: grayscale(0.4) blur(2px);
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.45s;
    -o-transition-duration: 0.45s;
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
}

.services-area.inc-thumb .item .thumb .overlay {
    position: absolute;
    left: 50%;
    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%);
    width: 100%;
}

.services-area.inc-thumb .item .thumb .overlay a {
    display: inline-block;
    padding: 10px 35px;
    background: #f71735;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.services-area.inc-thumb .item:hover .thumb .overlay a {
    opacity: 1;
}

.services-area.inc-thumb .item .info p:last-child {
    margin: 0;
}

.services-area.inc-thumb .services-carousel .owl-nav {
    margin: 0;
}

.services-area.inc-thumb .services-carousel .owl-nav .owl-prev,
.services-area.inc-thumb .services-carousel .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #ffffff;
    font-size: 30px;
    height: 40px;
    left: -50px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
}

.services-area.inc-thumb .services-carousel .owl-nav .owl-next {
    left: auto;
    right: -50px;
}

.services-area.inc-thumb .services-carousel .owl-dots {
    margin-top: 20px;
    margin-bottom: 8px;
}

.services-area.inc-thumb .services-carousel .owl-dots .owl-dot span {
    height: 8px;
    background: #ffffff;
    width: 25px;
    margin: 0 5px;
    opacity: 1;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.services-area.inc-thumb.banner-less .services-carousel .owl-dots .owl-dot span {
    background: #666666;
}

.services-area.inc-thumb .services-carousel .owl-dots .owl-dot.active span {
    background: #f71735;
    width: 40px;
}

.services-area.inc-thumb .item .info ul li {
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 21px;
    text-align: left;
    margin-bottom: 10px;
}

.services-area.inc-thumb .item .info ul li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f00c";
    font-weight: 600;
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
}

.services-area.inc-thumb .item .info ul {
    display: inline-block;
}

.services-area.inc-thumb .item .info ul li:last-child {
    margin-bottom: 0;
}


/* Services Thumb Less */

.services-area.thumb-less .services-items .single-item {
    position: relative;
    z-index: 1;
}

.services-area.thumb-less .services-items .single-item::after {
    position: absolute;
    right: -1px;
    top: 0;
    content: "";
    height: 100%;
    width: 1px;
    background: #e7e7e7;
}

.services-area.thumb-less .services-items .single-item::before {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: "";
    height: 1px;
    width: 100%;
    background: #e7e7e7;
}

.services-area.thumb-less .services-items {
    overflow: hidden;
}

.services-area.thumb-less .services-items .item {
    padding: 30px;
}

.services-area.thumb-less .services-items .item .span-hd {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 15px;
}




.services-area.thumb-less .services-items .item .icon {
    overflow: hidden;
    line-height: 50px;
}

.services-area.thumb-less .services-items .item .icon span {
    float: right;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    padding-top: 2px;
    opacity: 0.09;
}

.services-area.thumb-less .services-items .item .icon i {
    float: left;
    font-size: 30px;
    color: #f71735;
    margin-top: 15px;
}

.services-area.thumb-less .services-items .item h4 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* ============================================================== 
     # Section Default
=================================================================== */

.section-default-area .item-contents {
    display: flex;
}

.section-default-area .item-contents .info {
    padding: 100px;
    max-width: 600px;
    padding-right: 15px;
    padding-left: 80px;
}

.section-default-area .item-contents .info li {
    display: inline-block;
    margin-right: 20px;
    margin-top: 10px;
    float: left;
}

.section-default-area .item-contents .info li i {
    color: #ffffff;
}

.section-default-area .item-contents .info h2 {
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: -10px;
    color: white;
}

.section-default-area .item-contents .info h2 span {
    color: #f71735;
}

.section-default-area .item-contents .info ul {
    border-top: 1px solid #e7e7e7;
    margin-top: 25px;
    padding-top: 20px;
}

.section-default-area .item-contents .info li h2 {
    margin: 0;
}


/* Icon services carousel */

.services-area .thumb {
    padding-right: 20px;
}

.services-area.thumb-less.inc-carousel .services-items .item {
    border: 1px solid #e7e7e7;
}

.services-area .services-content .heading {
    margin-bottom: 35px;
}

.services-area .services-content.carousel-shadow {
    padding-bottom: 0;
}

.services-area .services-content .heading h2 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    margin-top: -5px;
}

.services-area .thumb img {
    border-radius: 5px;
    width: 100%;
}

.services-area .services-content .heading>a {
    margin-top: 10px;
}

.services-area.thumb-less.inc-carousel .services-items .item h4 {
    font-weight: 600;
}

.services-area.thumb-less.inc-carousel .owl-dots {
    margin-top: 20px;
    margin-bottom: -8px;
}

.services-area.thumb-less.inc-carousel .owl-dots .owl-dot span {
    height: 8px;
    background: #666666;
    width: 25px;
    margin: 0 5px;
    opacity: 1;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.services-area.thumb-less.inc-carousel .owl-dots .owl-dot.active span {
    background: #f71735;
    width: 40px;
}


/* Site Owner */

.services-area .owner {
    padding: 30px;
    border: 10px solid #f6f6f6;
    background: #ffffff;
}

.services-area .owner .thumb {
    height: 200px;
    width: 200px;
    margin: 0 auto 25px;
    position: relative;
}

.services-area .owner .thumb::after {
    position: absolute;
    left: 50%;
    top: -9px;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -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);
    font-size: 14px;
    color: #f71735;
}

.services-area .owner .thumb img {
    margin-bottom: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -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);
    padding: 10px;
}

.services-area .owner>img {
    width: 150px;
    margin-top: 10px;
}

.services-area .owner h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.services-area .owner span {
    color: #f71735;
    display: block;
}


/* Services Single */

.services-single-area .sidebar .sidebar-item {
    padding: 30px;
    border: 1px solid #e7e7e7;
    margin-bottom: 30px;
}

.services-single-area .services-info img {
    margin-bottom: 30px;
}

.services-single-area .services-info h2 {
    text-transform: capitalize;
    font-weight: 600;
}

.services-single-area .services-info h3 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 28px;
}

.services-single-area .services-info h4 {
    text-transform: capitalize;
    font-weight: 600;
}

.services-single-area .services-info h4 i {
    margin-right: 5px;
    color: #f71735;
}

.services-single-area .faq-area {
    margin-top: 30px;
}

.services-single-area .sidebar .sidebar-item h4 {
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
}

.services-single-area .sidebar .sidebar-item:last-child {
    margin-bottom: 0;
}

.services-single-area .sidebar .sidebar-item.link a {
    display: inline-block;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

.services-single-area .sidebar .sidebar-item.link li.active a {
    position: relative;
    z-index: 1;
    color: #f71735;
    font-weight: 600;
}

.services-single-area .sidebar .sidebar-item.link li.active a::after {
    position: absolute;
    left: -15px;
    top: 0;
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #f71735;
}

.services-single-area .sidebar .sidebar-item.link li {
    display: block;
    margin-bottom: 15px;
}

.services-single-area .sidebar .sidebar-item.link li:last-child {
    margin-bottom: 0;
}

.services-single-area .sidebar .sidebar-item.address li {
    display: flex;
    margin-bottom: 20px;
}

.services-single-area .sidebar .sidebar-item.address li span {
    padding-left: 15px;
}

.services-single-area .sidebar .sidebar-item.address li:last-child {
    margin-bottom: 0;
}

.services-single-area .sidebar .sidebar-item.address li i {
    font-size: 30px;
    color: #f71735;
}

.services-single-area .sidebar .sidebar-item.project li {
    text-align: right;
    margin-bottom: 10px;
}

.services-single-area .sidebar .sidebar-item.project li span {
    text-align: left;
    float: left;
}

.services-single-area .sidebar .sidebar-item.project li:last-child {
    margin-bottom: 0;
}


/* ============================================================== 
     # Work Process
=================================================================== */

.work-pro-items i {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 20px;
}

.work-pro-items h4 {
    text-transform: capitalize;
    font-weight: 600;
}

.work-pro-items .item .count {
    display: block;
    position: relative;
    z-index: 1;
}

.work-pro-items .item .count span {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 30px;
    height: 80px;
    width: 80px;
    border: 1px solid #f2f2f2;
    display: inline-block;
    line-height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #f2f2f2;
    z-index: 1;
}

.work-pro-items .item .count::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 1px;
    width: 100%;
    z-index: -1;
    background: #e7e7e7;
}

.chart-area .fun-facts {
    border-top: 1px solid #e7e7e7;
    margin-top: 20px;
}

.chart-area .fun-facts .fun-fact {
    font-family: 'Poppins', sans-serif;
}

.chart-area .fun-facts .fun-fact .timer {
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    margin-top: -3px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: #f71735;
}

.chart-area .fun-facts .fun-fact .timer::after {
    position: absolute;
    right: -17px;
    content: "\f067";
    font-size: 16px;
    top: 8px;
    font-family: "Font Awesome 5 Free";
}

.chart-area .fun-facts .fun-fact .medium {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    color: #232323;
    display: block;
}

.chart-area .info h2 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: -8px;
}

.chart-area .fun-facts .item {
    width: auto;
    border-right: 1px solid #e7e7e7;
    padding-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}

.chart-area .fun-facts .item:last-child {
    border: none;
}

.chart-area .fun-facts>.row {
    margin-left: -25px;
    margin-right: -25px;
}


/* ============================================================== 
     # Our Goal
=================================================================== */

.goal-items .info {
    padding-left: 30px;
}

.our-goal-area .goal-items .info h2 {
    text-transform: capitalize;
    font-weight: 600;
    margin-top: -5px;
    margin-bottom: 25px;
}

.our-goal-area .goal-items .info h4 {
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #f71735;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-decoration: underline;
}

.our-goal-area .goal-items .info blockquote {
    letter-spacing: 0.6px;
    line-height: 30px;
    font-size: 16px;
    border-left: 5px solid #e7e7e7;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 25px;
    margin-bottom: 25px;
    font-style: italic;
}

.our-goal-area .goal-items .info ul>li {
    position: relative;
    z-index: 1;
    padding-left: 25px;
    font-size: 16px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.our-goal-area .goal-items .info ul>li:last-child {
    margin: 0;
    padding-bottom: 0;
    border: none;
}

.our-goal-area .goal-items .info ul>li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #f71735;
}

.our-goal-area .goal-items.goal-carousel .owl-nav {
    margin: 0;
}

.our-goal-area .goal-items.goal-carousel .owl-nav .owl-prev,
.our-goal-area .goal-items.goal-carousel .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #666666;
    font-size: 30px;
    height: 40px;
    left: -30px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
}

.our-goal-area .goal-items.goal-carousel .owl-nav .owl-next {
    left: auto;
    right: -30px;
}

.our-goal-area .goal-items.goal-carousel .owl-dots {
    margin-top: 20px;
    margin-bottom: 8px;
}

.our-goal-area .goal-items.goal-carousel .owl-dots .owl-dot span {
    height: 8px;
    background: #666666;
    width: 25px;
    margin: 0 5px;
    opacity: 1;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.our-goal-area .goal-items.goal-carousel .owl-dots .owl-dot.active span {
    background: #f71735;
    width: 40px;
}


/* ============================================================== 
     # Work Process
=================================================================== */

.process-items .single-item {
    margin-bottom: 30px;
}

.work-process-area .process-items .item {
    -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);
    padding: 50px;
    border-top: 2px solid #f71735;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #ffffff;
}

.work-process-area .process-items .item a {
    display: block;
}

.work-process-area .process-items .item i {
    display: inline-block;
    font-size: 50px;
    color: #f71735;
    margin-bottom: 20px;
    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;
}

.work-process-area .process-items .item h4 {
    text-transform: uppercase;
    margin: 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;
    font-weight: 600;
    color: #666666;
}

.work-process-area .process-items .col-md-4:nth-child(2n) .item {
    background: #f71735;
}

.work-process-area .process-items .col-md-4:nth-child(2n) .item i,
.work-process-area .process-items .col-md-4:nth-child(2n) .item h4 {
    color: #ffffff;
}

.work-process-area .process-items .item::after {
    position: absolute;
    left: 0;
    top: -100%;
    content: "";
    height: 100%;
    width: 100%;
    background: #f71735;
    z-index: -1;
    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;
}

.work-process-area .process-items .item:hover::after {
    top: 0;
}

.work-process-area .process-items .item:hover h4,
.work-process-area .process-items .item:hover i {
    color: #ffffff;
}


/* ============================================================== 
     # Pricing
=================================================================== */

.pricing.pricing-simple {
    margin-top: 15px;
}

.pricing-area.bottom-less {
    padding-bottom: 85px;
}

.pricing-area .single-item {
    margin-bottom: 30px;
}

.pricing-area .pricing-item {
    background: #ffffff;
    padding: 50px 15px;
    -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);
}

.pricing-area .pricing-item.active {
    border: 2px solid #f71735;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.pricing-area .pricing-item .footer {
    margin-top: 20px;
}

.pricing-area .pricing-item .pricing-header {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 25px;
}

.pricing-area .pricing-item .title {
    margin-bottom: 15px;
}

.pricing-area .pricing-item .title h4 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #666666;
    letter-spacing: 1px;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}

.pricing-area .pricing-item li {
    margin-bottom: 15px;
}

.pricing-area .pricing-item li i {
    font-size: 40px;
    height: 100px;
    width: 100px;
    line-height: 80px;
    color: #3d415b;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    background: #eeedf7;
    border: 10px solid #f6f6f6;
    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;
}

.pricing-area .pricing-item:hover li i,
.pricing-area .pricing-item.active li i {
    background: #f71735;
    color: #ffffff;
}

.pricing-area .pricing-item li:last-child {
    margin-bottom: 0;
}

.pricing-area .pricing-item h2 {
    color: #666666;
    font-size: 50px;
    font-weight: 600;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.pricing-area .pricing-item h2 sup {
    bottom: auto;
    font-size: 30px;
    font-weight: 500;
    right: 0;
    top: -15px;
}

.pricing-area .pricing-item h2 sub {
    font-size: 15px;
    font-weight: normal;
    text-transform: lowercase;
    left: -5px;
}


/* ============================================================== 
     # Testimonials
=================================================================== */

.testimonial-box .heading h2 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: -5px;
}

.testimonial-box .heading span {
    display: block;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 25px;
    margin-top: -5px;
    color: #000;
}

.testimonials-area .carousel-indicators {
    bottom: 0;
    left: 0;
    position: relative;
    width: 100%;
    text-align: center;
    margin: 30px auto 0;
}

.testimonials-area .carousel-indicators li {
    border: 2px solid transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    height: 60px;
    margin: 0 5px;
    opacity: 0.4;
    overflow: hidden;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    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;
    vertical-align: middle;
    width: 60px;
}

.testimonials-area .carousel-indicators li img {
    display: block;
    height: auto;
    width: 100%;
}

.testimonials-area .carousel-indicators .active {
    border: 2px solid #e7e7e7;
    margin: 0 15px;
    opacity: 1;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    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;
}

.testimonial-items .item {
    padding: 30px;
    border-top: 1px solid #e7e7e7;
    z-index: 1;
    margin-top: 25px;
    padding-top: 45px;
    padding-bottom: 0;
}

/* .testimonial-items .item::after {
    position: absolute;
    left: 50%;
    top: 0;
    content: "\f10d";
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: -25px;
    font-size: 16px;
    margin-top: -26px;
    z-index: 9;
    background: #edf5ff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #f71735;
} */

.testimonial-slider .item {
    border: solid 1px #000;
    border-radius: 5px;
    margin-right: 15px;
    margin-top: 80px;
}

.testimonial-slider .item img {
    border-radius: 50%;
    margin: auto;
}

.testimonial-box {
    margin-top: 100px;
}

.testimonial-box .heading h2::after {
    position: absolute;
    left: 50%;
    top: 80px;
    content: "\f10d";
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: -25px;
    font-size: 16px;
    margin-top: -26px;
    z-index: 9;
    background: #edf5ff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #f71735;
}

.testimonial-box .heading span::after {
    position: absolute;
    left: 50%;
    top: 80px;
    content: "\f10d";
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: -25px;
    font-size: 16px;
    margin-top: -26px;
    z-index: 1;
    background: #edf5ff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #f71735;
}

.testimonial-items .item h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-items .item .span-hd {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #000;
    margin-top: 15px;
}

.testimonial-items .item span {
    display: block;
    color: #f71735;
}

.testimonials-area .goal-achive .fun-factor .item {
    position: relative;
    z-index: 1;
    /* margin-top: 30px; */
}

.testimonials-area .goal-achive .fun-factor .item .fun-fact {
    padding: 25px 15px;
    -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);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
}

.testimonials-area .goal-achive .fun-factor .item:first-child,
.testimonials-area .goal-achive .fun-factor .item:nth-child(2) {
    margin-top: 0;
}

.testimonials-area .goal-achive .fun-factor .item .fun-fact .timer {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f71735;
    font-family: 'Poppins', sans-serif;
}

.testimonials-area .goal-achive .fun-factor .item .fun-fact h4 {
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
}


/* ============================================================== 
     # Faq Accordion
=================================================================== */

.faq-area {
    overflow: hidden;
}

.faq-area .heading h2 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: -5px;
}

.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;
    padding: 19px 0 20px 15px;
    position: relative;
    border-bottom: 1px solid #e7e7e7;
    padding-right: 40px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.acd-items .panel-heading {
    padding: 0;
}

.faq-area .acd-items .panel-body {
    padding: 30px 15px;
    padding-bottom: 20px;
    padding-left: 0;
}

.acd-items .panel.panel-default {
    border: none;
    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: 10px;
    top: 17px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #232323;
}

.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;
}


/* ============================================================== 
     # Gallery
=================================================================== */

.gallery-area {
    padding-bottom: 85px;
}

.gallery-area .gallery-items.col-3 .pf-item {
    float: left;
    padding: 15px;
    width: 33.3333%;
}

.gallery-area .gallery-items.col-2 .pf-item {
    float: left;
    padding: 15px;
    width: 50%;
}

.gallery-area .gallery-items.col-4 .pf-item {
    float: left;
    padding: 15px;
    width: 25%;
}

.gallery-area .gallery-items.col-6 .pf-item {
    float: left;
    padding: 15px;
    width: 16.6666%;
}

.mix-item-menu button {
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 20px;
    position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.mix-item-menu {
    margin-bottom: 20px;
}

.mix-item-menu button.active {
    color: #f71735;
    background: #ffffff;
    border: 1px solid;
}

.mix-item-menu button.active::after {
    position: absolute;
    left: 0;
    top: 50%;
    /* background: #f71735; */
    content: "";
    height: 1px;
    width: 100%;
}


/* Hover Effects */

.gallery-area .pf-item .item {
    position: relative;
    overflow: hidden;
}

.gallery-area .pf-item .item * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery-area .pf-item .item .item-inner {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.gallery-area .pf-item .item .item-inner::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #002147;
    z-index: -1;
    opacity: 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;
}

.gallery-area .pf-item .item:hover .item-inner::after {
    opacity: 0.7;
}

.gallery-area .pf-item .item h4 {
    font-weight: 500;
    left: 0;
    right: 0;
    position: absolute;
    text-transform: uppercase;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    color: #ffffff;
    font-size: 16px;
    padding: 0 15px;
}

.gallery-area .pf-item .item h4::after {
    position: absolute;
    left: 50%;
    bottom: -12px;
    background: #ffffff;
    height: 1px;
    width: 20px;
    margin-left: -10px;
    content: "";
}

.gallery-area .pf-item .item:hover h4 {
    opacity: 1;
}

.gallery-area .pf-item .item h4 span {
    font-weight: 800;
}

.gallery-area .pf-item .item p {
    position: absolute;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    opacity: 0;
    -webkit-transform: translateY(-20%) scale(0.7);
    transform: translateY(-20%) scale(0.7);
    color: #ffffff;
    letter-spacing: 0.6px;
}

.gallery-area .pf-item .item:hover img,
.gallery-area .pf-item .item.hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-area .pf-item .item:hover h4,
.gallery-area .pf-item .item.hover h4 {
    opacity: 1;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.gallery-area .pf-item .item:hover p,
.gallery-area .pf-item .item.hover p {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1.05);
    transform: translateY(0px) scale(1.05);
}


/* ============================================================== 
     # Team
=================================================================== */

.team-area .team-items .single-item {
    margin-bottom: 30px;
}

.team-area .team-items .item {
    -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);
    background: #ffffff;
}

.team-area .team-items .thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 10px;
}

.team-area .team-items .thumb img {
    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;
}

.team-area .team-items .item:hover .thumb img {
    opacity: 0.3;
}

.team-area .team-items .info .overlay {
    padding: 0 20px;
    position: absolute;
    left: 50%;
    top: -35px;
    z-index: 1;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    width: 100%;
}

.team-area .team-items .info .overlay h4 {
    color: #666666;
    display: inline-block;
    background: #ffffff;
    padding: 15px 40px;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    -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);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-transform: uppercase;
}

.team-area .team-items .info .overlay span {
    display: block;
}

.team-area .team-items .info {
    padding: 25px;
    background: #ffffff;
    border-bottom: 2px solid #f71735;
    padding-top: 35px;
    position: relative;
}

.team-area .team-items .info span {
    display: block;
    margin-bottom: 10px;
    color: #f71735;
}

.team-area .team-items .thumb .overlay ul li {
    display: inline-block;
}

.team-area .team-items .thumb .overlay ul li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: #ffffff;
    text-align: center;
    line-height: 40px;
    margin-right: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.team-area .team-items .thumb .overlay ul li.facebook a {
    background: #3B5998 none repeat scroll 0 0;
    color: #ffffff;
}

.team-area .team-items .thumb .overlay ul li.twitter a {
    background: #1DA1F2 none repeat scroll 0 0;
    color: #ffffff;
}

.team-area .team-items .thumb .overlay ul li.pinterest a {
    background: #BD081C none repeat scroll 0 0;
    color: #ffffff;
}

.team-area .team-items .thumb .overlay ul li.google-plus a {
    background: #DB4437 none repeat scroll 0 0;
    color: #ffffff;
}

.team-area .team-items .thumb .overlay ul li.linkedin a {
    background: #0077B5 none repeat scroll 0 0;
    color: #ffffff;
}

.team-area .team-items .info p {
    margin: 0;
}

.team-area .team-items .thumb .overlay {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 30px;
    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;
    opacity: 0;
}

.team-area .team-items .item:hover .thumb .overlay {
    bottom: 60px;
    opacity: 1;
}

.team-area .team-items .thumb .top-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-area .team-items .thumb .top-img::after {
    position: absolute;
    left: 0;
    bottom: -100%;
    content: "";
    height: 100%;
    width: 100%;
    background: #002147;
    z-index: -1;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.team-area .team-items .item:hover .thumb .top-img::after {
    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: #ffffff;
    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-top: 20px;
    margin-bottom: -8px;
}

.team-area.carousel-shadow .team-items.team-carousel .owl-dots {
    margin-bottom: 8px;
}

.team-area .team-items.team-carousel .owl-dots .owl-dot span {
    height: 8px;
    background: #666666;
    width: 25px;
    margin: 0 5px;
    opacity: 1;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.team-area .team-items.team-carousel .owl-dots .owl-dot.active span {
    background: #f71735;
    width: 40px;
}


/* Team Single */

.team-single-area .info h2 {
    text-transform: capitalize;
    font-weight: 600;
}

.team-single-area .info span {
    color: #f71735;
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 20px;
}

.team-single-area .info .table {
    margin-top: 10px;
}

.team-single-area .info>a {
    margin-top: 10px;
}

.team-single-area .info .table td {
    padding: 15px;
}

.team-single-area .info .table td i {
    color: #f71735;
    margin-right: 5px;
}


/* ============================================================== 
     # Video aera
=================================================================== */

.video-area {
    position: relative;
    z-index: 1;
}

.video-area.half-bg::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 50%;
    width: 100%;
    background: #002147;
    z-index: -1;
}

.video-area .heading {
    position: relative;
    z-index: 1;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.video-area .heading span {
    color: #f71735;
}

.video-area .heading::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    content: "";
    height: 30px;
    width: 2px;
    background: #f71735;
}

.video-area .thumb img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.video-area .heading h2 {
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
    margin-top: -8px;
}


/* ============================================================== 
     # Blog Area
=================================================================== */

.blog-area .blog-items .single-item {
    margin-bottom: 30px;
}

.blog-area.full-blog .blog-items .item>.info {
    padding: 30px;
    -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);
    background-color: #ffffff;
    margin-top: 0;
}

.blog-area .blog-items .meta li {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    margin-right: 8px;
    margin-top: 3px;
    margin-bottom: 3px;
    font-weight: 400;
    color: #666666;
    padding-right: 13px;
    position: relative;
    z-index: 1;
}

.blog-area .blog-items .meta li a {
    font-family: 'Roboto', sans-serif;
    color: #666666;
}

.blog-area .blog-items .meta {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
    margin-bottom: 18px;
}

.blog-area .blog-items .info {
    margin-top: 30px;
}

.blog-area .blog-items .info>h4 {
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.5;
    font-size: 20px;
    color: #666666;
}

.blog-area .blog-items .info>a {
    margin-top: 5px;
}

.blog-area .blog-items .info>h2,
.blog-area .blog-items .info>h3 {
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.5;
}

.blog-area .blog-items .meta li i {
    margin-right: 3px;
    color: #f71735;
    font-weight: 500;
}

.blog-area .blog-items .meta li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

.blog-area .blog-items .meta li::after {
    position: absolute;
    right: 0;
    top: 5px;
    content: "";
    height: 15px;
    width: 1px;
    background: #cccccc;
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
}

.blog-area .blog-items .meta li:last-child::after {
    display: none;
}

.blog-area .blog-items .thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.blog-area .blog-items .thumb img {
    max-width: none;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
}

.blog-area .item:hover .thumb img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.blog-area .blog-items .info h4 a:hover {
    color: #f71735;
}

.blog-area .blog-items .thumb .date {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 1;
    padding: 5px 30px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.blog-area .blog-items .thumb .date::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #ffffff;
    z-index: -1;
    opacity: 1;
}

.blog-area .blog-items .thumb .date i {
    margin-right: 3px;
}

.blog-area .blog-items .info .date h4 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f71735;
}

.blog-area .blog-items .info .date {
    margin-bottom: 20px;
    display: inline-block;
}

.blog-area.full-blog .single-item {
    margin-bottom: 30px;
}

.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: #232323;
    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: #f71735 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: 500;
    margin-bottom: 25px;
    margin-top: -5px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.blog-area .sidebar-item.tags .title h4 {
    margin-bottom: 20px;
}

.blog-area .sidebar .title h4::before {
    background: #f71735 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 40px;
    z-index: -1;
}

.blog-area .sidebar .title h4::after {
    background: #f71735 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 45px;
    position: absolute;
    width: 5px;
    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: #f71735 none repeat scroll 0 0;
    border: medium none;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 20px;
    -webkit-border-radius: 25px 0 0 0;
    -moz-border-radius: 25px 0 0 0;
    border-radius: 25px 0 0 0;
    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: #f71735 none repeat scroll 0 0;
}

.blog-area .sidebar .sidebar-item {
    float: left;
    margin-bottom: 50px;
    width: 100%;
}

.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 #e7e7e7;
    position: relative;
}

.blog-area .sidebar .sidebar-item.category li a {
    display: inline-block;
    text-transform: capitalize;
}

.blog-area .sidebar .sidebar-item li a:hover {
    color: #f71735;
}

.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;
    border: 1px solid #e7e7e7;
}

.blog-area .sidebar .sidebar-item.category li:first-child a span {
    top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child {
    margin-top: 0;
    padding-top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child a::after {
    top: 0;
}

.blog-area .sidebar .sidebar-item.category li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item.recent-post li a {
    color: #232323;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-top: 0;
}

.sidebar-item.recent-post li a:last-child {
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
}

.sidebar-item.recent-post .meta-title {
    color: #999999;
    font-family: "Poppins", sans-serif;
    margin-top: 10px;
    text-transform: uppercase;
}

.sidebar-item.recent-post li a:hover {
    color: #f71735;
}

.sidebar-item.recent-post li a span {
    display: inline-block;
    color: #232323;
}

.sidebar-item.recent-post li span {
    display: inline-block;
    text-transform: uppercase;
}

.sidebar-item.recent-post .meta-title a {
    text-transform: capitalize;
    color: #999999;
    font-size: 14px;
}

.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:last-child {
    margin: 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%;
    transform: inherit;
}

.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: 65px;
    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: #f2f2f2 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-top: 8px;
    margin-right: 5px;
    padding: 10px 20px;
    text-transform: capitalize;
    font-size: 13px;
    color: #666666;
}

.sidebar-item.tags ul li a:hover {
    color: #f71735;
}


/* Blog Single */

.blog-area.single .item .content-box span {
    background: #f71735 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 {
    color: #414141;
    font-size: 15px;
    position: relative;
    font-style: italic;
    z-index: 1;
    margin-top: 30px;
    padding: 0 0 0 20px;
    margin-bottom: 30px;
}

.author-bio {
    display: block;
    margin-top: 30px;
    width: 100%;
    border: 1px solid #e7e7e7;
    padding: 30px;
}

.blog-area .author-bio img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.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;
    color: #232323;
}

.author-bio .content p::after {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-size: 60px;
    left: 0;
    opacity: 0.1;
    position: absolute;
    top: 0;
    font-weight: 600;
}

.author-bio .content h4 {
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 15px;
    text-transform: uppercase;
}

.blog-area .pagi-area {
    margin-top: 20px;
}

.blog-area.single .post-pagi-area {
    margin: 30px 0 40px;
    overflow: hidden;
    padding: 15px 0;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.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: #f71735;
}

.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: #f71735;
}

.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;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 3px;
    border: 1px solid #e7e7e7;
    margin-top: -5px;
}

.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: 600;
    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: #f71735;
}

.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 {
    border: 2px solid #f71735;
    background: transparent;
    color: #232323;
    display: inline-block;
    font-family: 'Poppins', 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: #f71735;
    border: 2px 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 {
    padding: 0 15px;
}


/* ============================================================== 
     # Contact
=================================================================== */

.contact-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-area::before {
    position: absolute;
    left: 15px;
    top: 80px;
    content: "";
    height: 100%;
    width: 50%;
    background: url(assets/img/side-bg.svg);
    z-index: -1;
}

.contact-area .contact-form .info::after {
    position: absolute;
    left: -50px;
    top: -25%;
    content: "";
    height: 200%;
    width: 200%;
    background: #f7f7f7;
    z-index: -1;
}

.contact-area .contact-form .info {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.contact-area .contact-form .info h2 {
    text-transform: capitalize;
    font-weight: 600;
    margin-top: -8px;
}

.contact-area .contact-form .info form {
    margin-top: 30px;
}

.contact-area .contact-form .info form input,
.contact-area .contact-form .info form textarea {
    background: transparent;
    color: #666666;
    border-radius: inherit;
    border: none;
    padding-left: 0;
    border-bottom: 1px solid #e7e7e7;
    box-shadow: inherit;
}

.contact-area .contact-form .info form textarea {
    min-height: 160px;
}

.contact-area .contact-form .info form button {
    background: transparent;
    padding: 10px 35px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    border: 2px solid #f71735;
    background: #f71735;
    margin-top: 10px;
}

form img.loader {
    margin-left: 5px;
}


/* Callback Form */

.call-back-items {
    display: flex;
}

.call-back-items .contact-info {
    max-width: 600px;
    padding: 100px;
    padding-right: 15px;
    padding-left: 80px;
}

.call-back-items .contact-info h2 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 25px;
}

.call-back-items .contact-info form {
    overflow: hidden;
    margin-top: 25px;
}

.call-back-items .contact-info form input,
.call-back-items .contact-info form textarea {
    box-shadow: inherit;
    border: 1px solid #e7e7e7;
    border-radius: inherit;
}

.call-back-items .contact-info form textarea {
    min-height: 160px;
}

.call-back-items .contact-info form button {
    border: 2px solid #f71735;
    background: transparent;
    padding: 10px 30px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}


/* Contact List */

.contact-list-area .item {
    padding: 80px 0;
}

.contact-list-area .item i {
    display: inline-block;
    font-size: 60px;
    color: #f71735;
    margin-bottom: 20px;
}

.contact-list-area .item h4 {
    text-transform: uppercase;
}

.contact-list-area .item i.fa-envelope {
    font-weight: 500;
}

.contact-list-area .single {
    border-right: 1px solid #e7e7e7;
}

.contact-list-area .single:last-child {
    border: none;
}


/* Google Maps */

.google-maps iframe {
    height: 500px;
    margin-bottom: -10px;
    width: 100%;
}

.maps-area.full .google-maps iframe {
    border: medium none;
    height: 500px;
    margin-bottom: -10px;
}

.maps-area {
    overflow: hidden;
}


/* Side BG */

.side-bg img {
    left: 50%;
    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%);
}

.side-bg {
    height: 100%;
    position: absolute;
    left: -30px;
    bottom: 0;
    width: 50%;
}


/* ============================================================== 
     # Error Page
=================================================================== */

.error-box {
    padding-left: 35px;
}

.error-box h1 {
    font-size: 150px;
    font-weight: 800;
    color: #666666;
    line-height: 120px;
    margin-bottom: 30px;
}

.error-box h2 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 25px;
}

.error-box .search {
    margin-top: 25px;
}

.error-box .search .input-group {
    min-width: 400px;
}

.error-box .search .input-group form {
    position: relative;
    z-index: 1;
}

.error-box .search .input-group form input {
    box-shadow: inherit;
    border: 1px solid #e7e7e7;
    border-radius: inherit;
}

.error-box .search .input-group form button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    min-height: 50px;
    min-width: 50px;
    border: none;
    background: #f71735;
    color: #ffffff;
    -webkit-border-radius: 30px 0 0 0;
    -moz-border-radius: 30px 0 0 0;
    border-radius: 30px 0 0 0;
}


/* ============================================================== 
     # Footer
=================================================================== */

footer .f-items {
    overflow: hidden;
}

footer .item .f-item {
    padding-right: 15px;
}

footer .item:last-child .f-item {
    padding-right: 0;
}

footer.col-4 .item .f-item {
    padding-right: 0;
}

footer .f-item>img {
    margin-bottom: 30px;
}

footer .f-item>h4 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

footer .f-item>span {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #fff;
}

footer .f-item.about h2 {
    margin-bottom: -5px;
    margin-top: 20px;
    font-weight: 600;
    color: #f71735;
}

footer .f-item.about ul span,
footer .f-item.contact ul span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-right: 3px;
    letter-spacing: 1px;
}

footer .f-item.about ul li,
footer .f-item.contact ul li {
    margin-top: 5px;
    display: block;
}

footer.bg-dark .f-item.about ul li,
footer.bg-dark .f-item.contact ul li {
    color: #ffffff;
}

footer .f-item.about ul,
footer .f-item.contact ul {
    margin-top: 20px;
}

footer .f-item.about ul li a {
    font-family: 'Roboto', sans-serif;
}

footer.bg-dark .f-item.about ul li a {
    color: #ffffff;
}

footer .f-item.link li {
    /*float: left;*/
    margin-bottom: 15px;
    /*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;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

footer .f-item.link li a:hover {
    color: #1cb9c8;
}

footer .f-item.link li a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    left: 0;
    position: absolute;
    top: 0;
    width: 6px;
    font-size: 12px;
}

footer.bg-dark .f-item.link li a::before {
    color: #cccccc;
}

footer .f-item.link li:last-child {
    margin: 0;
}

footer .f-item.recent-post li .info .meta-title a {
    display: inline-block;
    font-size: 12px !important;
    color: #f71735;
    font-weight: 500 !important;
}

footer .f-item.recent-post .meta-title,
footer .f-item.recent-post .meta-title a {
    color: #232323;
    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 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #cccccc;
}

footer.bg-dark .f-item.recent-post .meta-title a {
    color: #1cb9c8 !important;
    font-weight: 600 !important;
}

footer .f-item.recent-post .meta-title {
    margin-top: 10px;
    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: #1cb9c8;
}

footer .f-item.recent-post li span {
    display: inline-block;
}

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: 15px;
}

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%;
    margin-top: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

footer .f-item.recent-post li .info {
    vertical-align: top;
    line-height: 26px;
    color: #837f7e;
}

footer .f-item.recent-post li .info a {
    font-size: 15px;
    color: #666666;
    font-family: 'Roboto', sans-serif;
}

footer .f-item.recent-post li .info a:hover {
    color: #f71735;
}

footer.bg-dark .f-item.recent-post li .info a {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

footer .newsletter h5 {
    text-transform: capitalize;
}

footer .newsletter {
    padding: 15px;
    background: #f4f4f4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-top: 30px;
}

footer .newsletter form .input-group {
    position: relative;
    width: 100%;
}

footer .newsletter form .input-group input {
    width: 100%;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    border-radius: 30px !important;
    border: 1px solid #e7e7e7;
    padding-left: 20px;
    box-shadow: inherit;
}

footer .newsletter form .input-group button {
    position: absolute;
    right: 5px;
    border: none;
    top: 5px;
    z-index: 9;
    background: #f71735;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
}

footer .f-item.full li {
    width: 100%;
}

footer .f-item.full li a {
    color: #666666;
}

footer.bg-dark .f-item.full li a {
    color: #ffffff;
}


/* Footer Bottom */

footer .footer-bottom {
    background: #03173d none repeat scroll 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-bottom.bg-light {
    background: #ffffff none repeat scroll 0 0;
    border-top: 1px solid #e7e7e7;
}

.footer-bottom li {
    display: inline-block;
}

.footer-bottom li a {
    display: inline-block;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.footer-bottom.bg-light li a {
    border-left: 1px solid #e7e7e7;
    font-weight: 600;
    color: #666666;
}

.footer-bottom li:last-child a {
    padding-right: 0;
}

.footer-bottom p {
    margin: 15px 0;
}

.footer-bottom.bg-light p {
    color: #666666;
}

.footer-bottom p a {
    color: #f71735;
    font-weight: 600;
}

footer .twitter-widget a {
    color: #f71735;
}

footer .twitter-widget .twitter-item {
    margin-bottom: 30px;
    overflow: hidden;
}

footer .twitter-widget .twitter-item:last-child {
    margin-bottom: 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.gif) center no-repeat #fff;
    text-align: center;
}


/* Pre Loader End */

.side-banner {
    text-align: center;
}

.logo-autoplay {
    padding: 50px 0px 50px 0px;
}

.faq-section {
    padding: 100px 0px;
    background-color: #fff1f3;
}

.our-process-section {
    padding: 100px 0px;
    background-color: aliceblue;
    text-align: center;
}

.process-head {
    margin: 18px;
}

.process-main {
    padding-bottom: 45px;
}

.a1::before {
    content: url("assets/img/bottom-curve.png");
    position: absolute;
    z-index: 0;
    filter: brightness(0);
    top: -13px;
    right: -90px;
}

.a2:before {
    content: url("assets/img//up-curve.png");
    position: absolute;
    filter: brightness(0);
    right: -92px;
    top: 20px;
}

.a3::before {
    content: url("assets/img/bottom-curve.png");
    position: absolute;
    filter: brightness(0);
    top: -14px;
    right: -90px;
}

.a4:before {
    content: url("assets/img//up-curve.png");
    position: absolute;
    filter: brightness(0);
    right: -92px;
    top: 20px;
}

.awards-rewards {
    padding: 100px 0 150px 0px;
}

.section-title {
    margin-bottom: 70px;
}


/* Our Process Css */

section.our-process {
    background-color: #00000014;
    /*background-image: url(../images/banner/extra-shape.png);*/
    background-repeat: no-repeat;
    background-size: contain;
    padding: 100px 0;
}

.section-heading {
    text-align: center;
}

.timeline {
    width: 1100px;
    height: 20px;
    list-style: none;
    text-align: justify;
    margin: 80px auto;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(45%, rgba(255, 255, 255, 0)), color-stop(51%, rgba(191, 128, 11, 1)), color-stop(57%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 45%, rgba(191, 128, 11, 1) 51%, rgba(255, 255, 255, 0) 57%, rgba(255, 255, 255, 0) 100%);
}

.timeline:after {
    display: inline-block;
    content: "";
    width: 100%;
}

.timeline li {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #f71735;
    text-align: center;
    line-height: 1.2;
    position: relative;
    border-radius: 50%;
}

.timeline li:before {
    display: inline-block;
    content: attr(data-year);
    font-size: 32px;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #000000;
}

.timeline li:nth-child(odd):before {
    top: -55px;
}

.timeline li:nth-child(even):before {
    bottom: -55px;
}

.timeline li:after {
    width: 235px;
    display: inline-block;
    content: attr(data-text);
    font-size: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 70px;
}

.timeline li:nth-child(odd):after {
    bottom: 0;
    margin-bottom: -10px;
    transform: translate(-50%, 100%);
}

.timeline li:nth-child(even):after {
    top: 0;
    margin-top: -10px;
    transform: translate(-50%, -100%);
}


/* Our Process Css */


/*  Inner Pages Css Start  */

.inner-pg-heading {
    text-align: center;
    padding: 100px 0px;
    background-image: url("assets/img/imperial-breadcrum.jpg");
}

.inner-pg-heading h2 {
    color: white;
    font-weight: 600;
    font-size: 3.5rem;
}

.inner-pg-content {
    padding: 100px 0px;
}


/* faqs-css */

.faq-container .panel p {
    padding: 15px;
    color: #000002;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
}

.faq-container .accordion {
    background-color: #f71735;
    color: #ffffff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
    font-family: 'Montserrat', sans-serif;
    line-height: 0px;
    /* margin-bottom: 14px; */
    border-radius: 20px;
    padding: 25px;
}

.faq-container .active,
.faq-container .accordion:hover {
    background-color: #ff98a6;
}

.faq-container .accordion:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.faq-container .active:after {
    content: "\2212";
}

.faq-container .panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.heading-text {
    font-size: 18px;
    margin-top: 25px;
}

/* Inner Pages Css End */


/*  Form Banner Css  */

.form-banner {
    padding: 20px;
    background-color: #eaeaead6 !important;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgb(247 23 53);
    margin-top: -56px;
    z-index: 1;
}

.mt-10 {
    margin-top: 10px;
}

.row.new-form {
    text-align: center;
}

.form-banner p {
    color: white !important;
    text-align: center;
    background-color: green;
    padding: 5px
}

.form-banner img {
    position: absolute;
    top: -95px;
    right: -40px;
    width: 120px;
}

.form-banner h2 {
    text-align: center;
    font-size: 32px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-banner span {
    display: block;
    text-align: center;
    font-size: 32px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-banner h4 {
    text-align: center;
    color: #000000;
    font-weight: 600;
    font-size: 19px;
    margin-top: 10px;
}

.form-banner h4 a {
    color: #009a67;
    font-size: 22px;
    font-weight: 900;
}

.form-banner h4 a:hover {
    color: #21a4d4;
    text-decoration: underline !important;
}

.form-banner label {
    margin-top: 15px;
    color: #ffffff;
    line-height: normal;
    display: block;
}

.form-banner input[type="text"],
.form-banner input[type="tel"],
.form-banner input[type="email"] {
    width: 100%;
    height: 44px;
    border: none;
    padding-top: 12px;
    border-bottom: 2px solid #0171ef;
    border-radius: 5px;
    background-color: white;
    padding-left: 15px;
    padding-bottom: 12px;
    border-image: linear-gradient(45deg, #f71735, #000000) 10;
    margin-bottom: 10px;
}

select {
    width: 100%;
    height: 50px;
    padding: 12px;
    border: none;
    padding-left: 15px;
    padding-bottom: 12px;
    border-radius: 5px;
    /*margin-top: 0px;*/
    border-image: linear-gradient(45deg, #f71735, #000000) 10;
    margin-bottom: 10px;
    border-bottom: 2px solid;
}

.form-banner textarea {
    width: 84%;
    padding: 10px;
    resize: none;
    margin-top: 14px;
    height: 100px;
    border: none;
    padding-top: 12px;
    border-bottom: 2px solid #0071ef;
    border-radius: 5px;
    background-color: white;
    padding-left: 15px;
    padding-bottom: 12px;
    border-image: linear-gradient(45deg, #f71735, #220608) 10;
    margin-bottom: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ffffff;
    color: #f71735;
    font-size: 18px;
    border: 0px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.form-submit input[type="submit"]:hover,
.form-submit input[type="submit"]:active,
.form-submit input[type="submit"]:focus {
    background-color: #000;
    color: #fff;
}

input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    width: 142px;
    height: 42px;
    text-align: center;
    border-radius: 5px;
    background-color: #0000ff;
    color: #ffffff;
    font-size: 18px;
    border: 0px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    padding-top: 1px;
}

.dropdown-menu .mobile-only {
    display: none !important;
  }