/* 
    font-family: 'Montserrat', sans-serif;
    font-family: 'Nunito Sans', sans-serif;
*/

@import url("font-awesome.css");
@import url("flaticon.css");
@import url("animate.css");
@import url("owl.css");
@import url("jquery-ui.css");
@import url("jquery.fancybox.min.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap');*/
/*** 

====================================================================
    Reset
====================================================================

***/

/**/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

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

*::-webkit-scrollbar-thumb {
    background: -webkit-linear-gradient(184deg, #ebebeb, #7f7f7fc2);
    background: linear-gradient(184deg, #ebebeb, #7f7f7fc2);
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgb(0 0 0 / 50%);
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
}
*/

/*** 

====================================================================
    Global Settings
====================================================================

 ***/

html {
    scroll-behavior: smooth;
}
body {
    font-family: Poppins;
    font-size: 16px;
    color: #262626;
    line-height: 1.7em;
    font-weight: 700;
    background: #ebebeb80;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #0060ff;
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.6em;
}

p {
    position: relative;
    line-height: 1.8em;
    font-weight: 400;
}

/* Typography */

h1 {
    font-size: 72px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;
}

input,
input.form-control:focus,
input[type="text"]:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 0px 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 7px;
    border: 1px solid #ece6e6;
    margin: 0;
    display: inline-block;
    outline: none;
}
::placeholder {
    opacity: 0.9;
    font-size: 13px;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.block {
    display: block;
}
.m-b-30 {
    margin-bottom: 30px;
}

.pad-80 {
    padding: 80px 0px;
}
.pad-50 {
    padding: 50px 0px;
}
.pad-80-20 {
    padding: 80px 0px 20px;
}
.pad-20 {
    padding: 20px 0px;
}
.pad-80-50 {
    padding: 80px 0px 50px;
}
.pad-100 {
    padding: 100px 0px;
}
.bg-1 {
    background: #f7f7f7;
}
.centered {
    text-align: center;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}

.box-shadow-1 {
    -webkit-box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
    box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
}
.bg-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: linear-gradient(184deg, #d1223e, #a2636d) !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}

.overlay {
    position: relative;
    z-index: 0;
}

.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
}
.bg-overlay::after {
    background-color: rgb(28 3 145 / 61%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.bg-fixed {
    background-attachment: fixed !important;
}

/*Animation*/

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes movebounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes fly {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateX(600px);
        transform: translateX(600px);
    }
    50% {
        top: 10px;
    }
}

/*==================Section Title Css===============*/

.section-title {
    position: relative;
    margin-bottom: 35px;
    color: #262261; /*
    font-family: "Roboto", Sans-serif;*/
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
}

.section-title span {
    color: #faaa3a;
}

/*==================Button Css===============*/
.theme-btn {
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
    line-height: normal;
}
.btn-style-one {
    display: inline-block;
    font-size: 19px;
    color: #ffffff;
    padding: 8px 10px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: capitalize;
    /*font-family: 'Montserrat';*/
    background: -webkit-linear-gradient(to right, #7b0101, #007e01);
    background: linear-gradient(to right, #7b0101, #007e01);
}
.btn-style-one:hover {
    color: #000;
    transition: 500ms ease-out;
}

/*** 

====================================================================
    Top-Bar Css
====================================================================

***/
.header-top {
    padding: 10px 0px;
    background: #383838;
}
.mid-header-top {
    background: #fff;
}
.mid-content-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.8px;
    /*font-family: Poppins;*/
}
.header-top ul li a:hover {
    color: #397119;
}
.header-top ul li a .fa {
    font-size: 20px;
    padding: 0px 10px;
    color: #509e50;
}
.header-top-right {
    text-align: right;
}
.header-top-middle p {
    margin-bottom: 0;
    color: #505050;
    font-weight: 600;
    font-size: 14px;
    position: relative;
}
.marque-box {
    background: #fff;
    border: 2px solid #dddddd4d;
    padding: 8px 0px;
    border-radius: 50px;
    color: #003d6c;
    font-weight: 800;
    width: 40%;
    font-size: 15px;
    letter-spacing: 0.8px;
    line-height: 20px;
}
.header-top-middle p span {
    color: #509b30;
    font-size: 16px;
    font-weight: 700;
}
.upper-div {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.contact-info-upper ul li {
    display: block;
}
.contact-info-upper ul li a {
    padding-left: 15px;
    color: #003d6c;
}
.contact-info-upper ul li a:hover {
    color: #003d6c;
}
.contact-info-upper ul li .icon {
    font-size: 15px;
    font-weight: 400;
    color: #003d6c;
}
/*** 

====================================================================
    Header Css
====================================================================

***/
.header {
    width: 100%;
    z-index: 99999;
    top: 0;
}

.main-nav {
    background: #FF0000;
    padding: 13px 0px;
}

.main-nav .site-navigation {
    padding: 0px;
}

.main-nav .site-navigation .navbar-brand {
    padding: 0;
}

.main-nav .site-navigation .navbar-brand img {
    height: 75px;
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    line-height: 90px;
}
.main-nav .site-navigation .site-menu .nav-item {
    margin-right: 25px;
    position: relative;
}
.main-nav .site-navigation .site-menu .menu-link {
    color: #fff;
    position: relative;
    display: block;
    line-height: 30px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
}
.main-nav .site-navigation .site-menu .menu-link.active {
    color: #fff;
}
.main-nav .site-navigation .outer-box .btn-box {
    display: flex;
    align-items: center;
}
.main-nav .site-navigation .outer-box .btn-box .nav-user {
    width: 38px;
    height: 38px;
    background: #10958714;
    text-align: center;
    display: inline-block;
    line-height: 38px;
    border-radius: 50px;
    box-shadow: 0px 0px 3px 0px rgb(98 195 184);
    margin-right: 30px;
    font-size: 22px;
    font-weight: 600;
    padding-left: 3px;
    color: #056839;
}
.main-nav .site-navigation .outer-box .btn-box .theme-btn {
    min-width: 80px;
    text-transform: uppercase;
    font-size: 15px;
}
.main-nav .site-navigation .close-menu-wrap {
    display: none;
}

.main-nav .site-navigation .site-menu .has-children span {
    font-size: 10px;
    margin-left: 4px;
    color: #fff;
}

/*Mobile Menu*/
.mobile-menu-trigger {
    cursor: pointer;
    margin-left: 30px;
    display: none;
    background: #003d6c;
    border: 2px solid #003d6c;
    padding: 13px 11px;
    border-radius: 5px;
}
.mobile-menu-trigger span {
    height: 2px;
    display: block;
    width: 20px;
    margin-bottom: 5px;
    background-color: #fff;
}
.mobile-menu-trigger span:last-child {
    margin-bottom: 0;
}
.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #003d6c;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-x: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.mobile-menu-container li {
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
    transform: translateX(100px);
    -webkit-transition: 1s;
    transition: 1s;
    border-top: 1px solid rgb(255 255 255 / 8%);
}
.mobile-menu-container li:nth-last-child(1) {
    border-bottom: 1px solid rgb(255 255 255 / 8%);
}
.mobile-menu-container li > a .slicknav_arrow:after {
    content: "\f067";
    position: absolute;
    font-family: "FontAwesome";
    top: 0;
    bottom: 0;
    color: white;
    z-index: 999;
    margin: 0 auto;
    text-align: center;
    right: 0;
    left: 0;
    font-size: 16px;
    line-height: 50px;
}
.mobile-menu-container.menu-open li.slicknav_open > a .slicknav_arrow:after {
    content: "\f068";
}
.mobile-menu-container.menu-open {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu-container.menu-open li {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}
.mobile-menu-close::before {
    left: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mobile-menu-close::after {
    right: 13px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-menu-close::before,
.mobile-menu-close::after {
    position: absolute;
    height: 30px;
    width: 2px;
    background: #ffffff;
    content: "";
    top: 0;
}
#mobile-menu-wrap {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    padding: 100px 20px 20px 20px;
}
#mobile-menu-wrap div {
    background-color: transparent;
}
#mobile-menu-wrap .slicknav_item i {
    display: none;
}
/*Sidebar Start*/
.slicknav_nav,
.slicknav_nav.slicknav_hidden {
    display: block !important;
}
.slicknav_btn {
    display: none !important;
}
.slicknav_menu {
    padding-left: 0;
}
.slicknav_item.slicknav_row a {
    border-bottom: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 10px 0px;
    margin: 0;
}
.slicknav_nav .slicknav_arrow {
    font-size: 0;
    background: rgb(255 255 255 / 8%);
    height: 100%;
    width: 50px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.slicknav_nav ul {
    margin: 0 0 0 0px;
}
.slicknav_nav .menu-item-has-children ul {
    margin-bottom: 00px;
}
.slicknav_nav .menu-item-has-children ul li {
    padding-left: 25px;
}
.sub-menu .menu-item-has-children a i {
    position: absolute;
    right: 20px;
    top: 20px;
}
.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
    border-radius: 0;
}
.slicknav_item.slicknav_row {
    display: inline-block;
    width: 100%;
    position: relative;
}
.slicknav_arrow {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 0;
    top: 17px;
    position: absolute;
}
.slicknav_nav a,
.slicknav_row a {
    color: #ffffff;
    font-size: 15px;
    display: inline-block;
    font-weight: 400;
}
/* Mobile Menu CSS End*/

/*-========Sub Menu/Dropdown=========*/
.site-navigation .site-menu .nav-item.has-children {
    position: relative;
}

.site-navigation .site-menu .nav-item.has-children .dropdown {
    position: absolute;
    left: -200px;
    background-color: #ffffff;
    min-width: 700px;
    z-index: 9999;
    box-shadow: 0 0px 6px 3px rgb(0 0 0 / 5%);
    text-align: left;
    transition: all 0.5s ease;
    visibility: hidden;
    opacity: 0;
    top: 50px;
    border-top: 2px solid #003d6c;
    border-radius: 5px;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .dropdown {
    min-width: 300px;
}

.site-navigation .site-menu .has-children .dropdown .dropdown {
    left: 200px;
    top: 3px;
}

.nav-image-height {
    height: 130px;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .nav-item {
    display: block;
    position: relative;
    /*    padding: 5px 20px;*/
    border-bottom: 1px solid #ebefef;
    width: 100%;
}

.nav-item.has-children .dropdown .nav-item a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 10px;
    color: #003d6c;
    display: block;
    line-height: normal;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: 2px 2px 3px 1px #ddd;
    margin: 5px;
    border-radius: 5px;
}
.mega-img-caption {
    text-align: center;
    padding: 10px 0px 5px;
}

.site-navigation
    .site-menu
    .nav-item.has-children
    .dropdown
    .nav-item:last-child {
    border-bottom: 0;
}

.nav-item.has-children .dropdown .nav-item a:hover .mega-img-caption {
    color: #005974;
}

.site-navigation .site-menu .has-children:hover > .dropdown {
    opacity: 1;
    visibility: visible;
}

/*Common Css*/
.p-20 {
    padding: 20px 20px;
}
.p-30 {
    padding: 30px 30px;
}
.p-40 {
    padding: 40px 40px;
}
.p-50 {
    padding: 50px 50px;
}
.p-70 {
    padding: 70px 70px;
}
.relative {
    position: relative;
}

/*** 

====================================================================
    Home Banner Css
====================================================================

***/

.hero-slider-item {
    width: 100%;
    height: 550px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.hero-slider-item .d-table {
    width: 100%;
    height: 100%;
}

.hero-slider-item .d-table-cell {
    vertical-align: middle;
}

.hero-slider-content .welcome-text {
    display: inline-block;
    padding: 10px;
    background: red;
    color: red !important;
    z-index: 1;
}
.animated.fadeInUp.welcome-text {
    color: #fff;
    font-size: 20px;
    border: 2px solid #b5aeae;
    padding: 1px 15px;
    border-radius: 50px;
    line-height: normal;
    font-weight: 600;
    /*font-family: monospace;*/
    margin-bottom: 30px;
    display: inline-block;
}
.hero-slide-content .animated span {
    color: white;
    font-size: 20px;
    font-weight: 400;
}
.hero-slide-content .animated h2 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0px;
}
.hero-slide-content .animated p {
    color: #fff;
    font-weight: 400;
    padding: 0px 0px 15px 0px;
}
.hero-slider-area .owl-carousel {
    z-index: 1;
}
.owl-nav div {
    z-index: 9 !important;
}

.owl-nav div {
    position: absolute;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    line-height: 50px;
    background: #4a49498c;
}
.owl-nav .owl-prev {
    top: 47%;
    left: 30px;
}

.owl-nav div:hover {
    border-color: #7b0101 !important;
    background-color: transparent;
}

.owl-nav div span {
    color: #ffffff;
    font-size: 18px;
}

.owl-nav .owl-next {
    top: 47%;
    right: 30px;
}

.hero-slider {
    position: relative;
}
.header-section {
    /*position: absolute;*/
    z-index: 99999;
    width: 100%;
}
/*** 

====================================================================
    Home Text Box  Css
====================================================================

***/
.box-area {
    margin-top: -60px;
}
.single-box {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 18px;
    /*font-family: 'Poppins';*/
    border-top: 5px solid #98cf99;
    border-radius: 5px;
}
.nth-01 {
    z-index: 2;
}
.single-box:nth-child(odd) {
    background: #7b0101;
}
.single-box.bg-2 {
    background: #007e01 !important;
}
.single-box:nth-child(3) {
    background: #7b0101;
}
.single-box h2 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.single-box p {
    color: #e6e1e1;
    margin-bottom: -6px;
    font-size: 15px;
}

/*** 

====================================================================
    Footer Section
====================================================================

***/
.main-footer {
    position: relative;
    padding: 50px 0px 0px;
}

.widget-section {
    position: relative;
    padding-bottom: 15px;
}

.footer-widget .about-widget img {
    width: 35%;
    margin-bottom: 25px;
}

.footer-widget p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8em;
    margin-bottom: 25px;
}

.footer-widget .title {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 32px;
    border-left: 3px solid #f86a08;
    padding: 0px 10px;
    line-height: 20px;
    color: #fff;
}

.footer-widget ul li {
    position: relative;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-widget ul li a {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
}
.footer-widget .contact-info-widget ul li a {
    padding-left: 16px;
}

.footer-widget .contact-info-widget ul li .icon {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.footer-widget .social-link-widget a {
    display: inline-block;
    height: 35px;
    width: 35px;
    background: #ffffff;
    margin-right: 10px;
    box-shadow: 0 8px 10px -1px #00000070;
    color: #262626;
    text-align: center;
    transition: background 500ms ease-out;
}

.footer-widget .social-link-widget a:hover {
    background: #ff5c00;
    color: #fff;
}

.footer-widget .social-link-widget a i {
    line-height: 35px;
    font-size: 17px;
    color: #000;
}

.footer-bottom-area {
    padding: 14px 0 6px;
}
.copyright span {
    color: #000;
    font-size: 17px;
}

/*Content Text*/
.content-part span {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
}
.content-part h3 {
    font-size: 25px;
    font-weight: 600;
    color: #003d6c;
    text-transform: uppercase;
}

.content-part p {
    font-size: 16px;
}
.content-part h4 {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.content-button {
    background: #003d6c;
    padding: 11px 12px;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #fff !important;
    font-weight: 500;
}
.content-part .product-rating {
    padding: 0px !important;
    font-size: 15px !important;
}

/*Photo Gallery*/
.m-p-g__thumbs-img {
    width: 50%;
    margin: 0;
    float: left;
    vertical-align: bottom;
    cursor: pointer;
    z-index: 1;
    position: relative;
    /* opacity: 0; */
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-tap-highlight-color: transparent;
    will-change: opacity, transform;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    max-height: 300px;
    object-fit: contain;
}

.m-p-g__thumbs-img.active {
    z-index: 50;
}

.m-p-g__thumbs-img.layout-completed {
    opacity: 1;
}

.m-p-g__thumbs-img.hide {
    opacity: 0;
}

.m-p-g__thumbs-img:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.m-p-g__fullscreen {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: 0 0;
    visibility: hidden;
    -webkit-transition: background 0.25s ease-out, visibility 10ms 0.5s linear;
    transition: background 0.25s ease-out, visibility 10ms 0.5s linear;
    will-change: background, visibility;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.m-p-g__fullscreen.active {
    -webkit-transition: background 0.25s ease-out, visibility 0.01s 0s linear;
    transition: background 0.25s ease-out, visibility 0.01s 0s linear;
    visibility: visible;
    background: rgba(0, 0, 0, 0.95);
}

.m-p-g__fullscreen-img {
    pointer-events: none;
    position: absolute;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    top: 50%;
    left: 50%;
    max-height: 100vh;
    max-width: 100%;
    visibility: hidden;
    will-change: visibility;
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}

.m-p-g__fullscreen-img.active {
    visibility: visible;
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.5s ease-out;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.5s ease-out;
}

.m-p-g__fullscreen-img.almost-active {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.m-p-g__controls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    height: 20vh;
    background: -webkit-linear-gradient(
        bottom,
        transparent 0,
        rgba(0, 0, 0, 0.55) 100%
    );
    background: linear-gradient(
        to top,
        transparent 0,
        rgba(0, 0, 0, 0.55) 100%
    );
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.m-p-g__controls-arrow,
.m-p-g__controls-close {
    position: absolute;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.m-p-g__controls.active {
    opacity: 1;
    visibility: visible;
}

.m-p-g__controls-arrow,
.m-p-g__controls-close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: 0 0;
}

.m-p-g__controls-arrow:focus,
.m-p-g__controls-close:focus {
    outline: 0;
}

.m-p-g__controls-arrow {
    z-index: 1;
    top: 0;
    width: 20%;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
}

.m-p-g__controls-arrow:hover {
    opacity: 1;
}

.m-p-g__controls-arrow--prev {
    left: 0;
    padding-left: 3vw;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.m-p-g__controls-arrow--next {
    right: 0;
    padding-right: 3vw;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.m-p-g__controls-close {
    top: 3vh;
    left: 3vw;
    z-index: 5;
}

.m-p-g__btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.m-p-g__btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.m-p-g__alertBox {
    position: fixed;
    z-index: 999;
    max-width: 700px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
    color: grey;
}

.m-p-g__alertBox h2 {
    color: red;
}

.gallery-section {
    padding: 20px 0px 80px;
    position: relative;
    z-index: 1;
}

/*Single Product Section*/
.image-details img {
    border: 1.5px solid #ddd;
    padding: 5px;
    max-width: 450px;
    object-fit: contain;
}

.card {
    background-color: #fff;
}

.card-header {
    width: 100%;
}

.card-header img {
    width: 100%;
}

.card-content span {
    background-color: #094055;
    color: #fff;
    font-weight: 500;
    font-size: 10px;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    text-transform: uppercase;
}

.card-content h3 {
    margin: 1rem 0 0.5rem 0;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #222222e3;
}
.card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #008f00;
}
.card-content p {
    font-size: 15px;
    font-weight: 400;
    color: #6c6c6c;
    margin-bottom: 5px;
}

/*Blog CSS*/
.date {
    margin: 0;
}

/*Breadcumb Box Css*/
.breadcumb-box {
    background: #150ab914;
    padding: 1rem;
    border-radius: 10px;
}
.breadcumb-box h2 {
    font-weight: 600;
    font-size: 20px;
    margin: 25px 0px 10px;
    line-height: 30px;
}
.breadcumb-box p {
    font-weight: 400;
}
.breadcumb-box a {
    color: #003d6c;
    font-weight: 500;
    text-decoration: underline;
}

.breadcumb-content {
    padding: 50px 0px;
}
.breadcumb-content span {
    color: #fff;
    font-weight: 500;
}
.breadcumb-content h2 {
    font-weight: 600;
    font-size: 35px;
    color: #fff;
}

.about-bottom img {
    z-index: -9;
}
.about-upper {
    position: absolute;
}
.about-upper img {
    float: right;
    position: relative;
    z-index: 9;
    width: 50%;
    margin: -120px -90px 0px 0px;
}

/*Counter CSS*/
.counterup {
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
    padding: 30px 20px 0px 20px;
    box-sizing: border-box;
}
.counterup .fa {
    font-size: 50px;
    padding: 10px;
    color: #bd2929;
}
.counterup h2 {
    color: #022541;
    font-weight: 700;
    text-align: center;
    font-size: xxx-large;
    display: inline-block;
}
.counterup h3 {
    text-align: center;
    color: #000;
    opacity: 0.7;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}
.logo-section img {
    height: 250px;
    object-fit: contain;
}
.gallery-section img {
    height: 200px;
}
.card-header img {
    height: 250px;
}
.side-whatsapp-buttons {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 25px;
    bottom: 60px;
}
.footer-widget p {
    color: #fff;
}

.quick-section {
    background-image: url("https://static.vecteezy.com/system/resources/previews/013/625/947/non_2x/silhouette-building-construction-site-with-a-tower-crane-and-engineer-and-workers-illustration-vector.jpg");
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.quick-background {
    width: 340px;
    padding: 50px 20px;
    border-radius: 10px;
}

.quick-background .quick-text {
    font-size: 30px;
    font-weight: 600;
}
.fixed-social-area {
    position: fixed;
    z-index: 99;
    height: 250px;
    display: flex;
    top: 85%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}
.fixed-social-list li {
    display: block;
}
.fixed-social-list li a {
    display: block;
    text-align: center;
    padding: 8px 10px;
    transition: all 0.3s ease;
    font-size: 22px;
}
.fixed-social-list li #whatsapp {
    color: #fff;
    background: #009b48;
}
.fixed-social-list li #email {
    color: #fff;
    background: #004464;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    height: 415px;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: "Glyphicons Halflings";
    content: "\e003";
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}

.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: "";
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.service-section .service-block {
    margin-bottom: 30px;
    overflow: hidden;
    /*    box-shadow: 0px 0px 7px 0px rgb(199 199 199);*/
}
.service-section .service-block .inner-box {
    padding: 10px 15px;
}
.service-section .service-block:hover {
    transition: all 0.5s;
    cursor: pointer;
}
.inner-box .inner-image {
    height: 560px;
    border-radius: 10px;
    object-fit: contain;
}
.service-section .service-block .inner-box .icon-box {
    color: #000000;
    font-size: 60px;
    line-height: 1em;
}
.service-section .service-block h4 {
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 22px;
    margin-bottom: 18px;
    font-size: 16px;
}
.service-section .service-block h4 a {
    color: #022932;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}
.service-section .service-block .inner-text {
    color: #022932;
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 500;
    z-index: 1;
    margin-bottom: 0;
}
.service-section .service-block span {
    color: #000;
    font-weight: 500;
}
.service-link a {
    color: #5c5c5c;
    font-weight: 500;
}
.service-link a:hover {
    padding-left: 15px;
    color: #022932;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    height: 415px;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: "Glyphicons Halflings";
    content: "\e003";
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}

.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: "";
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}
