@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&amp;display=swap");

:root {
    --primary-color: #fc7921;
    --secondary-color: #0c1239;
    --heading-color: #0c1239;
    --body-color: #727272;
    --white: #fff;
    --light-bg: #fafafa;
    --light-gray: #f9f9f9;
    --light-blue-gray: #f2f5fe;
    --black: #000;
    --bc: rgba(0, 0, 0, 0.1);
    --roboto: "Roboto", sans-serif;
}

* {
    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,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--roboto);
    color: #02466b;
    margin: 0px;
    font-weight: 600;
}

h1 {
    font-size: 60px;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    line-height: 45px;
}

h3 {
    font-size: 30px;
    line-height: 1.4;
}

h4 {
    font-size: 24px;
    line-height: 30px;
}

h5 {
    font-size: 20px;
    line-height: 1;
}

h6 {
    font-size: 16px;
}

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

p {
    margin: 0px;
}

input,
textarea {
    display: inherit;
}

img {
    max-width: 100%;
}

body {
    font-family: var(--roboto);
    font-weight: normal;
    font-style: normal;
    color: var(--body-color);
    font-size: 16px;
    line-height: 30px;
    overflow-x: hidden;
}

:is(.lc-1, .lc-2, .lc-3) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

:is(.lc-1, .lc-2, .lc-3) * {
    display: inline;
}

.lc-1 {
    -webkit-line-clamp: 1 !important;
    line-clamp: 1 !important;
}

.lc-2 {
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
}

.lc-3 {
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
}

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

.slick-slide {
    outline: 0;
}

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

.form_group {
    position: relative;
}

.form_control {
    width: 100%;
    padding: 0 20px;
    height: 50px;
    border: none;
}

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

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.section-title span.sub-title {
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    display: block;
    color: #fc7921;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 30px;
}

.section-title h2 span {
    color: #fc7921;
}

.section-title span.sub-title span.sub-bg {
    position: relative;
    padding: 5px 10px;
    z-index: 1;
}

.section-title span.sub-title span.sub-bg:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
}

.section-title span.sub-title span.sub-bg-2 {
    color: #02466b;
}

.section-title span.sub-title span.sub-bg-2:before {
    background-color: #fc7921;
}

.section-title h2 {
    margin-bottom: 10px;
}

.section-title P {
    padding-top: 20px;
}

.section-title-white h2,
.section-title-white p {
    color: var(--white);
}

/*===== All bg =====*/
.light-bg {
    background-color: var(--light-bg);
}

.light-gray {
    background-color: var(--light-gray);
}

.dark-blue {
    background-color: #02466b;
}

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

.main-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    padding: 5px 35px;
    line-height: 27px;
    text-transform: capitalize;
    background-color: var(--secondary-color);
    z-index: 1;
    transition: all 0.3s;
}

.main-btn:hover {
    color: #02466b;
}

.main-btn:hover:before {
    width: 100%;
    height: 100%;
    background-color: #fc7921;
}

.main-btn:hover:after {
    background-color: var(--secondary-color);
}

.main-btn:before,
.main-btn:after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: all 0.3s;
}

.main-btn:before {
    position: absolute;
    width: 0;
    height: 0;
    background-color: var(--secondary-color);
}

.main-btn:after {
    width: 15px;
    height: 15px;
    background-color: #fc7921;
}

.main-btn-primary {
    color: #fff;
    background-color: #fc7921;
}

.main-btn-primary:after {
    background-color: #02466b;
}

.main-btn-primary:hover {
    color: var(--white);
}

.main-btn-primary:hover:before {
    background-color: #02466b;
}

.main-btn-primary:hover:after {
    background-color: #fc7921;
}

/*
    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%;
    border-radius: 0;
}

/*
    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: var(--white);
    margin-bottom: 0;
    height: 50px;
}

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

#search-modal .form_control::-webkit-input-placeholder {
    color: var(--white);
}

#search-modal .form_control::-moz-placeholder {
    color: var(--white);
}

#search-modal .form_control:-ms-input-placeholder {
    color: var(--white);
}

#search-modal .form_control::-ms-input-placeholder {
    color: var(--white);
}

#search-modal .form_control::placeholder {
    color: var(--white);
}

#search-modal .search_btn {
    position: absolute;
    background: transparent;
    top: 10px;
    right: 10px;
    color: var(--white);
}

/*
    Start Preloader css
*/
.preloader {
    background-color: var(--white);
    bottom: 0;
    height: 100vh;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: 99999;
}

.lds-ellipsis {
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 64px;
    text-align: center;
    z-index: 9999;
}

.lds-ellipsis span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fd6350;
    -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
    animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
    -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
    animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
    -webkit-animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
    animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

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

@keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

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

/*
    Start scroll_up css
*/
.back-to-top {
    background: #fc7921;
    border-radius: 50%;
    bottom: 30px;
    color: var(--white);
    cursor: pointer;
    display: none;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 30px;
    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: #070346;
    color: var(--white);
}

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

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

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

.header-navigation.breakpoint-on .primary-menu {
    padding: 15px 30px;
}

.header-navigation .nav-menu {
    text-align: right;
    width: 70%;
}

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

/* .header-navigation .main-menu ul li:last-child>a {
	padding-right: 0px;
} */
.header-navigation .main-menu ul li > a {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #0c1239;
    text-transform: capitalize;
    padding: 41px 20px;
    line-height: 1;
}

.header-navigation .main-menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 120%;
    width: 250px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 999;
    height: auto;
    text-align: left;
}

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

.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 {
    display: block;
    padding: 3px 15px;
    font-size: 14px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    line-height: 2;
    margin: 0;
    border-bottom: 1px solid #ececec;
    color: #02466b;
    font-weight: 500 !important;
}

.header-navigation .main-menu ul li .sub-menu li a:hover {
    background-color: #fc7921;
    color: var(--white);
    border-color: transparent;
}

.header-navigation .main-menu ul li .sub-menu li .sub-menu {
    left: 100%;
    top: 50%;
}

.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: #02466b;
    color: var(--white);
}

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

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

.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 .nav-menu .main-menu ul li .dd-trigger {
    display: block;
    position: absolute;
    right: 0;
    height: 42px;
    width: 45px;
    top: 0;
    background-color: #02466b;
    z-index: 2;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    color: var(--white);
    font-size: 20px;
}

.header-navigation.breakpoint-on .nav-menu {
    text-align: left;
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9999;
    width: 300px;
    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: scroll;
    padding-top: 70px;
}

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

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

.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 var(--bc);
    color: #070346;
    padding: 13px 20px;
}

.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 {
    color: #070346;
    padding: 0px 20px 0 40px;
    line-height: 45px;
}

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

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

.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;
    margin-left: 10px;
}

.header-navigation .navbar-toggler span {
    position: relative;
    background-color: #02466b;
    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: 0;
    right: 0;
    z-index: 12;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: none;
    background: #02466b;
}

.header-navigation .navbar-close i {
    color: var(--white);
    font-size: 20px;
}

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

header .header-navigation.sticky {
    background-color: var(--white);
    box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
}

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

    100% {
        top: 0;
    }
}

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

    100% {
        top: 0;
    }
}

/* Header Top Bar */
header .header-navigation .primary-menu,
header .container-fluid {
    padding: 0 50px;
}

.header-area-one .header-top-bar {
    background-color: #0c1239;
    padding: 14px 0;
}

.lang-dropdown {
    position: relative;
    display: flex;
}

.lang-dropdown .lang {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 0;
    transform: translateY(-50%);
}

.lang-dropdown .nice-select {
    padding-right: 35px;
    padding-left: 35px;
    background-color: transparent;
    border: none;
    font-weight: 500;
    font-size: 16px;
    color: #02466b;
}

.header-area-one .header-top-bar .lang-dropdown .nice-select:after,
.header-area-one .header-top-bar .lang-dropdown .nice-select {
    color: var(--white);
}

.header-area-one .header-top-bar .lang-dropdown .nice-select .list {
    color: #02466b;
}

.header-area-one .header-top-bar .top-right > ul > li {
    margin-left: 25px;
}

.header-area-two .header-navigation .header-right-nav .cart-button .cart-btn,
.header-area-one .header-top-bar .top-right ul li .cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #272f60;
    color: #fc7921;
}

.header-area-two
    .header-navigation
    .header-right-nav
    .cart-button
    .cart-btn
    span.count,
.header-area-one .header-top-bar .top-right ul li .cart-btn span.count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background-color: #fc7921;
    font-size: 12px;
    color: #02466b;
    border-radius: 50%;
}

.header-area-one .header-top-bar .top-right ul li a {
    color: var(--white);
}

.header-area-one .header-top-bar .top-right ul li a:hover {
    color: #fc7921;
}

.header-area-one .header-top-bar .top-left span {
    color: var(--white);
    margin-right: 25px;
}

.header-area-one .header-top-bar .top-left span i {
    color: #fc7921;
}

.header-top-bar .top-left span i {
    margin-right: 5px;
}

.header-area-two .header-top-bar {
    position: relative;
    background-color: #fafafa;
    z-index: 1;
    padding: 10px 0;
}

.header-area-two .header-top-bar:before,
.header-area-two .header-top-bar:after {
    position: absolute;
    top: 0;
    content: "";
    height: 100%;
}

