@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Summirow Dental Clinic
    Version: v1.0.0

    Base Colors:
    Dark Blue: #b52324
    Maroon: #11092a

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default css
	02. Header css
    03. Hero css
    04. About css
    05. Service css
    06. Features css
    07. Faq css
    08. Portfolio css
    09. Team css
    10. Testimonial css
    11. Shop css
    12. Blog css
    13. Contact css
    14. Footer css

-----------------------------------------------------------------------------------*/
/*=========================
    1. Start COMMON css 
==========================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;family=Roboto:wght@400;500;700&amp;display=swap");

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #d6d6d6;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #11092a;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #222;
}

html {
    font-size: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

i,
span,
a {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: "Poppins", sans-serif;
    color: #b52324;
    margin: 0px;
    font-weight: 600;
}

h1,
.h1 {
    font-size: 80px;
    line-height: 90px;
}

h2,
.h2 {
    font-size: 54px;
    line-height: 70px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 44px;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 35px;
}

h5,
.h5 {
    font-size: 18px;
    line-height: 28px;
}

h6,
.h6 {
    font-size: 16px;
}

.display-1 {
    font-size: 6rem;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    color: #777777;
    margin: 0px;
}

input,
textarea {
    display: inherit;
}

img {
    max-width: 100%;
}

.img-thumbnail {
    border-radius: 0;
}

.deco-img {
    position: relative;
    z-index: 1;
}

.deco-img:before {
    position: absolute;
    bottom: -25px;
    left: -25px;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 280px solid #11092a;
    border-right: 300px solid transparent;
    z-index: -1;
}

.deco-img img {
    border: 3px solid #fff;
}

.border-img {
    border: 10px solid #fff;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #777777;
    font-size: 16px;
    line-height: 30px;
    overflow-x: hidden;
}

.section-title span.span {
    color: #11092a;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
    display: block;
}

.section-title h2 span.qempo {
    color: #11092a;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title h2 {
        font-size: 42px;
        line-height: 52px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 36px;
        line-height: 42px;
    }
}

.section-title-white span.span,
.section-title-white h2 {
    color: #fff;
}

.line-head::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border-top: 1px solid #e5e5e5;
    width: 100%;
    z-index: -1;
}

.line-head span {
    background: #fff;
    padding-right: 20px;
}

ul.checklist li.check:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    color: #11092a;
    margin-right: 15px;
    font-weight: 900;
}

ul.checklist li {
    margin-bottom: 5px;
}

ul.checklist li:last-child {
    margin-bottom: 0px;
}

ul.checklist-2 li {
    display: flex;
    align-items: flex-start;
}

ul.checklist-2 li + li {
    margin-top: 50px;
}

ul.checklist-2 li span {
    font-size: 30px;
    font-weight: 600;
    background: #11092a;
    line-height: 1;
    margin-right: 15px;
    color: #fff;
    min-width: 46px;
    display: block;
    height: 46px;
    border-radius: 50%;
    text-align: center;
    line-height: 46px;
}

ul.checklist-2 li span::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 23px;
    width: 100px;
    height: 15px;
    border: 1px solid #9f9f9f;
    border-bottom: 0;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.parallax-bg {
    background-attachment: fixed;
}

.slick-slide {
    outline: 0;
}

ul.social-link li {
    display: inline-block;
}

.form_group {
    position: relative;
}

.form_control {
    width: 100%;
    padding: 0 30px;
    height: 54px;
    border: none;
}

textarea.form_control {
    padding-top: 15px;
    display: inherit;
}

.circle-num {
    font-size: 26px;
    font-weight: 600;
    background: #11092a;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.zf-errorMessage {
    color: #000000;
    position: absolute;
    top: -34px;
    font-size: 13px;
    line-height: 1;
    left: 45px;
    background: #dfdfdf;
    box-shadow: 2px 2px 10px #1a1a1a54;
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #e11616;
}

.zf-errorMessage::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 10px;
    border-top: 6px solid #dfdfdf;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}

/*===== All bg & text color =====*/
.main-bg {
    background-color: #11092a;
}

.blue-bg {
    background-color: #040126;
}

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

.bc-bg {
    background-color: #757577 !important;
}

.aquamarine-light {
    background-color: #eff3f7;
}

.bc-txt {
    color: #11092a !important;
}

.sc-txt {
    color: #b52324 !important;
}

/*===== Extend Css =====*/
.footer-area.footer-area-v3 .footer-widget .widget.contact-widget .contact-info-item .icon,
.contact-info-area-v2:before,
.blog-area-three,
.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-item .icon .count,
.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .content-box .big-text,
.achievement-arrows,
.filter-btn li:after,
.faq-wrapper.faq-wrapper-five .accordion-item .accordion-body,
.faq-wrapper.faq-wrapper-five .accordion-item .accordion-title[aria-expanded=true],
.faq-wrapper .accordion-item .accordion-title[aria-expanded]:before,
.faq-filter form .search-btn,
.counter-area-v1 .counter-item:after,
.cta-area-v3,
.skill-quote,
.gallery-area-v1 .gallery-item .gallery-img .gallery-overlay:after,
.intro-video-v1 .play-content .video-popup,
.features-area-v4 .features-wrapper:after,
.progess-list .progess-item.progress-active .count,
.download-tools-section .quote-message,
.download-tools-section .download-item .content .download-btn:after,
.service-area-v5 .service-item .icon i,
.service-area-v4 .service-item .icon i,
.service-area-v3 .service-item .content .icon:before,
.service-area-v2 .service-item:after,
.service-area-v1 .serivce-item:after,
.skill-list .single-progress .progress-bar,
.about-me-section .about-content-box .content-box .big-text,
.about-area-v2 .shape-circle span,
.hero-area-v2 .social-box .social-link li a:after {
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.footer-area.footer-area-v3 .footer-widget .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6:hover,
.footer-area.footer-area-v3 .footer-widget .footer-top .footer-nav ul li a:hover,
.footer-area.footer-area-v1 .footer-widget .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6:hover,
.blog-grid-two .blog-post-item .entry-content h3.title:hover,
.blog-grid-one .blog-post-item .entry-content .btn-link:hover,
.service-area-v5 .service-item .content h3:hover,
.service-area-v5 .service-item .content h3:focus,
.service-area-v4 .service-item .content h3.title:hover,
.service-area-v4 .service-item .content h3.title:focus,
.service-area-v3 .service-item .content h3.title:hover,
.service-area-v1 .serivce-item .content .btn-link:hover,
.service-area-v1 .serivce-item .content h3.title:hover {
    color: #11092a;
}

.video-outer {
    border: 5px solid #ffffff;
}

.video-outer iframe {
    display: block;
}

.faq-img .play-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.faq-img .play-content .video-popup {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    font-size: 16px;
    color: #b52324;
}

.features-area-v4 .features-wrapper .features-content-box ul.list li,
.features-area-v2 .content-box ul.list li,
.service-area-v4 .service-item .content ul.list li,
.about-area-v2 .about-content-box ul.list li,
ul.checklist li {
    position: relative;
    padding-left: 30px;
}

.features-area-v4 .features-wrapper .features-content-box ul.list li.check:before,
.features-area-v2 .content-box ul.list li.check:before,
.service-area-v4 .service-item .content ul.list li.check:before,
.about-area-v2 .about-content-box ul.list li.check:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    font-family: "Font Awesome 5 Pro";
    color: #11092a;
    margin-right: 15px;
}

.skill-quote .button .btn-link,
.download-tools-section .quote-message .button .btn-link,
.service-area-v1 .serivce-item .content .btn-link {
    text-decoration: none;
    color: #b52324;
    font-weight: 700;
}

.skill-quote .button .btn-link:after,
.download-tools-section .quote-message .button .btn-link:after,
.service-area-v1 .serivce-item .content .btn-link:after {
    display: inline-block;
    content: "";
    font-weight: 300;
    font-family: "Font Awesome 5 Pro";
    margin-left: 10px;
    vertical-align: middle;
}

/*===== All Button Style =====*/
button {
    border: none;
}

.main-btn {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 12px 40px;
    position: relative;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    -webkit-transition: 0.2s -webkit-transform ease-in-out;
    transition: 0.2s -webkit-transform ease-in-out;
    transition: 0.2s transform ease-in-out;
    transition: 0.2s transform ease-in-out, 0.2s -webkit-transform ease-in-out;
    z-index: 0;
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.main-btn.alt-btn {
    background: linear-gradient(90deg, #352f48 0%, #08173a 100%);
}

.main-btn.outline-btn {
    padding: 10px 36px;
    background: transparent;
}

.main-btn.outline-btn.light-one {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.main-btn.outline-btn.dark-one {
    border: 2px solid #b52324;
    color: #b52324;
}

.main-btn i {
    margin-right: 10px;
}

.main-btn.outline-btn.light-one:hover {
    color: #b52324;
}

.main-btn.outline-btn.dark-one:hover {
    color: #fff;
}

.main-btn.outline-btn.light-one:hover::before {
    background: #fff;
}

.main-btn.outline-btn.dark-one:hover::before {
    background: #b52324;
}

.main-btn:before {
    background-color: #172c56;
    border-radius: 30px;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-100%, 0) rotate(10deg);
    transform: translate(-100%, 0) rotate(10deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: 0.2s -webkit-transform ease-out;
    transition: 0.2s -webkit-transform ease-out;
    transition: 0.2s transform ease-out;
    transition: 0.2s transform ease-out, 0.2s -webkit-transform ease-out;
    z-index: -1;
}

.main-btn.alt-btn:before {
    background-color: #11092a;
}

.main-btn.alt-btn.hover-white:before {
    background-color: #fff;
}

.main-btn:hover,
.main-btn:focus {
    color: #fff;
}

.main-btn.alt-btn.hover-white:hover {
    color: #b52324;
}

.main-btn:hover:before,
.main-btn:focus:before {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.main-btn.btn-sm {
    padding: 8px 22px;
    font-size: 15px;
}

.main-btn.btn-xs {
    padding: 5px 18px;
    font-size: 14px;
}

.btn-img {
    width: 24px;
    margin-right: 5px;
}

/*
    nice select css
*/
.nice-select {
    width: 100%;
    outline: none;
}

.nice-select.open:after {
    -webkit-transform: none;
    transform: none;
}

.nice-select:after {
    content: "";
    font-family: "Font Awesome 5 Pro";
    right: 20px;
    font-size: 12px;
    font-weight: 400;
    -webkit-transform: none;
    transform: none;
    border: none;
    top: 0;
    margin-top: 0;
    color: #2E2E2E;
}

.nice-select .list {
    width: 100%;
}

/*
    Nice number css
*/
.nice-number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
}

.nice-number input {
    vertical-align: middle;
    -moz-appearance: textfield;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0;
    text-align: center;
}

.nice-number input::-webkit-inner-spin-button,
.nice-number input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*
    search 
*/
#search-modal {
    background: rgba(23, 26, 33, 0.85);
}

#search-modal .modal-content {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

#search-modal .modal-content:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#search-modal .form_control {
    padding-left: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    color: #fff;
    margin-bottom: 0;
    height: 50px;
}

#search-modal .form_control:focus {
    border-color: #11092a;
}

#search-modal .form_control::-webkit-input-placeholder {
    color: #fff;
}

#search-modal .form_control::-moz-placeholder {
    color: #fff;
}

#search-modal .form_control:-ms-input-placeholder {
    color: #fff;
}

#search-modal .form_control::-ms-input-placeholder {
    color: #fff;
}

#search-modal .form_control::placeholder {
    color: #fff;
}

#search-modal .search_btn {
    position: absolute;
    background: transparent;
    top: 10px;
    right: 10px;
    color: #fff;
}

/*
    Start Preloader css
*/
.preloader {
    background-color: #fff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preloader-inner small {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0px;
    font-size: 15px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 691px){
    .preloader-inner small {
        bottom: -12px;
        font-size: 11px;
        letter-spacing: 1px;
    }
}

.preloader-inner svg {
    width: 300px;
    height: auto;
}

g,
path {
    transform-box: fill-box;
}

.preloader-inner svg .summirow-txt {
    fill: none;
    stroke: #293c62;
    stroke-width: 14px;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    -webkit-animation: write-me 1.4s cubic-bezier(0.68, 0.03, 0.76, 1) infinite;
    animation: write-me 1.4s cubic-bezier(0.68, 0.03, 0.76, 1) infinite;
}

.preloader-inner svg #sicon {
    opacity: 0;
    -webkit-animation: trans-me 1s cubic-bezier(0.68, 0.03, 0.76, 1) infinite alternate;
    animation: trans-me 1s cubic-bezier(0.68, 0.03, 0.76, 1) infinite alternate;
}