.header-area-two .header-top-bar:before {
    left: 0;
    width: 80%;
    background-color: #fc7921;
    clip-path: polygon(0 0, 99% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.header-area-two .header-top-bar:after {
    right: 0;
    width: 22%;
    background-color: #02466b;
    z-index: -2;
}

.header-area-two .header-top-bar .top-left span {
    color: #02466b;
    margin-right: 25px;
}

.header-area-two .header-top-bar .top-right .nice-select:after,
.header-area-two .header-top-bar .top-right .nice-select {
    color: #fff;
}

.header-area-two .header-top-bar .top-right .nice-select .list {
    color: #02466b;
}

.header-area-two .header-top-bar .top-right ul.social-link li {
    margin-left: 15px;
}

.header-area-two .header-top-bar .top-right ul.social-link li a {
    color: var(--white);
}

.header-area-two .header-top-bar .top-right ul.social-link li a:hover {
    color: #fc7921;
}

.header-area-one .header-navigation.breakpoint-on .header-right-nav {
    display: none;
}

.header-area-one .header-navigation.breakpoint-on .nav-menu {
    text-align: left;
}

/* Header Area One */
.header-area-one .primary-menu {
    position: relative;
}

.header-area-one .primary-menu:before,
.header-area-one .primary-menu:after {
    position: absolute;
    top: 0;
    content: "";
    width: 300px;
    height: 100%;
    background-color: #fc7921;
    z-index: -1;
}

.header-area-one .primary-menu:after {
    right: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.header-area-one .primary-menu:before {
    left: 0;
    clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}

.header-area-one .site-branding {
    max-width: 200px;
}

.header-area-one .header-navigation .nav-menu {
    text-align: center;
}

.header-area-one .header-navigation .header-right-nav ul.social-link li {
    margin-left: 10px;
}

.header-area-one .header-navigation .header-right-nav ul.social-link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #02466b;
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s;
}

.header-area-one
    .header-navigation
    .header-right-nav
    ul.social-link
    li
    a:hover {
    background-color: var(--white);
    color: #fc7921;
}

/* Header Area Two */
.header-area-two .header-navigation .header-right-nav .user-info a {
    margin-left: 20px;
    color: #02466b;
    font-weight: 500;
}

.header-area-two .header-navigation .header-right-nav .user-info a:hover {
    color: #fc7921;
}

.header-area-two .header-navigation .header-right-nav .user-info a i {
    display: none;
}

.header-area-two .header-navigation .navbar-toggler {
    margin-left: 30px;
}

.header-area-two .header-navigation .navbar-toggler span {
    background-color: #02466b;
}

.header-navigation.breakpoint-on
    .main-menu
    ul
    > li.menu-item-has-children
    > a:after {
    display: none;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a {
    text-align: left;
}

/*---=======================
   	Start Hero  css 
===========================---*/
.hero-slider-one:hover .slick-arrow {
    visibility: visible;
    opacity: 1;
}

.hero-slider-one:hover .slick-arrow.prev {
    left: 20px;
}

.hero-slider-one:hover .slick-arrow.next {
    right: 20px;
}

.hero-slider-one .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #02466b;
    background-color: #fc7921;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.hero-slider-one .slick-arrow.prev {
    left: 0;
}

.hero-slider-one .slick-arrow.next {
    right: 0;
}

.single-hero-slider {
    position: relative;
    z-index: 1;
    padding: 240px 0 250px;
}

.single-hero-slider:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.single-hero-slider .hero-content h1 {
    color: var(--white);
    font-size: 64px;
    line-height: 70px;
    margin-bottom: 30px;
}

.single-hero-slider .hero-content p {
    color: var(--white);
    padding: 0 25%;
    margin-bottom: 20px;
}

.single-hero-slider .hero-search-wrapper {
    padding: 25px 30px 5px;
    background: rgba(0, 0, 0, 0.46);
}

.hero-search-wrapper .form_control {
    margin-bottom: 20px;
    color: var(--body-color);
}

.hero-search-wrapper .form_control::placeholder {
    color: var(--body-color);
}

.hero-search-wrapper .nice-select {
    margin-bottom: 20px;
    height: 50px;
    line-height: 50px;
    border-radius: 0px;
    color: var(--body-color);
}

.hero-search-wrapper .search-btn {
    width: 100%;
    height: 50px;
    text-align: center;
    background-color: #fc7921;
    font-size: 18px;
    font-weight: 500;
}

.hero-wrapper-two {
    position: relative;
    z-index: 1;
    padding: 200px 0;
}

.hero-wrapper-two:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.2;
    z-index: -1;
}

.hero-wrapper-two .hero-content h1 {
    margin-bottom: 20px;
    color: #fff;
    /* -webkit-text-stroke: 1px #000; */
    font-size: 50px;
    font-weight: bold;
}

.hero-wrapper-two .hero-content p {
    /* padding-right: 25%; */
    margin-bottom: 55px;
    color: #fff;
    /* -webkit-text-stroke: 0.6px #000; */
    font-size: 22px;
    line-height: 47px;
    font-weight: 500;
}

.hero-wrapper-two .hero-search-wrapper {
    padding: 70px 45px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-wrapper-two .hero-search-wrapper h3 {
    color: #02466b;
    margin-bottom: 40px;
}

.hero-wrapper-two .hero-search-wrapper .main-btn {
    width: 100%;
    text-align: center;
    background-color: #fc7921;
}

.hero-wrapper-two .hero-search-wrapper .main-btn:hover:before {
    background-color: var(--white);
}

.hero-wrapper-two .hero-search-wrapper .main-btn:hover:after {
    background-color: #fc7921;
}

.hero-wrapper-two .hero-search-wrapper .main-btn:after {
    background-color: var(--white);
}

.hero-wrapper-two .hero-content .main-btn:hover:before {
    background-color: var(--white);
}

.hero-wrapper-two .hero-content .main-btn:hover:after {
    background-color: #fc7921;
}

.hero-wrapper-two .hero-content .main-btn:hover {
    color: #fc7921;
}

.hero-wrapper-two .hero-content .main-btn:after {
    background-color: var(--white);
}

/* Breadcrumbs css  */
.breadcrumbs-area {
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

.breadcrumbs-area:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(2 2 2 / 52%);
    z-index: -1;
}

.breadcrumbs-area .page-title h1 {
    font-size: 44px;
    line-height: 70px;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumbs-area .page-title ul.breadcrumbs-link li:after {
    display: inline-block;
    content: "/";
    margin-left: 10px;
    margin-right: 8px;
    color: var(--white);
}

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

.breadcrumbs-area .page-title ul.breadcrumbs-link li.active {
    color: #fc7921;
}

.breadcrumbs-area .page-title ul.breadcrumbs-link li a {
    color: var(--white);
}

/*---========================
   	Start About  css 
==========================---*/
.about-img-box-one {
    position: relative;
}

.about-content-box-one p {
    margin-bottom: 5px;
}

.about-content-box-one .block-quote {
    padding-left: 20px;
    position: relative;
    margin-bottom: 60px;
}

.about-content-box-one .block-quote:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    content: "";
    background-color: #fc7921;
}

.about-content-box-one .block-quote:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 20px;
    content: "";
    background-color: var(--secondary-color);
}

.about-content-box-one .block-quote h5 {
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    font-weight: 400;
}

.about-content-box-two p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-content-box-two ul.list li {
    padding-left: 35px;
    position: relative;
    z-index: 1;
    line-height: 13px;
    margin-bottom: 20px;
}

.about-content-box-two ul.list li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #fc7921;
    vertical-align: middle;
    margin-right: 15px;
}

.about-content-box-two ul.list li:after {
    position: absolute;
    bottom: 3px;
    left: 4px;
    content: "";
    width: 6.5px;
    height: 6.5px;
    background-color: #02466b;
}

/*---========================
   	Start work-process  css 
==========================---*/
.process-column:last-child .process-item-one:after {
    display: none;
}

.process-item-one {
    position: relative;
    margin-top: 30px;
}

.process-item-one:after {
    position: absolute;
    right: -90%;
    top: 40%;
    content: "";
    transform: translateY(-50%);
    width: 80%;
    height: 100%;
    background: url(../images/line-1.png) no-repeat center;
    background-size: contain;
}

.process-item-one .count-box {
    position: relative;
    background-color: #0c1239;
    min-height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-item-one .count-box .icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fc7921;
    border: 3px solid var(--white);
}

.process-item-one .count-box .icon i {
    font-size: 24px;
    line-height: 1;
    color: #02466b;
}

.process-item-one .count-box .process-count {
    padding-top: 20px;
    font-size: 60px;
    color: #6e7287;
    font-weight: 700;
}

.process-item-one .content h4 {
    font-weight: 500;
}

.process-item-two {
    position: relative;
}

.process-item-two .count-box .process-count {
    font-size: 100px;
    -webkit-text-stroke: 1px #c4c4c4;
    -webkit-text-fill-color: #fff;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 20px;
}

.process-item-two .count-box .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fc7921;
    margin: auto;
    margin-bottom: 20px;
}

.process-item-two .count-box .icon i {
    font-size: 20px;
    color: #02466b;
}

.process-item-two .content {
    padding: 0 15px;
}

.process-item-two .content h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.process-column .process-item-two {
    position: relative;
}

.process-column .process-item-two:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--bc);
    top: 62%;
    transform: translateY(-62%);
    right: 0;
    z-index: -1;
}

/*---========================
   	Start Features  css 
==========================---*/
.features-item-one {
    border: 1px solid var(--bc);
    padding: 50px 60px 43px;
    transition: all 0.3s;
}

.features-item-one .icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e7e7ed;
    margin-bottom: 25px;
    transition: all 0.4s;
}

.features-item-one .icon i {
    font-size: 34px;
    line-height: 1;
    color: #02466b;
}

.features-item-one:hover {
    box-shadow: 0px 4px 18px 10px rgba(0, 0, 0, 0.02);
}

.features-item-one:hover .icon {
    background-color: #fc7921;
    border-radius: 30px 0px 30px 30px;
}

.features-item-one .content h4 {
    margin-bottom: 20px;
}

.features-item-two {
    background-color: transparent;
    padding: 50px;
    transition: all 0.3s;
}

.features-item-two.active-item,
.features-item-two:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.features-item-two.active-item .icon,
.features-item-two:hover .icon {
    background-color: #fc7921;
    color: #02466b;
    transform: none;
}

.features-item-two.active-item .icon i,
.features-item-two:hover .icon i {
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.features-item-two.active-item .content .btn-link,
.features-item-two:hover .content .btn-link {
    color: #fc7921;
}

.features-item-two .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px 0px 30px 30px;
    transform: matrix(1, 0, 0, -1, 0, 0);
    margin: auto;
    background-color: #211641;
    font-size: 36px;
    color: #fc7921;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.features-item-two .icon i {
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.features-item-two .content h4 {
    margin-bottom: 15px;
}

.features-item-two .content h4,
.features-item-two .content p {
    color: var(--white);
}

.features-item-two .content p {
    margin-bottom: 30px;
}

.features-item-two .content .btn-link {
    color: var(--white);
    font-size: 22px;
}

/*---========================
   	Start Counter  css 
==========================---*/
.counter-column:nth-child(odd) .counter-item-one .icon {
    border-radius: 30px 0px 30px 30px;
}

.counter-column:nth-child(even) .counter-item-one .icon {
    border-radius: 30px 30px 30px 0px;
}

.counter-item-one .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background: #fc7921;
    margin: auto;
    margin-bottom: 23px;
}

.counter-item-one .icon i {
    line-height: 1;
    color: #02466b;
    font-size: 30px;
}

.counter-item-one .content h2 {
    color: #fc7921;
    font-weight: 500;
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 15px;
}

.counter-item-one .content h5 {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
}

.bg-with-overlay.bg-with-overlay-white:after {
    background-color: #02466b;
}

.counter-item-two .icon {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px 0px 0px 0px;
    font-size: 42px;
    color: #fff;
    background-color: #fc7921;
    margin: auto;
    margin-bottom: 30px;
}

.counter-item-two .icon:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #dedede;
}

.counter-item-two .content h2 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff !important;
}

.counter-item-two .content h5 {
    color: #fff !important;
}

/*---========================
   	Start Equipments Pricing  css 
==========================---*/
ul.rating li {
    display: inline-block;
}

ul.rating li i {
    color: #fc7921;
}

ul.rating li span {
    color: #02466b;
}

.pricing-nav-filter .nav-tabs {
    justify-content: center;
    border-bottom: none;
    gap: 10px;
}

.pricing-nav-filter .nav-link {
    border: 1px solid var(--bc);
    border-radius: 0px;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 27px;
    font-weight: 500;
    padding: 8px 20px;
}

.pricing-nav-filter .nav-link.active {
    border-color: var(--bc);
}

.pricing-nav-filter .nav-link.active,
.pricing-nav-filter .nav-link:hover {
    background-color: #fc7921;
    color: #02466b;
    border-color: transparent;
}

.pricing-item .pricing-info .price-info {
    position: relative;
    padding: 22px 100px 16px 25px;
}

.pricing-item .pricing-info .price-info .price-tag {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
}

.pricing-item .pricing-info .pricing-body .price-option span.span-btn {
    font-weight: 500;
    font-size: 12px;
    line-height: 27px;
    color: #0c1239;
}

.pricing-item .pricing-info .pricing-body ul.info-list li:before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #02466b;
    margin-right: 15px;
}

.pricing-item .pricing-info .pricing-body span.delivary {
    font-size: 14px;
    font-weight: 500;
    line-height: 27px;
}

.pricing-item-one .pricing-info {
    background-color: var(--light-bg);
}

.pricing-item-one .pricing-info .price-info {
    border-bottom: 1px solid var(--bc);
}

.pricing-item-one .pricing-info .price-info h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

.pricing-item-one .pricing-info .price-info span {
    font-size: 14px;
}

.pricing-item-one .pricing-info .price-info .price-tag {
    background-color: #fc7921;
}

.pricing-item-one .pricing-info .pricing-body {
    padding: 34px 20px 29px;
}

.pricing-item-one .pricing-info .pricing-body h5.title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 22px;
}

.pricing-item-one .pricing-info .pricing-body .price-option span.span-btn {
    background-color: #e7e7ed;
    padding: 4px 20px;
    margin-bottom: 15px;
}

.pricing-item-one .pricing-info .pricing-body span.delivary {
    color: #02466b;
}

.pricing-item-one .pricing-info .pricing-body ul.info-list {
    margin-top: 25px;
    text-align: left;
    padding-left: 15%;
}

.pricing-item-one
    .pricing-info
    .pricing-body
    .price-option
    span.span-btn.active-btn {
    background-color: #fc7921;
    color: #02466b;
}

.pricing-item-one .pricing-info .pricing-body,
.pricing-item-one .pricing-info .pricing-bottom {
    text-align: center;
}

.pricing-item-one .pricing-info .pricing-bottom {
    padding: 34px 20px 40px;
    border-top: 1px solid var(--bc);
}

.pricing-item-one .pricing-info .pricing-bottom .rating {
    margin-bottom: 31px;
}

/* pricing two */
.pricing-item-two .pricing-info {
    background-color: #fafafa;
}

.pricing-item-two .pricing-info .price-info {
    background-color: #0c1239;
}

.pricing-item-two .pricing-info .price-info h5.title {
    color: var(--white);
    margin-bottom: 5px;
}

.pricing-item-two .pricing-info .price-info span {
    color: var(--white);
}

.pricing-item-two .pricing-info .price-info .price-tag {
    background-color: #211641;
}

.pricing-item-two .pricing-info .price-info .price-tag h4 {
    color: var(--white);
}

.pricing-item-two .pricing-info .pricing-body .price-option {
    display: flex;
    justify-content: center;
}

.pricing-item-two .pricing-info .pricing-body .price-option span.span-btn {
    padding: 4px 31.5px;
    margin-bottom: 15px;
    background-color: #fc7921;
}

.pricing-item-two
    .pricing-info
    .pricing-body
    .price-option
    span.span-btn.active-btn {
    background-color: #ee9308;
}

.pricing-item-two .pricing-info .pricing-body .info-list li {
    padding: 10px 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-item-two .pricing-info .pricing-body span.delivary {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    color: #02466b;
}

.pricing-item-two .pricing-info .pricing-bottom {
    background-color: #0c1239;
    text-align: center;
    padding: 35px 40px 40px;
}

.pricing-item-two .pricing-info .pricing-bottom ul.rating {
    margin-bottom: 32px;
}

.pricing-item-two .pricing-info .pricing-bottom ul.rating li span {
    color: var(--white);
}

.pricing-item-two .pricing-info .main-btn-primary::before {
    background-color: #fff;
}

.pricing-item-two .pricing-info .main-btn-primary::after {
    background-color: #fff;
}

.pricing-item-two .pricing-info .main-btn-primary:hover {
    color: #02466b;
}

.pricing-item-two .pricing-info .main-btn-primary:hover::after {
    background-color: #fc7921;
}

/* Pricing list section css */
.equipments-search-filter {
    margin-bottom: 105px;
}

.equipments-search-filter .search-filter-form {
    background-color: #02466b;
    padding: 25px 30px;
}

.equipments-search-filter .search-filter-form .form_control {
    height: 50px;
}

.equipments-search-filter .search-filter-form .nice-select {
    height: 50px;
    line-height: 50px;
    border-radius: 0px;
}

.equipments-search-filter .search-filter-form .search-btn {
    width: 100%;
    text-align: center;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 500;
    background-color: #fc7921;
}

.equipments-search-filter .reserved-filter {
    background-color: #02466b;
    padding: 15px 30px;
    max-width: 320px;
    width: 100%;
    float: right;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

.equipments-search-filter .reserved-filter .single-method {
    margin-right: 20px;
}

.equipments-search-filter .reserved-filter .single-method:last-child {
    margin-right: 0px;
}

.equipments-search-filter .reserved-filter .single-method input {
    display: none;
}

.equipments-search-filter .reserved-filter .single-method label {
    font-size: 14px;
    line-height: 15px;
    cursor: pointer;
    color: var(--white);
    margin-bottom: 0px;
}

.equipments-search-filter .reserved-filter .single-method label:before {
    display: inline-block;
    width: 10px;
    height: 10px;
    content: "";
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-right: 10px;
}

.equipments-search-filter
    .reserved-filter
    .single-method
    input[type="radio"]:checked
    + label:before {
    background-color: var(--white);
}

.equipments-show-search .show-text p {
    color: #02466b;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

.equipments-show-search .show-dropdown .nice-select {
    height: 50px;
    line-height: 50px;
    border-radius: 0px;
    outline: none;
    color: #02466b;
    font-weight: 500;
    margin-bottom: 10px;
}

.pricing-item-three {
    display: flex;
    align-items: stretch;
    background-color: #fafafa;
}

.pricing-item-three .pricing-img {
    position: relative;
    overflow: hidden;
    max-width: 370px;
    width: 100%;
}

.pricing-item-three .pricing-img a {
    width: 100%;
    height: 100%;
}

.pricing-item-three .pricing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-item-three .pricing-img span.discount {
    background-color: #fc7921;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #02466b;
    position: absolute;
    top: 20px;
    left: 20px;
}

.pricing-item-three .pricing-info {
    width: 100%;
    border: 1px solid #ccc;
    border-left: 0;
    padding-bottom: 30px;
}

.pricing-item-three .pricing-info .price-info {
    border-bottom: 1px solid var(--bc);
}

.pricing-item-three .pricing-info .price-info h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

.pricing-item-three .pricing-info .price-info span {
    font-size: 14px;
}

.pricing-item-three .pricing-info .price-info .price-tag {
    background-color: #fc7921;
}

.pricing-item-three .pricing-info .pricing-body {
    padding: 15px 30px;
}

.pricing-item-three .pricing-info .pricing-body h3.title {
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 15px;
}

.pricing-item-three .pricing-info .pricing-body .price-option span.span-btn {
    background-color: #e7e7ed;
    padding: 4px 20px;
    margin-bottom: 15px;
    margin-right: 5px;
}

.pricing-item-three .pricing-info .pricing-body span.delivary {
    color: #02466b;
    margin-bottom: 15px;
}

.pricing-item-three .pricing-info .pricing-bottom {
    padding: 0 30px;
}

/* sidebar css */
.sidebar-widget-area .widget.location-widget ul.list li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

.sidebar-widget-area .widget.location-widget .btn-link {
    text-decoration: underline;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fc7921;
}

.sidebar-widget-area .widget.price-range-widget .ui-widget.ui-widget-content {
    border: none;
    background: #dfdada;
    height: 8px;
    border-radius: 100px;
}

.sidebar-widget-area .widget.price-range-widget .ui-slider .ui-slider-range {
    background-color: #fc7921;
    border-radius: 0px;
}

.sidebar-widget-area
    .widget.price-range-widget
    .ui-widget-content
    .ui-state-default {
    background: #fc7921;
    border: none;
    width: 15px;
    height: 15px;
    outline: none;
    border-radius: 50%;
}

.sidebar-widget-area .widget.price-range-widget .price-number {
    justify-content: space-between;
}

.sidebar-widget-area .widget.price-range-widget .price-number span {
    font-weight: 500;
    font-size: 14px;
}

.sidebar-widget-area .widget.price-range-widget .price-number span.text {
    width: 60%;
}

.sidebar-widget-area .widget.price-range-widget .price-number span.amount {
    width: 80%;
}

.sidebar-widget-area
    .widget.price-range-widget
    .price-number
    span.amount
    input {
    width: 100%;
    border: none;
    background-color: transparent;
    font-weight: 500;
    font-size: 14px;
    color: var(--body-color);
}

.sidebar-widget-area .widget.categories-widget-two a {
    background-color: #dfdada;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 12px;
    line-height: 26px;
    color: #02466b;
    margin-right: 5px;
    margin-bottom: 10px;
}

.sidebar-widget-area .widget.categories-widget-two a:hover {
    background-color: #fc7921;
}

/* Pricing details */
.equipment-slider-warp {
    width: 75%;
}

.equipment-gallery-arrow {
    width: 25%;
}

.equipment-gallery-arrow ul.slick-dots li {
    display: block;
    margin-bottom: 35px;
}

.equipment-gallery-arrow ul.slick-dots li:last-child {
    margin-bottom: 0px;
}

.equipment-gallery-arrow ul.slick-dots li img {
    width: 100%;
}

.equipment-slider-warp {
    margin-right: 30px;
}

.equipment-gallery-slider .single-gallery-itam a {
    display: block;
}

.equipment-gallery-slider .single-gallery-itam img {
    width: 100%;
}

.equipment-gallery-slider .slick-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    background-color: #fc7921;
    color: #02466b;
}

.equipment-gallery-slider .slick-arrow.prev {
    left: 0;
}

.equipment-gallery-slider .slick-arrow.next {
    right: 0;
}

.description-wrapper h3.title {
    margin-bottom: 20px;
}

.description-wrapper .voucher-btn {
    padding: 12px 35px;
    background-color: #fff0d9;
    font-size: 16px;
    font-weight: 500;
    color: #fc7921;
    margin-bottom: 55px;
}

.description-wrapper .voucher-btn i {
    margin-right: 10px;
}

.description-wrapper .content-box {
    margin-bottom: 35px;
}

.description-wrapper .content-box h4.title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.description-wrapper .content-box h4.title:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 3px;
    background-color: #fc7921;
}

.description-wrapper .content-box p {
    margin-bottom: 20px;
    text-align: justify;
}

.description-wrapper .content-box ul.list li {
    position: relative;
    padding-left: 25px;
    line-height: 15px;
    margin-bottom: 17px;
}

.description-wrapper .content-box ul.list li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #fc7921;
}

.description-wrapper .content-box ul.list li:after {
    position: absolute;
    top: 7px;
    left: 7px;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #02466b;
}

.description-wrapper .content-box .content-table .table td {
    padding: 10px 30px;
    border: 1px solid var(--bc);
}

.equipement-sidebar-info .booking-form .price-info {
    position: relative;
    padding: 10px 100px 10px 30px;
    background-color: #02466b;
}

.equipement-sidebar-info .booking-form .price-info .price-tag {
    background-color: #fc7921;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
}