@-webkit-keyframes write-me {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes write-me {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes trans-me {
    100% {
        opacity: 1;
    }
}

@keyframes trans-me {
    100% {
        opacity: 1;
    }
}


/*
    Start scroll_up css
*/
.back-to-top {
    background: #11092a;
    border-radius: 50%;
    bottom: 20px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    right: 20px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 337;
}

.back-to-top:hover,
.back-to-top:focus {
    background: #b52324;
    color: #fff;
}

/*
    End scroll_up css
*/
@-webkit-keyframes play {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
        opacity: 0;
    }

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

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

@keyframes play {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
        opacity: 0;
    }

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

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

.slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #b52324;
    background-color: #f7f7f7;
    font-size: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.slick-arrow.prev {
    left: -55px;
}

.slick-arrow.next {
    right: -55px;
}

.slick-dots {
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    margin: 0 8px;
}

.slick-dots li button {
    background: #c9c9c9;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background: #11092a;
}

/*====================
    End COMMON css 
======================*/
/*---=======================
   02. Start Header  css 
===========================---*/
header {
    z-index: 1;
}

.brand-logo > a > img {
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
}

.transparent-header {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

@media only screen and (min-width: 992px) {
    .header-navigation .row > .col-lg-2.col-6 {
        padding: 0;
    }
}

.header-navigation .main-menu ul > li.menu-item-has-children > a:after {
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    float: right;
    display: inline-block;
    color: #b52324;
    font-size: 14px;
    margin-left: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-navigation .main-menu ul > li.menu-item-has-children > a:after {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-navigation .main-menu ul > li.menu-item-has-children > a:after {
        display: none;
    }
}

.header-navigation .main-menu ul > li.menu-item-has-children > a.active:after {
    color: #11092a;
}

.header-navigation .main-menu ul > li.menu-item-has-children .sub-menu li.menu-item-has-children:hover > a:after {
    color: #fff;
}

.header-navigation .main-menu ul > li.menu-item-has-children .sub-menu li.menu-item-has-children > a:after {
    margin-left: 0px;
    margin-right: 5px;
    color: #b52324;
}

.header-navigation .main-menu ul li {
    display: inline-block;
    position: relative;
}

.header-navigation .main-menu ul li.mega-menu-parent {
    position: static;
}

.header-navigation .main-menu ul li > a {
    display: block;
    font-size: 15px;
    color: #7f918b;
    font-weight: 700;
    text-transform: capitalize;
    padding: 30px 15px;
    line-height: 1;
}

.header-navigation .main-menu ul li > a.active {
    color: #11092a;
    position: relative;
}

.header-navigation .main-menu ul li > a.active::before {
    content: '';
    position: absolute;
    top: 49%;
    left: 5px;
    height: 22px;
    width: 32px;
    background: #11092a;
    transform: translateY(-50%) skewX(-25deg);
    z-index: -1;
    opacity: 0.2;
    border-radius: 10px 0 0 20px;
}

.header-navigation .main-menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 120%;
    width: 220px;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 99;
    height: auto;
    text-align: left;
    -webkit-box-shadow: 1px 4px 10px rgb(0 0 0 / 15%);
    box-shadow: 1px 4px 10px 0px rgb(0 0 0 / 15%);
}

.header-navigation .main-menu > ul > li > .sub-menu {
    border-top: 3px solid transparent;
}

.header-navigation .main-menu ul li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    margin-top: 2px;
    background-color: #f5f7f9;
    background-image: url(../images/bg/2.webp), url(../images/bg/wave.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: 110% 50%, left bottom;
    background-size: 300px, 100% auto;
    border: 2px dashed #11092a;
    -webkit-box-shadow: 0px 2px 20px rgb(181 35 36 / 18%);
    box-shadow: 0px 2px 20px rgb(181 35 36 / 18%);
}

.header-navigation .main-menu ul li .sub-menu li {
    display: block;
    margin: 0;
}

.header-navigation .main-menu ul li ul.sub-menu li a.active,
.header-navigation .main-menu ul li ul.sub-menu li a.active {
    color: #11092a;
    background-color: #fff;
}

.header-navigation .main-menu ul li .sub-menu li:last-child > a {
    border-bottom: none;
}

.header-navigation .main-menu ul li .sub-menu li a {
    font-size: 14px;
    font-weight: 500;
    display: block;
    padding: 8px 15px;
    background-color: #fff;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    line-height: 1.65;
    margin: 0;
    border-bottom: 1px solid #ececec;
    color: #64706c;
}

.header-navigation .main-menu ul li .sub-menu.mega-menu li a {
    padding: 5px 0px;
    font-weight: 400;
    border: 0;
    font-size: 15px;
}

.header-navigation .main-menu ul li .sub-menu.mega-menu li:hover > a {
    background-color: transparent;
    color: #64706c;
}

.header-navigation .main-menu ul li .sub-menu.mega-menu li > a:hover,
.header-navigation .main-menu ul li .sub-menu.mega-menu li:hover {
    background-color: transparent;
    color: #11092a;
}

.header-navigation .main-menu ul li .sub-menu.mega-menu li a i {
    margin-right: 5px;
}

.header-navigation .main-menu ul li .sub-menu li a:hover {
    background-color: #11092a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.header-navigation .main-menu ul li .sub-menu li .sub-menu {
    left: -100%;
    top: 50%;
    border-right: 3px solid transparent;
}

.header-navigation .main-menu ul li .sub-menu li:hover .sub-menu {
    top: 0%;
}

.header-navigation .main-menu ul li .sub-menu li:hover > a {
    background-color: #11092a;
    color: #fff;
}

.header-navigation .main-menu ul li:hover.menu-item-has-children > a:after {
    color: #11092a;
}

.header-navigation .main-menu ul li:hover > a {
    color: #11092a;
}

.header-navigation .main-menu ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-navigation .main-menu ul li .dd-trigger {
    display: none;
}

.header-navigation.breakpoint-on {
    padding: 14px 0;
}

.header-area-one.transparent-header .header-navigation.breakpoint-on {
    padding: 0;
}

.header-navigation.breakpoint-on .nav-menu {
    text-align: left;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9999;
    width: 280px;
    height: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 0;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
}

.header-navigation.breakpoint-on .nav-menu.menu-on {
    left: 0;
}

.header-navigation .nav-menu .sidemenu-logo {
    display: none;
}

.header-navigation.breakpoint-on .nav-menu.menu-on .sidemenu-logo {
    display: block;
    max-width: 190px;
    padding: 15px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #ececec;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li:last-child {
    border-bottom: 0;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li.active .sub-menu {
    border-top: 1px solid #ececec;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 15px;
    font-weight: 400;
}

.header-area-one .header-navigation.sticky.breakpoint-on .nav-menu .main-menu ul li a {
    padding: 10px 15px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li.active > a {
    font-weight: 600;
    color: #11092a;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a,
.header-area-one .header-navigation.sticky.breakpoint-on .main-menu ul li .sub-menu li a {
    color: #b52324;
    padding: 6px 40px 6px 25px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li .sub-menu li a,
.header-navigation.sticky.breakpoint-on .nav-menu .main-menu ul li .sub-menu li .sub-menu li a {
    padding-left: 40px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a:hover,
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li:hover > a {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .dd-trigger {
    display: block;
    position: absolute;
    right: 0;
    height: 36px;
    width: 45px;
    top: 0;
    border-left: 1px solid #eaeaea;
    z-index: 2;
    background: transparent;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    color: #b52324;
    font-size: 20px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu.menu-on {
    left: 0;
}

.header-navigation .nav-menu .navbar-close {
    display: none;
}

.header-navigation.breakpoint-on .nav-pushed-item {
    display: none;
}

.header-navigation.breakpoint-on .navbar-close,
.header-navigation.breakpoint-on .navbar-toggler {
    display: block;
}

.header-navigation .navbar-toggler {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: none;
}

.header-navigation .navbar-toggler span {
    position: relative;
    background-color: #b52324;
    border-radius: 3px;
    display: block;
    height: 3px;
    margin-top: 5px;
    padding: 0;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    width: 30px;
    cursor: pointer;
    display: block;
}

.header-navigation .navbar-toggler.active span:nth-of-type(1) {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    top: 8px;
}

.header-navigation .navbar-toggler.active span:nth-of-type(2) {
    opacity: 0;
}

.header-navigation .navbar-toggler.active span:nth-of-type(3) {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    top: -8px;
}

.header-navigation .navbar-close {
    position: absolute;
    top: 10px;
    right: 5px;
    z-index: 12;
    width: 40px;
    height: 40px;
    font-size: 26px;
    text-align: center;
    line-height: 45px;
    color: #222;
    cursor: pointer;
}

.header-area-one {
    z-index: 999999;
}

.header-area-one.transparent-header {
    top: 20px;
}

.header-area-one .container-fluid {
    padding-left: 100px;
    padding-right: 100px;
}

@media (max-width: 991px) {
    .header-area-one .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header-area-one .header-navigation .header-right-nav {
    float: right;
}

.header-area-one .header-navigation .header-right-nav .menu-icon-group ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-area-one .header-navigation .header-right-nav .menu-icon-group ul li {
    margin-left: 10px;
    display: inline-block;
}

.header-area-one .header-navigation .header-right-nav .menu-icon-group ul li .icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #11092a;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
}

.header-right-nav .menu-icon-group ul li .icon::after,
.header-right-nav .menu-icon-group ul li .icon::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 50%;
    border: 1px solid #11092a;
    transform-origin: center center;
}

.header-right-nav .menu-icon-group ul li .icon::before {
    -webkit-animation: ripple 1.7s linear infinite;
    animation: ripple 1.7s linear infinite;
}

.header-right-nav .menu-icon-group ul li .icon::after {
    -webkit-animation: ripple 1.7s linear 0.8s infinite;
    animation: ripple 1.7s linear 0.8s infinite;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0;
    }
}


.header-area-one .header-navigation.sticky .header-right-nav .menu-icon-group ul li .icon {
    width: 36px;
    height: 36px;
}

@media (max-width: 767px) {
    .header-area-one .header-navigation .header-right-nav .menu-icon-group ul li .icon {
        width: 40px;
        height: 40px;
    }
}

.header-area-two .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 767px) {
    .header-area-two .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header-area-two .header-navigation {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-area-two .header-navigation .site-branding {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    max-width: 170px;
}

.header-area-two .header-navigation .main-menu ul > li.menu-item-has-children > a:after {
    color: #fff;
}

.header-area-two .header-navigation .main-menu ul > li.menu-item-has-children > a.active:after {
    color: #11092a;
}

.header-area-two .header-navigation .main-menu ul li > a {
    padding: 36px 20px;
    color: #fff;
}

.header-area-two .header-navigation .main-menu ul li > a.active {
    color: #11092a;
}

.header-area-two .header-navigation .main-menu ul li:hover.menu-item-has-children > a:after {
    color: #11092a;
}

.header-area-two .header-navigation .main-menu ul li:hover > a {
    color: #11092a;
}

.header-area-two .header-navigation .header-right-nav {
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.header-area-two .header-navigation .header-right-nav .menu-icon-group ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-area-two .header-navigation .header-right-nav .menu-icon-group ul li {
    display: inline-block;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area-two .header-navigation .header-right-nav .menu-icon-group ul li.off-nav {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-area-two .header-navigation .header-right-nav .menu-icon-group ul li.off-nav {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-area-two .header-navigation .header-right-nav .menu-icon-group ul li.phone-button {
        display: none;
    }
}

.header-area-two .header-navigation .header-right-nav .menu-icon-group ul li.toggle-nav .navbar-toggler {
    padding: 30px 0px 30px 20px;
}

.header-area-two .header-navigation .header-right-nav .menu-icon-group ul li.toggle-nav .navbar-toggler span {
    background-color: rgba(255, 255, 255, 0.5);
}

.header-area-two .header-navigation .header-right-nav .menu-icon-group ul li a {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
    padding: 22px 20px;
}

.header-area-three .container-fluid {
    padding-left: 160px;
    padding-right: 160px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area-three .container-fluid {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .header-area-three .container-fluid {
        padding: 0 15px;
    }
}

.header-area-three .header-top-bar {
    background-color: #eeeeee;
    padding: 10px ​0;
}

@media (max-width: 767px) {
    .header-area-three .header-top-bar .top-left {
        text-align: center;
    }
}

.header-area-three .header-top-bar .top-left span:last-child:after {
    display: none;
}

.header-area-three .header-top-bar .top-left span:after {
    display: inline-block;
    content: "|";
    margin-left: 20px;
    margin-right: 17px;
}

.header-area-three .header-top-bar .top-right {
    float: right;
}

@media (max-width: 767px) {
    .header-area-three .header-top-bar .top-right {
        display: none;
    }
}

.header-area-three .header-top-bar .top-right .nice-select {
    width: auto;
    font-weight: 700;
    background-color: transparent;
    border: none;
    color: #b52324;
    border-radius: 0px;
    padding: 0px 15px;
}

.header-area-three .header-top-bar .top-right .nice-select:after {
    right: 0;
}

.header-area-three .header-navigation {
    margin-left: 160px;
    background-color: #e8e8e8;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .header-area-three .header-navigation {
        margin-left: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area-three .header-navigation {
        margin-left: 0px;
    }
}

@media (max-width: 991px) {
    .header-area-three .header-navigation {
        margin-left: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area-three .header-navigation .header-row {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .header-area-three .header-navigation .header-row {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header-area-three .header-navigation .container-full {
    max-width: 100%;
    padding-right: 160px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area-three .header-navigation .container-full {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .header-area-three .header-navigation .container-full {
        padding: 0 15px;
    }
}

.header-area-three .header-navigation .site-branding {
    background-color: #11092a;
    background: #11092a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area-three .header-navigation .site-branding {
        padding: 20px 20px;
    }
}

@media (max-width: 991px) {
    .header-area-three .header-navigation .site-branding {
        padding: 20px 20px;
    }
}

@media (max-width: 767px) {
    .header-area-three .header-navigation .site-branding {
        padding: 10px 10px;
    }
}

.header-area-three .header-navigation .main-menu ul li > a {
    padding: 43px 20px;
}

.header-area-three .header-navigation .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 97px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area-three .header-navigation .nav-menu {
        margin-left: 0px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .header-area-three .header-navigation .nav-menu .main-menu {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .header-area-three .header-navigation .nav-menu {
        margin-left: 0px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .header-area-three .header-navigation .nav-menu .main-menu {
        width: 100%;
    }
}

.panel-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.288);
    cursor: pointer;
    z-index: 9999;
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.panel-overlay.active {
    visibility: visible;
    opacity: 1;
}

.offcanvas-panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 55%;
    z-index: 9999999;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}

.offcanvas-panel.panel-on {
    visibility: visible;
    opacity: 1;
}

.offcanvas-panel.panel-on .offcanvas-panel-inner {
    visibility: visible;
    opacity: 1;
    margin-right: 0;
}

.offcanvas-panel .offcanvas-panel-inner {
    font-size: 15px;
    width: 100%;
    /*    max-width: 375px;*/
    height: 100%;
    background-color: #fff;
    /*    padding: 30px 25px;*/
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
    margin-right: -375px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    box-shadow: -2px 0.5rem 1rem rgba(0, 0, 0, .15);
}

.offcanvas-panel .offcanvas-panel-inner .offcanvas-panel,
.offcanvas-panel .offcanvas-panel-inner .about-us {
    margin-bottom: 30px;
}


.offcanvas-panel .offcanvas-panel-inner .panel-logo {
    padding: 20px 20px;
}

.panel-logo > a > img {
    max-width: 200px;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
}

.offcanvas-panel .panel-widget-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    border-bottom: 2px solid #ededed;
    font-weight: 600;
}

.offcanvas-panel .contact-us ul li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.offcanvas-panel .contact-us ul li:last-child {
    margin-bottom: 0px;
}

.offcanvas-panel .contact-us ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #b52324;
    border-radius: 50%;
    font-size: 14px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}

.offcanvas-panel .panel-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 25px;
    line-height: 1;
    padding: 5px;
    color: #b52324;
    z-index: 2;
}

.header-navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
}

.header-area-one .header-navigation.sticky {
    padding: 0;
    background-color: #fff;
    box-shadow: 0 0.3rem 1rem rgb(0 0 0 / 12%);
}

.header-area-one .header-navigation.sticky .main-menu > ul > li > a {
    padding: 25px 15px;
}

.header-area-two .header-navigation.sticky {
    background-color: #000;
}

.header-area-three .header-navigation.sticky {
    margin-left: 0px;
}

@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

/*---=======================
   03. Start Hero  css 
===========================---*/
.hero-area-v1 {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-area-v1 .hero-shape {
        display: none;
    }
}

.hero-area-v1 .hero-shape .shape {
    position: absolute;
    content: "";
    background-color: #e7ecf3;
    z-index: -1;
}

.hero-area-v1 .hero-shape .shape.shape-one {
    top: 0;
    left: 0;
    width: 30%;
    height: 70%;
    -webkit-box-shadow: 58.508px 54.56px 180px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 58.508px 54.56px 180px 0px rgba(255, 255, 255, 0.4);
    border-radius: 0 0 80px 0;
}

.hero-area-v1 .hero-shape .shape.shape-two {
    bottom: 0;
    right: 0;
    width: 40%;
    height: 85%;
    -webkit-box-shadow: -56.569px -56.569px 180px 0px rgba(255, 255, 255, 0.6);
    box-shadow: -56.569px -56.569px 180px 0px rgba(255, 255, 255, 0.6);
    border-radius: 80px 0 0 0;
}

.hero-area-v1 .main-slider {
    padding: 140px 0 100px;
}

.hero-area-v1 .hero-img {
    padding: 0 20px;
}

.hero-area-v1 .hero-content span.span {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    color: #777777;
}

.hero-area-v1 .hero-content h1 {
    font-size: 70px;
    line-height: 90px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .hero-area-v1 .hero-content h1 {
        font-size: 65px;
        line-height: 85px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-area-v1 .hero-content h1 {
        font-size: 62px;
        line-height: 72px;
    }
}

@media (max-width: 767px) {
    .hero-area-v1 .hero-content h1 {
        font-size: 38px;
        line-height: 50px;
        margin-bottom: 10px;
    }
}

.hero-area-v1 .hero-content .box {
    margin-bottom: 30px;
}

.hero-area-v1 .hero-content .box .icon {
    margin-right: 20px;
}

.hero-area-v1 .hero-content .box .icon i {
    color: #11092a;
    font-size: 54px;
    line-height: 1;
}

.hero-area-v1 .hero-content .button li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.hero-area-v1 .hero-content .button li:last-child {
    margin-left: 25px;
}

@media (max-width: 400px) {
    .hero-area-v1 .hero-content .button li:last-child {
        margin-left: 10px;
        margin-top: 15px;
    }
}

.hero-area-v1 .hero-content .button .main-btn:after {
    display: none;
}

.hero-area-v2 {
    position: relative;
    padding: 300px 0 220px;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero-area-v2 {
        padding: 200px 0 130px;
    }
}

.hero-area-v2:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-area-v2 .phone {
    position: absolute;
    left: -25px;
    bottom: 115px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

@media (max-width: 767px) {
    .hero-area-v2 .phone {
        display: none;
    }
}

.hero-area-v2 .phone span {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.hero-area-v2 .phone span a {
    margin-left: 5px;
    font-weight: 700;
    color: #fff;
}

.hero-area-v2 .social-box {
    position: absolute;
    right: 50px;
    bottom: 50px;
}

@media (max-width: 767px) {
    .hero-area-v2 .social-box {
        display: none;
    }
}

.hero-area-v2 .social-box .social-link li {
    display: block;
    margin-bottom: 10px;
}

.hero-area-v2 .social-box .social-link li:last-child {
    margin-bottom: 0px;
}

.hero-area-v2 .social-box .social-link li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.hero-area-v2 .social-box .social-link li a:hover:after {
    visibility: visible;
    opacity: 1;
}

.hero-area-v2 .social-box .social-link li a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-area-v2 .social-box .social-link li a:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.hero-area-v2 .hero-content h1 {
    font-size: 95px;
    line-height: 100px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .hero-area-v2 .hero-content h1 {
        font-size: 80px;
        line-height: 90px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-area-v2 .hero-content h1 {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (max-width: 991px) {
    .hero-area-v2 .hero-content h1 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 400px) {
    .hero-area-v2 .hero-content h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

.hero-area-v2 .hero-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 42px;
    line-height: 28px;
    font-size: 18px;
}

.hero-area-v2 .hero-content .main-btn:after {
    display: none;
}

.hero-area-v3 {
    background-color: #f4f4f4;
    padding: 283px 0 140px;
    position: relative;
}

.hero-area-v3 .hero-wrapper {
    position: relative;
}

.hero-area-v3 .hero-content span.span {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #11092a;
    margin-bottom: 10px;
    display: block;
}

.hero-area-v3 .hero-content h1 {
    font-size: 90px;
    line-height: 100px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .hero-area-v3 .hero-content h1 {
        font-size: 45px;
        line-height: 60px;
    }
}

@media (max-width: 767px) {
    .hero-area-v3 .hero-content h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

.hero-area-v3 .hero-content h5 {
    font-size: 20px;
    line-height: 28px;
    color: #777777;
    font-weight: 400;
    margin-bottom: 45px;
}

.hero-area-v3 .hero-img {
    position: absolute;
    bottom: -140px;
    right: -85px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .hero-area-v3 .hero-img {
        position: relative;
        right: -40px;
    }

    .hero-area-v3 .hero-img img {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-area-v3 .hero-img {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-area-v3 .hero-img {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-area-v3 .col-lg-5 {
        width: 100%;
    }
}

.bredcumbs-area {
    position: relative;
    padding: 100px 0 90px;
    z-index: 1;
    background-image: url(../images/bg/bg.jpg);
}
 
.bredcumbs-area:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*    background-color: rgba(0, 0, 0, 0.5);*/
    background: linear-gradient(45deg, rgb(7 3 70 / 85%), transparent);
    z-index: -1;
}

.bredcumbs-area .page-title-inner h1 {
    color: #fff;
    font-size: 72px;
}

.bredcumbs-area .page-title-inner h1.h2 {
    font-size: 58px;
}

.bredcumbs-area .page-title-inner h1.h3 {
    font-size: 42px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .bredcumbs-area .page-title-inner h1 {
        font-size: 44px;
        line-height: 54px;
    }

    .bredcumbs-area .page-title-inner h1.h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .bredcumbs-area .page-title-inner h1.h3 {
        font-size: 26px;
        line-height: 1.3;
    }
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link {
    margin-bottom: 5px;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link li {
    display: inline-block;
    color: #fff;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link li:last-child:after {
    display: none;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link li:after {
    content: "/";
    display: inline-block;
    margin-left: 10px;
    margin-right: 5px;
    color: #c5c5c5;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link li a {
    color: #c5c5c5;
}

.error-section {
    padding: 300px 0 200px;
    position: relative;
    z-index: 1;
}

.error-section:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/bg/error-shape.webp) no-repeat bottom;
    background-size: 100% 80%;
    z-index: -1;
}

@media (max-width: 991px) {
    .error-section:after {
        background-size: 100% 100%;
    }
}

.error-section .error-content h1 {
    font-size: 400px;
    color: #11092a;
    font-weight: 600;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .error-section .error-content h1 {
        font-size: 200px;
    }
}

@media (max-width: 991px) {
    .error-section .error-content h1 {
        font-size: 100px;
    }
}

@media (max-width: 400px) {
    .error-section .error-content h1 {
        font-size: 40px;
    }
}

.error-section .error-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .error-section .error-content p {
        font-size: 18px;
    }
}

.error-section .error-content .error-btn {
    padding: 13px 40px;
    border: 2px solid #efefef;
    border-radius: 30px;
}

.error-section .error-content .error-btn:hover {
    color: #fff;
    background-color: #11092a;
}

.error-section .error-content .error-btn:hover i {
    color: #fff;
}

.error-section .error-content .error-btn i {
    margin-right: 10px;
    color: #11092a;
}

/*---=======================
   04. Start About  css 
===========================---*/
.about-area-v1 .about-img-box {
    position: relative;
    height: 670px;
}

.about-area-v1 .about-img-box:after {
    position: absolute;
    bottom: 80px;
    left: 10px;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 170px solid #172c56;/
    border-right: 185px solid transparent;/
    z-index: -1;
}

.about-area-v1 .about-img-box .experience-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 190px;
    height: 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    opacity: 0.85;
    padding: 20px;
    z-index: 1;
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.about-area-v1 .about-img-box .experience-box h2 {
    color: #fff;
    font-size: 70px;
    line-height: 0.75;
}

.about-area-v1 .about-img-box .experience-box h2 span.sign {
    font-size: 24px;
}

.about-area-v1 .about-img-box .experience-box h2 span.text {
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.4;
}

.about-area-v1 .about-img-box .about-img-one {
    padding-top: 70px;
    /*margin-left: 50px;*/
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v1 .about-img-box .about-img-one {
        margin-left: 50px;
    }
}

@media (max-width: 767px) {
    .about-area-v1 .about-img-box .about-img-one {
        margin-left: 0px;
        padding-top: 0px;
    }
}

.about-area-v1 .about-img-box .about-img-one img {

    max-width: 450px;
    max-height: 500px;

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v1 .about-img-box .about-img-one img {
        width: 100%;

    }
}

@media (max-width: 767px) {
    .about-area-v1 .about-img-box .about-img-one img {
        width: 100%;
    }
}

.about-area-v1 .about-img-box .about-img-two {
    position: absolute;
    bottom: 0;
    right: 0;
}

.about-area-v1 .about-img-box .about-img-two img {
    width: 400px;
    height: 391px;
    border: 10px solid #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.about-area-v1 .about-content-box {
    margin-left: 20px;
}

.about-area-v1 .about-content-box p {
    margin-bottom: 30px;
    line-height: 30px;
    font-size: 18px;
}

.about-area-v1 .about-content-box .box {
    margin-right: 30px;
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    .about-area-v1 .about-content-box .box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about-area-v1 .about-content-box .box .thumb {
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .about-area-v1 .about-content-box .box .thumb {
        margin-bottom: 30px;
    }
}

.about-area-v1 .about-content-box .box .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.about-area-v1 .about-content-box .box .content h4 {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v1 .about-content-box .box .content h4 {
        font-size: 18px;
        line-height: 28px;
    }
}

.about-area-v1 .about-content-box .box .content p {
    margin-bottom: 15px;
}

.about-area-v1 .about-content-box .box .content a {
    font-size: 14px;
    font-weight: 700;
    color: #11092a;
}

.about-area-v1 .about-content-box .box .content a i {
    margin-right: 10px;
}

.about-area-v1 .about-content-box ul.list {
    padding-top: 35px;
    border-top: 1px solid #efefef;
}

.about-area-v2 {
    position: relative;
}

.about-area-v2 .shape-circle span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.about-area-v2 .shape-circle span:nth-child(1) {
    top: 80px;
    left: 140px;
}

.about-area-v2 .shape-circle span:nth-child(2) {
    top: 30%;
    left: 30%;
}

.about-area-v2 .shape-circle span:nth-child(3) {
    top: 7%;
    right: 40%;
}

.about-area-v2 .shape-circle span:nth-child(4) {
    top: 32%;
    right: 40%;
}

.about-area-v2 .shape-circle span:nth-child(5) {
    top: 15%;
    right: 10%;
}

.about-area-v2 .qempo-circle .circle-box {
    position: relative;
    background-color: #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    -webkit-box-shadow: 0px 80px 180px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 80px 180px 0px rgba(0, 0, 0, 0.1);
    margin: auto;
    z-index: 1;
}

.about-area-v2 .qempo-circle .circle-box h3 {
    font-size: 30px;
    color: #11092a;
    text-transform: uppercase;
}

.about-area-v2 .qempo-circle .circle-box:before {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    content: "";
    border: 2px solid #f0f0f0;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 400px) {
    .about-area-v2 .qempo-circle .circle-box:before {
        width: 260px;
        height: 260px;
    }
}

.about-area-v2 .qempo-circle .circle-box:after {
    z-index: -1;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    content: "";
    border: 2px solid #f8f8f8;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 400px) {
    .about-area-v2 .qempo-circle .circle-box:after {
        width: 310px;
        height: 310px;
    }
}

.about-area-v2 .section-title {
    margin-bottom: 60px;
}

.about-area-v2 .experience-box .content {
    position: relative;
}

.about-area-v2 .experience-box .content h2 {
    font-size: 400px;
    font-weight: 600;
    color: #11092a;
    line-height: 0.78;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .about-area-v2 .experience-box .content h2 {
        font-size: 260px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v2 .experience-box .content h2 {
        font-size: 300px;
    }
}

@media (max-width: 767px) {
    .about-area-v2 .experience-box .content h2 {
        font-size: 250px;
    }
}

.about-area-v2 .experience-box .content span.years {
    position: absolute;
    top: 48%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-35deg);
    transform: translate(-50%, -50%) rotate(-23deg);
    background: #fff;
    color: #b52324;
    -webkit-box-shadow: 0px 20px 40px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 20px 40px 0px rgb(0 0 0 / 10%);
    padding: 12px 40px;
    border-radius: 27px;
    font-size: 18px;
    font-weight: 600;
    width: 65%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v2 .experience-box .content span.years {
        font-size: 14px;
        padding: 12px 25px;
    }
}

@media (max-width: 767px) {
    .about-area-v2 .experience-box .content span.years {
        font-size: 14px;
        padding: 12px 19px;
    }
}

@media (max-width: 991px) {
    .about-area-v2 .experience-box {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .about-area-v2 .about-img {
        margin-bottom: 40px;
    }
}

.about-area-v2 .about-img img {
    width: 100%;
    border-radius: 10px;
}

.about-area-v2 .about-content-box p {
    margin-bottom: 20px;
}

.about-area-v2 .about-content-box .content p {
    margin-bottom: 25px;
}

.about-area-v2 .about-content-box .list li {
    font-weight: 500;
    color: #000000;
    font-size: 18px;
    margin-bottom: 5px;
}

.about-area-v2 .about-content-box .list li:last-child {
    margin-bottom: 0;
}

.about-area-v3 {
    background-color: #f8f8f8;
}

.about-area-v3 .about-img-box {
    position: relative;
    min-height: 625px;
}

.about-area-v3 .about-img-box .about-img-one {
    max-width: 530px;
}

.about-area-v3 .about-img-box .about-img-one img {
    border: 10px solid #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.about-area-v3 .about-img-box .about-img-two {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 385px;
    max-height: 320px;
}

.about-area-v3 .about-img-box .about-img-two img {
    border: 10px solid #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.about-area-v3 .about-content-box {
    margin-left: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .about-area-v3 .about-content-box {
        margin-left: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v3 .about-content-box {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .about-area-v3 .about-content-box {
        margin-left: 0px;
    }
}

.about-area-v3 .about-content-box p {
    margin-bottom: 45px;
}

.about-area-v3 .about-content-box .button {
    padding-bottom: 29px;
    border-bottom: 1px solid #dde0e2;
}

.about-area-v3 .about-content-box .button li {
    display: inline-block;
    vertical-align: middle;
}

.about-area-v3 .about-content-box .button li .phn-btn {
    margin-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .about-area-v3 .about-content-box .button li .phn-btn {
        margin-left: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v3 .about-content-box .button li .phn-btn {
        margin-top: 15px;
        margin-left: 15px;
    }
}

@media (max-width: 767px) {
    .about-area-v3 .about-content-box .button li .phn-btn {
        margin-left: 15px;
    }
}

@media (max-width: 400px) {
    .about-area-v3 .about-content-box .button li .phn-btn {
        margin-top: 15px;
        margin-left: 0px;
    }
}

.about-area-v3 .about-content-box .button li .phn-btn .icon {
    margin-right: 20px;
}

.about-area-v3 .about-content-box .button li .phn-btn .icon i {
    font-size: 40px;
    color: #11092a;
    line-height: 1;
}

.about-area-v3 .about-content-box .button li .phn-btn .info h3 {
    line-height: 36px;
}

@media (max-width: 767px) {
    .about-area-v3 .about-content-box .button li .phn-btn .info h3 {
        font-size: 20px;
        line-height: 30px;
    }
}

.about-area-v3 .about-content-box .button li .phn-btn .info h3 span {
    line-height: 1;
    color: #777777;
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.about-area-v3 .about-content-box .box-item-group {
    padding-top: 40px;
}

.about-area-v3 .about-content-box .box-item-group .box-item .icon {
    margin-right: 20px;
}

.about-area-v3 .about-content-box .box-item-group .box-item .icon i {
    font-size: 40px;
    color: #11092a;
    line-height: 1;
}

.about-area-v3 .about-content-box .box-item-group .box-item .info {
    margin-top: -6px;
}

.about-area-v3 .about-content-box .box-item-group .box-item .info h5 {
    line-height: 26px;
}

.about-area-v3 .about-content-box .box-item-group .box-item .info p {
    margin-bottom: 0px;
}

.about-area-v3 .about-content-box .box-item-group .btn-link {
    color: #11092a;
    font-size: 20px;
}

.about-area-v4 .about-img {
    position: relative;
    text-align: right;
    margin-right: 70px;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v4 .about-img {
        margin-right: 0px;
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .about-area-v4 .about-img {
        text-align: center;
        margin-right: 0px;
        margin-bottom: 40px;
    }
}

.about-area-v4 .about-img:after {
    position: absolute;
    top: -30px;
    left: -20px;
    content: "";
    width: 0;
    height: 0;
    border-top: 300px solid #11092a;
    border-right: 330px solid transparent;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v4 .about-img:after {
        display: none;
    }
}

@media (max-width: 991px) {
    .about-area-v4 .about-img:after {
        display: none;
    }
}

.about-area-v4 .about-img img {
    max-width: 500px;
    border: 3px solid #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v4 .about-img img {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .about-area-v4 .about-img img {
        width: 100%;
    }
}

.about-area-v4 .about-content-box {
    margin-left: -30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area-v4 .about-content-box {
        margin-left: 0px;
    }
}

@media (max-width: 991px) {
    .about-area-v4 .about-content-box {
        margin-left: 0px;
    }
}

.about-area-v4 .about-content-box p {
    margin-bottom: 20px;
    line-height: 30px;
}

.about-area-v4 .about-content-box .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-area-v4 .about-content-box .box .thumb {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 30px;
}

.about-area-v4 .about-content-box .box .thumb img {
    width: 100%;
    height: 100%;
}

.about-area-v4 .about-content-box .box .info h4 {
    margin-bottom: 5px;
}

.about-area-v4 .about-content-box .box .info p {
    margin-bottom: 0px;
}

.about-area-v4 .about-content-box .box .info p .btn-link {
    color: #11092a;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #11092a;
    line-height: 18px;
}

.about-area-v4 .about-content-box .box .info p .btn-link:after {
    margin-left: 10px;
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

.about-me-section .about-me-area .about-me-img img {
    border-radius: 30px;
}

.about-me-section .about-me-area .about-me-info .title {
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-me-section .about-me-area .about-me-info .title {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

.about-me-section .about-me-area .about-me-info .title h2 {
    font-size: 48px;
    line-height: 58px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-me-section .about-me-area .about-me-info .title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 991px) {
    .about-me-section .about-me-area .about-me-info .title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.about-me-section .about-me-area .about-me-info .title span.position {
    color: #11092a;
    font-weight: 700;
}

.about-me-section .about-me-area .about-me-info p {
    margin-bottom: 20px;
}

.about-me-section .about-me-area .about-me-info .info-box {
    border-top: 1px solid #efefef;
    margin-top: 30px;
    padding-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-me-section .about-me-area .about-me-info .info-box {
        margin-top: 10px;
        padding-top: 10px;
        margin-bottom: 15px;
    }
}

.about-me-section .about-me-area .about-me-info .info-box .info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.about-me-section .about-me-area .about-me-info .info-box .info .tag {
    width: 15%;
    color: #b52324;
    font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-me-section .about-me-area .about-me-info .info-box .info .tag {
        width: 20%;
    }
}

@media (max-width: 991px) {
    .about-me-section .about-me-area .about-me-info .info-box .info .tag {
        width: 40%;
    }
}

.about-me-section .about-me-area .about-me-info .info-box .info .tag i {
    margin-right: 15px;
    color: #11092a;
}

.about-me-section .about-me-area .about-me-info .info-box .info .text {
    width: 85%;
}

.about-me-section .about-me-area .about-me-info .info-box .info .text a:hover {
    color: #b52324;
}

.about-me-section .about-me-area .about-me-info .social-link li a {
    border: 2px solid #efefef;
}

.about-me-section .about-me-area .about-me-info .social-link li a:hover {
    border-color: transparent;
}

.about-me-section .about-content-box .content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-me-section .about-content-box .content-box .big-text {
    margin-right: 40px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 80px;
    font-weight: 700;
}

.about-me-section .about-content-box .content-box p {
    margin-bottom: 0px;
}

.about-me-section .about-content-box p {
    margin-bottom: 30px;
}

.about-me-section .about-me-content-box h4 {
    margin-bottom: 35px;
}

.about-me-section .about-me-content-box p {
    margin-bottom: 20px;
}

.skill-list .single-progress {
    overflow: hidden;
    margin-bottom: 27px;
}

.skill-list .single-progress:last-child {
    margin-bottom: 0px;
}

.skill-list .single-progress .progress-title {
    margin-bottom: 10px;
}

.skill-list .single-progress .progress-title h5 span {
    float: right;
    color: #11092a;
    font-weight: 400;
}

.skill-list .single-progress .progress-bar {
    height: 6px;
    margin-bottom: 4px;
}

.skill-list .single-progress .progress {
    height: 2px;
    background-color: #ececec;
}

.icon-spec {
    display: flex;
    border-left: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    padding-top: 20px;
    margin-left: 20px;
}

.icon-spec .start-icon {
    font-size: 42px;
    margin-right: 15px;
    color: #11092a;
    line-height: 1.3;
    margin-left: -18px;
    background: #f7f7f7;
    align-self: flex-start;
}

.member-tabs .nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.member-tabs .nav-link.active,
.member-tabs .nav-link.active:hover {
    color: #11092a;
    border-color: #dee2e6 #dee2e6 #fff !important;
}

.member-tabs .tab-ma-icon {
    width: 40px;
    margin-right: 10px;
}

.member-tabs .nav-link {
    font-size: 20px;
    color: #222;
    font-weight: 600;
    letter-spacing: 0.05rem;
    border: 2px solid transparent;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: -2px;
}

.member-tabs .nav-link small {
    font-size: 16px;
}

.member-tabs .nav-tabs .nav-link:hover {
    border-color: transparent;
}

.kit-box {
    border: 1px solid #e1e1e1;
    text-align: center;
    padding: 12px 15px;
}

.kit-icon {
    position: absolute;
    top: 50%;
    left: -11px;
    font-size: 22px;
    color: #b52324;
    background: #fff;
    padding: 10px 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.inc-box {
    display: flex;
    align-items: center;
}

.inc-box.bottom-style {
    display: block;
}

.inc-box h6 {
    color: #4e4e4e;
}

.inc-box img {
    max-width: 55px;
    min-width: 55px;
    margin-right: 20px;
}

.camp-box,
.fac-box {
    border: 1px solid #ebebeb;
    padding: 5px;
    position: relative;
}

.camp-box .camp-icon {
    font-size: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #11092a;
    position: absolute;
    top: -5px;
    left: -5px;
    background: #fff;
    border-radius: 0 50% 50% 50%;
    border-bottom: 3px solid #e0e0e0;
    border-right: 3px solid #e0e0e0;
}

.fac-box .fac-icon {
    font-size: 26px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #11092a;
    position: relative;
    background-color: #fff;
    border-radius: 50%;
    border-bottom: 3px solid #e0e0e0;
    border-right: 3px solid #e0e0e0;
    margin-top: -40px;
    display: block;
    z-index: 6;
    margin: -30px auto 0;
}

.camp-box .camp-icon i {
    transform: rotate(-20deg);
}

.camp-box h5 {
    padding: 10px 0 5px;
    font-size: 22px;
}

.fac-box h6 {
    padding: 15px 0 10px;
}

.mv-item .mv-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.mv-item .mv-inner .icon {
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.wisdom-area {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.wisdom-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #757577;
    opacity: 0.8;
}

/*---=======================
   05. Start Service  css 
===========================---*/
@-webkit-keyframes shake {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes shake {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-area-v1 .col-lg-3 {
        width: 33.33%;
    }
}

.service-area-v1 .serivce-item {
    position: relative;
    background: #fff;
    padding: 50px 40px 40px;
    border: 2px solid #e2edea;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    z-index: 1;
}

.service-area-v1 .serivce-item:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.service-area-v1 .serivce-item:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
    height: 20px;
    background-color: #fff;
    z-index: -1;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.service-area-v1 .serivce-item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.service-area-v1 .serivce-item:hover .icon i {
    color: #fff;
}

.service-area-v1 .serivce-item:hover .content h3.title,
.service-area-v1 .serivce-item:hover .content p,
.service-area-v1 .serivce-item:hover .content .btn-link {
    color: #fff;
}

.service-area-v1 .serivce-item:hover:before {
    bottom: -15px;
}

.service-area-v1 .serivce-item:hover:after {
    visibility: visible;
    opacity: 1;
}

.service-area-v1 .serivce-item .icon {
    margin-bottom: 10px;
}

.service-area-v1 .serivce-item .icon i {
    font-size: 40px;
    line-height: 1;
    color: #11092a;
}

.service-area-v1 .serivce-item .content h3.title {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-area-v1 .serivce-item .content h3.title {
        font-size: 17px;
        line-height: 28px;
    }
}

.service-area-v1 .serivce-item .content p {
    margin-bottom: 15px;
    line-height: 26px;
}

.service-area-v2 {
    position: relative;
    z-index: 1;
    background-color: #000000;
}

.service-area-v2:after {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/bg/map.webp) no-repeat center top;
    background-size: cover;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-area-v2 .col-lg-3 {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .service-area-v2 .service-content-box {
        margin-bottom: 40px;
    }
}

.service-area-v2 .service-content-box h2 {
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-area-v2 .service-content-box h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 991px) {
    .service-area-v2 .service-content-box h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 400px) {
    .service-area-v2 .service-content-box h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.service-area-v2 .service-content-box p {
    color: #999;
}

.service-area-v2 .service-item {
    position: relative;
    padding: 45px 45px 40px;
    border-radius: 10px;
    background: transparent;
    z-index: 1;
}

.service-area-v2 .service-item:hover .icon {
    -webkit-animation: shake linear 0.2s;
    animation: shake linear 0.2s;
}

.service-area-v2 .service-item:hover .icon i {
    color: #fff;
}

.service-area-v2 .service-item:hover .content p {
    color: #fff;
}

.service-area-v2 .service-item:hover:after {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 400px) {
    .service-area-v2 .service-item {
        padding: 45px 15px 40px;
    }
}

.service-area-v2 .service-item::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid rgba(253, 99, 80, 0.1);
    z-index: -1;
}

.service-area-v2 .service-item:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: -1;
}

.service-area-v2 .service-item .icon {
    margin-bottom: 15px;
}

.service-area-v2 .service-item .icon i {
    font-size: 55px;
    line-height: 1;
    color: #11092a;
}

.service-area-v2 .service-item .content h3.title {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.service-area-v2 .service-item .content p {
    color: #999;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .service-area-v3 .col-lg-3 {
        width: 33.33%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-area-v3 .col-lg-3 {
        width: 33.33%;
    }
}

.service-area-v3 .service-item .service-img img {
    width: 100%;
}

.service-area-v3 .service-item .content {
    padding: 0 15px;
    border: 2px solid #efefef;
    border-top: none;
}

@media (max-width: 767px) {
    .service-area-v3 .service-item .content {
        padding: 0 25px;
    }
}

.service-area-v3 .service-item .content .icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    margin-top: -50px;
    margin-bottom: 15px;
}

.service-area-v3 .service-item .content .icon:before {
    position: absolute;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    z-index: -1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.service-area-v3 .service-item .content .icon i {
    font-size: 40px;
    color: #11092a;
}

.service-area-v3 .service-item .content .icon img {
    width: 45px;
}

.service-area-v3 .service-item .content h3.title {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 5px;
}

.service-area-v3 .service-item .content .main-btn {
    margin-bottom: -40px;
    color: #b52324;
    background: #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
    .service-area-v3 .service-item .content .main-btn {
        padding: 12px ​30px;
    }
}

.service-area-v3 .service-item .content .main-btn:hover {
    color: #fff;
}

.service-area-v4 {
    padding-bottom: 57px;
}

.service-area-v4 .service-item:hover .icon {
    -webkit-animation: shake linear 0.2s;
    animation: shake linear 0.2s;
}

.service-area-v4 .service-item .icon {
    margin-bottom: 32px;
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.service-area-v4 .service-item .icon i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    font-size: 40px;
    color: #fff;
}

.service-area-v4 .service-item .content h3.title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
}

.service-area-v4 .service-item .content p {
    margin-bottom: 25px;
    line-height: 26px;
}

.service-area-v4 .service-item .content ul.list li {
    color: #b52324;
    margin-bottom: 5px;
}

.service-area-v4 .service-item .content ul.list li:last-child {
    margin-bottom: 0px;
}

.service-area-v5 {
    padding-bottom: 120px;
}

.service-area-v5 .service-column {
    position: relative;
}

.service-area-v5 .service-column:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-top: 1px solid #efefef;
    border-right: 1px solid #efefef;
    z-index: -1;
}

@media (max-width: 767px) {
    .service-area-v5 .service-column:after {
        border: 1px solid #efefef;
    }
}

.service-area-v5 .service-column:nth-child(1):after,
.service-area-v5 .service-column:nth-child(2):after,
.service-area-v5 .service-column:nth-child(3):after {
    border-top: none;
}

.service-area-v5 .service-column:nth-child(30):after,
.service-area-v5 .service-column:nth-child(27):after,
.service-area-v5 .service-column:nth-child(24):after,
.service-area-v5 .service-column:nth-child(21):after,
.service-area-v5 .service-column:nth-child(18):after,
.service-area-v5 .service-column:nth-child(15):after,
.service-area-v5 .service-column:nth-child(12):after,
.service-area-v5 .service-column:nth-child(9):after,
.service-area-v5 .service-column:nth-child(6):after,
.service-area-v5 .service-column:nth-child(3):after {
    border-right: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .service-area-v5 .service-column:nth-child(30):after,
    .service-area-v5 .service-column:nth-child(27):after,
    .service-area-v5 .service-column:nth-child(24):after,
    .service-area-v5 .service-column:nth-child(21):after,
    .service-area-v5 .service-column:nth-child(18):after,
    .service-area-v5 .service-column:nth-child(15):after,
    .service-area-v5 .service-column:nth-child(12):after,
    .service-area-v5 .service-column:nth-child(9):after,
    .service-area-v5 .service-column:nth-child(6):after,
    .service-area-v5 .service-column:nth-child(3):after {
        border-right: 1px solid #efefef;
        border-top: 1px solid #efefef;
    }
}

.service-area-v5 .service-item {
    padding: 40px 20px;
}

.service-area-v5 .service-item:hover .icon {
    -webkit-animation: shake linear 0.2s;
    animation: shake linear 0.2s;
}

.service-area-v5 .service-item .icon {
    margin-bottom: 30px;
}

.service-area-v5 .service-item .icon i {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    margin: auto;
}

.service-area-v5 .service-item .content h3 {
    margin-bottom: 15px;
    line-height: 36px;
}

.service-area-v5 .service-item .content h3:hover span,
.service-area-v5 .service-item .content h3:focus span {
    color: #11092a;
}

.service-area-v5 .service-item .content h3 span {
    display: block;
    color: #999999;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

.download-tools-section .download-item {
    border: 2px solid #efefef;
    padding: 50px 60px;
    border-radius: 20px;
}

.download-tools-section .download-item .icon {
    margin-bottom: 30px;
}

.download-tools-section .download-item .content .download-btn {
    position: relative;
    padding: 13px 50px;
    border: 2px solid #efefef;
    font-weight: 700;
    border-radius: 30px;
    z-index: 1;
}

.download-tools-section .download-item .content .download-btn:hover {
    color: #fff;
    border-color: transparent;
}

.download-tools-section .download-item .content .download-btn:hover:after {
    visibility: visible;
    opacity: 1;
}

.download-tools-section .download-item .content .download-btn:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 30px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: -1;
}

.download-tools-section .quote-message {
    border-radius: 40px;
    padding: 25px 50px;
}

.download-tools-section .quote-message .title h5 {
    color: #fff;
}

.download-tools-section .quote-message .button {
    float: right;
}

.download-tools-section .quote-message .button .btn-link {
    color: #fff;
}

/*---=======================
   06. Start FEatures  css 
===========================---*/
.features-area-v1 .section-title h2 {
    font-size: 58px;
    line-height: 68px;
}

@media (max-width: 991px) {
    .features-area-v1 .section-title h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 400px) {
    .features-area-v1 .section-title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.progess-list .progess-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.progess-list .progess-item:after {
    position: absolute;
    top: 30px;
    bottom: -100%;
    content: "";
    left: 22px;
    width: 2px;
    height: auto;
    background-color: #dfdfdf;
    z-index: -1;
}

.progess-list .progess-item:last-child {
    margin-bottom: 0px;
}

.progess-list .progess-item:last-child:after {
    display: none;
}

.progess-list .progess-item.progress-active .count h5 {
    color: #fff;
}

.progess-list .progess-item.progress-active .content h5 {
    color: #b52324;
}

.progess-list .progess-item .count {
    margin-right: 20px;
    min-width: 45px;
    max-width: 45px;
    height: 45px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #ebebeb;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.progess-list .progess-item .count h5 {
    color: #11092a;
}

.progess-list .progess-item .content h5 {
    color: #777777;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.features-area-v1 .features-img img {
    border-radius: 30px;
}

.features-area-v2 {
    margin-left: 16%;
    background-color: #f5f5f5;
    position: relative;
    z-index: 1;
    border-radius: 30px 0px 0px 30px;
    margin-bottom: -255px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .features-area-v2 {
        margin-left: 0%;
        border-radius: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-area-v2 {
        margin-left: 0%;
        border-radius: 0px;
    }
}

@media (max-width: 991px) {
    .features-area-v2 {
        margin-left: 0%;
        border-radius: 0px;
    }
}

.features-area-v2:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/bg/features-bg-3.webp) no-repeat;
    background-position: right bottom;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .features-area-v2:after {
        background-size: 60%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-area-v2:after {
        background-size: 65%;
    }
}

@media (max-width: 991px) {
    .features-area-v2:after {
        display: none;
    }
}

.features-area-v2 .features-content-box {
    padding-right: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .features-area-v2 .features-content-box {
        padding-right: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-area-v2 .features-content-box {
        padding-right: 0px;
    }
}

@media (max-width: 991px) {
    .features-area-v2 .features-content-box {
        padding-right: 0px;
    }
}

.features-area-v2 .features-content-box .section-title h2 {
    font-size: 55px;
    line-height: 65px;
}

@media (max-width: 767px) {
    .features-area-v2 .features-content-box .section-title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.features-area-v2 .features-tab .nav-tabs {
    border-bottom: none;
}

.features-area-v2 .features-tab .nav-tabs .nav-item {
    margin-right: 20px;
}

.features-area-v2 .features-tab .nav-tabs .nav-link {
    background-color: #fff;
    font-weight: 600;
    color: #b52324;
    border: none;
    margin-bottom: 0px;
    border-radius: 25px;
    padding: 10px 40px;
}

.features-area-v2 .features-tab .nav-tabs .nav-link:hover,
.features-area-v2 .features-tab .nav-tabs .nav-link.active {
    background-color: #11092a;
    color: #fff;
}

.features-area-v2 .content-box p {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-area-v2 .content-box p .row .col-lg-4 {
        width: 40%;
    }
}

.features-area-v3 .features-bg,
.features-area-v3 .features-content-box {
    width: 50%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .features-area-v3 .features-bg,
    .features-area-v3 .features-content-box {
        width: 100%;
    }
}

@media (max-width: 991px) {

    .features-area-v3 .features-bg,
    .features-area-v3 .features-content-box {
        width: 100%;
    }
}

.features-area-v3 .features-content-box {
    padding: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .features-area-v3 .features-content-box {
        padding: 60px 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-area-v3 .features-content-box {
        padding: 60px 30px;
    }
}

@media (max-width: 991px) {
    .features-area-v3 .features-content-box {
        padding: 30px 15px;
    }
}

.features-area-v3 .features-content-box p {
    margin-bottom: 45px;
    font-size: 18px;
    line-height: 30px;
}

.features-area-v3 .features-content-box .box-item .icon {
    margin-right: 30px;
    min-width: 70px;
    max-width: 70px;
    height: 60px;
}

.features-area-v3 .features-content-box .box-item .info h4 {
    line-height: 30px;
}

.features-area-v4 {
    position: relative;
    z-index: 1;
}

.features-area-v4:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 405px;
    z-index: -1;
    background-color: #f7f7f7;
}

.features-area-v4 .features-wrapper {
    background: #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.features-area-v4 .features-wrapper:after {
    position: absolute;
    content: "";
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
    height: 100px;
}

.features-area-v4 .features-wrapper .features-row {
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.features-area-v4 .features-wrapper .features-content-box {
    padding-right: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-area-v4 .features-wrapper .features-content-box {
        padding-right: 0px;
    }
}

@media (max-width: 991px) {
    .features-area-v4 .features-wrapper .features-content-box {
        padding-right: 0px;
    }
}

.features-area-v4 .features-wrapper .features-content-box h2 {
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .features-area-v4 .features-wrapper .features-content-box h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.features-area-v4 .features-wrapper .features-content-box p {
    margin-bottom: 45px;
}

.features-area-v4 .features-wrapper .features-content-box ul.list li {
    margin-bottom: 10px;
}

.features-area-v4 .features-wrapper .features-content-box ul.list li:last-child {
    margin-bottom: 0px;
}

.features-area-v4 .features-img {
    margin-right: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-area-v4 .features-img {
        margin-right: 0px;
    }
}

@media (max-width: 991px) {
    .features-area-v4 .features-img {
        margin-right: 0px;
    }
}

.features-area-v5 .features-column {
    position: relative;
}

.features-area-v5 .features-column:last-child:after {
    display: none;
}

.features-area-v5 .features-column:after {
    position: absolute;
    top: 40%;
    -webkit-transform: translate(-40%);
    transform: translate(-40%);
    right: -20px;
    content: "";
    font-family: "Font Awesome 5 Pro";
    color: #11092a;
    font-size: 30px;
}

@media (max-width: 991px) {
    .features-area-v5 .features-column:after {
        display: none;
    }
}

.features-area-v5 .features-item {
    padding: 0 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-area-v5 .features-item {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .features-area-v5 .features-item {
        padding: 0 30px;
    }
}

.features-area-v5 .features-item .features-img {
    margin-bottom: 30px;
}

.features-area-v5 .features-item .content h4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
}

.intro-video-v1 {
    position: relative;
    margin-bottom: -325px;
}

.intro-video-v1 .play-content {
    padding: 250px 0;
    border-radius: 30px;
}

@media (max-width: 991px) {
    .intro-video-v1 .play-content {
        padding: 150px 0;
    }
}

.intro-video-v1 .play-content .video-popup {
    width: 150px;
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    margin: auto;
}

@media (max-width: 991px) {
    .intro-video-v1 .play-content .video-popup {
        width: 80px;
        height: 80px;
    }
}

.gallery-area-v1 .gallery-item:hover .gallery-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.gallery-area-v1 .gallery-item:hover .gallery-img .gallery-overlay {
    visibility: visible;
    opacity: 1;
}

.gallery-area-v1 .gallery-item:hover .gallery-img .gallery-overlay:after {
    visibility: visible;
    opacity: 1;
}

.gallery-area-v1 .gallery-item .gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-area-v1 .gallery-item .gallery-img a {
    display: block;
}

.gallery-area-v1 .gallery-item .gallery-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.gallery-area-v1 .gallery-item .gallery-img .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    z-index: 1;
}

.gallery-area-v1 .gallery-item .gallery-img .gallery-overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: -1;
}

.gallery-area-v1 .gallery-item .gallery-img .gallery-overlay .gallery-content span.span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-area-v1 .gallery-item .gallery-img .gallery-overlay .gallery-content h4 {
    color: #fff;
}

.gallery-area-v1 .gallery-item .gallery-img .gallery-overlay .gallery-content .icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 30px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #fff;
}

.gallery-area-v2 .gallery-item:hover .gallery-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-area-v2 .gallery-item:hover .gallery-img .gallery-overlay {
    visibility: visible;
    opacity: 1;
}

.gallery-area-v2 .gallery-item:hover .gallery-img .gallery-overlay .icon {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.gallery-area-v2 .gallery-item .gallery-img {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-area-v2 .gallery-item .gallery-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.gallery-area-v2 .gallery-item .gallery-img .gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-color: rgba(253, 99, 80, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.gallery-area-v2 .gallery-item .gallery-img .gallery-overlay .icon {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.gallery-area-v2 .gallery-item .gallery-img .gallery-overlay .icon .img-popup {
    color: #fff;
    font-size: 30px;
}

.skill-area-v1 .skill-content-box .section-title h2 {
    font-size: 55px;
    line-height: 65px;
}

.skill-area-v1 .skill-content-box p {
    margin-bottom: 35px;
}

.skill-area-v1 .skill-content-box .single-progress .progress-title h5 {
    font-size: 16px;
    margin-bottom: 18px;
}

.skill-area-v1 .skill-content-box .single-progress .progress-title h5 span {
    float: right;
    color: #11092a;
}

.skill-area-v1 .skill-content-box .single-progress .progress {
    background-color: #f1f1f1;
    border-radius: 2px;
    height: 4px;
}

.skill-area-v1 .skill-content-box .single-progress .progress .progress-bar {
    background-color: #11092a;
}

.skill-quote {
    border-radius: 40px;
    padding: 10px 20px;
}

@media (max-width: 767px) {
    .skill-quote .quote-text {
        text-align: center;
    }
}

.skill-quote .quote-text h5 {
    color: #fff;
}

.skill-quote .button {
    float: right;
}

@media (max-width: 767px) {
    .skill-quote .button {
        float: none;
        margin-top: 15px;
        text-align: center;
    }
}

.skill-quote .button .btn-link {
    color: #fff;
    font-weight: 600;
}

.skill-quote .button .btn-link:hover {
    color: #b52324;
}

.skill-area-v2 {
    position: relative;
    z-index: 1;
}

.skill-area-v2:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    content: "";
    z-index: -1;
    background-color: #eeeeee;
}

.skill-area-v2 .skill-content-box {
    margin-left: -5px;
}

.skill-area-v2 .skill-content-box p {
    margin-bottom: 40px;
}

.skill-area-v2 .skill-content-box .skill-area {
    max-width: 600px;
}

.skill-area-v2 .skill-content-box .skill-area .skill-item {
    position: relative;
    width: 50%;
}

.skill-area-v2 .skill-content-box .skill-area .skill-item .skill-content {
    position: relative;
    max-width: 170px;
    min-width: 170px;
    height: 170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
}

.skill-area-v2 .skill-content-box .skill-area .skill-item .skill-content canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.skill-area-v2 .skill-content-box .skill-area .skill-item .skill-content h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.skill-area-v2 .skill-content-box .skill-area .skill-item .skill-content h2 .sign {
    display: inline-block;
    content: "%";
    font-size: 20px;
    font-weight: 700;
}

.skill-area-v3 {
    position: relative;
    z-index: 1;
}

.skill-area-v3:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 34%;
    height: 100%;
    background-color: #ededed;
    z-index: -1;
}

.skill-area-v3 .skill-content-box {
    margin-left: 20px;
}

/* Clients section */
@media (max-width: 991px) {
    .clients-area-v1 .section-title {
        margin-bottom: 40px;
    }
}

.clients-area-v1 .clients-slide-one {
    margin-left: -15px;
    margin-right: -15px;
}

.clients-area-v1 .clients-slide-one .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .clients-area-v1 .clients-slide-one {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.clients-area-v1 .clients-item {
    padding: 0 15px;
    text-align: center;
}

.clients-area-v1 .clients-img {
    padding: 0 15px;
}


.clients-area-v2 .clients-main-wrap {
    padding-bottom: 55px;
    border-bottom: 1px solid #efefef;
}

.clients-area-v2 .clients-wrapper .clients-item {
    margin-bottom: 40px;
}

.clients-area-v3 .clients-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
    position: relative;
    max-height: 140px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .clients-area-v3 .clients-column {
        width: 25%;
    }
}

@media (max-width: 991px) {
    .clients-area-v3 .clients-column {
        width: 33.33%;
    }
}

.clients-area-v3 .clients-column:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-top: 1px solid #efefef;
    border-right: 1px solid #efefef;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .clients-area-v3 .clients-column:after {
        border: none;
    }
}

@media (max-width: 991px) {
    .clients-area-v3 .clients-column:after {
        border: none;
    }
}

.clients-area-v3 .clients-column:nth-child(1):after,
.clients-area-v3 .clients-column:nth-child(2):after,
.clients-area-v3 .clients-column:nth-child(3):after,
.clients-area-v3 .clients-column:nth-child(4):after,
.clients-area-v3 .clients-column:nth-child(5):after {
    border-top: none;
}

.clients-area-v3 .clients-column:nth-child(40):after,
.clients-area-v3 .clients-column:nth-child(35):after,
.clients-area-v3 .clients-column:nth-child(30):after,
.clients-area-v3 .clients-column:nth-child(25):after,
.clients-area-v3 .clients-column:nth-child(20):after,
.clients-area-v3 .clients-column:nth-child(15):after,
.clients-area-v3 .clients-column:nth-child(10):after,
.clients-area-v3 .clients-column:nth-child(5):after {
    border-right: none;
}

.clients-area-v3 .clients-item {
    padding: 55px;
    max-height: 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .clients-area-v3 .clients-item {
        padding: 40px 20px;
    }
}

@media (max-width: 991px) {
    .clients-area-v3 .clients-item {
        padding: 30px 15px;
    }
}

.flogo-box {
    padding: 18px 0;
}

.flogo-box img {
    margin: 0 auto;
    display: block;
    max-width: 110px;
}

/* CTA section */
.cta-area-v1 {
    padding-top: 445px;
}

.cta-area-v1 .faq-wrapper {
    margin-right: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cta-area-v1 .faq-wrapper {
        margin-right: 0px;
    }
}

@media (max-width: 991px) {
    .cta-area-v1 .faq-wrapper {
        margin-right: 0px;
    }
}

.cta-area-v1 .contact-content-box {
    margin-top: -10px;
}

.cta-area-v1 .contact-form form .form_group i {
    position: absolute;
    top: 22px;
    left: 30px;
    color: #b52324;
}

.cta-area-v1 .contact-form form .form_group .form_control {
    padding: 0 55px;
    margin-bottom: 15px;
    border-radius: 30px;
}

.cta-area-v1 .contact-form form .form_group textarea.form_control {
    padding-top: 15px;
    height: 170px;
}

.cta-area-v2 .cta-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cta-area-v2 .cta-wrapper .cta-content-box,
.cta-area-v2 .cta-wrapper .cta-intro-area {
    width: 50%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .cta-area-v2 .cta-wrapper .cta-content-box,
    .cta-area-v2 .cta-wrapper .cta-intro-area {
        width: 100%;
    }
}

@media (max-width: 991px) {

    .cta-area-v2 .cta-wrapper .cta-content-box,
    .cta-area-v2 .cta-wrapper .cta-intro-area {
        width: 100%;
    }
}

.cta-area-v2 .cta-wrapper .cta-content-box {
    position: relative;
    padding: 140px;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cta-area-v2 .cta-wrapper .cta-content-box {
        padding: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cta-area-v2 .cta-wrapper .cta-content-box {
        padding: 100px;
    }
}

@media (max-width: 991px) {
    .cta-area-v2 .cta-wrapper .cta-content-box {
        padding: 100px;
    }
}

@media (max-width: 767px) {
    .cta-area-v2 .cta-wrapper .cta-content-box {
        padding: 50px;
    }
}

.cta-area-v2 .cta-wrapper .cta-content-box:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(23 44 86 / 90%);
    z-index: -1;
}

.cta-area-v2 .cta-wrapper .cta-content-box .section-title span.span {
    color: #11092a;
}

.cta-area-v2 .cta-wrapper .cta-content-box .section-title h2 {
    font-size: 50px;
    line-height: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cta-area-v2 .cta-wrapper .cta-content-box .section-title h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cta-area-v2 .cta-wrapper .cta-content-box .section-title h2 {
        font-size: 36px;
        line-height: 45px;
    }
}

@media (max-width: 991px) {
    .cta-area-v2 .cta-wrapper .cta-content-box .section-title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.cta-area-v2 .cta-wrapper .cta-intro-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 140px;
}

.cta-area-v2 .cta-wrapper .cta-intro-area:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(253, 99, 80, 0.8);
    z-index: -1;
}

.cta-area-v2 .cta-wrapper .cta-intro-area .play-content .video-popup {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    font-size: 16px;
    color: #b52324;
}

.cta-area-v3 .section-title h2 {
    font-size: 50px;
    line-height: 60px;
}

.cta-area-v3 .button .main-btn {
    background: #b52324;
}

.cta-area-v3 .button .main-btn:hover {
    color: #b52324;
}

.cta-area-v3 .button .main-btn:before {
    background: #fff;
}

.cta-area-v4 {
    position: relative;
    z-index: 1;
}

.cta-area-v4:after,
.sm-cta:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    opacity: 0.85;
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.cta-area-v4 .button .main-btn.active-btn {
    background: #b52324;
    border-color: transparent;
    margin-right: 15px;
}

.cta-area-v4 .button .main-btn:after {
    display: none;
}

.sm-cta {
    position: relative;
    z-index: 1;
    background-image: url(../images/bg/lady-looking-teeth-in-mirror-bw.webp);
}

/* Counter Area */
.counter-area-v1 .counter-item {
    position: relative;
    background-color: #fff;
    padding: 50px 50px 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-area-v1 .counter-item {
        padding: 50px 20px;
    }
}

@media (max-width: 991px) {
    .counter-area-v1 .counter-item {
        padding: 50px 20px;
    }
}

@media (max-width: 400px) {
    .counter-area-v1 .counter-item {
        padding: 50px 20px;
    }
}

.counter-area-v1 .counter-item:hover:after {
    width: 100%;
}

.counter-area-v1 .counter-item:after {
    position: absolute;
    content: "";
    bottom: -6px;
    left: 0;
    width: 0;
    height: 6px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.counter-area-v1 .counter-item .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
}

.counter-area-v1 .counter-item .icon i {
    font-size: 40px;
    color: #11092a;
}

.counter-area-v1 .counter-item .icon span.counter {
    color: #b52324;
    font-size: 50px;
    font-weight: 600;
    margin-left: 20px;
}

.counter-area-v1 .counter-item .icon span.counter:after {
    display: inline-block;
    content: "+";
    font-size: 20px;
}

.counter-area-v1 .counter-item .content h5 {
    margin-bottom: 15px;
}

.counter-area-v2 .counter-column:nth-child(even) {
    margin-top: 25px;
}

@media (max-width: 767px) {
    .counter-area-v2 .counter-column:nth-child(even) {
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .counter-area-v2 .counter-column {
        margin-bottom: 30px;
    }
}

.counter-area-v2 .counter-item {
    background-color: #fff;
    padding: 30px 20px 20px;
}

.counter-area-v2 .counter-item .icon {
    padding-bottom: 28px;
    position: relative;
    margin-bottom: 28px;
    font-size: 36px;
    color: #11092a;
}

.counter-area-v2 .counter-item .icon:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    width: 50px;
    height: 2px;
    background: #11092a;
}

.counter-area-v2 .counter-item .info h2 {
    font-size: 42px;
    line-height: 34px;
}

.counter-area-v2 .counter-item .info h2 span.sign {
    font-size: 24px;
    color: #11092a;
}

/* pagination */
.common-pagination ul li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.common-pagination ul li a {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #efefef;
    border-radius: 50%;
    background: #fff;
    color: #777777;
}

@media (max-width: 767px) {
    .common-pagination ul li {
        margin-left: 3px;
        margin-right: 3px;
    }

    .common-pagination ul li a {
        width: 35px;
        height: 35px;
    }
}

.common-pagination ul li a:hover,
.common-pagination ul li a.active {
    color: #fff;
    background: #b52324;
}

/*---=======================
   07. Start FAQ  css 
===========================---*/
.faq-filter form .form_control {
    height: 70px;
    background-color: #fff;
    border: 2px solid #efefef;
    border-radius: 35px;
    padding: 0 40px;
}

.faq-filter form .nice-select {
    height: 70px;
    line-height: 70px;
    border-radius: 35px;
    padding: 0 40px;
    background-color: #fff;
    border: 2px solid #efefef;
}

.faq-filter form .nice-select:after {
    right: 40px;
}

.faq-filter form .search-btn {
    width: 100%;
    height: 70px;
    border-radius: 35px;
    color: #fff;
}

.faq-filter form .search-btn i {
    margin-right: 10px;
}

.faq-area-v1 {
    position: relative;
    z-index: 1;
}

.faq-area-v1:after,
.yvideo-area:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 30%;
    height: 100%;
    background-color: #eff3f7;
    z-index: -1;
}

.faq-img {
    position: relative;
}

.faq-wrapper .accordion-item {
    border-radius: 0px;
    border: none;
    background-color: transparent;
}

.faq-wrapper .accordion-item .accordion-title {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #b52324;
    z-index: 1;
    border: 1px solid #e9e9e9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .faq-wrapper .accordion-item .accordion-title {
        padding: 12px 20px;
    }
}

.faq-wrapper .accordion-item .accordion-title[aria-expanded=true] {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-wrapper .accordion-item .accordion-title[aria-expanded]:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    content: "";
    display: inline-block;
    line-height: 30px;
    text-align: center;
    width: 30px;
    min-width: 30px;
    height: 30px;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .faq-wrapper .accordion-item .accordion-title[aria-expanded]:before {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .faq-wrapper .accordion-item .accordion-title[aria-expanded]:before {
        line-height: 25px;
        width: 25px;
        min-width: 25px;
        height: 25px;
        font-size: 16px;
    }
}

.faq-wrapper .accordion-item .accordion-title[aria-expanded=true]:before {
    content: "";
}

.faq-wrapper .accordion-item .accordion-body {
    padding: 15px 20px;
}

.faq-wrapper.faq-wrapper-one {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .faq-wrapper.faq-wrapper-one {
        margin-right: 0px;
    }
}

@media (max-width: 991px) {
    .faq-wrapper.faq-wrapper-one {
        margin-right: 0px;
    }
}

.faq-wrapper.faq-wrapper-one .accordion-item {
    background-color: #fff;
    -webkit-box-shadow: 0px 80px 180px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 80px 180px 0px rgba(0, 0, 0, 0.06);
}

.faq-wrapper.faq-wrapper-two .accordion-item {
    border-radius: 35px;
    background-color: #fff;
    -webkit-box-shadow: 0px 80px 180px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 80px 180px 0px rgba(0, 0, 0, 0.06);
}

.faq-wrapper.faq-wrapper-three .accordion-item .accordion-title {
    padding: 0px;
}

.faq-wrapper.faq-wrapper-three .accordion-item .accordion-body {
    padding: 0px;
    padding-top: 15px;
}

.faq-wrapper.faq-wrapper-four .accordion-item {
    border-radius: 35px;
    background-color: #fff;
    -webkit-box-shadow: 0px 80px 180px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 80px 180px 0px rgba(0, 0, 0, 0.06);
}

.faq-wrapper.faq-wrapper-five .accordion-item .accordion-title {
    background: #b52324;
    color: #fff;
}

.faq-wrapper.faq-wrapper-five .accordion-item .accordion-body p {
    color: #fff;
}

/*---=======================
   7.1 Start Youtube Videos  css 
===========================---*/
.yvideo-item {
    border: 8px solid #fff;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 18%);
}

.yvideo-item iframe {
    display: block;
}

/*---=======================
   7.2 Start Achievement  css 
===========================---*/
.achievement-slider {
    margin-left: -40px;
    margin-right: -40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .achievement-slider {
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .achievement-slider {
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 991px) {
    .achievement-slider {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.achievement-arrows {
    padding: 10px;
    border-radius: 40px;
    max-width: 140px;
    margin: auto;
    margin-bottom: -40px;
}

.achievement-arrows .slick-arrow {
    position: relative;
    left: auto;
    right: auto;
    position: relative;
    top: auto;
    transform: none;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.achievement-arrows .slick-arrow:hover {
    background-color: #fff;
    color: #b52324;
}

.achievement-item {
    padding-left: 10px;
    padding-right: 10px;
}

.achievement-item .achievement-img a {
    display: block;
}

.achievement-item .achievement-img img {
    width: 100%;
}

/*---=======================
   08. Start Portfolio  css 
===========================---*/
@media (max-width: 991px) {
    .filter-btn {
        text-align: center;
    }
}

.filter-btn li {
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    border-radius: 25px;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .filter-btn li {
        padding: 10px 17px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .filter-btn li {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.filter-btn li:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    border-radius: 25px;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.filter-btn li.active {
    color: #fff;
}

.filter-btn li.active:after {
    visibility: visible;
    opacity: 1;
}

.portfolio-area-v1 .portfolio-item {
    padding-left: 40px;
    padding-right: 40px;
}

.portfolio-item {
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .portfolio-area-v1 .portfolio-item {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .portfolio-area-v1 .portfolio-item {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 991px) {
    .portfolio-area-v1 .portfolio-item {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 991px) {
    .portfolio-area-v2 .section-title {
        text-align: center;
    }
}

.portfolio-area-v2 .portfolio-item:hover .portfolio-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-img .portfolio-overlay {
    visibility: visible;
    opacity: 1;
}

.portfolio-item:hover .portfolio-img .portfolio-overlay .portfolio-content {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.portfolio-area-v2 .portfolio-item .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-area-v2 .portfolio-item .portfolio-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.portfolio-item .portfolio-img .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(37 37 37 / 40%);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    padding: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.portfolio-item .portfolio-img .portfolio-overlay .portfolio-content {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.portfolio-item .portfolio-img .portfolio-overlay .camp-popup {
    color: #fff;
    font-size: 28px;
    padding: 10px;
}

.portfolio-item .portfolio-img .portfolio-overlay .portfolio-content span.span {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.portfolio-item .portfolio-img .portfolio-overlay .portfolio-content h3 {
    font-size: 26px;
    line-height: 36px;
    color: #fff;
}

.portfolio-details-section .portfolio-item .portfolio-content {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: -60px;
}

@media (max-width: 991px) {
    .portfolio-details-section .portfolio-item .portfolio-content {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-meta {
    background-color: #fff;
    padding: 50px 50px 40px;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}

@media (max-width: 991px) {
    .portfolio-details-section .portfolio-item .portfolio-content .portfolio-meta {
        padding: 30px 15px;
    }
}

@media (max-width: 991px) {
    .portfolio-details-section .portfolio-item .portfolio-content .portfolio-meta .meta-list {
        margin-bottom: 20px;
    }
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-meta .meta-list .meta-item span.position {
    font-size: 14px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-meta .button {
    float: right;
}

@media (max-width: 991px) {
    .portfolio-details-section .portfolio-item .portfolio-content .portfolio-meta .button {
        float: none;
        text-align: center;
    }
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-meta .button .main-btn {
    padding: 15px 35px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-meta .button .main-btn:after {
    display: none;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .content-box .big-text {
    margin-right: 40px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 80px;
    font-weight: 700;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .content-box p {
    margin-bottom: 0px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box p {
    margin-bottom: 15px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box h4 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 25px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-column {
    position: relative;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-column:after {
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(40%);
    transform: translateY(40%);
    right: 0px;
    font-size: 40px;
    color: #11092a;
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-column:after {
        display: none;
    }
}

@media (max-width: 991px) {
    .portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-column:after {
        display: none;
    }
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-item .icon {
    position: relative;
    margin-bottom: 28px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-item .icon i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    font-size: 24px;
    -webkit-box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.06);
    margin: auto;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-item .icon .count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: auto;
    margin-top: -20px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-content-box .features-item .info h5 {
    margin-bottom: 10px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-post-gallery-slide {
    margin-left: -15px;
    margin-right: -15px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-post-gallery-slide .content-img {
    margin-left: 15px;
    margin-right: 15px;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-post-gallery-slide .content-img a {
    display: block;
}

.portfolio-details-section .portfolio-item .portfolio-content .portfolio-post-gallery-slide .content-img img {
    width: 100%;
}

.portfolio-details-section .post-nav-tag {
    padding: 15px;
    background-color: #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}

.portfolio-details-section .post-nav-tag .post-nav .thumb {
    margin-right: 20px;
}

.portfolio-details-section .post-nav-tag .post-nav .content h5:hover {
    color: #11092a;
}

.portfolio-details-section .post-nav-tag .next-nav {
    direction: rtl;
}

.portfolio-details-section .post-nav-tag .next-nav .thumb {
    margin-right: 0px;
    margin-left: 20px;
}

/*---=======================
   09. Start Team  css 
===========================---*/
.team-area-v1 {
    border-top: 1px solid #efefef;
}

.team-area-v1 .team-item .team-info {
    padding-top: 30px;
}

.team-area-v1 .team-item .team-info span.position {
    color: #11092a;
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.team-area-v1 .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team-area-v1 .team-item .team-img img {
    width: 100%;
}

.team-area-v1 .team-item .team-img .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px;
}

.team-area-v1 .team-item .team-img .team-overlay:hover .team-social .hover-btn {
    background-color: #11092a;
    color: #fff;
}

.team-area-v1 .team-item .team-img .team-overlay:hover .team-social .hover-btn i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.team-area-v1 .team-item .team-img .team-overlay:hover .team-social .team-social-link {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
}

.team-area-v1 .team-item .team-img .team-overlay .team-social .hover-btn {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    border-radius: 50%;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-area-v1 .team-item .team-img .team-overlay .team-social .hover-btn i {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-area-v1 .team-item .team-img .team-overlay .team-social .team-social-link {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-area-v1 .team-item .team-img .team-overlay .team-social .team-social-link li {
    display: block;
    margin-bottom: 10px;
}

.team-area-v1 .team-item .team-img .team-overlay .team-social .team-social-link li:last-child {
    margin-bottom: 0px;
}

.team-area-v1 .team-item .team-img .team-overlay .team-social .team-social-link li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-area-v1 .team-item .team-img .team-overlay .team-social .team-social-link li a:hover {
    background-color: #11092a;
    color: #fff;
}

.team-area-v1 .button .main-btn:after {
    display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-area-v2 .team-item:hover .team-img .team-social {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .team-area-v2 .team-item:hover .team-img .team-social {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
}

.team-area-v2 .team-item .team-img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    overflow: hidden;
}

.team-area-v2 .team-item .team-img img {
    width: 100%;
}

.team-area-v2 .team-item .team-img .team-social {
    background-color: #b52324;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-area-v2 .team-item .team-img .team-social {
        position: absolute;
        bottom: 0;
        right: -100%;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }
}

@media (max-width: 991px) {
    .team-area-v2 .team-item .team-img .team-social {
        position: absolute;
        bottom: 0;
        right: -100%;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }
}

.team-area-v2 .team-item .team-img .team-social ul.social-link li {
    display: block;
}

.team-area-v2 .team-item .team-img .team-social ul.social-link li a {
    border-radius: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: #fff;
}

.team-area-v2 .team-item .team-img .team-social ul.social-link li a:hover {
    background-color: #11092a;
}

.team-area-v2 .team-item .team-info {
    padding: 30px 40px;
    background-color: #b52324;
    margin-left: 86px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .team-area-v2 .team-item .team-info {
        margin-left: 55px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-area-v2 .team-item .team-info {
        margin-left: 0px;
    }
}

@media (max-width: 991px) {
    .team-area-v2 .team-item .team-info {
        margin-left: 0px;
    }
}

.team-area-v2 .team-item .team-info span.position {
    color: #11092a;
    font-size: 14px;
    font-weight: 700;
}

.team-area-v2 .team-item .team-info h4 {
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-area-v3 .col-lg-3 {
        width: 33.33%;
    }
}

.team-area-v3 .team-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-area-v3 .team-item:hover .team-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.team-area-v3 .team-item:hover .team-img .team-overlay {
    height: 100%;
}

.team-area-v3 .team-item:hover .team-img .team-overlay .team-overly-content {
    visibility: hidden;
    opacity: 0;
}

.team-area-v3 .team-item:hover .team-img .team-overlay .team-info {
    opacity: 1;
    visibility: visible;
}

.team-area-v3 .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team-area-v3 .team-item .team-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.7s ease-out 0s;
    transition: all 0.7s ease-out 0s;
}

.team-area-v3 .team-item .team-img .team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(181 35 36 / 80%)), to(rgba(255, 119, 74, 0)));
    background: linear-gradient(0deg, #352f48 0%, rgba(255, 119, 74, 0) 100%);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-area-v3 .team-item .team-img .team-overlay .team-overly-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 30px 30px 15px;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-area-v3 .team-item .team-img .team-overlay .team-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-area-v3 .team-item .team-img .team-overlay .team-info ul.social-link li {
    margin-right: 10px;
}

.team-area-v3 .team-item .team-img .team-overlay .team-info ul.social-link li a {
    color: #fff;
}

.team-area-v3 .team-item .team-img .team-overlay h4 {
    color: #fff;
    text-shadow: 1px 1px 5px rgb(0 0 0 / 45%);
}

.team-area-v3 .team-item .team-img .team-overlay span.position {
    display: block;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    margin-top: 8px;
}

.team-box {
    padding: 20px;
    background: #fff;
}

.team-top {
    display: flex;
    align-items: end;
}

.sm-team-img img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
}

.team-top {
    display: flex;
}

.sm-team-img img {
    border-radius: 50%;
    border: 3px solid #fff;
}

.team-top ul.social-link {
    margin-left: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.team-top ul.social-link li + li {
    margin-top: 12px;
}

.team-top ul.social-link li a {
    color: #d5d5d5;
}

.team-bottom .title {
    color: #11092a;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all ease-in-out 0.4s;
}

.team-bottom .position {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all ease-in-out 0.4s;
}

.team-bottom .team-link {
    display: none;
    transition: all ease-in-out 0.4s;
    color: #b52324;
}

.team-box:hover .team-bottom .team-link {
    display: block;
}

.team-box:hover .title,
.team-box:hover .position {
    white-space: initial;
}

/*---=========================
   9.1. Start Before After
===========================---*/

.ba-Slider {
    position: relative;
    display: block;
    background: #fff;
    border: 4px solid white;
    margin: 0px auto;
    overflow: hidden;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ba-Slider .slider {
    position: absolute;
    top: 65%;
    left: calc(40% - 22px);
    width: 42px;
    height: 42px;
    cursor: e-resize;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    z-index: 5;
    line-height: 1.2;
}

.ba-Slider .before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
    border-right: 2px dotted #fff;
    z-index: 2;
}

.ba-Slider .ease {
    transition: width ease .5s, left ease .5s;
    -moz-transition: width ease .5s, left ease .5s;
    -webkit-transition: width ease .5s, left ease .5s;
}

.ba-Slider .after img {
    width: 100%;
}

.ba-Slider .before img {
    height: 100%;
    max-width: initial;
}

.ba-label {
    background: #11092a;
    color: #fff;
    padding: 0px 8px;
    font-weight: 500;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    font-size: 12px;
    line-height: 1.8;
}

.ba-Slider .after .ba-label {
    right: 10px;
}

.ba-Slider .before .ba-label {
    left: 10px;
}

.ba-box.ba-series {
    text-align: center;
    margin-bottom: 30px;
}

.ba-box.ba-series h6 {
    margin-bottom: 0;
    margin-top: 10px;
}

/*---=========================
   10. Start Testimonial  css 
===========================---*/
.testimonial-area-v1 .testimonial-slide-one {
    z-index: 1;
    position: relative;
}

.testimonial-area-v1 .testimonial-slide-one:after {
    position: absolute;
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    font-family: "flaticon";
    line-height: 1;
    font-size: 235px;
    color: #f0f0f0;
    z-index: -1;
}

.testimonial-area-v1 .testimonial-slide-one .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #b52324;
    background-color: #f7f7f7;
    font-size: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.testimonial-area-v1 .testimonial-slide-one .slick-arrow:hover {
    background-color: #11092a;
    color: #fff;
}

.testimonial-area-v1 .testimonial-slide-one .slick-arrow.prev {
    left: -110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .testimonial-area-v1 .testimonial-slide-one .slick-arrow.prev {
        left: -70px;
    }
}

.testimonial-area-v1 .testimonial-slide-one .slick-arrow.next {
    right: -110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .testimonial-area-v1 .testimonial-slide-one .slick-arrow.next {
        right: -70px;
    }
}

@media (max-width: 991px) {
    .testimonial-area-v1 .testimonial-item .testimonial-thumb {
        margin-bottom: 30px;
    }
}

.testimonial-area-v1 .testimonial-item .testimonial-content {
    padding: 0 20px;
}

.testimonial-area-v1 .testimonial-item .testimonial-content .info {
    margin-bottom: 32px;
}

.testimonial-area-v1 .testimonial-item .testimonial-content .info ul.rating {
    margin-left: 30px;
}

.testimonial-area-v1 .testimonial-item .testimonial-content h3 {
    margin-bottom: 25px;
    padding-right: 130px;
    font-size: 40px;
    line-height: 56px;
}

@media (max-width: 991px) {
    .testimonial-area-v1 .testimonial-item .testimonial-content h3 {
        font-size: 24px;
        line-height: 34px;
        padding-right: 0px;
    }
}

.testimonial-area-v1 .testimonial-item .testimonial-content .title span.position {
    display: block;
    color: #11092a;
    font-size: 14px;
}

.testimonial-slide-two {
    margin: 0 -15px;
}

.testi-item {
    margin: 0 15px 15px;
}

.testi-img {
    margin: 0 0 -40px 20px;
    padding: 0 20px;
    background: #fff;
    display: inline-block;
    z-index: 2;
    position: relative;
}

.testimonial-slide-two .testi-img img {
    width: auto;
    max-width: 70px;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.testi-box {
    position: relative;
    color: #999;
    background-color: #fff;
    padding: 45px 30px 20px;
    border: 1px solid #e5e5e5;
}

.testi-quote {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 30px;
    color: #b52324;
    opacity: 0.1;
}

.testi-title {
    letter-spacing: 0;
}

.testi-name {
    font-size: 1.28rem;
    line-height: 1;
    color: #b52324;
}

.testi-description {
    margin: 0.4rem 0 0;
    line-height: 1.71em;
}


.rating li {
    display: inline-block;
}

.rating.rating-1 li:nth-child(1) i,
.rating.rating-2 li:nth-child(2) i,
.rating.rating-2 li:nth-child(1) i,
.rating.rating-3 li:nth-child(1) i,
.rating.rating-3 li:nth-child(2) i,
.rating.rating-3 li:nth-child(3) i,
.rating.rating-4 li:nth-child(1) i,
.rating.rating-4 li:nth-child(2) i,
.rating.rating-4 li:nth-child(3) i,
.rating.rating-4 li:nth-child(4) i,
.rating.rating-5 li:nth-child(1) i,
.rating.rating-5 li:nth-child(2) i,
.rating.rating-5 li:nth-child(3) i,
.rating.rating-5 li:nth-child(4) i,
.rating.rating-5 li:nth-child(5) i {
    color: #fdc050;
}

.gr-widget {
    position: relative;
}

.gr-widget::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #ffffff;
    z-index: 99999;
}

/*---=======================
   12. Start Blog  css 
===========================---*/
.post-thumbnail {
    position: relative;
}

.post-thumbnail img {
    width: 100%;
}

.post-meta ul li {
    display: inline-block;
}

.post-meta ul li span:hover {
    color: #11092a;
}

.post-meta ul li span i {
    margin-right: 5px;
}

.blog-grid-one {
    background-color: #eff3f7;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-grid-one .col-lg-3 {
        width: 33.33%;
    }
}

.blog-grid-one .blog-content-box p {
    margin-bottom: 35px;
    line-height: 28px;
}

.blog-grid-one .blog-content-box .main-btn {
    background: #fff;
    border-radius: 0px;
    color: #b52324;
}

.blog-grid-one .blog-content-box .main-btn:hover {
    color: #fff;
}

.blog-grid-one .blog-content-box .main-btn:before {
    border-radius: 0px;
}

.blog-grid-one .blog-post-item .post-thumbnail img {
    width: 100%;
}

.blog-grid-one .blog-post-item .entry-content {
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 4%);
    box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 4%);
    border: 1px solid #efefef;
}

.blog-grid-one .blog-post-item .entry-content .post-meta ul li {
    margin-bottom: 5px;
}

.blog-grid-one .blog-post-item .entry-content .post-meta ul li span {
    font-size: 14px;
}

.blog-grid-one .blog-post-item .entry-content .post-meta ul li span i {
    color: #11092a;
}

.blog-grid-one .blog-post-item .entry-content .post-meta ul li span .cat {
    color: #11092a;
    font-weight: 700;
    display: inline-block;
}

.blog-grid-one .blog-post-item .entry-content h3.title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
    max-height: 50px;
    overflow: hidden;
}

.blog-grid-one .blog-post-item .entry-content .btn-link {
    text-decoration: none;
    color: #c1c1c1;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    line-height: 18px;
    margin-top: 15px;
}

.blog-grid-one .blog-post-item .entry-content .btn-link:hover:after {
    background-color: #11092a;
}

.blog-grid-one .blog-post-item .entry-content .btn-link:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #c1c1c1;
}

.blog-grid-two .blog-column:nth-child(odd) .blog-post-item .post-thumbnail {
    margin-bottom: 20px;
}

.blog-grid-two .blog-column:nth-child(even) .blog-post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.blog-grid-two .blog-column:nth-child(even) .blog-post-item .post-thumbnail {
    margin-top: 20px;
}

.blog-grid-two .blog-post-item .entry-content {
    border: 4px solid #efefef;
    padding: 28px 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-grid-two .blog-post-item .entry-content {
        padding: 28px 15px;
    }
}

.blog-grid-two .blog-post-item .entry-content .post-meta {
    margin-bottom: 5px;
}

.blog-grid-two .blog-post-item .entry-content .post-meta ul li {
    margin-right: 20px;
}

.blog-grid-two .blog-post-item .entry-content .post-meta ul li span i {
    color: #11092a;
}

.blog-grid-two .blog-post-item .entry-content h3.title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}

.blog-area-three {
    padding-top: 365px;
}

.blog-area-three .blog-post-item .post-thumbnail .date {
    position: absolute;
    bottom: 0;
    right: 40px;
    display: block;
    padding: 13px 15px 0px;
    font-size: 36px;
    line-height: 20px;
    background-color: #fff;
    text-align: center;
    color: #b52324;
    font-weight: 600;
}

.blog-area-three .blog-post-item .post-thumbnail .date span.month {
    font-size: 14px;
    display: block;
    font-weight: 400;
    margin-top: 7px;
    color: #777777;
}

.blog-area-three .blog-post-item .entry-content {
    padding: 35px 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

.blog-area-three .blog-post-item .entry-content h3.title {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
}

.blog-area-three .blog-post-item .entry-content h3.title:hover {
    color: #b52324;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-area-three .blog-post-item .entry-content {
        padding: 35px 15px;
    }
}

@media (max-width: 991px) {
    .blog-area-three .blog-post-item .entry-content {
        padding: 35px 15px;
    }
}

.blog-area-three .blog-post-item .entry-content .post-meta {
    margin-bottom: 10px;
}

.blog-area-three .blog-post-item .entry-content .post-meta ul li {
    margin-right: 15px;
}

.blog-area-three .blog-post-item .entry-content .post-meta ul li span {
    color: #fff;
}

.blog-area-three .blog-post-item .entry-content .post-meta ul li span:hover {
    color: #b52324;
}

.blog-grid-four .blog-post-item .entry-content {
    background-color: #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    border: 1px solid #efefef;
    border-top: none;
    padding: 33px 40px;
}

.blog-grid-four .blog-post-item .entry-content .post-meta {
    margin-bottom: 10px;
}

.blog-grid-four .blog-post-item .entry-content .post-meta ul li {
    margin-right: 20px;
}

.blog-grid-four .blog-post-item .entry-content .post-meta ul li span i {
    color: #11092a;
}

.blog-grid-four .blog-post-item .entry-content h3.title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-grid-four .blog-post-item .entry-content h3.title {
        font-size: 22px;
        line-height: 32px;
    }
}

@media (max-width: 991px) {
    .blog-grid-four .blog-post-item .entry-content h3.title {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 400px) {
    .blog-grid-four .blog-post-item .entry-content h3.title {
        font-size: 20px;
        line-height: 30px;
    }
}

.blog-grid-four .blog-post-item .entry-content h3.title:hover {
    color: #11092a;
}

.blog-standard-section .blog-post-item .post-thumbnail .play-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.blog-standard-section .blog-post-item .post-thumbnail .play-content .video-popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: #b52324;
    font-size: 14px;
}

.blog-standard-section .blog-post-item .post-thumbnail .post-gallery-slider .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    color: #fff;
    font-size: 30px;
}

.blog-standard-section .blog-post-item .post-thumbnail .post-gallery-slider .slick-arrow.next {
    right: 40px;
}

.blog-standard-section .blog-post-item .post-thumbnail .post-gallery-slider .slick-arrow.prev {
    left: 40px;
}

.blog-standard-section .blog-post-item .entry-content {
    padding: 50px 50px 40px;
    border: 2px solid #efefef;
    border-top: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-standard-section .blog-post-item .entry-content {
        padding: 50px 30px 40px;
    }
}

@media (max-width: 991px) {
    .blog-standard-section .blog-post-item .entry-content {
        padding: 50px 30px 40px;
    }
}

.blog-standard-section .blog-post-item .entry-content .cat-btn {
    padding: 5px 17px;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    color: #11092a;
    background-color: #fff;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.blog-standard-section .blog-post-item .entry-content h3.title {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 46px;
}

.blog-standard-section .blog-post-item .entry-content h3.title:hover {
    color: #11092a;
}

@media (max-width: 400px) {
    .blog-standard-section .blog-post-item .entry-content h3.title {
        font-size: 22px;
        line-height: 32px;
    }
}

.blog-standard-section .blog-post-item .entry-content p {
    margin-bottom: 15px;
    padding-bottom: 8px;
}

.blog-standard-section .blog-post-item .entry-content .post-meta {
    padding-top: 25px;
    border-top: 1px solid #efefef;
}

.blog-standard-section .blog-post-item .entry-content .post-meta ul li span i {
    color: #b52324;
}

.blog-standard-section .blog-post-item .entry-content .post-meta ul li:last-child:after {
    display: none;
}

.blog-standard-section .blog-post-item .entry-content .post-meta ul li:after {
    margin-left: 15px;
    margin-right: 14px;
    display: inline-block;
    content: "|";
    color: #bdbdbd;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-standard-section .blog-post-item .entry-content .post-meta ul li:after {
        margin-left: 5px;
        margin-right: 4px;
    }
}

@media (max-width: 991px) {
    .blog-standard-section .blog-post-item .entry-content .post-meta ul li:after {
        margin-left: 5px;
        margin-right: 4px;
    }
}

.blog-standard-section .blog-post-item.audio-post-item .post-thumbnail iframe {
    height: 200px;
    width: 100%;
    display: inherit;
}

.blog-standard-section .blog-post-item.post-without-thumb .entry-content {
    border-top: 1px solid #efefef;
}

.blog-standard-section .blog-post-item.post-item-quote {
    border: none;
    background: -webkit-gradient(linear, left top, right top, from(#fd6151), to(#ff774a));
    background: linear-gradient(90deg, #352f48 0%, #ff774a 100%);
}

.blog-standard-section .blog-post-item.post-item-quote .entry-content {
    padding: 50px;
    border: none;
}

.blog-standard-section .blog-post-item.post-item-quote .entry-content .quote-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .blog-standard-section .blog-post-item.post-item-quote .entry-content .quote-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.blog-standard-section .blog-post-item.post-item-quote .entry-content .quote-box img {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .blog-standard-section .blog-post-item.post-item-quote .entry-content .quote-box img {
        margin-bottom: 30px;
    }
}

.blog-standard-section .blog-post-item.post-item-quote .entry-content .quote-box h3.title {
    color: #fff;
    margin-bottom: 0px;
    margin-top: -10px;
}

.blog-standard-section .blog-post-item.post-item-quote .entry-content .quote-box h3.title:hover {
    color: #b52324;
}


.blog-details-section .blog-details-wrapper .blog-post-item {
    margin-bottom: -5px;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content .post-meta ul li span i {
    color: #b52324;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content .post-meta ul li:last-child:after {
    display: none;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content .post-meta ul li:after {
    margin-left: 20px;
    margin-right: 19px;
    display: inline-block;
    content: "|";
    color: #bdbdbd;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content p {
    margin-bottom: 15px;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content h3 {
    margin-bottom: 20px;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content .divider {
    width: 100%;
    height: 1px;
    background-color: #efefef;
    margin: 4px 0 50px;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content .block-image img {
    width: 100%;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content .block-content p {
    margin-bottom: 0px;
    margin-top: -5px;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content blockquote {
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    border: 2px solid #f4f4f4;
    padding: 50px 50px 40px;
    text-align: center;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content blockquote .icon {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: -webkit-gradient(linear, left top, right top, from(#fd6151), to(#ff774a));
    background: linear-gradient(90deg, #352f48 0%, #ff774a 100%);
    border-radius: 50%;
    margin-bottom: 22px;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content blockquote h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 15px;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content blockquote p {
    margin-bottom: 0px;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content blockquote h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.blog-details-section .blog-details-wrapper .blog-post-item .entry-content blockquote p.position {
    font-size: 14px;
}

.blog-details-section .blog-details-wrapper .post-share-tag {
    border-bottom: 1px solid #efefef;
}

.blog-details-section .blog-details-wrapper .post-share-tag h5.title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .blog-details-section .blog-details-wrapper .post-share-tag .tags-box {
        margin-top: 20px;
    }
}

.blog-details-section .blog-details-wrapper .post-share-tag .tags-box ul li {
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
}

.blog-details-section .blog-details-wrapper .post-share-tag .tags-box ul li a {
    position: relative;
    padding: 5px 25px;
    line-height: 16px;
    border-radius: 15px;
    border: 2px solid #f4f4f4;
    background-color: #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-details-section .blog-details-wrapper .post-share-tag .tags-box ul li a:hover {
    color: #fff;
}

.blog-details-section .blog-details-wrapper .post-share-tag .tags-box ul li a:hover:after {
    visibility: visible;
    opacity: 1;
}

.blog-details-section .blog-details-wrapper .post-share-tag .tags-box ul li a:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#fd6151), to(#ff774a));
    background: linear-gradient(90deg, #352f48 0%, #ff774a 100%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-details-section .blog-details-wrapper .post-share-tag .social-box {
    float: right;
    text-align: right;
}

@media (max-width: 767px) {
    .blog-details-section .blog-details-wrapper .post-share-tag .social-box {
        float: none;
        text-align: center;
    }
}

.blog-details-section .blog-details-wrapper .post-share-tag .social-box ul.social-link li {
    margin-left: 25px;
}

@media (max-width: 767px) {
    .blog-details-section .blog-details-wrapper .post-share-tag .social-box ul.social-link li {
        margin-left: 5px;
        margin-right: 5px;
    }
}

.blog-details-section .blog-details-wrapper .post-share-tag .social-box ul.social-link li a {
    font-size: 18px;
    color: #b9b9b9;
}

.blog-details-section .blog-details-wrapper .post-share-tag .social-box ul.social-link li a:hover {
    color: #11092a;
}

.blog-details-section .blog-details-wrapper .prev-next-nav .post-content.post-right {
    text-align: right;
}

@media (max-width: 767px) {
    .blog-details-section .blog-details-wrapper .prev-next-nav .post-content.post-icon {
        margin: 20px 0;
    }
}

@media (max-width: 767px) {
    .blog-details-section .blog-details-wrapper .prev-next-nav .post-content {
        text-align: center;
    }

    .blog-details-section .blog-details-wrapper .prev-next-nav .post-content.post-right {
        text-align: center;
    }
}

.blog-details-section .blog-details-wrapper .prev-next-nav .post-content a {
    font-size: 14px;
    line-height: 25px;
}

.blog-details-section .blog-details-wrapper .prev-next-nav .post-content h4 {
    font-size: 28px;
    line-height: 38px;
}

.blog-details-section .blog-details-wrapper .admin-area {
    padding: 40px;
    border: 2px solid #efefef;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 30px;
}

@media (max-width: 991px) {
    .blog-details-section .blog-details-wrapper .admin-area {
        padding: 40px 15px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}

.blog-details-section .blog-details-wrapper .admin-area .admin-thumb {
    min-width: 200px;
    max-width: 200px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 40px;
}

.blog-details-section .blog-details-wrapper .admin-area .admin-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

@media (max-width: 991px) {
    .blog-details-section .blog-details-wrapper .admin-area .admin-thumb {
        margin: auto;
        margin-bottom: 30px;
    }
}

.blog-details-section .blog-details-wrapper .admin-area .admin-bio span.text {
    font-size: 12px;
    display: block;
    line-height: 20px;
}

.blog-details-section .blog-details-wrapper .admin-area .admin-bio h3 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .blog-details-section .blog-details-wrapper .admin-area .admin-bio h3 {
        font-size: 22px;
        line-height: 30px;
    }
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 30px;
    border-top: 1px solid #efefef;
}

@media (max-width: 767px) {
    .blog-details-section .blog-details-wrapper .comments-area .comments-list .comment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment:first-child {
    padding-top: 0px;
    border-top: none;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment:last-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #efefef;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment:nth-child(even) {
    margin-left: 130px;
}

@media (max-width: 767px) {
    .blog-details-section .blog-details-wrapper .comments-area .comments-list .comment:nth-child(even) {
        margin-left: 30px;
    }
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-avatar {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-avatar {
        margin-bottom: 30px;
    }
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content span.author-name {
    display: block;
    color: #b52324;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content span.author-name i.fa-bookmark {
    margin-left: 15px;
    color: #11092a;
    font-size: 12px;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content span.author-name .reply {
    float: right;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content span.author-name .reply a {
    border: 2px solid #efefef;
    padding: 5px 25px;
    border-radius: 20px;
    line-height: 26px;
    color: #777;
    font-size: 14px;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content span.author-name .reply a i {
    margin-right: 5px;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content span.author-name .reply a:hover {
    background-color: #11092a;
    color: #fff;
    border-color: transparent;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content span.date {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content span.date i {
    margin-right: 10px;
}

.blog-details-section .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap .comment-author-content p {
    padding-bottom: 20px;
}

.blog-details-section .blog-details-wrapper .comments-respond .comments-heading {
    font-size: 26px;
}

.blog-details-section .blog-details-wrapper .comments-respond form {
    padding: 50px;
    border: 2px solid #efefef;
}

@media (max-width: 991px) {
    .blog-details-section .blog-details-wrapper .comments-respond form {
        padding: 60px 15px;
    }
}

.blog-details-section .blog-details-wrapper .comments-respond form .form_control {
    border: 2px solid #efefef;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    margin-bottom: 20px;
}

.blog-details-section .blog-details-wrapper .comments-respond form i {
    position: absolute;
    top: 21px;
    right: 30px;
    color: #11092a;
}

.blog-details-section .blog-details-wrapper .comments-respond form textarea.form_control {
    height: 150px;
}

.sidebar-widget-area {
    margin-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sidebar-widget-area {
        margin-left: 0px;
    }
}

@media (max-width: 991px) {
    .sidebar-widget-area {
        margin-left: 0px;
    }
}

.sidebar-widget-area .widget {
    padding: 20px 20px 25px;
    border: 1px solid #efefef;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sidebar-widget-area .widget {
        padding: 30px 15px 40px;
    }
}

@media (max-width: 400px) {
    .sidebar-widget-area .widget {
        padding: 30px 15px 40px;
    }
}

.sidebar-widget-area .widget h4.widget-title {
    padding-bottom: 7px;
    border-bottom: 1px solid #efefef;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-widget-area .widget h4.widget-title:before {
    display: inline-block;
    content: "//";
    margin-right: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #e6e6e6;
}

.sidebar-widget-area .widget.about-widget {
    padding: 30px 40px;
}

.sidebar-widget-area .widget.about-widget img {
    margin-bottom: 17px;
}

.sidebar-widget-area .widget.about-widget h5 {
    margin-bottom: 10px;
}

.sidebar-widget-area .widget.about-widget p {
    margin-bottom: 15px;
}

.sidebar-widget-area .widget.about-widget ul.social-link li {
    margin-left: 7px;
    margin-right: 7px;
}

.sidebar-widget-area .widget.about-widget ul.social-link li a {
    color: #d4d4d4;
}

.sidebar-widget-area .widget.about-widget ul.social-link li a:hover {
    color: #11092a;
}

.sidebar-widget-area .widget.search-widget .form_group .form_control {
    background-color: #f5f5f5;
    font-style: italic;
    font-size: 12px;
}

.sidebar-widget-area .widget.search-widget .form_group .form_control::-webkit-input-placeholder {
    color: #828282;
}

.sidebar-widget-area .widget.search-widget .form_group .form_control::-moz-placeholder {
    color: #828282;
}

.sidebar-widget-area .widget.search-widget .form_group .form_control:-ms-input-placeholder {
    color: #828282;
}

.sidebar-widget-area .widget.search-widget .form_group .form_control::-ms-input-placeholder {
    color: #828282;
}

.sidebar-widget-area .widget.search-widget .form_group .form_control::placeholder {
    color: #828282;
}

.sidebar-widget-area .widget.search-widget .form_group .search_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 54px;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content:last-child {
    margin-bottom: 0px;
}

.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content img {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 20px;
}

.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date .posted-on {
    display: block;
    font-size: 15px;
    color: #cacaca;
}

.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date .posted-on i {
    margin-right: 10px;
}

.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6 {
    line-height: 24px;
    font-size: 16px;
    font-weight: 600;
}

.sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6:hover {
    color: #11092a;
}

@media (max-width: 400px) {
    .sidebar-widget-area .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6 {
        font-size: 14px;
    }
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li {
    margin-bottom: 10px;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li:last-child {
    margin-bottom: 0px;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a {
    display: block;
    padding: 10px 15px;
    background-color: #f8f8f8;
    line-height: 20px;
    color: #767676;
    position: relative;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a:hover span {
    color: #fff;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a:hover span {
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a span {
    background-color: #efefef;
    float: right;
    width: 50px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}

.sidebar-widget-area .widget.tag-cloud-widget {
    padding: 35px 40px 30px;
}

.sidebar-widget-area .widget.tag-cloud-widget a {
    padding: 6px 27px;
    background-color: #f4f4f4;
    margin-right: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    position: relative;
    z-index: 1;
    line-height: 18px;
}

.sidebar-widget-area .widget.tag-cloud-widget a:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-image: -webkit-gradient(linear, left bottom, left top, from(#fd6151), to(#ff774a));
    background-image: linear-gradient(0deg, #352f48 0%, #ff774a 100%);
    width: 100%;
    height: 100%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.sidebar-widget-area .widget.tag-cloud-widget a:hover {
    color: #fff;
}

.sidebar-widget-area .widget.tag-cloud-widget a:hover:after {
    visibility: visible;
    opacity: 1;
}

/*---=======================
   13. Start Contact  css 
===========================---*/
.contact-map-section .map-box iframe {
    height: 380px;
    width: 100%;
    display: block;
}

.contact-info-area-v1 {
    position: relative;
}

.contact-info-area-v1 .contact-info-item {
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}

.contact-info-area-v1 .contact-info-item .info-inner-item {
    padding: 30px 15px 20px;
    border: 2px solid #efefef;
    min-height: 290px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-info-area-v1 .contact-info-item .info-inner-item {
        padding: 50px 15px 40px;
    }
}

@media (max-width: 991px) {
    .contact-info-area-v1 .contact-info-item .info-inner-item {
        padding: 50px 15px 40px;
    }
}

.contact-info-area-v1 .contact-info-item .info-inner-item .icon {
    position: relative;
    padding-bottom: 30px;
    width: 55px;
    margin: 0 auto 20px;
}

.contact-info-area-v1 .contact-info-item .info-inner-item .icon:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    content: "";
    background-color: #11092a;
}

.contact-info-area-v1 .contact-info-item .info-inner-item .info h4 {
    margin-bottom: 7px;
    color: #080346;
}

.contact-info-area-v1 .contact-info-item .info-inner-item .info p a:hover {
    color: #080346;
}

.contact-info-area-v2 {
    position: relative;
    z-index: 1;
}

.contact-info-area-v2:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 40%;
    height: 255px;
    z-index: -1;
}

@media (max-width: 991px) {
    .contact-info-area-v2:before {
        display: none;
    }
}

.contact-info-area-v2:after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    width: 65%;
    height: 300px;
    background-color: #b52324;
    z-index: -2;
}

@media (max-width: 991px) {
    .contact-info-area-v2:after {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 991px) {
    .contact-info-area-v2 .section-title {
        text-align: center;
    }
}

.contact-info-area-v2 .info-wrapper {
    margin-top: 75px;
}

@media (max-width: 991px) {
    .contact-info-area-v2 .info-wrapper .contact-info-item {
        margin-bottom: 40px;
    }
}

.contact-info-area-v2 .contact-info-item .icon i {
    font-size: 60px;
    line-height: 1;
    color: #11092a;
    margin-bottom: 15px;
}

.contact-info-area-v2 .contact-info-item .info p {
    color: #fff;
}

.contact-info-area-v2 .contact-info-item .info p:hover a {
    color: #11092a;
}

.contact-form-area .form_group {
    display: inherit;
}

.contact-form-area .form_group .form_control {
    background-color: #fff;
    border-radius: 27px;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.08);
    padding: 0 40px 0 55px;
    margin-bottom: 20px;
}

.offcanvas-panel-inner .contact-form-area .form_group .form_control {
    padding: 0 20px 0 48px;
    height: 42px;
    box-shadow: none;
    border: 1px solid #e1e1e1;
}

.offcanvas-panel-inner .contact-form-area .form_group .form_control:focus {
    border-color: #b52324;
}

.offcanvas-panel-inner .contact-form-area .form_group i {
    top: 14px;
    left: 20px;
}

.contact-form-area .form_group i {
    position: absolute;
    top: 19px;
    left: 25px;
    color: #080346;
}

.contact-form-area .form_group .nice-select {
    height: 60px;
    border-radius: 28px;
    line-height: 60px;
    margin-bottom: 20px;
    padding: 0 55px;
    border: none;
    background-color: #fff;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.08);
}

.offcanvas-panel-inner .contact-form-area .form_group textarea.form_control {
    height: auto;
    padding-top: 15px;
}

.contact-form-area .form_group textarea.form_control {
    height: auto;
    padding-top: 12px;
}

.offcanvas-panel-inner .contact-form-area .form_group textarea.form_control {
    padding-top: 5px;
}

.contact-img {
    margin-left: 40px;
}

.qr-box {
    text-align: center;
    margin-bottom: 25px;
}

.qr-box img {
    margin-bottom: 10px;
    width: 75%;
}

.social-btn {
    background: #b52324;
    color: #fff !important;
    padding: 2px 15px;
    font-size: 15px;
    border-radius: 20px;
}

.social-btn i {
    margin-right: 5px;
}

/*---=======================
   14. Start Footer  css 
===========================---*/
.social-link li,
.about-me-section .about-me-area .about-me-info .social-link li {
    margin-right: 10px;
}

.social-link li a,
.about-me-section .about-me-area .about-me-info .social-link li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {

    .social-link li a,
    .about-me-section .about-me-area .about-me-info .social-link li a {
        width: 40px;
        height: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .social-link li a,
    .about-me-section .about-me-area .about-me-info .social-link li a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 991px) {

    .social-link li a,
    .about-me-section .about-me-area .about-me-info .social-link li a {
        width: 40px;
        height: 40px;
    }
}

.social-link li a:hover,
.about-me-section .about-me-area .about-me-info .social-link li a:hover {
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-area .col-lg-3 {
        width: 33.33%;
    }
}

.footer-area .footer-widget h4.widget-title {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-area .footer-widget h4.widget-title > span {
    position: relative;
}

.footer-area .footer-widget h4.widget-title > span::after {
    content: '';
    position: absolute;
    top: 50%;
    top: 50%;
    left: 100%;
    margin-left: 20px;
    width: 30px;
    height: 5px;
    background: #11092a;
    transform: skewX(-42deg) translateY(-50%);
}

.footer-area .footer-widget .widget.about-widget .about-content p {
    margin-bottom: 30px;
}

.widget ul:not(.social-link) li a {
    color: #cacaca;
    padding: 7px 0;
    font-size: 15px;
    line-height: 1.35;
}

.sidebar-widget-area .widget ul li h6 a {
    padding: 0;
    color: #767676;
    font-weight: 500;
    font-size: 15px;
}

.footer-area .footer-widget .widget.newsletter-widget .newsletter-form form {
    margin: 15px 0 10px;
}

.footer-area .footer-widget .widget.newsletter-widget .newsletter-form form .form_group .form_control {
    height: 50px;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
    padding: 0 25px;
    border: none;
    background-color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-area .footer-widget .widget.newsletter-widget .newsletter-form form .form_group .form_control {
        padding: 0 5px;
    }
}

.footer-area .footer-widget .widget.newsletter-widget .newsletter-form form .form_group .newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.footer-area .copyright-area,
.footer-area.footer-area-v3 .copyright-area {
    padding: 20px 0 15px;
    background: -webkit-gradient(linear, left top, right top, from(#11092a), to(#f02849 ));
    background: linear-gradient(90deg, #352f48 0%, #f02849  100%);
}

.footer-area .copyright-area.landing-copyright {
    background: #fff;
}

@media (max-width: 991px) {
    .footer-area .copyright-area .copyright-text {
        text-align: center;
    }
}

.footer-area .copyright-area .copyright-text p {
    color: #fff;
}

.footer-area .copyright-area.landing-copyright .copyright-text p {
    color: #777;
}

.footer-area .copyright-area .copyright-text p span,
.footer-area .copyright-area .copyright-text p a {
    color: #04021a;
    font-weight: 500;
    text-shadow: 0px 1px 2px #323232;
    -webkit-text-shadow: 0px 1px 2px #323232;
}

@media (max-width: 991px) {
    .footer-area .copyright-area .footer-logo {
        margin: 20px 0;
    }
}

.footer-area .copyright-area .copyright-nav {
    float: right;
}

@media (max-width: 991px) {
    .footer-area .copyright-area .copyright-nav {
        margin-top: 20px;
        float: none;
        text-align: center;
    }
}

.footer-area .copyright-area .copyright-nav ul li {
    display: inline-block;
}

.footer-area .copyright-area .copyright-nav ul li + li {
    margin-left: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-area .copyright-area .copyright-nav ul li {
        margin-left: 15px;
    }
}

@media (max-width: 991px) {
    .footer-area .copyright-area .copyright-nav ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.footer-area .copyright-area .copyright-nav ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.footer-area .copyright-area .copyright-nav ul li a:hover {
    color: #b52324;
}

.footer-area.footer-area-v3 .footer-widget h4.widget-title {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-area.footer-area-v3 .footer-widget .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }
}

.footer-area.footer-area-v3 .footer-widget .footer-top {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-area.footer-area-v3 .footer-widget .footer-top .footer-nav {
    float: right;
}

@media (max-width: 991px) {
    .footer-area.footer-area-v3 .footer-widget .footer-top .footer-nav {
        float: none;
        text-align: center;
    }
}

.footer-area.footer-area-v3 .footer-widget .footer-top .footer-nav ul li {
    display: inline-block;
    margin-left: 65px;
}

@media (max-width: 991px) {
    .footer-area.footer-area-v3 .footer-widget .footer-top .footer-nav ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.footer-area.footer-area-v3 .footer-widget .footer-top .footer-nav ul li a {
    font-weight: 700;
}

.footer-area.footer-area-v3 .footer-widget .widget p {
    color: #cacaca;
}

.footer-area.footer-area-v3 .footer-widget .widget.about-widget .about-content .social-link li a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-area.footer-area-v3 .footer-widget .widget.about-widget .about-content .social-link li a:hover {
    color: #fff;
}

.footer-area.footer-area-v3 .footer-widget .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date h6 {
    color: #fff;
}

.footer-area.footer-area-v3 .footer-widget .widget.recent-post-widget .recent-post-list .post-thumbnail-content .post-title-date span.posted-on {
    color: #cacaca;
}

.footer-area.footer-area-v3 .footer-widget .widget.newsletter-widget .newsletter-form .form_group .form_control {
    background-color: transparent;
    border-radius: 30px;
    border: 2px solid #3a3a3a;
}

.footer-area.footer-area-v3 .footer-widget .widget.newsletter-widget .newsletter-form .form_group .newsletter-btn {
    border-radius: 50%;
}

.footer-area.footer-area-v3 .footer-widget .widget.contact-widget .contact-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #393939;
    margin-bottom: 10px;
}

.footer-area.footer-area-v3 .footer-widget .widget.contact-widget .contact-info-item:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

.footer-area.footer-area-v3 .footer-widget .widget.contact-widget .contact-info-item .icon {
    margin-right: 20px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-area.footer-area-v3 .footer-widget .widget.contact-widget .contact-info-item .icon i {
    font-size: 16px;
    color: #fff;
}

.footer-area.footer-area-v3 .footer-widget .widget.contact-widget .contact-info-item .info span {
    font-size: 14px;
    line-height: 1.5;
    color: #cacaca;
    margin-bottom: 5px;
    display: block;
}

.footer-area.footer-area-v3 .footer-widget .widget.contact-widget .contact-info-item .info h5 {
    line-height: 1;
    color: #fff;
}

.footer-area.footer-area-v3 .footer-widget .widget.contact-widget .contact-info-item .info p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #fff;
}
    

.thank-you {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
}

.thank-you #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal{
    z-index: 9999999;
}

.modal-backdrop {
    z-index: 9999998;
}

.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

/*******Common For Mobile*********/
@media only screen and (min-width: 300px) and (max-width: 691px) {
    .display-1 {
        font-size: 4.5rem;
    }

    h2,
    .h2 {
        font-size: 36px;
        line-height: 42px;
    }

    h3,
    .h3 {
        font-size: 22px;
        line-height: 32px;
    }

    h4,
    .h4 {
        font-size: 20px;
        line-height: 32px;
    }

    .no-break-sm br {
        display: none;
    }

    .pb-ex-0 {
        padding-bottom: 0;
    }

    .preloader-inner svg {
        width: 225px;
    }

    .header-area-one .header-navigation.sticky,
    .header-area-one.transparent-header .header-navigation.breakpoint-on.sticky {
        padding: 12px 0;
    }

    .header-area-one .header-navigation .header-right-nav .menu-icon-group ul li {
        margin-left: 25px;
    }

    .offcanvas-panel {
        width: auto;
    }

    .offcanvas-panel .offcanvas-panel-inner {
        width: 330px;
        max-width: 330px;
    }

    .offcanvas-panel .panel-close {
        right: 20px;
    }

    .main-btn {
        padding: 8px 22px;
    }

    .main-btn.outline-btn {
        padding: 6px 20px;
    }

    .hero-area-v1 .hero-content .box {
        margin-bottom: 10px;
    }

    .hero-area-v1 .main-slider {
        padding: 36px 0 90px;
    }

    .about-area-v1 .about-img-box .experience-box {
        top: 50%;
        width: 160px;
        height: 160px;
    }

    .about-area-v1 .about-img-box .experience-box h2 {
        font-size: 55px;
    }

    .about-area-v1 .about-img-box {
        height: 600px;
    }

    .about-area-v1 .about-img-box:after {
        display: none;
    }

    .about-area-v1 .about-content-box {
        margin-left: 0;
    }

    .wisdom-area {
        padding: 90px 0;
    }

    .cta-area-v4 {
        padding-top: 90px;
    }

    .counter-area-v2 .counter-item .info h2 {
        font-size: 52px;
        line-height: 62px;
    }

    .counter-area-v2 .counter-item .info h2 span.sign {
        font-size: 28px;
    }

    .clients-area-v1 .section-title {
        margin-bottom: 25px;
    }

    .footer-area .copyright-area .copyright-nav ul li + li {
        margin-left: 5px;
    }

    .whatsapp-floting {
        width: 50px;
        height: 50px;
        line-height: 53px;
        font-size: 28px;
    }

    .bredcumbs-area {
        padding: 60px 0 50px;
    }

    .member-tabs .nav-tabs {
        flex-direction: column;
    }

    .member-tabs .nav-link {
        font-size: 17px;
        border-color: #dee2e6 #dee2e6 #dee2e6 #dee2e6 !important;
    }

    .member-tabs .nav-link small {
        font-size: 13px;
    }

    .member-tabs .nav-link.active,
    .member-tabs .nav-link.active:hover {
        border-color: #dee2e6 #dee2e6 #11092a !important;
    }

    .qr-box {
        margin-bottom: 40px;
    }

    .contact-info-area-v1 .contact-info-item .info-inner-item {
        min-height: auto;
    }
}

/*******Common For Tabs*********/
@media only screen and (min-width: 692px) and (max-width: 991px) {}

/*# sourceMappingURL=style.css.map */