.equipement-sidebar-info {
    background-color: #e9e9e9;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.equipement-sidebar-info .booking-form .price-info span,
.equipement-sidebar-info .booking-form .price-info h5 {
    color: var(--white);
}

.equipement-sidebar-info .booking-form .price-info h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

.equipement-sidebar-info .booking-form .price-info span {
    font-size: 14px;
}

.equipement-sidebar-info .booking-form .pricing-body {
    padding: 40px 30px;
}

.equipement-sidebar-info
    .booking-form
    .pricing-body
    .price-option
    span.span-btn {
    background-color: #e7e7ed;
    font-weight: 500;
    font-size: 12px;
    line-height: 27px;
    color: #0c1239;
    padding: 4px 15px;
    margin-bottom: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

.equipement-sidebar-info .booking-form .pricing-body .form_group {
    clear: both;
    padding: 30px 0;
    border-bottom: 1px solid var(--bc);
}

.equipement-sidebar-info .booking-form .pricing-body .form_group .form_control {
    padding: 0;
    height: auto;
    background-color: transparent;
}

.equipement-sidebar-info .booking-form .pricing-body .nice-select {
    background-color: transparent;
    padding: 0;
    border: none;
    height: auto;
    line-height: 1;
    float: none;
}

.equipement-sidebar-info .booking-form .pricing-body .nice-select:after {
    right: 0;
}

.equipement-sidebar-info .booking-form .pricing-body p.available-text {
    color: #019657;
}

.equipement-sidebar-info .booking-form .pricing-body p.available-text i {
    margin-right: 10px;
}

.price-option-table ul .single-price-option .single-method input,
.equipement-sidebar-info
    .booking-form
    .pricing-body
    .reserved-filter
    .single-method
    input {
    display: none;
}

.equipement-sidebar-info
    .booking-form
    .pricing-body
    .reserved-filter
    .single-method
    input:checked
    + label::before {
    border-color: transparent;
    background-color: #fc7921;
}

.equipement-sidebar-info
    .booking-form
    .pricing-body
    .reserved-filter
    .single-method
    label {
    margin-bottom: 0px;
    line-height: 15px;
    line-height: 16px;
    font-size: 14px;
}

.equipement-sidebar-info
    .booking-form
    .pricing-body
    .reserved-filter
    .single-method
    label:before {
    display: inline-block;
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1.5px solid var(--body-color);
    margin-right: 10px;
}

.equipement-sidebar-info .booking-form .pricing-body .extra-option h4 {
    margin-bottom: 20px;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .single-method {
    justify-content: space-between;
    margin-bottom: 15px;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .single-method
    label {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0c1239;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .single-method
    label
    span.title {
    line-height: 1;
    position: relative;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .single-method
    label
    span.title:before {
    display: inline-block;
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #02466b;
    margin-right: 10px;
    border-radius: 2px;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .single-method
    label
    span.title:after {
    position: absolute;
    top: 2px;
    left: 2px;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    span.price,
.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .single-method
    label
    span.price {
    line-height: 25px;
    font-weight: 500;
    color: #02466b;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    span.title {
    color: #02466b;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .single-method
    input:checked
    + label
    span.title:after {
    visibility: visible;
    opacity: 1;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    .quantity-input {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    .quantity-down,
.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    #quantity,
.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    .quantity-up {
    width: 30px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--bc);
    cursor: pointer;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    .quantity-down {
    border-right: none;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    .quantity-up {
    border-left: none;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    .quantity-total-price
    .quantity-up {
    margin-right: 20px;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    span.total {
    display: block;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    span.total
    span.total-price {
    float: right;
}

.equipement-sidebar-info
    .booking-form
    .price-option-table
    ul
    .single-price-option
    span.total {
    font-weight: 500;
    color: #02466b;
}

/*---========================
   	Start Testimonial  css 
==========================---*/
.testimonial-item-one {
    padding: 50px 40px 45px;
    background-color: var(--white);
}

.testimonial-item-one .testimonial-content .quote {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e7e7ed;
    margin-bottom: 33px;
}

.testimonial-item-one .testimonial-content .quote i {
    font-size: 25px;
    color: #02466b;
}

.testimonial-item-one .testimonial-content p {
    margin-bottom: 32px;
}

.testimonial-item-one .testimonial-content h5 {
    font-size: 18px;
    font-weight: 500;
}

.testimonial-item-one .testimonial-content h5 span {
    color: var(--body-color);
}

.testimonial-item-two .testimonial-content {
    position: relative;
    background-color: #fc7921;
    padding: 30px 35px 33px;
    margin-bottom: 30px;
}

.testimonial-item-two .testimonial-content:after {
    position: absolute;
    bottom: -25px;
    left: 30px;
    content: "";
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #fc7921;
}

.testimonial-item-two .testimonial-content .quote i {
    color: #e0e0e0;
    font-size: 45px;
    line-height: 1;
}

.testimonial-item-two .testimonial-content p {
    color: #fff;
    font-style: italic;
}

.testimonial-item-two .testimonial-thumb-title {
    padding-left: 35px;
}

.testimonial-item-two .testimonial-thumb-title .thumb {
    min-width: 65px;
    max-width: 65px;
    height: 65px;
    margin-right: 20px;
}

.testimonial-item-two .testimonial-thumb-title .thumb img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-item-two .testimonial-thumb-title .title h4 {
    font-size: 18px;
}

.testimonial-thumb-title .title span {
    font-size: 15px;
    color: #ddd !important;
}

.testimonial-item-two .testimonial-thumb-title .title h4,
.testimonial-item-two .testimonial-thumb-title .title span {
    color: var(--white);
}

.testimonial-2 .main-btn-primary::before {
    background-color: #fff;
}

.testimonial-2 .main-btn-primary::after {
    background-color: #fff;
}

.testimonial-2 .main-btn-primary:hover {
    color: #02466b;
}

.testimonial-2 .main-btn-primary:hover::after {
    background-color: #fc7921;
}

/*---========================
   	Start CTA  css 
==========================---*/
.bg-with-overlay {
    position: relative;
    z-index: 1;
}

.bg-with-overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(8, 23, 117, 0.8);
}

.content-white h2,
.content-white h4 {
    color: #fff;
}

.cta-content-box-one h2 {
    margin-bottom: 25px;
}

.cta-content-box-one h4 {
    font-weight: 500;
    margin-bottom: 47px;
}

/*---========================
   	Start Blog  css 
==========================---*/
.blog-arrows-one {
    display: flex;
    justify-content: flex-end;
}

.blog-arrows-one .slick-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-arrows-one .slick-arrow:hover {
    background-color: #fc7921;
    color: var(--white);
}

.blog-arrows-one .slick-arrow.prev {
    margin-right: 15px;
}

.post-meta ul li {
    display: inline-block;
}

.post-meta ul li span i {
    margin-right: 10px;
    color: #fc7921;
}

.blog-post-item-one:hover .entry-content:after {
    background-color: #fc7921;
}

.blog-post-item-one .post-thumbnail {
    position: relative;
}

.blog-post-item-one .post-thumbnail .cat-btn {
    position: absolute;
    bottom: -20px;
    left: 40px;
    z-index: 1;
    background-color: #fc7921;
    padding: 10px 25px;
    color: #02466b;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 20px;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.blog-post-item-one .entry-content {
    position: relative;
    padding: 45px 30px 25px;
    background-color: var(--light-bg);
}

.blog-post-item-one .entry-content:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 5px;
    background-color: rgba(119, 119, 119, 0.2);
    transition: all 0.3s;
}

.blog-post-item-one .entry-content .post-meta ul li {
    margin-bottom: 13px;
}

.blog-post-item-one .entry-content .post-meta ul li span {
    margin-right: 20px;
}

.blog-post-item-one .entry-content .post-meta ul li span a:hover {
    color: #fc7921;
}

.blog-post-item-one .entry-content .post-meta ul li span i {
    color: #fc7921;
}

.blog-post-item-one .post-thumbnail img {
    width: 100%;
}

.blog-post-item-one .entry-content h3.title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
}

.blog-post-item-one .entry-content h3.title:hover {
    color: #fc7921;
}

.blog-post-item-one .entry-content p {
    margin-bottom: 15px;
}

.blog-post-item-one .entry-content .btn-link {
    color: #0c1239;
    font-weight: 500;
}

.blog-post-item-one .entry-content .btn-link:hover {
    text-decoration: none;
}

.blog-post-item-two .post-thumbnail {
    position: relative;
}

.blog-post-item-two .post-thumbnail img {
    width: 100%;
}

.blog-post-item-two .post-thumbnail .date {
    position: absolute;
    bottom: -30px;
    left: 30px;
    width: 80px;
    height: 80px;
    border: 4px solid #ffffff;
    border-bottom: none;
    border-radius: 30px 0px 0px 0px;
    background-color: #fc7921;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blog-post-item-two .post-thumbnail .date:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    background-color: #02466b;
    bottom: 0;
    left: 0;
}

.blog-post-item-two .post-thumbnail .date {
    color: #02466b;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.blog-post-item-two .post-thumbnail .date span {
    font-size: 14px;
    font-weight: 500;
}

.blog-post-item-two .entry-content {
    padding: 55px 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
}

.blog-post-item-two .entry-content h3.title {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}

.blog-post-item-two .entry-content h3.title:hover {
    color: #fc7921;
}

.blog-post-item-two .entry-content .post-meta {
    margin-bottom: 10px;
}

.blog-post-item-two .entry-content .post-meta ul li:last-child {
    margin-left: 25px;
}

.blog-post-item-two .entry-content .post-meta ul li span {
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-post-item-two .entry-content .post-meta ul li span i {
    color: #fc7921;
}

.blog-post-item-two .entry-content .main-btn {
    padding: 7px 22px;
    font-size: 14px;
}

/* Blog Details Css */
.blog-details-wrapper .blog-post-item .post-thumbnail {
    margin-bottom: 25px;
}

.blog-details-wrapper .blog-post-item .post-thumbnail img {
    width: 100%;
}

.blog-details-wrapper .blog-post-item .entry-content .post-meta ul li {
    margin-right: 20px;
}

.blog-details-wrapper .blog-post-item .entry-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.blog-details-wrapper .blog-post-item .entry-content p {
    margin-bottom: 20px;
}

.blog-share ul li {
    margin-right: 15px;
}

.blog-share ul li a {
    color: var(--white);
    padding: 7px 20px;
    border-radius: 30px;
}

.blog-share ul li a.facebook {
    background-color: #275baa;
}

.blog-share ul li a.twitter {
    background-color: #28c8f0;
}

.blog-share ul li a.linkedin {
    background-color: #0e76a8;
}

.blog-share ul li a i {
    margin-right: 10px;
}

/* Sidebar css */
.sidebar-widget-area .widget {
    padding: 25px 30px 30px;
    background-color: #f8f8f8;
}

.sidebar-widget-area .widget h4.widget-title {
    position: relative;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.sidebar-widget-area .widget h4.widget-title:after {
    position: absolute;
    bottom: 0;
    left: 0%;
    content: "";
    width: 50px;
    height: 3px;
    background-color: #fc7921;
}

.sidebar-widget-area .widget.search-widget .form_control {
    height: 60px;
}

.sidebar-widget-area .widget.search-widget .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    color: #02466b;
    background-color: #fc7921;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li {
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5e5e5;
    margin-bottom: 10px;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a {
    display: block;
    color: #3a416f;
    font-weight: 500;
    font-size: 18px;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a span {
    float: right;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a:hover {
    color: #fc7921;
}

.sidebar-widget-area .widget.widget-tag-cloud a {
    background-color: #dfdada;
    font-weight: 500;
    font-size: 12px;
    line-height: 26px;
    color: #02466b;
    padding: 4px 15px;
    margin-bottom: 10px;
    margin-right: 5px;
}

.sidebar-widget-area .widget.widget-tag-cloud a:hover {
    background-color: #fc7921;
}

.blog-details-section .comments .comment-box {
    overflow: hidden;
    background: var(--color-white);
    padding: 30px 30px 0;
    border: 1px solid var(--bc) !important;
}

.blog-details-section .comments .name {
    margin-top: -3px;
    margin-bottom: 2px;
}

.blog-details-section .comments p {
    margin-bottom: 0;
}

.blog-details-section .comments .comment-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog-details-section .comments .comment-list .comment .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.blog-details-section
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-author {
    -webkit-padding-end: 16px;
    padding-inline-end: 16px;
    max-width: 100px;
}

.blog-details-section
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-author
    .lazy-container {
    height: auto;
}

.blog-details-section
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-content
    p {
    margin-bottom: 10px;
}

.blog-details-section
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-content
    .btn-text {
    color: #fc7921;
    display: inline-block;
    line-height: 1;
}

.blog-details-section .comments .comment-list .comment .children {
    list-style-type: none;
    padding: 0;
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
}

.blog-details-section .comments .comment-list .comment .children .comment-body {
    -webkit-padding-start: 35px;
    padding-inline-start: 35px;
    margin-bottom: 25px;
}

.blog-details-section .comments .comment-reply .comment-notes {
    margin-bottom: 25px;
}

/*---========================
   	Start Sponsor  css 
==========================---*/
.sponsor-slider-one .slick-track {
    display: flex;
    align-items: center;
}

.sponsor-item-one {
    padding: 0 20px;
    text-align: center;
}

.sponsor-item img {
    margin: auto;
}

.sponsor-slider-two {
    margin-left: -15px;
    margin-right: -15px;
}

.sponsor-item-two {
    margin-left: 15px;
    margin-right: 15px;
}

.sponsor-item-two a {
    display: block;
    background-color: var(--light-gray);
    padding: 25px 50px;
}

.sponsor-item-two a:hover {
    background-color: #fc7921;
}

/*---========================
   	Start Newsletter  css 
==========================---*/
.newsletter-wrapper-one {
    position: relative;
    padding: 50px 30px;
    margin-bottom: -120px;
    z-index: 2;
    transform: skewX(-10deg);
}

.newsletter-wrapper-one::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 60px);
    margin-inline: auto;
    content: "";
    background-color: #fc7921;
    z-index: -2;
}

.newsletter-wrapper-one:after {
    position: absolute;
    top: -50px;
    left: 5px;
    content: "";
    width: 75px;
    height: 175px;
    z-index: -1;
    background: #d38307;
    clip-path: polygon(35% 31%, 34% 100%, 0% 100%);
}

.newsletter-wrapper-one .newsletter-content-box {
    transform: skewX(10deg);
    overflow: hidden;
}

.newsletter-wrapper-one .newsletter-form .form_control {
    padding: 0 40px;
    height: 70px;
    clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0% 100%);
}

.newsletter-wrapper-one .newsletter-form .newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0c1239;
    padding: 20px 40px;
    color: var(--white);
    clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
}

.newsletter-wrapper-two {
    position: relative;
    z-index: 1;
}

.newsletter-wrapper-two:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(251, 163, 28, 0.9);
    z-index: -1;
}

.newsletter-wrapper-two .newsletter-content-box .form_control {
    height: 70px;
}

.newsletter-wrapper-two .newsletter-content-box .newsletter-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 21px 24px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

/*---====================
   	Start Footer  css 
=====================---*/
.footer-area-one {
    position: relative;
    z-index: 1;
}

.footer-area-one:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 61%);
    z-index: -1;
}

.footer-area-one .footer-widget {
    padding-top: 214px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-area-one .footer-widget .widget h4.widget-title {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 20px;
}

.footer-area-one .footer-widget .widget p {
    color: var(--white);
}

.footer-area-one .footer-widget .widget.about-widget {
    margin-top: 6px;
}

.footer-area-one .footer-widget .widget.about-widget .brand-logo {
    margin-bottom: 35px;
}

.footer-area-one .footer-widget .widget.about-widget p {
    font-size: 17px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 25px;
}

.footer-area-one .footer-widget .widget.about-widget .social-box h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-area-one
    .footer-widget
    .widget.about-widget
    .social-box
    ul.social-link
    li {
    margin-right: 5px;
}

.footer-area-one
    .footer-widget
    .widget.about-widget
    .social-box
    ul.social-link
    li
    a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #24294c;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-area-one
    .footer-widget
    .widget.about-widget
    .social-box
    ul.social-link
    li
    a:hover {
    background-color: #fc7921;
    color: var(--white);
}

.footer-area-one .footer-widget .widget.footer-widget-nav {
    padding-left: 40%;
}

.footer-area-one .footer-widget .widget.footer-widget-nav ul.widget-nav li {
    margin-bottom: 10px;
}

.footer-area-one
    .footer-widget
    .widget.footer-widget-nav
    ul.widget-nav
    li:before {
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
    margin-right: 20px;
}

.footer-area-one
    .footer-widget
    .widget.footer-widget-nav
    ul.widget-nav
    li:last-child {
    margin-bottom: 0px;
}

.footer-area-one .footer-widget .widget.footer-widget-nav ul.widget-nav li a {
    color: var(--white);
}

.footer-area-one
    .footer-widget
    .widget.footer-widget-nav
    ul.widget-nav
    li
    a:hover {
    color: #fc7921;
}

.footer-area-one .footer-widget .widget.contact-info-widget {
    padding-left: 25px;
}

.footer-area-one
    .footer-widget
    .widget.contact-info-widget
    .contact-info-list
    li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-area-one
    .footer-widget
    .widget.contact-info-widget
    .contact-info-list
    li
    .icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    /* background-color: #fc7921; */
}

.footer-area-one
    .footer-widget
    .widget.contact-info-widget
    .contact-info-list
    li
    .icon
    i {
    color: #fff;
    font-size: 18px;
}

.footer-area-one
    .footer-widget
    .widget.contact-info-widget
    .contact-info-list
    li
    .info {
    margin-top: -8px;
}

.footer-area-one
    .footer-widget
    .widget.contact-info-widget
    .contact-info-list
    li
    .info
    p
    a:hover {
    color: #fc7921;
}

.footer-area-one .copyright-area {
    padding: 15px 0;
    background: #fc7921;
}

.footer-area-one .copyright-area .copyright-text p {
    color: var(--white);
}

.footer-area-two .footer-top {
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-area-two .footer-top .footer-logo {
    display: block;
    margin-bottom: 60px;
}

.footer-area-two .footer-top ul.social-link li span.title {
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
    margin-right: 10px;
}

.footer-area-two .footer-top ul.social-link li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #24294c;
    color: var(--white);
    font-size: 14px;
    transition: all 0.4s;
    margin-left: 5px;
    margin-right: 5px;
}

.footer-area-two .footer-top ul.social-link li a:hover {
    background-color: #fc7921;
    color: var(--white);
}

.footer-area-two .footer-widget {
    padding-top: 50px;
}

/*---====================
   	Start Categories  css 
=====================---*/
.categories-item-one {
    position: relative;
    background-color: #fafafa;
    padding: 50px 35px 40px;
    height: 325px;
    transition: all 0.3s;
}

.categories-item-one:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #02466b;
}

.categories-item-one:hover .icon i {
    color: #02466b;
    background-color: #fc7921;
    border-radius: 40px 40px 0px 40px;
}

.categories-item-one:hover .content p {
    display: none;
}

.categories-item-one:hover .content h5 {
    color: var(--white);
    margin-bottom: 30px;
}

.categories-item-one:hover .content .main-btn {
    display: inline-block;
}

.categories-item-one .icon {
    margin-bottom: 25px;
}

.categories-item-one .icon i {
    width: 90px;
    height: 80px;
    background-color: #fff0d9;
    border-radius: 40px 0px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 40px;
    color: #fc7921;
    transition: all 0.3s;
}

.categories-item-one .content h5 {
    margin-bottom: 20px;
}

.categories-item-one .content .main-btn {
    display: none;
}

/*---====================
   	Start Shop  css 
=====================---*/
.product-filter .form_group i {
    position: absolute;
    top: 17px;
    right: 20px;
}

.product-filter .form_control {
    border: 1px solid var(--bc);
    border-radius: 4px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.product-filter .nice-select {
    padding: 0 20px;
    border: 1px solid var(--bc);
    border-radius: 4px;
    margin-bottom: 20px;
    height: 50px;
    line-height: 50px;
}

.product-item-one .product-img img {
    width: 100%;
}

.product-item-one {
    border: 1px solid var(--bc);
}

.product-item-one .product-info {
    padding: 25px 30px 30px;
}

.product-item-one .product-info h3.title {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 5px;
}

.product-item-one .product-info .rating {
    margin-bottom: 20px;
}

.product-item-one .product-info .rating li {
    font-size: 14px;
}

.filter-products-list .single-method {
    margin-bottom: 15px;
}

.filter-products-list .single-method:last-child {
    margin-bottom: 0px;
}

.filter-products-list .single-method label {
    margin-bottom: 0;
    line-height: 15px;
}

.filter-products-list .single-method label span {
    margin-left: 10px;
}

.product-item-two:hover .product-img .product-overlay {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.product-item-two:hover
    .product-img
    .product-overlay
    .product-meta
    .wishlist-btn,
.product-item-two:hover .product-img .product-overlay .product-meta .cart-btn,
.product-item-two:hover .product-img .product-overlay .product-meta .img-popup {
    transform: translateY(0px);
}

.product-item-two .product-img {
    position: relative;
    overflow: hidden;
}

.product-item-two .product-img .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5%;
    background-color: rgba(12, 18, 57, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.product-item-two .product-img .product-overlay .product-meta {
    display: flex;
}

.product-item-two .product-img .product-overlay .product-meta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: #02466b;
    border-radius: 50%;
    background-color: #fc7921;
    margin-left: 7px;
    margin-right: 7px;
}

.product-item-two .product-img .product-overlay .product-meta .img-popup {
    transform: translateY(40px);
    transition: all 0.4s;
}

.product-item-two .product-img .product-overlay .product-meta .cart-btn {
    transform: translateY(50px);
    transition: all 0.5s;
}

.product-item-two .product-img .product-overlay .product-meta .wishlist-btn {
    transform: translateY(60px);
    transition: all 0.6s;
}

.product-item-two .product-info {
    padding-top: 26px;
}

.product-item-two .product-info h3.title {
    font-size: 20px;
    line-height: 30px;
}

.product-item-two .product-info span.price {
    font-weight: 600;
    color: #fc7921;
}

.product-item-two .product-info span.price span.pre-price {
    margin-left: 5px;
    text-decoration: line-through;
    font-weight: 400;
}

.products-gallery-wrap .products-thumb-slider .slick-arrow,
.products-gallery-wrap .products-big-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 14px;
    background-color: #fc7921;
    color: #02466b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.products-gallery-wrap .products-thumb-slider .slick-arrow:hover,
.products-gallery-wrap .products-big-slider .slick-arrow:hover {
    background-color: #02466b;
    color: #fc7921;
}

.products-gallery-wrap .products-thumb-slider .slick-arrow.prev,
.products-gallery-wrap .products-big-slider .slick-arrow.prev {
    left: 0;
}

.products-gallery-wrap .products-thumb-slider .slick-arrow.next,
.products-gallery-wrap .products-big-slider .slick-arrow.next {
    right: 0;
}

.products-gallery-wrap .products-big-slider a {
    display: block;
}

.products-gallery-wrap .products-big-slider a img {
    width: 100%;
}

.products-gallery-wrap .products-thumb-slider {
    margin-left: -10px;
    margin-right: -10px;
}

.products-gallery-wrap .products-thumb-slider .product-img {
    margin-left: 10px;
    margin-right: 10px;
}

.products-gallery-wrap .products-thumb-slider .product-img img {
    width: 100%;
}

.products-details-wrapper .product-info h2 {
    margin-bottom: 15px;
}

.products-details-wrapper .product-info ul.rating {
    margin-bottom: 5px;
}

.products-details-wrapper .product-info span.price {
    font-weight: 600;
    color: #fc7921;
}

.products-details-wrapper .product-info span.price span.pre-price {
    font-weight: 400;
    text-decoration: line-through;
}

.products-details-wrapper .product-info p {
    margin-bottom: 20px;
}

.products-details-wrapper .product-info .button .main-btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.products-details-wrapper .product-info ul.social-link li {
    margin-right: 10px;
}

.products-details-wrapper .product-info .product-tags a {
    color: #02466b;
    font-weight: 600;
    margin-left: 10px;
}

.products-details-wrapper .product-info .product-tags a:hover {
    color: #fc7921;
}

.description-wrapper .description-tabs .nav-link {
    position: relative;
    border-radius: 0px;
    border: none;
    margin-bottom: 0px;
    color: #02466b;
    padding: 0;
    margin-right: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}

.description-wrapper .description-tabs .nav-link:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fc7921;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.description-wrapper .description-tabs .nav-link.active,
.description-wrapper .description-tabs .nav-link:hover {
    color: #fc7921;
}

.description-wrapper .description-tabs .nav-link.active:after {
    visibility: visible;
    opacity: 1;
}

.shop-review-area h4.title {
    margin-bottom: 20px;
}

.shop-review-area .shop-review-user {
    margin-bottom: 30px;
}

.shop-review-area .shop-review-user .thumb {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    margin-right: 20px;
}

.shop-review-area .shop-review-user .thumb img {
    width: 100%;
    border-radius: 50%;
}

.shop-review-area .shop-review-user .content span.date {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #02466b;
}

.shop-review-area .shop-review-user .content .rating li {
    font-size: 14px;
    line-height: 20px;
}

.shop-review-area .form_group .form_control {
    height: 150px;
    border: 1px solid var(--bc);
    border-radius: 5px;
    margin-bottom: 20px;
}

.shop-review-area .form_group ul.rating li {
    margin-bottom: 10px;
}

.shop-review-area .form_group ul.rating li:after {
    display: inline-block;
    content: "|";
    margin-left: 10px;
    margin-right: 7px;
}

.shop-review-area .form_group ul.rating li:last-child:after {
    display: none;
}

.shop-review-area .form_group ul.rating li:hover span {
    color: #fc7921;
}

/*---====================
   	Start Team  css 
=====================---*/
.team-item-one:hover .team-img:after {
    width: 100%;
    clip-path: none;
    height: 100%;
}

.team-item-one:hover .team-img .team-social {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.team-item-one .team-img {
    position: relative;
    overflow: hidden;
}

.team-item-one .team-img img {
    width: 100%;
}

.team-item-one .team-img:after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80px;
    height: 80px;
    content: "";
    background-color: rgb(251 163 28 / 80%);
    clip-path: polygon(0 0, 100% 0, 0 95%);
    z-index: 1;
    transition: all 0.3s;
}

.team-item-one .team-img .team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: translateY(-20px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.team-item-one .team-img .team-social ul.social-link li {
    display: inline-block;
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.team-item-one .team-img .team-social ul.social-link li a {
    color: #02466b;
}

.team-item-one .team-info {
    padding-top: 23px;
}

.team-item-one .team-info h3.title {
    font-size: 22px;
    line-height: 30px;
}

.team-item-one .team-info h3.title:hover {
    color: #fc7921;
}

.team-item-one .team-info span.position {
    font-size: 14px;
}

/*---=======================
   Sart FAQ  css 
===========================---*/
.widget.faq-nav-widget {
    padding: 45px 20px 50px;
}

.widget.faq-nav-widget .nav-tabs {
    border-bottom: none;
}

.widget.faq-nav-widget .nav-tabs .nav-item {
    flex: 0 0 auto;
    width: 100%;
}

.widget.faq-nav-widget .nav-tabs .nav-link {
    display: block;
    border: none;
    background-color: transparent;
    font-weight: 500;
    font-size: 18px;
    color: #3a416f;
}

.widget.faq-nav-widget .nav-tabs .nav-link.active,
.widget.faq-nav-widget .nav-tabs .nav-link:hover {
    color: #fc7921;
}

.faq-wrapper-one .card {
    border-radius: 0px;
    border: none;
}

.faq-wrapper-one .card .card-header {
    background-color: #e9e9e9;
    color: #000;
    font-weight: 500;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-wrapper-one .card .card-header[aria-expanded="true"] {
    background-color: #fc7921;
    color: var(--white);
}

.faq-wrapper-one .card .card-header[aria-expanded]:after {
    display: inline-block;
    content: "\f107";
    font-weight: 600;
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    float: right;
    transition: all 0.3s;
    margin-left: 15px;
}

.faq-wrapper-one .card .card-header[aria-expanded="true"]:after {
    transform: rotate(-180deg);
}

.faq-wrapper-one .card .card-body {
    border: 1px solid #f9f9f9;
    border-top: none;
    padding: 15px 20px;
}

/*---====================
   	Start Contact  css 
=====================---*/
.information-list-item .information-item {
    display: flex;
    align-items: center;
    padding: 37px;
    border: 1px solid #e5e5e5;
}

.information-list-item .information-item .icon {
    transition: all 0.3s;
}

.information-list-item .information-item .info {
    margin-left: 20px;
}

.information-list-item .information-item .icon i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fc7921;
    color: #fc7921;
    transition: all 0.7s;
}

.information-list-item .information-item .info p {
    line-height: 26px;
    font-weight: 500;
    color: #3a416f;
}

.information-list-item .information-item .info p a:hover {
    color: #fc7921;
}

.contact-wrapper .section-title span.span {
    font-weight: 500;
    font-size: 18px;
    color: #fc7921;
}

.contact-wrapper .contact-form .form_control {
    height: 60px;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.contact-wrapper .contact-form .nice-select {
    height: 60px;
    line-height: 60px;
    border-radius: 0px;
    margin-bottom: 20px;
}

.contact-wrapper .contact-form textarea.form_control {
    height: 150px;
}

/*---====================
   	Start Shop  css 
=====================---*/
.cart-area-section .total-item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cart-area-section .total-item-info li {
    color: #02466b;
}

.cart-area-section .cart-table {
    width: 100%;
}

.cart-area-section .cart-table thead {
    background-color: #eaeaea;
}

.cart-area-section .cart-table thead tr th {
    padding: 10px 20px;
    color: #02466b;
}

.cart-area-section .cart-table thead tr th.remove {
    text-align: center;
}

.cart-area-section .cart-table tbody tr td {
    padding: 15px 0;
    border-bottom: 1px solid var(--bc);
}

.cart-area-section .cart-table tbody .title h3.prod-title {
    font-size: 20px;
}

.cart-area-section .cart-table tbody .qty .quantity-input {
    max-width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-area-section .cart-table tbody .qty .quantity-input input,
.cart-area-section .cart-table tbody .qty .quantity-input .quantity-up,
.cart-area-section .cart-table tbody .qty .quantity-input .quantity-down {
    width: 50px;
    height: 40px;
    padding: 0 10px;
    text-align: center;
    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: 1px solid #e5e5e5;
    cursor: pointer;
}

.cart-area-section .cart-table tbody .qty .quantity-input input {
    border-left: none;
    border-right: none;
}

.cart-area-section .cart-table tbody .unit-price .available-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-area-section .cart-table tbody .unit-price .available-info span.icon {
    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;
    background-color: #fc7921;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.cart-area-section .cart-table tbody .remove {
    text-align: center;
}

.cart-area-section .cart-middle {
    float: right;
    margin-top: 20px;
}

.cart-area-section .cart-middle .cart-btn {
    display: inline-block;
    margin-left: 15px;
    padding: 10px 30px;
    color: #fff;
    background-color: #fc7921;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.cart-area-section .cart-middle .cart-btn:hover {
    background-color: #14212b;
    color: #fff;
}

.checkout-area-section .shop-title-box h3 {
    margin-bottom: 20px;
}

.checkout-area-section .form_group label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.checkout-area-section .form_group .form_control {
    border: 1px solid #e5e5e5;
}

.checkout-area-section .bottom {
    margin-top: 30px;
}

.checkout-area-section .bottom .table-one {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 40px;
}

.checkout-area-section .bottom .cart-table {
    width: 100%;
}

.checkout-area-section .bottom .cart-table tbody .product-title .prod-title {
    font-size: 20px;
}

.checkout-area-section .bottom .cart-table tbody input {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    padding: 0 10px;
}

.checkout-area-section .bottom .cart-table tbody input[type="radio"] {
    width: 15px;
    height: 15px;
}

.checkout-area-section .bottom .cart-table tbody tr td p {
    line-height: 18px;
}

.checkout-area-section .bottom .cart-total .cart-total-table {
    border: 1px solid #e8e6f4;
    border-radius: 6px;
}

.checkout-area-section .bottom .cart-total .cart-total-table li {
    border-bottom: 1px solid #e8e6f4;
}

.checkout-area-section .bottom .cart-total .cart-total-table li span.col {
    position: relative;
    display: block;
    float: left;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    padding: 10px 18px;
    width: 50%;
}

.checkout-area-section
    .bottom
    .cart-total
    .cart-total-table
    li
    span.col.col-title {
    border-right: 1px solid #e8e6f4;
}

.checkout-area-section .coupon {
    position: relative;
    display: block;
    background: #f8f7ff;
    padding: 20px 28px 21px;
    margin-bottom: 60px;
    border-radius: 5px;
}

.checkout-area-section .coupon .form-control,
.checkout-area-section .coupon button {
    border-radius: 0 !important;
}

.checkout-area-section .coupon .btn {
    background-color: #fc7921;
    color: #fff;
    font-size: 14px;
}

.checkout-area-section .payment-options {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid #e8e6f4;
    padding: 23px 20px 35px;
    border-radius: 6px;
}

.checkout-area-section .payment-options h4 {
    margin-bottom: 15px;
}

.checkout-area-section .payment-options .accordion-item {
    margin-bottom: 15px;
}

.checkout-area-section .payment-options .accordion-header {
    display: flex;
}

.checkout-area-section .payment-options .accordion-header label {
    margin-bottom: 0;
    line-height: 17px;
    margin-left: 10px;
    cursor: pointer;
}

.checkout-area-section .payment-options input[type="radio"] {
    width: 15px;
    height: 15px;
}

.checkout-area-section .payment-options .placeorder-button {
    margin-top: 30px;
}

/*---====================
   	User Area css 
=====================---*/
.user-area-section .user-form .form_group label {
    font-weight: 700;
}

.user-area-section .user-form .form_group .form_control {
    border: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

.user-area-section .user-form .form_group .main-btn {
    margin-right: 10px;
}

.user-area-section .user-form .form_checkbox .single-checkbox {
    margin-right: 15px;
}

.user-area-section .user-form input[type="radio"] {
    width: 13px;
    height: 13px;
}

.user-area-section .user-form input[type="checkbox"] {
    width: 13px;
    height: 13px;
}

.user-area-section .user-form .form_checkbox {
    display: flex;
    margin-bottom: 20px;
}

.user-area-section .user-form .form_checkbox label {
    line-height: 15px;
}

.user-area-section .user-form .form_checkbox label span {
    margin-left: 15px;
}

.user-area-section .user-form .form_text {
    margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
    .dataTables_length {
        margin-bottom: 20px;
    }

    div.dataTables_wrapper div.dataTables_length,
    div.dataTables_wrapper div.dataTables_filter,
    div.dataTables_wrapper div.dataTables_info,
    div.dataTables_wrapper div.dataTables_paginate {
        float: none;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 20px;
    }
}

/* -----------------------------------------
	Error CSS
----------------------------------------- */
.error-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}

.error-area .error-content {
    text-align: center;
}

.error-area .error-content img {
    max-width: 70%;
}

.error-area .error-content h3 {
    margin-bottom: 20px;
    font-size: 40px;
}

.error-area .error-content p {
    max-width: 550px;
    margin: auto;
    margin-bottom: 20px;
}

/* -----------------------------------------
	Coming Soon CSS
----------------------------------------- */
.coming-soon-area {
    display: flex;
    align-items: center;
    height: 100vh;
}

.coming-soon-area .coming-soon-box {
    max-width: 640px;
    margin: 0 auto;
    padding: 60px 30px;
    border: 2px solid #fc7921;
    background-color: #ffffff;
    box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
}

.coming-soon-area .coming-soon-box .title-box {
    text-align: center;
    margin-bottom: 30px;
}

.coming-soon-area .coming-soon-box .title-box .title {
    margin-top: -2px;
    margin-bottom: 10px;
}

.coming-soon-area .coming-soon-box .title-box .text {
    margin-bottom: 0;
}

.coming-soon-area .coming-soon-box #timer {
    margin-bottom: 30px;
}

.coming-soon-area .coming-soon-box #timer .counter {
    width: 100px;
    height: 105px;
    margin-left: 10px;
    margin-right: 10px;
    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: #f8faff;
}

.coming-soon-area .coming-soon-box #timer .counter .h1 {
    font-weight: 700;
    color: #fc7921;
    margin-bottom: 0;
}

.coming-soon-area .coming-soon-box #timer .counter span {
    display: block;
    color: #132150;
    font-weight: 600;
    font-size: 17px;
}

.coming-soon-area .coming-soon-box .newsletter-form .input-group {
    border: 2px solid #dddddd;
    -webkit-box-shadow: 0px 15px 32px 0px rgba(97, 78, 249, 0.08);
    box-shadow: 0px 15px 32px 0px rgba(97, 78, 249, 0.08);
    background-color: #ffffff;
}

.coming-soon-area
    .coming-soon-box
    .newsletter-form
    .input-group
    ::-webkit-input-placeholder {
    color: #8c929d;
}

.coming-soon-area
    .coming-soon-box
    .newsletter-form
    .input-group
    :-ms-input-placeholder {
    color: #8c929d;
}

.coming-soon-area
    .coming-soon-box
    .newsletter-form
    .input-group
    ::-ms-input-placeholder {
    color: #8c929d;
}

.coming-soon-area .coming-soon-box .newsletter-form .input-group ::placeholder {
    color: #8c929d;
}

/* -----------------------------------------
	Newsletter Form CSS
----------------------------------------- */
.newsletter-form .input-group {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.259);
}

.newsletter-form .input-group .form-control {
    height: auto;
    border: none;
    border-radius: 0;
    padding: 15px 25px;
    background-color: transparent;
}

/* -----------------------------------------
	Pagination CSS
----------------------------------------- */
.pagination-nav {
    padding-top: 20px;
}

.pagination-nav .page-link {
    color: #02466b;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    padding: 0;
    font-size: 16px;
    border-color: transparent;
}

.pagination-nav .page-item:first-child .page-link,
.pagination-nav .page-item:last-child .page-link {
    border-radius: 0;
}

.pagination-nav .page-item.active .page-link,
.pagination-nav .page-item:hover .page-link {
    color: #fff;
    background-color: #fc7921;
    border-color: transparent;
}

.pagination-nav .page-item.next,
.pagination-nav .page-item.prev {
    border: none;
}

.pagination-nav .page-item.next:hover,
.pagination-nav .page-item.prev:hover {
    color: #fc7921;
    background: transparent;
}

/* Custom Css Start */
.bg_grey {
    background: #f0f0f0;
}

.services_box {
    background: #fff;
    border: 1px solid #bbbbbb;
    border-radius: 20px;
    transition: 2s;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    border-radius: 15px;
}

.services_box:hover {
    box-shadow: 0 20px 18px rgba(0, 0, 0, 0.16);
    transform: translate(0, -15px);
}

.services_box img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.services_box h4 {
    padding: 10px 0px;
    color: #014c72;
    font-size: 20px;
}

.services_box p {
    padding: 0px 20px 10px;
    font-size: 15px;
    line-height: 22px;
}

.btn_style {
    background: #fc7921;
    color: #fff;
    padding: 2px 10px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid #fc7921;
    border-radius: 5px;
}

.btn_style:hover {
    background: #014c72;
    color: #fff;
    border: 1px solid #014c72;
}

.point_box {
}

.point_box ul {
    padding-left: 0px;
    list-style-type: none;
}

.point_box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
    color: #727272;
    line-height: 24px;
    font-size: 16px;
    margin-top: 5px;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
}

/* 
.point_box ul li:hover {
	box-shadow: 0px 0px 4px #9c9c9c;

} */

.point_box ul li::before {
    content: "\f192";
    font-family: "FontAwesome";
    color: #fc7921;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.why_choose_box {
    margin-top: 50px;
}

.service_inner_img_box {
    padding-bottom: 30px;
}

.enquiry_form_box {
}

.enquiry_form_box form {
    margin-top: 15px;
    padding: 20px;
}

/* Gallery Start */
.gallery_box img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    /* transition: transform 0.3s ease; */
    transition: 2s;
    margin-top: 20px;
}

.gallery_box img:hover {
    transform: scale(1.04);
}

/* Gallery End */
.logo_img_box {
    border: 1px solid #ddd;
    padding: 5px;
    margin-top: 10px;
}

.logo_img_box img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: 1s;
    cursor: pointer;
}

.logo_img_box:hover {
    box-shadow: 0 3px 10px rgba(10, 37, 64, 0.25);
}

.marquee_content_box {
    background: #fc7921;
    padding: 10px 0px;
}

.marquee_content_box ul {
    padding-left: 0px;
    list-style-type: none;
}

.marquee_content_box ul li {
    display: inline-block;
    padding: 0px 20px;
}

.marquee_content_box ul li img {
    /* width: 190px; */
}

.marquee_content_box ul li span {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    padding-left: 30px;
    margin-top: 15px;
    text-transform: uppercase;
}

.top-left a,
.top-left i {
    color: #fff !important;
}

.brand-logo img {
    width: 290px !important;
}

.about-img-box img {
    border-radius: 20px;
}

.why_choose_img_box img {
    width: 100%;
    border-radius: 20px;
}

.service_img_box img {
    border-radius: 20px;
}
/* Custom Css End */

/* Call & Whatsapp Icon Start */

.icon-bar {
    position: fixed;
    top: 75%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: 999;
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 13px;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.icon-bar a:hover {
    background-color: #fd6509;
}

.facebook {
    background: #02466b;
    color: #fff;
}

.twitter {
    background: #1ba939;
    color: #fff;
}

/* Call & Whatsapp Icon End */
.storage-rack {
    text-align: justify;
}

/* storage-rack start */

.services-page {
    margin-bottom: 20px;
}

.services-page p {
    text-align: center;
}

.services-page h4 {
    text-align: center;
    color: #2aa2d3;
    font-weight: 600;
    font-size: 30px;
}

.storage-rack-banner h3 {
    font-size: 27px;
    font-weight: 600;
    color: #2aa2d3;
    margin-bottom: 15px;
}

.services-banner {
    text-align: justify !important;
}

.services-banner p {
    text-align: justify !important;
}

.storage-rack-banner {
    background-color: #00000063;
    padding: 20px;
    border-radius: 10px;
    box-shadow:
        rgba(0, 0, 0, 0.16) 0px 1px 4px,
        rgb(240 240 240) 0px 0px 0px 3px;
    color: #fff;
    text-align: justify;
}

.features {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    height: 215px;
}

.features i {
    color: #2aa2d3;
    font-size: 35px;
}

.features h6 {
    color: #02466b;
    font-weight: 700;
    font-size: 20px;
    margin-top: 15px;
}

.bg-grey {
    background-color: #f6f6f6;
}

/* storage-rack end */

/* gallery start */
#gallery {
    padding-top: 40px;

    @media screen and (min-width: 991px) {
        padding: 60px 30px 0 30px;
    }
}

.img-wrapper {
    position: relative;
    margin-bottom: 30px;
    border: 2px solid #00acfb;

    img {
        width: 100%;
    }
}

.img-overlay {
    background: rgb(0 169 249 / 40%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;

    i {
        color: #fff;
        font-size: 3em;
    }
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    img {
        margin: 0;
        width: 80%;
        height: auto;
        object-fit: contain;
        padding: 5%;

        @media screen and (min-width: 768px) {
            width: 60%;
        }

        @media screen and (min-width: 1200px) {
            width: 50%;
        }
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;

    &:hover {
        opacity: 0.7;
    }

    @media screen and (min-width: 768px) {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;

    &:hover {
        opacity: 0.7;
    }

    @media screen and (min-width: 768px) {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;

    &:hover {
        opacity: 0.7;
    }

    @media screen and (min-width: 768px) {
        font-size: 3em;
    }
}

/* gallery end */

/* Thanks You start */
.thank_content {
    text-align: center;
    padding: 70px 0px;
    margin: 90px 50px;
}

.thank_content h1 {
    font-size: 55px;
    text-align: center;
    color: #32a7fb;
    padding: 20px 0px;
}

.thank_content p {
    font-size: 25px;
    padding: 30px 0px;
}

.thank_content a {
    background: #32a7fb;
    padding: 10px 20px;
    color: #fff;
    border-radius: 20px;
}

.thank_content a:hover {
    background: #0572b9;
    box-shadow: 0px 6px 6px #c5c5c5;
}
/* Thanks you end */

/* breadcrumb start */

.brg-breadcrumb-banner {
    position: relative;
    width: 100%;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background: url("../images/bg/bearing-banner.jpg") center center/cover
        no-repeat;
}

.brg-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 42, 92, 0.82), rgba(0, 42, 92, 0.82));
}

.brg-breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brg-breadcrumb-content h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brg-breadcrumb-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.brg-breadcrumb-list li {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.brg-breadcrumb-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.brg-breadcrumb-list li a:hover {
    color: #fc7921;
}

.brg-breadcrumb-list span {
    color: #fc7921;
}

/* Responsive */

@media (max-width: 991px) {
    .brg-breadcrumb-banner {
        min-height: 145px;
    }

    .brg-breadcrumb-content h1 {
        font-size: 25px;
    }
    .counter-item-two .icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 10px;
    }
    .content h2 {
        font-size: 30px;
    }
    .content h5 {
        font-size: 17px;
    }
    .counter-item-two .icon:after {
        width: 17px;
        height: 17px;
    }
}

/* breadcrumb end */

/* Ball Bearings Start */
.bb-service-area {
    position: relative;
    overflow: hidden;
}

/* Animated Background */

.bb-service-area::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #fc7921, #5bc0ff);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    opacity: 0.08;
    animation: bbRotate 18s linear infinite;
}

.bb-title-small {
    color: #fc7921;
    font-weight: 700;
    letter-spacing: 2px;
}

.bb-title-text {
    color: #666;
}

.bb-service-card {
    position: relative;
    overflow: hidden;

    background: #fff;
    border-radius: 20px;

    padding: 35px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    transition: 0.5s;

    animation: bbUp 1s ease;
    height: 100%;
}

.bb-service-card::before {
    content: "";

    position: absolute;

    width: 100%;

    height: 5px;

    background: #fc7921;

    left: 0;

    top: 0;

    transition: 0.4s;
}

.bb-service-card:hover {
    transform: translateY(-15px);

    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.bb-service-card:hover::before {
    height: 100%;

    opacity: 0.06;
}

.bb-icon {
    width: 50px;

    height: 50px;

    background: #fc7921;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 25px;

    /* animation: bbFloat 4s infinite; */
}

.bb-icon i {
    font-size: 20px;

    color: #fff;
}

.bb-service-card h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.bb-service-card p {
    color: #666;

    line-height: 28px;
}

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

@keyframes bbRotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bbPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bbUp {
    0% {
        opacity: 0;

        transform: translateY(80px);
    }

    100% {
        opacity: 1;

        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .bb-service-card {
        padding: 25px;
    }
}
/* Ball Bearings end */
.bb-about-area {
    background: #f7faff;
    overflow: hidden;
}

.bb-image-box {
    position: relative;
    text-align: center;
}

.bb-main-image {
    width: 100%;
    border-radius: 20px;
}

.bb-title {
    font-size: 22px;
    font-weight: 800;
    margin: 15px 0 20px;
    line-height: 1.3;
}

.bb-title span {
    color: #fc7921;
}

.bb-text {
    color: #666;
    line-height: 30px;
    margin-bottom: 18px;
}

@keyframes bbRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes bbFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

@keyframes bbPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes bbUpDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .bb-title {
        font-size: 20px;
    }
    .bb-description {
        padding: 20px;
    }
}

/* FEATURES */

.bbfeature_section {
    padding: 100px 0;
}

.bbfeature_card {
    background: #fff;

    padding: 45px;

    border-radius: 20px;

    transition: 0.5s;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

    height: 100%;

    position: relative;

    overflow: hidden;
}

.bbfeature_card::before {
    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    background: #02466b;

    opacity: 0.08;

    border-radius: 50%;

    right: -50px;

    top: -50px;

    transition: 0.5s;
}

.bbfeature_card:hover {
    transform: translateY(-15px);
}

.bbfeature_card:hover::before {
    transform: scale(2);
}

.bbicon {
    width: 80px;

    height: 80px;

    background: #fc7921;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 32px;

    border-radius: 50%;

    margin-bottom: 25px;

    transition: 0.5s;
}

.bbfeature_card:hover .bbicon {
    transform: rotate(360deg);
}

/* APPLICATION */

.bb-applications-section {
    background: #f5f8fc;
    overflow: hidden;
}

.bb-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.bb-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    transition: 0.6s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bb-image-wrapper:hover img {
    transform: scale(1.05);
}

@keyframes bbFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(25px);
    }
    100% {
        transform: translateY(0);
    }
}

.bb-description {
    color: #000;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bb-point-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: 0.4s;
    border-left: 4px solid transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.bb-point-box:hover {
    transform: translateY(-8px);
    border-left: 4px solid #fc7921;
    background: #02466b;
    color: #fff;
}

.bb-point-box i {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background: #fc7921;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    transition: 0.4s;
}

.bb-point-box:hover i {
    background: #fff;
    color: #fc7921;
    transform: rotate(360deg);
}

.bb-point-box span {
    font-weight: 600;
    font-size: 17px;
}

@media (max-width: 991px) {
    .bb-image-wrapper {
        margin-bottom: 40px;
    }
}

/* home page services card start */

/* Section */
.bgcard-section {
    background: #f5f7fa;
}

/* Card */
.bgcard-box {
    position: relative;
    height: 350px;
    border-radius: 18px;
    overflow: hidden;
    background: url("../images/services-img/1.png") center center/cover
        no-repeat;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.bgcard-img2 {
    background: url("../images/services-img/2.png") center center/cover
        no-repeat;
}

.bgcard-img3 {
    background: url("../images/services-img/3.png") center center/cover
        no-repeat;
}

.bgcard-img4 {
    background: url("../images/services-img/4.png") center center/cover
        no-repeat;
}

.bgcard-img5 {
    background: url("../images/services-img/5.png") center center/cover
        no-repeat;
}

.bgcard-img6 {
    background: url("../images/services-img/6.png") center center/cover
        no-repeat;
}
.bgcard-img7 {
    background: url("../images/services-img/7.png") center center/cover
        no-repeat;
}
.bgcard-img8 {
    background: url("../images/services-img/8.png") center center/cover
        no-repeat;
}
.bgcard-img9 {
    background: url("../images/services-img/9.png") center center/cover
        no-repeat;
}

.bgcard-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88),
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.05)
    );
    transition: 0.4s;
}

.bgcard-overlay {
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    z-index: 2;
    transform: translateY(45px);
    transition: 0.4s;
}

.bgcard-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.bgcard-text {
    font-size: 15px;
    line-height: 1.8;
    /* opacity:0; */
    transition: 0.4s;
    margin-bottom: 15px;
}

.bgcard-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #fc7921;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.bgcard-btn:hover {
    background: #fff;
    color: #ff4d30;
}

.bgcard-box:hover {
    transform: translateY(-10px);
}

.bgcard-box:hover::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92),
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.15)
    );
}

.bgcard-box:hover .bgcard-overlay {
    transform: translateY(0);
}

.bgcard-box:hover .bgcard-text {
    opacity: 1;
}

@media (max-width: 767px) {
    .bgcard-box {
        height: 360px;
    }

    .bgcard-title {
        font-size: 24px;
    }

    .bgcard-overlay {
        transform: translateY(0);
    }

    .bgcard-text {
        opacity: 1;
    }
}
/* home page services card end */

/* contact start */

.contact-section {
    padding: 80px 0;
}

.contact-info {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-box {
    margin-bottom: 30px;
}

.info-box:last-child {
    margin-bottom: 0;
}

.icon {
    width: 50px;
    height: 50px;
    background: #fc7921;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.4s;
}

.info-box:hover .icon {
    transform: rotate(15deg) scale(1.1);
}

.info-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
}

.info-box p {
    color: #666;
    margin: 0;
}
.contact-heading {
    color: #fc7921;
}
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    resize: none;
}

.form-control:focus {
    border-color: #fc7921;
    box-shadow: none;
}

.btn-contact {
    background: #fc7921;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-contact:hover {
    background: #222;
    color: #fff;
    transform: translateY(-3px);
}

.map-section iframe {
    display: block;
}
/* contact end */

/* faq start */

.br-faq-question i {
    color: #fc7921;
}

.br-faq-item {
    border-left: 5px solid #02466b;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.br-faq-item.active {
    border-left-color: #fc7921;
}
.br-faq-section {
    background: #f5f7fb;
    padding: 70px 0;
}

.br-faq-item {
    background: #fff;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.br-faq-item:hover {
    transform: translateY(-3px);
}

.br-faq-question {
    width: 100%;
    border: none;
    background: #fff;
    cursor: pointer;
    padding: 13px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #02466b;
}

.br-faq-question:focus {
    outline: none;
}

.br-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #02466b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.4s;
    flex-shrink: 0;
}

.br-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.5s ease,
        padding 0.4s ease;
    padding: 0 28px;
}

.br-faq-answer p {
    margin: 0;

    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.br-faq-item.active .br-faq-answer {
    max-height: 250px;
    padding: 0 28px 20px;
}

.br-faq-item.active .br-faq-icon {
    background: #fc7921;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .br-faq-question {
        font-size: 17px;
        padding: 18px;
    }

    .br-faq-answer {
        padding: 0 18px;
    }

    .br-faq-item.active .br-faq-answer {
        padding: 0 18px 18px;
    }
}
/* faq end */

/* gallery start */
.br-gallery-section {
    padding: 60px 0;
}

.br-gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.br-gallery-item img {
    width: 100%;

    object-fit: cover;
    transition: 0.5s;
}

.br-gallery-item:hover img {
    transform: scale(1.08);
}

/* Popup */

.br-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);

    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.br-lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.br-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
}

.br-prev,
.br-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;
    cursor: pointer;

    background: #ffffff;
    color: #111;
    font-size: 30px;

    transition: 0.3s;
}

.br-prev:hover,
.br-next:hover {
    background: #02466b;
    color: #fff;
}

.br-prev {
    left: 40px;
}

.br-next {
    right: 40px;
}

@media (max-width: 768px) {
    .br-lightbox img {
        max-width: 92%;
    }

    .br-prev {
        left: 10px;
    }

    .br-next {
        right: 10px;
    }

    .br-prev,
    .br-next {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}
/* gallery end */

/* blog start */
.br-blog-page-sec {
    background: #f8fafc;
}

.br-blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.br-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.br-blog-image {
    position: relative;
    overflow: hidden;
}

.br-blog-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.br-blog-card:hover .br-blog-image img {
    transform: scale(1.1);
}

.br-blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fc7921;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.br-blog-date small {
    font-size: 13px;
    font-weight: 500;
}

.br-blog-content {
    padding: 30px;
}

.br-blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}

.br-blog-card:hover h4 {
    color: #fc7921;
}

.br-blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.br-blog-btn {
    display: inline-block;
    padding: 8px 17px;
    background: #fc7921;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.4s;
    font-weight: 600;
}

.br-blog-btn:hover {
    background: #02466b;
    color: #fff;
    padding-left: 35px;
}

@media (max-width: 991px) {
    .br-blog-title {
        font-size: 32px;
    }

    .br-blog-content {
        padding: 22px;
    }
}
/* blog end */

/* client start */
.client img {
    margin-top: 20px;
    border: 1px solid #02466b;
    border-radius: 10px;
    margin-bottom: 20px;
}
/* clienr end */

/* new banner home page start */
.banner-slider {
    position: relative;
}

.banner-slider .carousel-item {
    height: 600px;
}

.banner-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    width: 700px;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fc7921;
    color: #02466b;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
}

/* Prev Next Button */
.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-slider .carousel-item {
        height: 450px;
    }

    .banner-content {
        left: 8%;
        right: 8%;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}
/* new banner home page end */

/* Overlay layer */
/* .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
} */


