@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
    --body-font: 'IBM Plex Sans', sans-serif;
    --heading-font: "Exo 2", sans-serif;
    --theme-color: #387A5C;
    --theme-color2: #2C286D;
    --theme-color3: #D82927;
    --theme-bg-light: #F6F6F6;
    --overlay-color: rgba(44, 44, 109, 0.9);
    --theme-color-light: rgba(99, 193, 83, .2);
    --body-text-color: #333333;
    --color-white: #ffffff;
    --color-dark: #000000;
    --color-green: #15D4C9;
    --color-blue: #0049D0;
    --color-skyblue: #00BFFF;
    --color-yellow: #FBA707;
    --color-gray: #ECECEC;
    --color-red: #D82927;
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #023B45;
    --footer-text-color: #F5FAFF;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

    a,
    a:active,
    a:focus,
    a:hover {
        outline: none;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        text-decoration: none;
    }

        a:hover {
            color: var(--color-blue);
        }

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

.img-center {
    display: block;
    margin: 0 auto;
}

.bg {
    background: var(--theme-bg-light);
}

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.py-80 {
    padding: 80px 0;
}

.py-90 {
    padding: 90px 0;
}

.py-100 {
    padding: 100px 0;
}

.py-110 {
    padding: 110px 0;
}

.py-120 {
    padding: 120px 0;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.my-80 {
    margin: 80px 0;
}

.my-90 {
    margin: 90px 0;
}

.my-100 {
    margin: 100px 0;
}

.my-110 {
    margin: 110px 0;
}

.my-120 {
    margin: 120px 0;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--theme-color2);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .loader-ripple div {
        position: absolute;
        border: 4px solid var(--color-white);
        opacity: 1;
        border-radius: 50%;
        animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .loader-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}




/*====================
7. Bs custom css
======================*/

/* custom form */
.form-group {
    margin-bottom: 20px;
}

    .form-group .form-label {
        color: var(--color-dark);
    }

    .form-group .form-control,
    .form-group .form-select {
        padding: 14px 20px 14px 20px;
        border-radius: 15px;
        background-color: var(--color-white);
        color: var(--color-dark);
        border-color: var(--border-info-color);
    }

        .form-group .form-control::placeholder {
            color: var(--body-text-color);
        }

        .form-group .form-control:focus,
        .form-group .form-select:focus {
            border-color: var(--theme-color);
            box-shadow: 0 0 0 .25rem var(--theme-color-light);
        }

    .form-group .form-icon {
        position: relative;
    }

        .form-group .form-icon i {
            position: absolute;
            top: 19px;
            left: 20px;
            color: var(--theme-color);
            z-index: 1;
        }

        .form-group .form-icon .form-control,
        .form-group .form-icon .form-select {
            padding-left: 50px;
        }

.form-check {
    margin-bottom: 20px;
}

    .form-check .form-check-input {
        border-radius: 6px;
        margin-top: 6.5px;
        border-color: var(--border-info-color);
    }

    .form-check .form-check-label {
        color: var(--color-dark);
    }

    .form-check .form-check-input:checked {
        background-color: var(--theme-color);
        border-color: var(--theme-color)
    }

    .form-check .form-check-input:focus {
        border-color: var(--theme-color);
        box-shadow: 0 0 0 .25rem var(--theme-color-light);
    }



/*====================
8. Container
======================*/

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1200px;
    }
}

/*====================
11. Site title css
======================*/

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    display: inline-block;
    color: var(--color-white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    background: var(--theme-color2);
    border-radius: 10px;
    padding: 2px 15px 2px;
    margin-bottom: 15px;
}

.text-italic {
    font-style: italic;
}

.site-title-tagline.light {
    background: var(--color-white);
}

.site-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 45px;
    color: var(--color-dark);
    margin-bottom: 0;
}

    .site-title span {
        color: var(--theme-color);
    }

.site-heading p {
    margin-top: 15px;
}

.heading-divider {
    display: inline-block;
    position: relative;
    border-bottom: 4px solid var(--theme-color);
    width: 90px;
    height: 4px;
    border-radius: 50px;
}

    .heading-divider:after {
        content: '';
        position: absolute;
        left: 0;
        top: -1px;
        height: 6px;
        width: 15px;
        border-radius: 0px;
        background-color: var(--color-white);
        -webkit-animation: heading-move 5s infinite linear;
        animation: heading-move 5s infinite linear;
    }

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(75px);
    }

    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(75px);
    }

    100% {
        transform: translateX(-1px);
    }
}

@media all and (max-width:640px) {
    .site-title {
        font-size: 30px;
    }
}

/*====================
12. Theme button
======================*/

.theme-btn,
.theme-btn2 {
    font-size: 16px;
    color: var(--color-white);
    padding: 10px 20px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: var(--theme-color3);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

    .theme-btn::before,
    .theme-btn2::before {
        content: "";
        height: 300px;
        width: 300px;
        background: var(--color-dark);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%) scale(0);
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }

    .theme-btn:hover {
        color: var(--color-white) !important;
    }

        .theme-btn:hover::before,
        .theme-btn2:hover::before {
            transform: translateY(-50%) translateX(-50%) scale(1);
        }

    .theme-btn i,
    .theme-btn2 i {
        margin-left: 8px;
        transform: rotate(-40deg);
        transition: var(--transition2);
    }

    .theme-btn:hover i,
    .theme-btn2:hover i {
        transform: rotate(0deg) !important;
    }

    .theme-btn span,
    .theme-btn2 span {
        margin-right: 5px;
    }

.theme-btn2 {
    background: var(--color-yellow);
    color: var(--color-white);
}

    .theme-btn2::before {
        background: var(--theme-color2);
    }

    .theme-btn2:hover {
        color: var(--color-white);
    }



/*====================
13. Header top css
======================*/

.header {
    background: var(--theme-color);
}

.header-top {
    padding: 10px 0;
    background: #2C286D;
    position: relative;
}

    .header-top .shape {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    .header-top .shape-1 {
        position: absolute;
        top: 0;
        right: -50px;
        width: 50%;
        height: 100%;
        background: #D82927;
        transform: skewX(-40deg);
        border-radius: 20px 0 0 0;
        border-left: 5px solid var(--color-white);
    }

    .header-top .shape-2 {
        position: absolute;
        top: 0px;
        left: -70px;
        bottom: 0;
        width: 10%;
        background: #387A5C;
        border-radius: 0 0 20px 0;
        transform: skewX(-40deg);
        border-right: 5px solid var(--color-white);
    }

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.header-top-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.header-top-list a {
    color: var(--color-white);
    font-weight: 500;
}

    .header-top-list a:hover {
        color: var(--theme-bg-light)
    }

    .header-top-list a i {
        color: var(--theme-bg-light);
        margin-right: 5px;
    }

.header-top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    /* .header-top-right .header-top-list a:hover{
  color: var(--theme-color2);
} */

    .header-top-right .header-top-list i {
        color: var(--color-white);
    }

.header-top-social span {
    color: var(--color-white);
}

.header-top-social a {
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
    margin-left: 14px;
    transition: var(--transition);
}

    .header-top-social a:hover {
        color: var(--theme-color2);
    }

.header-top-lang .top-lang {
    color: var(--color-white);
}

.header-top-lang .dropdown-menu {
    min-width: 60px;
    border-radius: 15px;
    padding: 10px;
    border: none;
    box-shadow: var(--box-shadow);
}

.header-top-lang .dropdown-item {
    color: var(--color-dark);
    border-radius: 10px;
    cursor: pointer;
}

    .header-top-lang .dropdown-item:hover {
        background: var(--theme-color);
        color: var(--color-white);
    }

@media all and (max-width: 1280px) and (min-width:1200px) {
    .header-top-left {
        margin-left: 30px;
    }
}

@media all and (max-width: 1199px) {
    .header-top .shape-1 {
        width: 48%;
    }

    .header-top .shape-2 {
        width: 6%;
    }

    .header-top-list ul {
        gap: 10px;
    }

    .header-top-social a {
        width: 34px;
        height: 34px;
        line-height: 37px;
        margin-left: 0;
    }

    .header-top-left {
        margin-right: 5px;
    }
}

@media all and (max-width: 991px) {
    .header-top .shape-1 {
        width: 55%;
    }

    .header-top .shape-2 {
        width: 7%;
    }

    .header-top-list ul {
        gap: 0px;
    }

        .header-top-list ul li {
            margin-right: 10px;
        }

            .header-top-list ul li:last-child {
                display: none;
            }

    .header-top-lang .dropdown-toggle::after {
        margin-top: 12px;
    }

    .header-top-social span {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .header-top .shape {
        display: none;
    }

    .header-top-social a:hover {
        color: var(--theme-color);
    }
}

@media all and (max-width:640px) {
    .header-top {
        display: none;
    }
}


/*====================
Navbar css
======================*/

.navbar {
    background: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 15px;
    position: relative;
    z-index: 4;
}

    .navbar::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 89.5%;
        background: var(--color-white);
    }

    .navbar.fixed-top {
        position: fixed;
        background: var(--color-white);
        box-shadow: var(--box-shadow2);
        animation: slide-down 0.7s;
        padding-right: 0;
    }

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

.navbar-brand {
    margin-right: 0;
}

    .navbar-brand img {
        width: 122px;
    }

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 18px;
        padding: 30px 0 30px 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--color-dark);
        text-transform: uppercase;
    }

    .navbar.fixed-top .nav-item .nav-link {
        color: var(--color-dark);
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar.navbar_arb .nav-item:last-child .nav-link {
        margin-right: 18px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        padding: 10px;
        margin-top: 0;
        left: -15px;
        border-radius: 0;
        border: none;
        background: var(--color-white);
        /*width: 220px;*/
        box-shadow: var(--box-shadow);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition2);
        overflow: hidden;
		min-width: auto; 
    	width: auto;     
    	white-space: nowrap;
    }

        .navbar .nav-item .dropdown-menu::before {
            content: "";
            position: absolute;
            top: 0;
            left: 40px;
            right: 40px;
            border-top: 3px solid var(--theme-color);
            border-radius: 10px;
        }

        .navbar .nav-item .dropdown-menu .dropdown-item {
            font-size: 15px;
            line-height: 20px;
            padding: 5px 5px;
            font-weight: 500;
            text-align: center;
            color: var(--color-dark);
            position: relative;
            overflow: hidden;
            border-radius: 0;
            text-transform: capitalize;
            transition: var(--transition2);
            z-index: 1;
        }

            .navbar .nav-item .dropdown-menu .dropdown-item:hover {
                background: var(--theme-color);
                color: var(--color-white);
                /* padding-left: 25px; */
            }

    /* .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f101";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    left: -15px;
    top: 6px;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition2);
    z-index: -1;
  } */
    /* 
  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    left: 0;
    opacity: 1;
    visibility: visible;
  } */

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    /* nav right */
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-left: 45px;
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-dark);
        border: none;
        padding: 0;
        background: transparent;
        transition: var(--transition);
    }

        .nav-right-link:hover {
            color: var(--theme-color);
        }

    .navbar.fixed-top .nav-right-link {
        color: var(--color-dark);
    }

        .navbar.fixed-top .nav-right-link:hover {
            color: var(--theme-color);
        }

    .nav-right .shop-cart .nav-right-link span {
        position: absolute;
        width: 18px;
        height: 18px;
        line-height: 18px;
        text-align: center;
        color: var(--color-white);
        background: var(--theme-color);
        border-radius: 50px;
        font-size: 12px;
        right: -10px;
        top: -6px;
    }

    .nav-right .call-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
    }

        .nav-right .call-wrap .icon {
            width: 45px;
            height: 45px;
            line-height: 46px;
            border-radius: 50px;
            background: var(--theme-color);
            color: var(--color-white);
            text-align: center;
            font-size: 18px;
            margin-top: 5px;
        }

        .nav-right .call-wrap .content span {
            color: var(--theme-color);
            font-weight: 500;
        }

        .nav-right .call-wrap .content h6 a {
            color: var(--color-dark);
            font-weight: 800;
        }

    .nav-right .sidebar-btn span {
        display: block;
        width: 24px;
        border-bottom: 3px solid var(--color-dark);
        border-radius: 50px;
        margin-top: 6px;
        margin-left: auto;
        transition: var(--transition);
    }

        .nav-right .sidebar-btn span:first-child {
            width: 10px;
            margin-top: 0;
        }

        .nav-right .sidebar-btn span:nth-child(3) {
            width: 15px;
        }

    /* navbar light */
    .navbar.light .nav-item .nav-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-item .nav-link {
        color: var(--color-dark);
    }

    .navbar.light .nav-item .nav-link.active,
    .navbar.light .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar.light .nav-right-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-right-link {
        color: var(--color-dark);
    }

    .navbar.light .nav-right-link:hover {
        color: var(--theme-color);
    }

    .navbar.light .nav-right .sidebar-btn span {
        border-color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-right .sidebar-btn span {
        border-color: var(--color-dark);
    }
}

@media all and (max-width: 1199px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }

    .nav-right {
        gap: 20px;
        margin-left: 25px;
    }

        .nav-right .sidebar-btn,
        .nav-right .call-wrap {
            display: none;
        }
}


/* navbar mobile menu */
.navbar .mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }

        .navbar::before {
            width: 100%;
        }

    .navbar-brand img {
        width: 130px;
    }

    .navbar .offcanvas {
        width: 300px;
    }

    .navbar .offcanvas-header .btn-close {
        background: var(--theme-color3);
        width: 16px;
        height: 16px;
        line-height: 16px;
        text-align: center;
        border-radius: 50px;
        color: var(--color-white);
        font-size: 15px;
        box-shadow: none;
        opacity: 1;
    }

    .navbar .offcanvas-brand img {
        width: 85px;
    }

    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 700;
        margin-right: 0px;
        transition: var(--transition);
    }

        .navbar .nav-item .nav-link:hover {
            color: var(--theme-color);
        }

    .navbar .nav-item .dropdown-menu {
        border-radius: 0px;
        background: var(--theme-color);
    }

    .navbar .nav-item .dropdown-toggle::after {
        float: right;
        margin-top: 2.5px;
    }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

        .navbar-toggler:focus {
            outline: none;
            box-shadow: none;
        }

        .navbar-toggler span {
            display: block;
            width: 22px;
            border-bottom: 3px solid var(--color-dark);
            border-radius: 50px;
            margin-top: 5px;
        }

            .navbar-toggler span:first-child {
                margin-top: 0;
            }

            .navbar-toggler span:nth-child(2) {
                width: 15px;
            }

    .navbar .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .navbar .mobile-menu-right .nav-right-link {
            background: transparent;
            border: none;
            font-size: 20px;
            color: var(--color-dark);
        }

            .navbar .mobile-menu-right .nav-right-link:hover {
                color: var(--theme-color);
            }

    .nav-right {
        display: none;
    }

    /* navbar light */
    .navbar.light .navbar-toggler span {
        border-color: var(--color-white);
    }

    .navbar.light.fixed-top .navbar-toggler span {
        border-color: var(--color-dark);
    }

    .navbar.light .mobile-menu-right .nav-right-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .mobile-menu-right .nav-right-link {
        color: var(--color-dark);
    }

    .navbar.light .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }
}



/*==============================
15. Navbar multi level dropdown
================================*/

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

    .navbar .nav-item .dropdown-submenu .dropdown-menu::before {
        display: none;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 15px;
        top: 8px;
        font-weight: 600;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        background: transparent;
        color: var(--color-white);
    }

    .navbar .nav-item .dropdown-submenu a:focus {
        background: transparent;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        top: 120%;
        left: 100%;
        opacity: 0;
        visibility: hidden;
    }

    .navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

@media all and (max-width: 991px) {
    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: var(--color-white);
    }

        .navbar .nav-item .dropdown-menu .dropdown-item:hover {
            color: var(--color-white);
            background: var(--theme-color);
        }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 3px;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--theme-color);
    }
}



/*============================
16. Navbar mega menu
==============================*/

@media all and (min-width: 992px) {
    .nav-item.mega-menu {
        position: static;
    }

    .navbar .nav-item.mega-menu .dropdown-menu {
        width: 98.2%;
        left: 12px;
    }

    .navbar .mega-menu .mega-content {
        padding: 12px;
    }

    .navbar .mega-menu .mega-menu-title {
        font-size: 17px;
        margin-bottom: 15px;
        color: var(--color-dark);
    }

    .navbar .mega-menu-img img {
        border-radius: 15px;
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item {
        padding-left: 0;
    }

        .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before {
            left: 0;
        }

        .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover {
            padding-left: 15px;
        }

    /* mega-menu small */
    .navbar .nav-item.mega-menu.small {
        position: relative;
    }

    .navbar .mega-menu.small .dropdown-menu {
        width: 340px;
        left: 50%;
        transform: translateX(-50%);
    }
}


@media all and (max-width: 991px) {
    .navbar .mega-menu-img {
        display: none;
    }

    .navbar .mega-menu .mega-content h5 {
        margin: 15px 0;
    }
}




/* ======================
17. Search popup
====================== */

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, .95);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50px;
    text-align: center;
    background: var(--color-red);
    text-align: center;
    width: 50px;
    height: 50px;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

    .search-active .search-popup .close-search span {
        transition: var(--transition);
    }

    .search-active .search-popup .close-search:hover span {
        transform: rotate(180deg);
    }

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-control {
    position: relative;
    width: 100%;
    height: 70px;
    outline: none;
    border-radius: 0px;
    border: none;
    border-bottom: 2px solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
    font-size: 40px;
    padding: 0 70px 0 20px;
    transition: all 500ms ease;
    text-transform: capitalize;
}

    .search-popup .form-control::placeholder {
        color: var(--color-white);
        font-size: 40px;
    }

.search-popup .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 50px;
    background: transparent;
    text-align: center;
    font-size: 30px;
    color: var(--color-white);
    height: 50px;
    width: 50px;
    border: none;
    cursor: pointer;
    transition: all 500ms ease;
}

    .search-popup .form-group button:hover {
        color: var(--theme-color);
    }


.sidebar-popup {
    padding: 20px;
}

    .sidebar-popup .btn-close {
        background: var(--theme-color);
        width: 25px;
        height: 25px;
        line-height: 25px;
        text-align: center;
        border-radius: 50px;
        color: var(--color-white);
        font-size: 20px;
        transition: var(--transition);
        box-shadow: var(--box-shadow);
        opacity: 1;
    }

        .sidebar-popup .btn-close:hover {
            background: var(--color-red);
        }

        .sidebar-popup .btn-close i {
            transition: var(--transition);
        }

        .sidebar-popup .btn-close:hover i {
            transform: rotate(180deg);
        }

.sidebar-popup-logo img {
    width: 150px;
}

.sidebar-popup-about {
    margin-top: 10px;
}

    .sidebar-popup-about h4 {
        margin-bottom: 10px;
        font-weight: 700;
    }

    .sidebar-popup-about p {
        font-size: 15px;
    }

.sidebar-popup-contact {
    margin-top: 20px;
}

    .sidebar-popup-contact h4 {
        margin-bottom: 15px;
        font-weight: 700;
    }

.call_box {
    position: relative;
    display: grid;
    grid-template-columns: 12% 88%;
    gap: 10px;
    margin: 0 0 1.5rem;
}

    .call_box .icon {
        width: 35px;
        height: 35px;
        line-height: 35px;
        color: var(--color-white);
        background: var(--theme-color);
        text-align: center;
        border-radius: 50%;
    }

.sidebar-popup-contact .call_box:nth-last-child(1) {
    margin: 0;
}

.sidebar-popup-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

    .sidebar-popup-contact li .icon {
        width: 35px;
        height: 35px;
        line-height: 35px;
        color: var(--color-white);
        background: var(--theme-color);
        text-align: center;
        border-radius: 50px;
    }

    .sidebar-popup-contact li a:hover {
        color: var(--theme-color);
    }

.sidebar-popup-social {
    margin-top: 25px;
}

    .sidebar-popup-social h4 {
        margin-bottom: 20px;
        font-weight: 700;
    }

    .sidebar-popup-social a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50px;
        margin-right: 8px;
        background: var(--theme-color);
        color: var(--color-white);
        box-shadow: var(--box-shadow);
    }

        .sidebar-popup-social a:hover {
            background: var(--color-dark);
        }

.main {
    margin-top: -2.8rem;
}

.hero {
    margin-top: -5rem;
}

.hero-video {
    padding: 215px 0;
    position: relative;
    background-position: center center;
    background-size: cover;
}

    .hero-video:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        /* background: linear-gradient(270deg, transparent 60.92%, rgba(0, 0, 0, 0.7) 100%); */
        background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-video .hero-bg-video {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

        .hero-video .hero-bg-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    position: relative;
}

    .hero-title h3 {
        position: relative;
        font-size: 45px;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--color-white);
        margin-bottom: 15px;
    }

    .hero-title p {
        margin: 10px 0 20px;
        color: var(--color-white);
        font-size: 18px;
        line-height: 30px;
    }

.hero-single {
    padding-top: 150px;
    padding-bottom: 180px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

    .hero-single::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: -0.5px;
        background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
        z-index: -1;
    }

    .hero-single .hero-content {
        height: 100%;
    }

        .hero-single .hero-content .hero-sub-title {
            display: inline-block;
            color: var(--color-white);
            font-size: 24px;
            letter-spacing: 6px;
            font-weight: 700;
            position: relative;
            text-transform: uppercase;
        }

            .hero-single .hero-content .hero-sub-title::before {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 15px;
                background: var(--theme-color);
                clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
                z-index: -1;
            }

        .hero-single .hero-content .hero-title {
            color: var(--color-white);
            font-size: 60px;
            font-weight: 700;
            margin: 20px 0;
            /*text-transform: capitalize;*/
        }

            .hero-single .hero-content .hero-title span {
                color: transparent;
                -webkit-text-stroke: 2px var(--color-white);
            }

        .hero-single .hero-content h5 {
            color: var(--color-white);
            font-size: 32px;
            margin-bottom: 10px;
        }

        .hero-single .hero-content p {
            color: var(--color-white);
            font-size: 20px;
            line-height: 30px;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .hero-single .hero-content .hero-btn {
            display: flex;
            justify-content: start;
            gap: 1rem;
            margin-top: 35px;
        }

@media all and (max-width: 1199px) {
    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }
}

@media all and (max-width: 991px) {
    .hero-single .hero-content .hero-title {
        font-size: 50px;
    }
}

@media all and (max-width: 767px) {
    .hero-single .hero-content .hero-sub-title {
        font-size: 18px;
    }

    .hero-single .hero-content .hero-btn {
        gap: 1rem;
    }
}

@media all and (max-width:640px) {
    .hero-video {
        padding: 45px 0;
    }

    .hero-title h3 {
        font-size: 34px;
    }

    .hero, .hero-section {
        margin-top: 45px;
    }

    .hero-single {
        padding: 40px 0;
    }

    .hero-slider .owl-nav {
        display: none;
    }

    .hero-single .hero-content p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
    }
}

/* hero-slider */
.hero-slider .owl-nav {
    margin-top: 0px;
}

    .hero-slider .owl-nav button i {
        display: inline-block;
        height: 55px;
        width: 55px;
        line-height: 55px;
        color: var(--theme-color);
        font-size: 25px;
        text-align: center;
        background: var(--color-white);
        border-radius: 50px;
        cursor: pointer;
        transition: var(--transition);
    }

    .hero-slider .owl-nav button:hover i {
        background: var(--theme-color);
        color: var(--color-white);
    }

    .hero-slider .owl-nav .owl-prev {
        left: 40px;
    }

    .hero-slider .owl-nav .owl-next {
        right: 40px;
    }

    .hero-slider .owl-nav .owl-prev,
    .hero-slider .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }

.hero-slider .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: none;
}

    .hero-slider .owl-dots .owl-dot span {
        display: inline-block;
        width: 15px;
        height: 15px;
        background-color: var(--color-white);
        border-radius: 0px;
        border: 3px solid var(--theme-color);
        margin: 5px;
        transition: var(--transition);
    }

    .hero-slider .owl-dots .owl-dot.active span {
        background-color: var(--theme-color);
    }


@media all and (max-width: 1199px) {
    .hero-slider .owl-nav .owl-prev,
    .hero-slider .owl-nav .owl-next {
        top: unset;
        bottom: 45px;
    }

    .hero-slider .owl-nav .owl-prev {
        left: unset;
        right: 120px;
    }

    .hero-slider .owl-nav .owl-next {
        right: 40px;
    }
}

.page_banner {
    margin-top: -5rem;
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    z-index: 1;
}

    .site-breadcrumb::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background: var(--theme-color2);
        opacity: 0.55;
        z-index: -1;
    }

    .site-breadcrumb .breadcrumb-title {
        font-size: 35px;
        color: var(--color-white);
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: capitalize;
    }

    .site-breadcrumb .breadcrumb-menu {
        position: relative;
        z-index: 1;
    }

        .site-breadcrumb .breadcrumb-menu li {
            position: relative;
            display: inline-block;
            margin-left: 25px;
            color: var(--color-white);
            font-weight: 500;
            text-transform: capitalize;
        }

            .site-breadcrumb .breadcrumb-menu li a {
                color: var(--color-white);
                transition: all 0.5s ease-in-out;
            }

            .site-breadcrumb .breadcrumb-menu li::before {
                position: absolute;
                content: '\f101';
                font-family: 'Font Awesome 6 Pro';
                right: -21px;
                top: 1px;
                text-align: center;
                font-size: 16px;
                color: var(--color-white);
            }

            .site-breadcrumb .breadcrumb-menu li:first-child {
                margin-left: 0;
            }

            .site-breadcrumb .breadcrumb-menu li:last-child:before {
                display: none;
            }

            .site-breadcrumb .breadcrumb-menu li.active {
                color: var(--color-white);
            }

.about-area {
    position: relative;
    padding: 60px 0;
}

    .about-area h2 {
        font-size: 30px;
        text-transform: uppercase;
    }

.about-left {
    position: relative;
    margin-right: 40px;
}

.about_wrap {
    position: relative;
}

.about_wrap-decoration {
    position: absolute;
    bottom: 1%;
    right: 15.6704%;
    width: 36.8336%;
    opacity: .65;
    z-index: -1;
}

.about_wrap-img {
    position: relative;
    width: 86.0084%;
    margin-left: auto;
    overflow: hidden;
    border: 1px solid #cad0d7;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
}

.about_wrap-img-inner {
    overflow: hidden;
    border: 10px solid #fff;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
}

.about_wrap-img-1 {
    position: relative;
    width: 59.7738%;
    margin-top: -50%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #cad0d7;
    border-bottom-left-radius: 75%;
}

.about_wrap-img-1-inner {
    border: 10px solid #fff;
    overflow: hidden;
    border-bottom-left-radius: 75%;
}

.wh_box_flex {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 20px;
    margin: 1rem 0 0;
}

.wh_box_flex_list {
    background: var(--color-white);
    border-radius: 20px;
    border: 2px solid var(--border-info-color2);
    box-shadow: var(--box-shadow);
    color: var(--color-dark);
    padding: 25px;
}

.content_icon img {
    margin: 0 auto;
    width: 70px;
    display: block;
}

.content_copy {
    margin: 1rem auto 0;
    text-align: center;
}


.about-img img {
    border-radius: 200px;
}

.about-img .img-2 {
    margin-top: 70px;
}

.about-right {
    position: relative;
    display: block;
}

.about-experience {
    background: var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    line-height: 1.2;
    border-radius: 100px;
    text-align: center;
    border: 10px solid var(--theme-color);
}

    .about-experience img {
        max-width: 100%;
    }

.about-content {
    margin-top: 25px;
    margin-bottom: 35px;
}

.about-item {
    display: flex;
    gap: 12px;
    border: 1px solid var(--border-info-color);
    border-radius: 20px;
    padding: 15px;
    position: relative;
}

    .about-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 30px;
        bottom: 30px;
        border-left: 2px solid var(--theme-color);
    }

    .about-item .icon {
        width: 65px;
        height: 65px;
        line-height: 65px;
        text-align: center;
        background: var(--theme-color);
        border-radius: 50px;
    }

        .about-item .icon img {
            width: 45px;
            filter: brightness(0) invert(1);
        }

    .about-item .content {
        flex: 1;
    }

        .about-item .content h6 {
            color: var(--color-dark);
            font-size: 18px;
            margin-bottom: 5px;
        }

.about-text {
    color: var(--body-text-color);
    padding-bottom: 10px;
    line-height: 25px;
}

.msg_box {
    position: relative;
}

    .msg_box h2 {
        font-size: 25px;
    }

    .msg_box h4 {
        font-size: 18px;
        margin: 0 0 .5rem;
    }

@media all and (max-width: 640px) {
    .about-right {
        margin-top: 80px;
    }

    .reverse-dir {
        flex-direction: column-reverse;
    }
}

@media all and (max-width: 767px) {
    .about-left {
        margin-right: 0;
    }

    .about-title {
        font-size: 30px;
    }

    .about-img .img-2 {
        margin-top: 60px;
        margin-left: -10px;
    }

    .about-img .img-3 {
        margin-left: -30px;
    }

    .about-experience {
        right: -7px;
        bottom: -60px;
    }
}

.comp-category-area {
    position: relative;
    padding: 0 0 100px;
}

.comp-category {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding: 25px;
    height: 100%;
}

    .comp-category:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-gray);
        z-index: 3;
        border-radius: 30px;
        transition: all 0.3s ease-out;
    }

.comp-category-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 36px;
    overflow: hidden;
    transition: all 0.1s ease-out;
}

    .comp-category-img:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay-color);
    }

    .comp-category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

.comp-category-content {
    position: relative;
    z-index: 4;
}

    .comp-category-content .comp-category-icon {
        margin-bottom: 20px;
    }

        .comp-category-content .comp-category-icon img {
            max-height: 60px;
        }

    .comp-category-content h3 {
        font-size: 22px;
        transition: all 0.3s ease-out;
        padding-bottom: 10px;
    }

    .comp-category-content p {
        margin-bottom: 0;
        transition: all 0.3s ease-out;
        line-height: 25px;
    }

.comp-category:hover:before {
    transform: translate(100%,-100%);
}

.comp-category:hover .why-choose-image {
    opacity: 1;
}

.comp-category:hover .comp-category-content .comp-category-icon img {
    filter: brightness(0) invert(1);
}

.comp-category:hover .comp-category-content h3,
.comp-category:hover .comp-category-content p {
    color: var(--color-white);
}

.gray_back {
    background: var(--color-gray);
    padding: 100px 0;
}

.gray2_back {
    background: var(--color-gray);
    padding: 60px 0;
}

.zig-zag-box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.zig-zag-box-content {
    padding: 80px 70px;
    position: relative;
}

    .zig-zag-box-content.thc1 {
        background: var(--theme-color);
    }

    .zig-zag-box-content.thc2 {
        background: var(--theme-color2);
    }

    .zig-zag-box-content.thc3 {
        background: var(--theme-color3);
    }

    .zig-zag-box-content h2 {
        color: var(--color-white);
        font-size: 30px;
    }

    .zig-zag-box-content p {
        color: var(--color-white);
    }

.white-back-area {
    background: var(--color-white);
    padding: 100px 0;
}

.head-content {
    font-size: 40px;
    text-align: center;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.tabs_continer {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: #2c3e50;
}

.about-tab.tab-buttons::before {
    position: absolute;
    content: '';
    background: #34495e;
    left: 0;
    right: 0;
    width: 100%;
    padding: 28px 10px;
    z-index: -1;
}

.tab-buttons button {
    flex: 1;
    padding: 12px 10px;
    border: none;
    outline: none;
    cursor: pointer;
    background: #34495e;
    color: #fff;
    transition: 0.3s;
    font-size: 18px;
}

    .tab-buttons button:hover {
        background: var(--theme-color);
    }

    .tab-buttons button.active {
        background: var(--theme-color);
    }

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeEffect 0.5s;
}

    .tab-content.active {
        display: block;
    }

.about_tab .tab-content {
    padding: 0px;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
}

@media (max-width:640px) {
    .zig-zag-box-container {
        display: block;
    }

    .zig-zag-box-content {
        padding: 30px;
        position: relative;
    }

    .reverse-sec {
        display: flex;
        flex-direction: column-reverse;
    }

    .head-content {
        font-size: 28px;
    }

    .tab-content {
        padding: 15px;
    }

        .tab-content h2 {
            font-size: 20px;
        }

    .page_banner {
        margin-top: 45px;
    }

    .site-breadcrumb {
        padding: 25px 0 35px;
    }

    .about-area .team-member-content h2 {
        font-size: 20px;
        margin: 20px 0 15px;
    }

    .about-tab.tab-buttons::before {
        display: none;
    }
}

.contact-area {
    position: relative;
    padding: 100px 0;
}

.contact-content {
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
    position: relative;
    margin-bottom: 25px;
    border-radius: 30px;
    background: var(--color-white);
    border: 2px solid var(--theme-color);
    transition: var(--transition);
}

    .contact-info:hover {
        transform: translateY(-8px)
    }

    .contact-info .icon {
        font-size: 35px;
        color: var(--color-white);
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        border-radius: 50px;
        background: var(--theme-color);
    }

    .contact-info .content h5 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--color-dark);
    }

    .contact-info .content p {
        color: var(--color-dark);
        font-weight: 500;
        font-size: 16px;
    }

.contact-img img {
    width: 100%;
    border-radius: 40px;
}

.contact-form {
    background: var(--theme-bg-light);
    padding: 30px;
    border-radius: 40px;
}

.contact-form-header {
    margin-bottom: 30px;
}

    .contact-form-header h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--color-dark);
    }

    .contact-form-header p {
        color: var(--body-text-color);
    }

.contact-form .form-message.success,
.contact-form .form-message.error {
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px 18px;
}

.contact-form .form-message.success {
    color: #41BE7D;
    background: rgba(65, 190, 125, .1);
}

.contact-form .form-message.error {
    color: #FF7F7F;
    background: rgba(255, 127, 127, .1);
}

.contact-form .form-message.error {
    color: var(--color-red);
}

.contact-map {
    margin-bottom: -9px;
}

    .contact-map iframe {
        width: 100%;
    }

.supplier_area {
    position: relative;
    padding: 100px 0;
    background: var(--color-gray);
}

.supplier-item {
    position: relative;
    padding: 15px;
    background: var(--color-white);
    border-radius: 30px;
    transition: var(--transition);
}

    .supplier-item:hover {
        transform: translateY(-5px);
    }

    .supplier-item .count {
        position: absolute;
        right: 20px;
        bottom: 15px;
        font-weight: 800;
        font-size: 22px;
        line-height: 50px;
        color: transparent;
        left: unset;
        bottom: unset;
        opacity: .2;
        -webkit-text-stroke: 1px var(--theme-color);
    }

.supplier-icon {
    position: absolute;
    left: -15px;
    top: -15px;
    width: 100px;
    height: 100px;
    line-height: 75px;
    border-radius: 50px;
    text-align: center;
    background: var(--theme-color);
    border: 10px solid var(--color-gray);
    margin: 0;
    transition: var(--transition);
}

    .supplier-icon img {
        width: 50px;
        filter: brightness(0) invert(1);
    }

.supplier-content {
    margin-top: 80px;
}

    .supplier-content h4.supplier-title {
        font-size: 20px;
        margin-top: 8px;
        margin-bottom: 20px;
    }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-area {
    background: var(--color-gray);
    padding: 100px 0;
}

.blog-item {
    position: relative;
    padding: 0px;
    background: var(--theme-bg-light);
    border-radius: 0px;
    /* box-shadow: var(--box-shadow); */
    transition: var(--transition);
}

.blog-item-img {
    /* border-radius: 20px; */
    overflow: hidden;
    position: relative;
}

    .blog-item-img img {
        border-radius: 0;
    }

.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}

.blog-copy {
    position: relative;
    padding: 20px;
}

.B_date span {
    position: relative;
    font-size: 14px;
    color: var(--color-dark);
}

.blog-info {
    position: relative;
}

    .blog-info h4 {
        font-size: 16px;
        color: var(--theme-color2);
        font-weight: 600;
        margin: 6px 0 10px;
    }

    .blog-info p {
        font-size: 15px;
        color: var(--color-dark);
        font-weight: normal;
        margin: 6px 0 10px;
    }

    .blog-info a.B_link {
        font-size: 15px;
        text-decoration: none;
        color: var(--theme-color3);
        font-weight: 600;
        margin: 6px 0 0px;
    }

        .blog-info a.B_link i {
            margin-left: 8px;
            transform: rotate(-40deg);
            transition: var(--transition2);
        }

.blog-item:hover a.B_link i {
    transform: rotate(0deg);
    transition: var(--transition2);
}

.blog-date {
    position: absolute;
    right: 15px;
    margin-top: -20px;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    padding: 0px 15px;
    border-radius: 50px 0 0 50px;
    box-shadow: var(--box-shadow);
    border: 4px solid var(--color-white);
}

    .blog-date strong {
        font-size: 20px;
        font-weight: 800;
        margin-top: 4px;
        line-height: 1;
    }

    .blog-date span {
        font-weight: 500;
    }

.blog-item-info {
    padding: 15px 0 0 0;
}

.blog-title {
    font-size: 22px;
    margin: 15px 0;
    text-transform: capitalize;
}

.blog-item-info p {
    margin-bottom: 16px;
}

.blog-item-info .theme-btn {
    margin-top: 10px;
}

.blog-single {
    position: relative;
    padding: 100px 0;
}

    .blog-single .blog-thumb-img {
        margin-bottom: 20px;
    }

    .blog-single .blog-single-content img {
        border-radius: 20px;
    }

.blog-info {
    position: relative;
}

.blog-details {
    position: relative;
}

.blog-single .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .blog-single .blog-meta i {
        margin-right: 5px;
        color: var(--theme-color);
    }

.blog-single h3.blog-details-title {
    font-size: 34px;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-single p {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.blog-single .blog-meta-left ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .blog-single .blog-meta-left ul li {
        color: var(--color-dark);
        font-weight: 500;
    }

.blog-sidebar .widget {
    background: var(--theme-bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
}

    .blog-sidebar .widget .widget-title {
        padding-bottom: 10px;
        margin-bottom: 30px;
        position: relative;
        font-size: 22px;
        color: var(--color-dark);
        font-weight: 700;
    }

        .blog-sidebar .widget .widget-title::before {
            position: absolute;
            content: '';
            width: 15px;
            border-bottom: 3px solid var(--theme-color);
            bottom: 0;
            left: 0;
        }

        .blog-sidebar .widget .widget-title::after {
            position: absolute;
            content: '';
            width: 30px;
            border-bottom: 3px solid var(--theme-color);
            bottom: 0;
            left: 22px;
        }

    .blog-sidebar .widget .recent-post-item {
        display: flex;
        justify-content: start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .blog-sidebar .widget .recent-post-img img {
        width: 75px;
        border-radius: 15px;
    }

    .blog-sidebar .widget .recent-post-info {
        flex: 1;
    }

        .blog-sidebar .widget .recent-post-info h6 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
        }

            .blog-sidebar .widget .recent-post-info h6 a:hover {
                color: var(--theme-color);
            }

        .blog-sidebar .widget .recent-post-info span {
            font-size: 14px;
            color: var(--theme-color);
            font-weight: 500;
        }

            .blog-sidebar .widget .recent-post-info span i {
                margin-right: 5px;
            }

.executives-area {
    position: relative;
    padding: 100px 0;
}

.pa-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 500px;
}

    .pa-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: var(--theme-color2);
        opacity: .85;
        width: 100%;
        height: 100%;
    }

.portfolio-img {
    position: relative;
}

    .portfolio-img::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        opacity: 0;
        background: var(--theme-color);
        border-radius: 50px 50px 50px 10px;
        transform: scaleY(0);
        transition: var(--transition);
    }

    .portfolio-img img {
        border-radius: 50px 50px 50px 10px;
    }

.portfolio-link {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: var(--theme-color);
    background: var(--color-white);
    border-radius: 50px;
    text-align: center;
    left: 50%;
    top: 50%;
    font-size: 28px;
    margin-top: 50px;
    opacity: 0;
    box-shadow: var(--box-shadow);
    transform: translate(-50%, -50%);
    transition-delay: 0.3s;
}

.portfolio-content {
    display: grid;
    grid-template-columns: 80% 15%;
    justify-content: space-between;
    margin-top: 15px;
}

.portfolio-info h4 {
    font-size: 20px;
}

.portfolio-content small {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme-color);
    letter-spacing: 2px;
}

.portfolio-arrow {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    border-radius: 50px;
}

    .portfolio-arrow i {
        color: var(--color-white);
        transform: rotate(-45deg);
        transition: var(--transition);
    }

    .portfolio-arrow:hover i {
        transform: rotate(0);
    }

.portfolio-slider .owl-nav {
    margin-top: 0px;
}

.portfolio-slider:hover .owl-nav .owl-prev {
    left: -10px;
    opacity: 1;
}

.portfolio-slider:hover .owl-nav .owl-next {
    right: -10px;
    opacity: 1;
}

.portfolio-slider .owl-nav button i {
    display: inline-block;
    height: 48px;
    width: 48px;
    line-height: 48px;
    color: var(--color-white);
    font-size: 25px;
    text-align: center;
    background: var(--theme-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-slider .owl-nav button:hover i {
    background: var(--theme-color);
    color: var(--color-white);
}

.portfolio-slider .owl-nav .owl-prev {
    left: 0px;
    opacity: 0;
}

.portfolio-slider .owl-nav .owl-next {
    right: 0px;
    opacity: 0;
}

.portfolio-slider .owl-nav button {
    position: absolute;
    top: 50%;
    margin-top: -35px;
    transform: translate(0, -50%);
    transition: var(--transition);
}

.portfolio-content h4 a:hover {
    color: var(--theme-color);
}

.team-member-image {
    position: relative;
}

    .team-member-image figure {
        display: block;
        border-radius: 10px;
        overflow: hidden;
    }

.ch_msg {
    position: relative;
    padding-left: 50px;
}

    .ch_msg h2 {
        color: var(--color-dark);
        font-size: 35px;
        margin-bottom: 10px;
        text-transform: capitalize;
    }

    .ch_msg h4 {
        color: var(--theme-color2);
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .ch_msg p {
        font-size: 17px;
        margin-bottom: 5px;
        line-height: 25px;
        /*font-style: italic;*/
    }

    .ch_msg i {
        transform: scaleX(-1);
        font-size: 60px;
        display: inline-block;
        color: var(--theme-color);
    }

.team-member-content {
    position: relative;
    padding-left: 50px;
}

    .team-member-content h2 {
        color: var(--color-dark);
        font-size: 35px;
        margin-bottom: 15px;
    }

    .team-member-content h4 {
        color: var(--theme-color2);
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .team-member-content p {
        font-size: 16px;
        margin-bottom: 10px;
    }

.choose-content {
    margin-left: 30px;
}

.board-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.board-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow2);
    padding: 20px 20px;
    width: 100%;
    max-width: 550px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .board-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

.board-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    background: var(--theme-color2);
    padding: 15px;
    border-radius: 10px 10px 0 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.section-title {
font-size: 1.2rem;
font-weight: 600;
color: #000000;
margin-top: 20px;
}

.member-list {
list-style: none;
padding-left: 0;
margin-top: 10px;
}

.member-list li {
margin-bottom: 8px;
color: #333333;
font-size: 1rem;
padding-left: 30px;
position: relative;
}

.member-list li::before {
font-family: var(--fa-style-family,'Font Awesome 6 Pro');
content: '\f058';
position: absolute;
left: 0;
color: var(--theme-color);
}

.member-list li:nth-child(even){
text-align: right;
}

.member-list li:nth-child(even)::before{
display: none;
}

.analysis-text {
    position: relative;
    z-index: 1;
}
.analysis-text ul {
    padding: 0;
    margin: 10px 0 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.analysis-text ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 30px;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.B_member_area .vert_tabs button {
    display: block;
}

.B_member_area .vert_tabs button {
    background: #ececec;
    color: var(--color-dark);
}

    .B_member_area .vert_tabs button.active {
        background: #ececec;
        font-weight: 600;
        color: #000000;
        border-left: 6px solid var(--theme-color2);
        position: relative;
    }

        .B_member_area .vert_tabs button.active:before {
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-left: 10px solid var(--theme-color2);
            border-bottom: 8px solid transparent;
            position: absolute;
            content: '';
            left: 0;
            top: 18px;
        }

.member_info {
    position: relative;
}

    .member_info h2 {
        color: var(--theme-color2);
        font-size: 36px;
        text-transform: capitalize;
    }

    .member_info div.designation {
        color: var(--color-dark);
        font-size: 20px;
        text-transform: capitalize;
        margin: 10px 0 20px;
        border-bottom: 1px solid #dddddd;
        padding-bottom: 10px;
    }


@media(max-width: 640px) {
    .board-card {
        max-width: 100%;
    }
}

@media all and (max-width:640px) {
    .team-member-content {
        padding-left: 0px;
    }

    .choose-content {
        margin-left: 0px;
    }
}

.countdown-area {
    background: url(../img/brand_bg_graphic.png) no-repeat center #f5f6fa;
    padding: 60px 0;
}

.count-heading {
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -2px;
    padding-bottom: 30px;
    /* text-align: center; */
}

.counter-group {
    display: grid;
    grid-template-columns: 20% 75%;
    gap: 10px;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 15px;
  border: 1px solid #dddddd; */
}

    .counter-group.other {
        grid-template-columns: 18% 82%;
        gap: 0;
    }

    .counter-group .cont-img img {
        width: 60px;
    }

.counter-copy {
    position: relative;
}

    .counter-copy span {
        font-size: 16px;
        color: #777777;
        font-weight: 500;
    }

.counter-list {
    display: flex;
    align-items: baseline;
    line-height: 45px;
}

    .counter-list span.counter {
        font-size: 65px;
        color: #000000;
        font-weight: 700;
    }

    .counter-list sup {
        font-size: 17px;
        top: -2rem;
        font-weight: 500;
    }

    .counter-list span.child-txt {
        font-size: 15px;
        color: #777777;
        font-weight: 500;
        line-height: 20px;
    }

.counter-area {
    position: relative;
    background: var(--color-dark);
    overflow: hidden;
    z-index: 1;
}

    .counter-area::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/shape/04.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .07;
    }

.counter-box {
    display: flex;
    gap: 12px;
    position: relative;
    padding: 20px 15px 20px 20px;
    border-radius: 15px;
    border: 2px solid var(--border-white-color);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
    background: var(--theme-color2);
}

    .counter-box::before {
        content: "";
        position: absolute;
        left: -1px;
        top: 25px;
        bottom: 25px;
        border-left: 3px solid var(--theme-color3);
        border-radius: 5px;
        z-index: -1;
    }

    .counter-box .icon {
        width: 80px;
        height: 80px;
        line-height: 70px;
        font-size: 35px;
        border-radius: 50px;
        text-align: center;
        color: var(--color-white);
        background: var(--color-white);
    }

        .counter-box .icon img {
            width: 50px;
        }

    .counter-box .info {
        display: flex;
        gap: 2px;
    }

    .counter-box .counter {
        display: block;
        line-height: 1;
        color: var(--color-white);
        font-size: 50px;
        font-weight: 900;
    }

    .counter-box .unit {
        font-size: 20px;
        color: var(--color-white);
        font-weight: 500;
        line-height: 1;
        margin: 3px 0 0 3px;
    }

    .counter-box .title {
        color: var(--color-white);
        margin-top: 10px;
        font-size: 25px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .counter-box .title2 {
        color: var(--color-white);
        margin-top: 10px;
        font-size: 25px;
        font-weight: 600;
        text-transform: capitalize;
    }

@media all and (max-width:640px) {
    .square-4 {
        display: block;
    }

        .square-4 .grid {
            padding: 10px;
            border-right: none;
            border-bottom: none;
        }

    .countdown-area {
        padding: 40px 0 60px;
    }

    .count-heading {
        font-size: 30px;
        padding-bottom: 20px;
        line-height: 32px;
    }

    .counter-group {
        gap: 10px;
        padding-bottom: 10px;
        grid-template-columns: 15% 85%;
        margin-bottom: 15px;
    }

    .countdown-area .mb-60 {
        margin-bottom: 0px;
    }

    .countdown-area .mb-30 {
        margin-bottom: 0px;
    }

    .choose-area .choose-content {
        margin-top: 40px;
    }

    .news-grid {
        display: block;
    }
}


/* ===================
36. Cta css 
====================== */

.cta-area {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 1;
    padding: 100px 0;
}

    .cta-area::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: var(--theme-color3);
        opacity: .6;
        z-index: -1;
    }

    .cta-area::after {
        content: "";
        position: absolute;
        width: 550px;
        height: 550px;
        left: 50%;
        top: -50px;
        transform: translateX(-50%);
        background: var(--theme-color);
        border-radius: 50%;
        opacity: .2;
        z-index: -1;
    }

.cta-content {
    text-align: center;
}

    .cta-content h1 {
        color: var(--color-white);
        text-transform: capitalize;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cta-content p {
        color: var(--color-white);
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-content .theme-btn {
        background: var(--theme-color);
        color: var(--color-white);
    }

@media all and (max-width:640px) {
    .cta-content h1 {
        font-size: 30px;
    }
}
/* overlay-sec */
.overlay-sec {
    position: relative;
    z-index: 1;
    margin-top: -200px;
}

.overlay-sec-White-box {
    background: var(--theme-bg-light);
}

.white_box_left_bar {
    background: var(--theme-color);
    background-image: linear-gradient(to bottom, rgba(44, 40, 109, 0.7), rgba(12, 7, 106, 0.7)), url(../img/overlay_img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 50px 85px;
    height: 100%;
}

    .white_box_left_bar h2 {
        color: var(--color-white);
        text-transform: uppercase;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .white_box_left_bar p {
        color: var(--color-white);
        font-size: 16px;
        line-height: 22px;
    }

    .white_box_left_bar ul {
        margin: 15px 0 25px;
    }

        .white_box_left_bar ul li {
            color: var(--color-white);
            font-size: 17px;
            line-height: 30px;
            margin-left: 35px;
            cursor: default;
            transition: all 0.5s;
        }

            .white_box_left_bar ul li:hover {
                margin-left: 45px;
                transition: all 0.5s;
            }

            .white_box_left_bar ul li::before {
                position: absolute;
                content: '\F138';
                font-family: "bootstrap-icons";
                font-size: 20px;
                color: var(--color-white);
                margin-left: -35px;
            }

.white_box_right_bar {
    padding: 50px 30px 50px 0;
}

    .white_box_right_bar h2 {
        color: var(--color-dark);
        text-transform: uppercase;
        font-size: 35px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    .white_box_right_bar p {
        color: var(--color-dark);
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 25px;
    }

.process-step-style-02 {
    display: flex;
    margin: 0 0 2rem;
    cursor: default;
}

    .process-step-style-02 * {
        transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out
    }

    .process-step-style-02 .process-step-child {
        display: flex;
        position: relative;
        align-items: center;
        transition: box-shadow .3s ease, background .3s ease
    }

        .process-step-style-02 .process-step-child:hover .process-step-icon {
            background-color: #fff;
            color: #2C286D;
            border: 2px solid #2C286D;
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -ootransform: scale(1.1);
            transform: scale(1.1);
        }

            .process-step-style-02 .process-step-child:hover .process-step-icon img {
                filter: brightness(1) invert(0);
            }

    .process-step-style-02 .process-step-icon {
        position: relative;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        line-height: 40px;
        overflow: hidden;
        background: #2C286D;
        text-align: center;
        border: 2px solid transparent;
    }

        .process-step-style-02 .process-step-icon img {
            width: 35px;
            filter: brightness(0) invert(1);
        }

    .process-step-style-02 .process-step-icon-wrap {
        position: relative;
        margin-right: 30px;
    }

        .process-step-style-02 .process-step-icon-wrap .process-step-item-box-bfr {
            position: absolute;
            top: 55px;
            left: 50%;
            width: 1px;
            height: 3.5rem;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            background-color: #2C286D;
        }

    .process-step-style-02 .process-content div.titletxt {
        font-size: 25px;
        font-weight: bold;
    }

    .process-step-style-02 .process-content div.smalltxt {
        font-size: 16px;
        line-height: 20px;
    }

    .process-step-style-02:last-child .process-content {
        margin-bottom: 0
    }

.white_box_right_bar .process-step-style-02:nth-last-child(1) {
    margin: 0;
}

@media all and (max-width:640px) {
    .white_box_left_bar {
        padding: 30px 25px 80px;
    }

    .white_box_right_bar {
        padding: 30px 20px 50px;
    }

    .value_group {
        display: block;
    }

    .white_box_left_bar ul li {
        color: var(--color-white);
        font-size: 15px;
        transition: all 0.5s;
    }

    .white_box_right_bar p {
        font-size: 16px;
        line-height: 22px;
    }

    .process-step-style-02 .process-step-child {
        align-items: baseline;
    }

    .process-step-style-02 .process-step-icon-wrap .process-step-item-box-bfr {
        height: 6rem;
    }
}
/* overlay-sec */

/* process */
.our-process {
    background: var(--theme-bg-light);
    padding: 60px 0;
    margin: 70px 0 0px;
}

.containt_B {
    position: relative;
    text-align: center;
}

    .containt_B h3 {
        font-size: 45px;
        text-transform: uppercase;
    }

.our-process-image {
    position: relative;
}

    .our-process-image figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

.image-anime {
    position: relative;
    overflow: hidden;
}

    .image-anime:after {
        content: "";
        position: absolute;
        width: 200%;
        height: 0%;
        left: 50%;
        top: 50%;
        background-color: rgba(255, 255, 255, .3);
        transform: translate(-50%, -50%) rotate(-45deg);
        z-index: 1;
    }

    .image-anime:hover:after {
        height: 250%;
        transition: all 600ms linear;
        background-color: transparent;
    }

.process-steps-box {
    position: relative;
}

.process-steps-box {
    position: relative;
    display: grid;
    /* grid-template-columns:24% 24% 24% 24%; */
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.process-step-item {
    position: relative;
    border-radius: 20px;
    display: block;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    border: 1px solid var(--theme-color3);
}

.portal_box .process-step-item {
    background: var(--color-white);
}

.card_box {
    position: relative;
    border-radius: 30px;
    border: none;
    display: block;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    cursor: default;
}

    .card_box:hover:before {
        transition: all 0.3s ease-in-out;
        background: linear-gradient(to bottom right, rgba(216, 41, 39, .5), rgba(44, 40, 109, 0.5)) !important;
    }

    .card_box::before {
        position: absolute;
        /*background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.5) 10%) !important;*/
        background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)) !important;
        min-height: 100%;
        content: '';
        display: block;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 0;
        transition: all 0.4s ease-in-out;
        z-index: 0;
    }

.card_box_icon {
    position: relative;
    margin: 0 0 15px;
    z-index: 1;
}

    .card_box_icon i {
        color: #ffffff;
        background: #34495e;
        border-radius: 12px;
        width: 60px;
        display: block;
        height: 60px;
        line-height: 60px;
        font-size: 30px;
        text-align: center;
    }

    .card_box_icon div {
        background: #34495e;
        border-radius: 12px;
        width: 60px;
        display: block;
        height: 60px;
        line-height: 55px;
        font-size: 30px;
        text-align: center;
    }

        .card_box_icon div.imgicon {
            background: #34495e;
            border-radius: 12px;
            width: 60px;
            display: block;
            height: 60px;
            line-height: 60px;
            font-size: 30px;
            text-align: center;
        }

    .card_box_icon img {
        width: 35px;
        filter: brightness(0) invert(1);
    }

.card_box_content.midelse {
    margin-top: 377px;
}

.card_box_content {
    position: relative;
    display: grid;
    grid-template-columns: 84% 16%;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 75px;
    z-index: 1;
}

.box_copy h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

.box_copy p {
    margin: 0;
    line-height: 25px;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

.box_link a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-align: center;
}

    .box_link a i {
        transform: rotate(-40deg);
        transition: all 0.3s ease-in-out;
    }

    .box_link a:hover i {
        transform: rotate(0deg);
        transition: all 0.3s ease-in-out;
    }

.media-area {
    background: var(--color-white);
    padding: 60px 0;
}

.media_grp_horizontal {
    display: grid;
    grid-template-columns: 55% 45%;
    background: var(--color-gray);
    position: relative;
    cursor: default;
    transition: all 0.3s ease-in-out;
}

    .media_grp_horizontal:hover .media_img img {
        transform: scale(1.5);
        transition: all 0.3s ease-in-out;
    }

.media_grp_vertical {
    display: block;
    background: var(--color-gray);
    position: relative;
    cursor: default;
    transition: all 0.3s ease-in-out;
}

    .media_grp_vertical:hover .media_img img {
        transform: scale(1.5);
        transition: all 0.3s ease-in-out;
    }

.media_img {
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.media_copy {
    padding: 20px;
}

    .media_copy h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .media_copy p {
        font-size: 16px;
        line-height: 150%;
    }

    .media_copy i {
        transition: all 0.3s ease-in-out;
    }

    .media_copy a {
        transition: all 0.3s ease-in-out;
        color: var(--theme-color3);
    }

        .media_copy a:hover i {
            transform: rotate(-40deg);
            transition: all 0.3s ease-in-out;
        }

.process-step-item.active:before, .process-step-item:hover:before {
    height: 100%;
    top: 0;
    bottom: auto;
}

.process-step-item::before {
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--theme-color3);
    background: rgba(216, 41, 39, .8);
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

/* Make the 5th item span across both columns and center it */
.process-steps-box .process-step-item:last-child {
    grid-column: 1 / -1; /* spans across the whole row */
    justify-self: center; /* centers inside the grid */
    width: 50%; /* optional: control the width */
}

.process-step-no {
    position: relative;
    margin: 0 0 15px;
    z-index: 1;
}

    .process-step-no img {
        width: 55px;
        transition: all 0.3s ease-in-out;
        filter: brightness(0) invert(1);
    }

.process-step-icon {
    background: #34495e;
    border-radius: 12px;
    width: 60px;
    display: block;
    height: 60px;
    line-height: 55px;
    text-align: center;
    margin-bottom: 3rem;
}

    .process-step-icon img {
        width: 40px;
        transition: all 0.3s ease-in-out;
        filter: brightness(0) invert(1);
    }

.process-step-no h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-red);
    transition: all 0.3s ease-in-out;
}

.portal_box .process-step-content {
    position: relative;
    z-index: 1;
    color: var(--color-dark);
}

.process-step-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

    .process-step-content h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 10px;
        transition: all 0.3s ease-in-out;
        color: var(--color-white);
    }

.portal_box .process-step-content h3 {
    color: var(--color-dark);
    font-size: 18px;
}

.process-step-content p {
    margin: 0;
    line-height: 25px;
    transition: all 0.3s ease-in-out;
}

.process-step-item.active .process-step-content p, .process-step-item:hover .process-step-content p, .process-step-item:hover .process-step-content h3, .process-step-item:hover .process-step-no h2, .process-step-item:hover .process-step-no img {
    color: var(--color-white);
    filter: brightness(0) invert(1);
}

.process-step-item:hover .theme-btn {
    background: #ffffff;
    color: #000000;
}

@media all and (max-width:640px) {
    .our-process {
        padding: 50px 0;
        margin: 50px 0 0px;
    }

    .containt_B h3 {
        font-size: 30px;
    }

    .process-step-item {
        display: block;
        border-radius: 20px;
        padding: 20px;
    }

    .process-step-no h2 {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .process-steps-box {
        display: block;
    }

    .card_box_content.midelse {
        margin-top: 75px;
    }
}
/* process */


/* ===================
38. Choose css 
====================== */

.choose-area {
    position: relative;
    padding: 60px 0;
}

.back_graphic {
    background: url(../img/brand_bg_graphic-2.png) no-repeat right -20px bottom 40px #ffffff;
}

.choose-item {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.choose-item-icon {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 55px;
    background: var(--theme-color);
    text-align: center;
    border-radius: 50px;
}

    .choose-item-icon::before {
        content: "";
        position: absolute;
        inset: -5px;
        border: 2px dashed var(--theme-color);
        border-radius: 50px;
        transform: translate(-1rem, -1.3rem);
        animation: 4s linear rotate infinite;
        animation-direction: reverse;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.choose-item-icon img {
    width: 42px;
    filter: brightness(0) invert(1);
}

.choose-item-info {
    flex: 1;
}

    .choose-item-info h4 {
        color: var(--color-dark);
        margin-bottom: 8px;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .choose-item-info p {
        color: var(--body-text-color);
    }

.choose-img {
    position: relative;
    text-align: right;
}

    .choose-img .img-1 {
        width: 70%;
        border-radius: 100px 0px 100px 100px;
    }

    .choose-img .img-2 {
        position: absolute;
        left: 0;
        bottom: -135px;
        width: 80%;
        border-radius: 100px 100px 100px 0px;
        border: 15px solid var(--color-white);
        margin-bottom: 70px;
    }

    .choose-img .shape {
        position: absolute;
        left: 0;
        top: 70px;
        width: 150px;
        z-index: -1;
    }

@media all and (max-width: 991px) {
    .choose-img .img-2 {
        width: 70%;
        bottom: -50px;
    }
}

@media all and (max-width:640px) {
    .choose-img img.shape {
        display: none;
    }

    .choose-area {
        padding: 50px 0 70px;
    }
}

/* Award area */
.award-area {
    background: url(../img/triangle-graphic.png) no-repeat left top, url(../img/triangle-graphic-1.png) right bottom no-repeat #fff9f9;
    padding: 100px 0;
}

.award-img {
    position: relative;
}

    .award-img img {
        position: absolute;
        right: 8%;
        top: -40px;
    }

.award-card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.award-card {
    background: var(--theme-color2);
    border-radius: 10px;
    padding: 15px;
}

.award-card-coming-soon {
    background: var(--theme-color3);
    border-radius: 10px;
    padding: 15px;
    opacity: .2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card-img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    line-height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-white);
}

    .award-card-img img {
        width: 90px;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

.award-card-heading h3 {
    color: #ffffff;
    font-size: 17px;
    text-align: center;
    padding: 10px 0 5px;
}

.award-card-coming-soon .award-card-heading h3 {
    color: #ffffff;
    font-size: 25px;
    text-align: center;
    padding: 0;
    font-weight: 100;
}

@media all and (max-width:640px) {
    .award-card-group {
        grid-template-columns: repeat(2, 1fr);
    }

    .award-img img {
        position: relative;
        right: 0;
        top: 0;
    }
}

@media all and (max-width:1920px) and (min-width:1600px) {
    .award-img img {
        position: absolute;
        right: -30%;
        top: -70px;
    }
}
/* Award area */

/*====================
 Testimonial css 
======================*/

.testimonial-area {
    position: relative;
}

.tm-bg {
    position: relative;
    background: var(--theme-color3);
}

    .tm-bg::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-image: url(../img/skyline_city.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        opacity: .1;
    }

.testimonial-item {
    position: relative;
    background: var(--color-white);
    padding: 15px 30px;
    border-bottom: 5px solid var(--theme-color);
    border-radius: 50px 50px 0px 50px;
    margin-bottom: 35px;
}

.testimonial-quote p {
    position: relative;
    color: var(--color-dark);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    z-index: 1;
}

.testimonial-content {
    position: relative;
    border-left: 3px solid var(--theme-color);
    padding-left: 15px;
    margin-top: 15px;
    z-index: 1;
}

.testimonial-author-img {
    position: absolute;
    right: 20px;
    bottom: -50px;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 4px solid var(--theme-color);
}

    .testimonial-author-img img {
        border-radius: 50%;
        border: 4px solid var(--color-white);
    }

.testimonial-author-info h4 {
    font-size: 20px;
    color: var(--color-dark);
}

.testimonial-author-info p {
    color: var(--theme-color);
    font-weight: 500;
}

.testimonial-quote-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .15;
}

.testimonial-shadow-icon img {
    width: 200px !important;
}

.testimonial-rate {
    color: #FB9902;
    margin-bottom: 10px;
}

/* testimonial-area 2 */
.testimonial-area2 .testimonial-item {
    border-radius: 30px 30px 50px 30px;
    border-bottom: none;
}

.testimonial-area2 .testimonial-author-img {
    width: 80px;
    height: 80px;
    right: -30px;
    bottom: -20px;
    border: 7px solid var(--theme-color2);
}

/* testimonial-slider */
.testimonial-slider .owl-dots {
    text-align: center;
    margin-top: 10px;
}

    .testimonial-slider .owl-dots .owl-dot span {
        background: var(--theme-color);
        margin: 5px;
        border-radius: 10px;
        width: 15px;
        height: 7px;
        display: inline-block;
        transition: var(--transition);
    }

    .testimonial-slider .owl-dots .owl-dot.active span {
        background-color: var(--theme-color);
        width: 8px;
        height: 8px;
    }

.product_area {
    position: relative;
    padding: 100px 0;
}

.award-content {
    position: relative;
}

    .award-content h2 {
        font-size: 30px;
        color: #000000;
        font-weight: 700;
        text-transform: uppercase;
    }

        .award-content h2 span {
            color: var(--theme-color2);
        }

    .award-content p {
        font-size: 30px;
        color: #000000;
        margin: 20px 0 0;
        line-height: 40px;
        font-style: italic;
    }

        .award-content p i {
            font-size: 45px;
            display: inline-block;
            color: var(--theme-color);
        }

            .award-content p i:nth-child(1) {
                transform: scaleX(-1);
            }

.vert_tabs_continer {
    display: flex;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.vert_tabs {
    display: flex;
    flex-direction: column;
    width: 30%;
}

    .vert_tabs button {
        background: #efefef;
        color: #000000;
        padding: 15px 20px;
        border: none;
        outline: none;
        cursor: pointer;
        transition: 0.3s;
        text-align: left;
        font-size: 14px;
        line-height: 22px;
        display: grid;
        grid-template-columns: 20% 75%;
        gap: 10px;
    }

    .vert_tabs.dist_tabs button {
        display: block;
    }

    .vert_tabs button img {
        filter: brightness(1) invert(0);
    }

    .vert_tabs button:hover {
        background: var(--theme-color2);
        color: #ffffff;
    }

        .vert_tabs button:hover img {
            filter: brightness(0) invert(1);
        }

    .vert_tabs button.active {
        background: var(--theme-color2);
        font-weight: 600;
        color: #ffffff;
    }

        .vert_tabs button.active img {
            filter: brightness(0) invert(1);
        }

.ver_tb_content {
    width: 70%;
    padding: 0 0 30px 30px;
}

.ver_tab-content {
    display: none;
    animation: fadeEffect 0.5s;
}

    .ver_tab-content.active {
        display: block;
    }

.product_cpntent {
    position: relative;
}

    .product_cpntent h2 {
        font-size: 30px;
        padding: 0 0 10px;
    }

    .product_cpntent h5 {
        padding: 15px 0 0;
    }

.digram_img {
    position: relative;
}

    .digram_img img {
        max-width: 100%;
    }

@keyframes animation-1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(30px);
    }
}

.aniamtion-key-1 {
    position: relative;
    animation-name: animation-1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.prod_lineup {
    background: var(--color-dark);
    background: url(../img/brand_bg_graphic-3.png) no-repeat left top, url(../img/brand_bg_graphic-4.png) no-repeat right top #000000;
    padding: 30px;
    border-radius: 100px;
    overflow: hidden;
    margin: 50px 0;
}

    .prod_lineup h3 {
        text-align: center;
        color: var(--color-green);
        font-size: 30px;
    }

/* css tab */
.horizontal_tabs {
    display: flex;
    flex-wrap: wrap;
}

    .horizontal_tabs label {
        order: 1;
        display: block;
        padding: 10px 15px;
        margin-right: 0.2rem;
        cursor: pointer;
        background: var(--theme-color);
        font-weight: 600;
        transition: ease 0.2s;
        color: var(--color-white);
    }

    .horizontal_tabs .Htab {
        order: 99;
        flex-grow: 1;
        width: 100%;
        display: none;
        padding: 1rem 0;
        background: #fff;
    }

    .horizontal_tabs input[type="radio"] {
        display: none;
    }

        .horizontal_tabs input[type="radio"]:checked + label {
            background: #b5e1cd;
            color: var(--color-dark);
        }

            .horizontal_tabs input[type="radio"]:checked + label + .Htab {
                display: block;
            }

.horizontal1_tabs {
    display: flex;
    flex-wrap: wrap;
}

    .horizontal1_tabs label {
        order: 1;
        display: block;
        padding: 10px 15px;
        margin-right: 0.2rem;
        cursor: pointer;
        background: var(--theme-color);
        font-weight: 600;
        transition: ease 0.2s;
        color: var(--color-white);
    }

    .horizontal1_tabs .Htab1 {
        order: 99;
        flex-grow: 1;
        width: 100%;
        display: none;
        padding: 1rem 0;
        background: #fff;
    }

    .horizontal1_tabs input[type="radio"] {
        display: none;
    }

        .horizontal1_tabs input[type="radio"]:checked + label {
            background: #b5e1cd;
            color: var(--color-dark);
        }

            .horizontal1_tabs input[type="radio"]:checked + label + .Htab1 {
                display: block;
            }

.horizontal2_tabs {
    display: flex;
    flex-wrap: wrap;
}

    .horizontal2_tabs label {
        order: 1;
        display: block;
        padding: 10px 15px;
        margin-right: 0.2rem;
        cursor: pointer;
        background: var(--theme-color);
        font-weight: 600;
        transition: ease 0.2s;
        color: var(--color-white);
    }

    .horizontal2_tabs .Htab2 {
        order: 99;
        flex-grow: 1;
        width: 100%;
        display: none;
        padding: 1rem 0;
        background: #fff;
    }

    .horizontal2_tabs input[type="radio"] {
        display: none;
    }

        .horizontal2_tabs input[type="radio"]:checked + label {
            background: #b5e1cd;
            color: var(--color-dark);
        }

            .horizontal2_tabs input[type="radio"]:checked + label + .Htab2 {
                display: block;
            }

.Htab, .Htab1, .Htab2 h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.Htab, .Htab1, .Htab2 p {
    font-size: 17px;
    line-height: 25px;
}

.dark_back {
    background: var(--color-gray) !important;
    color: #000000 !important;
    text-align: center;
}

.prod_content {
    position: relative;
}

    .prod_content h5 {
        font-size: 20px;
        margin: 0 0 10px;
    }

    .prod_content p {
        font-size: 16px;
        line-height: 23px;
    }

    .prod_content h6 {
        font-size: 17px;
        margin: 20px 0 10px;
    }

    .prod_content ul {
        margin: 0 0 0 20px;
    }

        .prod_content ul li {
            list-style: disc;
            font-size: 16px;
            line-height: 20px;
            margin-bottom: 10px;
        }

.branding {
    color: #000000;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin: 30px 0 0;
}

.testimonial-quote.btand-content {
    position: relative;
}

    .testimonial-quote.btand-content img {
        width: 150px;
        max-width: 100%;
        margin: 0 0 10px;
    }

    .testimonial-quote.btand-content p {
        font-size: 16px;
        line-height: 22px;
        font-style: normal;
        text-align: left;
        text-transform: none;
    }

.testimonial-slider.branding .testimonial-item {
    padding: 15px;
    border: 2px solid var(--theme-color2);
    border-radius: 10px;
}

.testimonial-slider.branding .owl-dots {
    display: none !important;
}

@keyframes animation-6 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

.aniamtion-key-6 {
    position: relative;
    animation-name: animation-6;
    animation-duration: 1.9s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@media (max-width: 45em) {
    .horizontal_tabs .Htab,
    .horizontal_tabs label {
        order: initial;
    }

    .horizontal_tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }

    .horizontal1_tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }

    .horizontal2_tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }
}
/* css tab */

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .vert_tabs_continer {
        flex-direction: column;
    }

    .vert_tabs, .ver_tab-content {
        width: 100%;
    }
}

@media all and (max-width:640px) {
    .ver_tb_content {
        width: 100%;
        padding: 15px;
    }

    .prod_lineup {
        padding: 20px;
        border-radius: 100px;
        margin: 40px 0 20px;
    }

        .prod_lineup h3 {
            font-size: 25px;
        }

    .Htab img {
        width: 200px;
    }

    .Htab1 img {
        width: 200px;
    }

    .Htab2 img {
        width: 200px;
    }

    .award-img {
        display: block;
    }

    .award-area {
        padding: 80px 0 0;
        background: url(../img/triangle-graphic.png) no-repeat left top, url(../img/triangle-graphic-1.png) right -4% bottom no-repeat #fff9f9;
    }

    .award-content h2 {
        font-size: 25px;
    }

    .award-content p {
        font-size: 20px;
        margin: 20px 0 25px;
        line-height: 30px;
    }

        .award-content p i {
            font-size: 35px;
        }

    .blog-item {
        margin-bottom: 20px;
    }

    .media-area {
        padding: 70px 0 45px;
    }

    .counter-list span.counter {
        font-size: 50px;
    }

    .B_member_area .vert_tabs_continer {
        grid-template-columns: 15% 85%;
        display: grid;
    }

    .B_member_area .vert_tabs button {
        font-size: 0;
    }

    .member_info h2 {
        font-size: 20px;
    }
}

.core_page {
    position: relative;
    padding: 60px 0;
}

.pg_content h1 {
    font-size: 40px;
    color: var(--color-dark);
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 10px;
}

    .pg_content h1 span {
        font-size: 25px;
        display: block;
    }

.pg_content p {
    font-size: 17px;
    color: var(--color-dark);
    width: 600px;
    text-align: center;
    margin: 0 auto;
    line-height: 23px;
}

.csr_pg_content {
    position: relative;
}

    .csr_pg_content h1 {
        font-size: 50px;
        color: var(--theme-color2);
        font-weight: 900;
        text-transform: uppercase;
        line-height: 50px;
    }

    .csr_pg_content p i.fas {
        font-size: 35px;
        display: inline-block;
        color: var(--theme-color2);
        line-height: 0;
        vertical-align: middle;
    }

        .csr_pg_content p i.fas:nth-child(1) {
            transform: scaleX(-1);
        }

    .csr_pg_content h1 span {
        font-weight: 300;
        display: block;
    }

    .csr_pg_content h1 strong {
        color: var(--color-dark);
        display: block;
    }

    .csr_pg_content p {
        font-size: 22px;
        color: var(--color-dark);
        line-height: 30px;
        text-align: justify;
    }

.elmnt-1 {
    position: absolute;
    right: 0;
    top: 0;
}

.sus-frame-cont {
    position: relative;
}

    .sus-frame-cont h2 {
        font-size: 30px;
        color: var(--theme-color2);
        font-weight: 800;
        text-transform: uppercase;
    }

        .sus-frame-cont h2 strong {
            display: block;
            font-weight: 800;
            font-size: 45px;
        }

    .sus-frame-cont p {
        font-size: 17px;
        color: #000000;
        line-height: 25px;
        margin: 10px 0 0;
        text-align: justify;
    }

    .sus-frame-cont ul {
        list-style: none;
        margin: 0 0 0 20px;
    }

        .sus-frame-cont ul li {
            font-size: 17px;
            color: #000000;
            line-height: 25px;
            margin: 15px 0 0;
            list-style: disc;
        }

    .sus-frame-cont h4 {
        font-size: 18px;
        color: var(--theme-color2);
        font-weight: 600;
        margin-left: 25px;
    }

        .sus-frame-cont h4::before {
            position: absolute;
            content: '';
            background: var(--theme-color2);
            height: 2px;
            width: 20px;
            margin-left: -25px;
            top: 10px;
        }

.sus-quote-text {
    position: relative;
}

    .sus-quote-text p {
        font-size: 25px;
        line-height: 40px;
    }

        .sus-quote-text p i {
            font-size: 45px;
            display: inline-block;
            color: var(--theme-color2);
            line-height: 0;
            vertical-align: middle;
        }

            .sus-quote-text p i:nth-child(1) {
                transform: scaleX(-1);
            }

.csr-pg-wrap {
    background: #f5f6fa;
}

.nobe_box {
    background: #d7e4de;
    padding: 40px 40px 50px;
    position: relative;
}

    .nobe_box:before {
        position: absolute;
        content: '';
        bottom: 0;
        width: 100%;
        background-image: linear-gradient(to right, #2C286D,#387A5C,#D82927);
        left: 0;
        right: 0;
        height: 5px;
    }

.headNT {
    margin: 0 0 30px;
}

    .headNT:before {
        position: absolute;
        content: '';
        height: 1px;
        width: 100%;
        background: var(--color-dark);
        left: 0;
        right: 0;
        top: 100px;
    }


.elmnt-2 {
    position: absolute;
    right: -10px;
    top: -21px;
    width: 100px;
}

.nobe_box h3 {
    color: var(--theme-color2);
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nobe_box p {
    color: var(--color-dark);
    font-size: 20px;
    text-align: center;
    line-height: 28px;
}

.msg_box .nobe_box p {
    font-size: 18px;
    text-align: left;
    line-height: 26px;
    margin: 0 0 .5rem;
}

    .msg_box .nobe_box p span {
        display: block;
        /* padding: 12px 100px;*/
        margin: 12px 100px;
        line-height: 30px;
        position: relative;
    }

        .msg_box .nobe_box p span img {
            width: 40px;
        }

.ar_flip {
    transform: scaleX(-1);
}

.msg_box .nobe_box p span em {
    font-size: 20px;
    font-weight: bold;
}

.nobe_box p span i:nth-child(1) {
    transform: scaleX(-1);
}

.nobe_box p span i {
    font-size: 35px;
    display: inline-block;
    color: var(--theme-color2);
    line-height: 0;
    vertical-align: middle;
}

.nobe_box.arb {
    position: relative;
}

    .nobe_box.arb .elmnt-2 {
        left: -10px;
        transform: scaleX(-1);
    }

    .nobe_box.arb .headNT {
        text-align: right;
    }

        .nobe_box.arb .headNT h2 {
            text-align: right;
        }

        .nobe_box.arb .headNT h4 {
            text-align: right;
        }

    .nobe_box.arb p {
        text-align: right;
    }

.arb_quote_img {
    position: absolute;
    right: -45px;
}

.Group2-1 {
    display: grid;
    grid-template-columns: 10% 85%;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}

    .Group2-1 .grp2-1-img img {
        width: 70px;
    }

    .Group2-1 .grp-content {
        font-size: 20px;
        color: #000000;
    }

.key_title {
    font-size: 30px;
    color: #000000;
    margin: 0 0 20px;
    font-weight: 700;
}

.key_box {
    position: relative;
    z-index: 1;
    background: var(--color-white);
    border: 1px solid #E1E3E8;
    border-radius: 8px;
    transition: all 0.4s;
    padding: 16px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 15% 80%;
    align-items: center;
}

    .key_box:hover {
        background: var(--theme-color2);
        transition: all 0.4s;
        border: 1px solid var(--theme-color2);
        transform: translateY(-5px);
    }

        .key_box:hover .icons {
            background: var(--color-white);
            transition: all 0.4s;
        }

        .key_box:hover .content h4 {
            color: var(--color-white);
            transition: all 0.4s;
        }

        .key_box:hover .content p {
            color: var(--color-white);
            transition: all 0.4s;
            opacity: 80%;
        }

    .key_box .icons {
        height: 60px;
        width: 60px;
        text-align: center;
        line-height: 60px;
        border-radius: 50%;
        transition: all 0.4s;
        background: var(--color-gray);
        /*position: absolute;*/
    }

        .key_box .icons img {
            width: 35px;
        }

    .key_box .content {
        padding-left: 0px;
    }

        .key_box .content h4 {
            display: inline-block;
            font-size: 20px;
            line-height: 25px;
            font-weight: bold;
            color: var(--color-dark);
            transition: all 0.4s;
            margin-bottom: 0px;
            transition: all 0.4s;
        }

        .key_box .content p {
            transition: all 0.4s;
        }

.key-graphic-back {
    background: url(../img/envt.png) no-repeat right bottom #f5f6fa;
}

.key_sub {
    font-size: 17px;
    color: #000000;
}

.curiculam {
    width: 75%;
    height: 60px;
    display: flex;
    align-items: center;
    margin: 20px 0 0px 0;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    background-color: #ffffff;
    transition: all 0.4s;
}

    .curiculam:hover {
        margin-left: 15px;
        transition: all 0.4s;
    }

.Ellipse-201 {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 2px;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
}

.Ellipse-202 {
    width: 10px;
    height: 10px;
    background: var(--theme-color);
    border-radius: 50%;
    display: block;
}

.text78 {
    margin: 0 0 0 9px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.57;
    text-align: left;
    color: #000000;
}

.key_title_right {
    font-size: 30px;
    color: #000000;
    font-weight: 700;
}

.empowr-sec {
    position: relative;
    padding: 60px 0 120px;
}

.ep_title {
    font-size: 35px;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.empowr-box {
    background: #ffffff;
    box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.32);
    padding: 50px;
    width: 100%;
    transform: translate(0%, 16rem);
}

.empowr-box-content {
    position: relative;
}

    .empowr-box-content ul {
        margin-left: 20px;
    }

        .empowr-box-content ul li {
            list-style: disc;
            font-size: 17px;
            line-height: 30px;
        }

.emp-img {
    max-width: 724px;
}

.dwn-pdf {
    background: no-repeat right var(--theme-color2);
    position: relative;
}

.inner_dwn_pdf {
    padding: 50px 0;
}

.inner_dwn_pdf {
    position: relative;
}

    .inner_dwn_pdf h3 {
        color: #ffffff;
        font-size: 40px;
        margin: 0 0 10px;
    }

.paralax_back {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed !important;
    overflow: hidden;
    z-index: 1;
    padding: 80px 0;
}

    .paralax_back::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: var(--theme-color3);
        opacity: .6;
        z-index: -1;
    }

.feedback_wrap {
    background: var(--color-gray);
    padding: 30px;
    max-width: 950px;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

    .feedback_wrap::before {
        position: absolute;
        content: '\f30f';
        font-family: "bootstrap-icons";
        right: 50px;
        color: #000000;
        font-size: 150px;
        top: -55px;
        bottom: 0;
        opacity: .3;
    }

    .feedback_wrap a {
        text-decoration: none;
        color: var(--theme-color2);
        font-size: 17px;
        font-weight: 500;
    }

@media all and (max-width:640px) {
    .emp-img {
        max-width: 100%;
    }

    .empowr-box {
        padding: 25px;
        transform: translate(0%, 0rem);
    }

    .pg_content p {
        width: 100%;
    }

    .core_page {
        padding: 20px 0;
    }

    .pg_content h1 {
        font-size: 25px;
    }

    .core-img {
        margin: 0 0 20px;
    }

    .sus-frame-cont h2 {
        font-size: 28px;
    }

    .gray_back {
        padding: 50px 0;
    }

    .key_title {
        font-size: 25px;
    }

    .key_title_right {
        font-size: 25px;
        line-height: 30px;
        margin: 25px 0 0;
    }

    .key-graphic-back {
        background: #f5f6fa;
    }

    .curiculam {
        width: 90%;
    }

    .empowr-sec {
        padding: 60px 0 0px;
    }

    .dwn-pdf {
        background: var(--theme-color2);
    }

    .inner_dwn_pdf {
        padding: 25px 0;
    }

        .inner_dwn_pdf h3 {
            font-size: 25px;
        }

    .dwn-pdf {
        margin: 40px 0 0;
    }

    .paralax_back {
        padding: 50px 0;
    }

    .feedback_wrap::before {
        right: 25px;
        font-size: 40px;
        top: -10px;
    }

    .feedback_wrap {
        padding: 20px;
    }

        .feedback_wrap h2 {
            font-size: 25px;
        }

        .feedback_wrap a {
            font-size: 15px;
        }

    .csr_pg_content h1 {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .elmnt-1 {
        display: none;
    }

    .csr_pg_content p {
        font-size: 20px;
    }

    .core_page .mt-80 {
        margin-top: 40px;
    }

    .core_page .mt-60 {
        margin-top: 30px;
    }

    .sus-frame-cont p {
        margin: 10px 0 20px;
    }

    .sus-frame-cont h2 strong {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .sus-quote-text p {
        font-size: 20px;
        line-height: 30px;
    }

        .sus-quote-text p i {
            font-size: 30px;
        }

    .nobe_box {
        padding: 20px;
    }

        .nobe_box h3 {
            font-size: 30px;
            margin-bottom: 10px;
        }

    .elmnt-2 {
        right: -5px;
        top: -10px;
        width: 50px;
    }

    .msg_box .nobe_box p span {
        display: block;
        padding: 12px 10px;
        line-height: 25px;
    }

        .msg_box .nobe_box p span em {
            font-size: 18px;
            font-weight: bold;
        }

    .msg_box h2 {
        font-size: 20px;
    }

    .headNT:before {
        top: 80px;
    }

    .msg_box h4 {
        font-size: 16px;
    }
}

.ss_registration {
    position: relative;
    margin: 0 0 35px;
}

    .ss_registration h6 {
        font-size: 18px;
        margin: 0 0 15px;
    }

.phone-group {
    position: relative;
    display: grid;
    grid-template-columns: 35% 65%;
}

    .phone-group .C_code-grp {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        padding: 14px 10px;
        border-radius: 15px 0 0 15px;
        background-color: var(--color-white);
        color: var(--color-dark);
        border-color: var(--border-info-color);
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .phone-group .phn_grp {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        padding: 14px 10px;
        border-radius: 0 15px 15px 0;
        background-color: var(--color-white);
        border-left: none;
        color: var(--color-dark);
        border-color: var(--border-info-color);
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

    .pagination a {
        border: none;
        background: var(--theme-bg-light);
        color: var(--color-dark);
        font-weight: 500;
        margin: 0 5px;
        border-radius: 12px !important;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        transition: var(--transition);
        z-index: 1;
    }

    .pagination .page-link:hover,
    .pagination .page-item.active a {
        background: var(--theme-color);
        color: var(--color-white);
    }

#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: rotate(-40deg);
    z-index: 9;
}

    #scroll-top:hover {
        transform: rotate(0);
    }

    #scroll-top.active {
        opacity: 1;
        visibility: visible;
        bottom: 20px;
    }


@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top.active {
        bottom: 100px;
    }
}
/*====================
54. Footer css 
======================*/

.footer-area {
    background: #08172e;
    position: relative;
    z-index: 1;
}

.footer-shape {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70%;
    transform: translateX(-50%);
    opacity: 0.05;
    z-index: -1;
}

.footer-widget {
    position: relative;
}

.footer-widget-box p {
    color: var(--color-white);
    padding-right: 18px;
    /*margin-bottom: 20px;*/
}

.footer-logo img {
    width: 200px;
    margin-bottom: 15px;
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 21px;
    z-index: 1;
}

    .footer-widget-title::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 20px;
        height: 3px;
        background: var(--theme-color);
        border-radius: 50px;
    }

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .70rem;
}

    .footer-list li a {
        color: var(--color-white);
        transition: var(--transition);
        position: relative;
        margin-left: -20px;
    }

        .footer-list li a i {
            margin-right: 5px;
            color: var(--theme-color);
            opacity: 0;
            transition: var(--transition);
        }

        .footer-list li a:hover {
            margin-left: 0px;
            color: var(--theme-color);
        }

            .footer-list li a:hover i {
                opacity: 1;
            }

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end;
}

    .footer-social li a i {
        height: 38px;
        width: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 50px;
        background: var(--color-white);
        color: var(--theme-color);
        transition: var(--transition);
    }

        .footer-social li a i:hover {
            background: var(--theme-color);
            color: var(--color-white);
        }

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    gap: 10px;
    color: var(--footer-text-color);
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-contact .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--theme-color);
    border-radius: 50px;
    text-align: center;
}

.footer-contact .content {
    flex: 1;
}

    .footer-contact .content h6 {
        color: var(--color-white);
        margin-bottom: 5px;
    }

    .footer-contact .content a {
        color: var(--color-white);
    }

.copyright {
    padding: 20px 0;
    border-top: 1px solid var(--border-white-color);
}

    .copyright .footer-menu {
        margin: 0;
        padding: 0;
        text-align: right;
    }

        .copyright .footer-menu li {
            display: inline-block;
            margin-left: 25px;
            font-size: 16px;
        }

            .copyright .footer-menu li a {
                color: var(--footer-text-color);
                transition: var(--transition);
            }

                .copyright .footer-menu li a:hover {
                    color: var(--theme-color);
                }

    .copyright .copyright-text {
        color: var(--footer-text-color);
        margin-bottom: 0px;
        font-size: 16px;
    }

        .copyright .copyright-text a {
            color: var(--color-white);
            font-weight: 500;
        }


@media all and (max-width: 1199px) {
    .footer-widget-box {
        margin-bottom: 50px;
    }

    .footer-list li a {
        font-size: 14px;
    }
}

@media all and (max-width: 991px) {
    .footer-widget-wrap {
        padding-bottom: 0px;
    }

    .footer-list li a {
        font-size: 16px;
    }

    .copyright .footer-menu {
        float: left;
        margin-top: 20px;
        text-align: left;
    }

        .copyright .footer-menu li {
            margin-left: 0;
            margin-right: 15px;
        }
}

@media all and (max-width: 767px) {
    .footer-widget-wrap {
        padding-bottom: 0px;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footer-shape {
        width: 100%;
    }
}

@media all and (max-width:640px) {
    .footer-widget-box p {
        padding-right: 0;
    }
}

/* footer light */
.footer-area.light {
    background: var(--theme-bg-light);
}

    .footer-area.light .footer-widget-title {
        color: var(--color-dark);
        font-weight: 800;
    }

    .footer-area.light .footer-widget-box p {
        color: var(--body-text-color);
    }

    .footer-area.light .footer-newsletter h6 {
        color: var(--color-dark);
        font-weight: 700;
    }

    .footer-area.light .newsletter-form .form-control {
        color: var(--color-dark);
        border-bottom-color: var(--body-text-color);
    }

        .footer-area.light .newsletter-form .form-control::placeholder {
            color: var(--body-text-color);
        }

        .footer-area.light .newsletter-form .form-control:focus {
            border-bottom-color: var(--theme-color);
        }

    .footer-area.light .footer-list li a {
        color: var(--body-text-color);
    }

        .footer-area.light .footer-list li a:hover {
            color: var(--theme-color);
        }

    .footer-area.light .footer-contact .content h6 {
        color: var(--color-dark);
        font-weight: 700;
    }

    .footer-area.light .footer-contact .content a {
        color: var(--body-text-color);
    }

    .footer-area.light .footer-social li a i {
        background: var(--color-dark);
        color: var(--color-white);
    }

        .footer-area.light .footer-social li a i:hover {
            background: var(--theme-color);
        }

    .footer-area.light .copyright {
        border-top-color: var(--border-info-color);
    }

        .footer-area.light .copyright .copyright-text {
            color: var(--body-text-color);
        }


/*====================
55. Home-2 css 
======================*/

.home-2 .header {
    background: none;
}

.home-2 .navbar {
    padding-right: 0;
    z-index: 9;
}

    .home-2 .navbar::before {
        display: none;
    }

.home-2 .footer-area {
    overflow: hidden;
}

.home-2 .footer-shape {
    width: 80%;
    right: 0;
    left: unset;
    bottom: -150px;
    transform: unset;
    opacity: .04;
}

@media all and (min-width: 992px) {
    .home-2 .navbar .container {
        background: var(--color-white);
        border-radius: 0 0 30px 30px;
    }

    .home-2 .hero-section {
        margin-top: -5rem;
    }

    .home-2 .hero-single {
        padding-top: 200px;
        padding-bottom: 140px;
    }
}



/*====================
56. Home-3 css 
======================*/

.home-3 .header {
    background: none;
}

.home-3 .main {
    margin-top: 0;
}

.home-3 .navbar {
    padding-right: 0;
}

    .home-3 .navbar::before {
        display: none;
    }

.home-3 .header-top-list a:hover {
    color: var(--theme-color);
}

.home-3 .header-top-social a:hover {
    color: var(--theme-color);
}

.home-3 .hero-single {
    padding-top: 100px;
    padding-bottom: 100px;
}

    .home-3 .hero-single::before {
        left: 0;
        background: rgba(2, 59, 69, .8);
    }

    .home-3 .hero-single .hero-content .hero-title span {
        color: var(--theme-color);
        -webkit-text-stroke: unset;
    }

.home-3 .hero-img img {
    position: absolute;
    bottom: 0;
}

@media all and (max-width: 991px) {
.home-3 .hero-single {
padding-bottom: 0;
}

.home-3 .hero-img {
margin-top: 50px;
}

.home-3 .hero-img img {
position: relative;
}
}

/*page load mddal   */
#popupOverlay {
    position: fixed;
    padding: 25px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1055;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

#popupBox {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto 0;
    text-align: center;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.discalimer {
    position: relative;
}

    .discalimer h3 {
        font-size: 22px;
        text-align: center;
        margin: 0;
        padding: 0 0 15px;
    }

    .discalimer p {
        font-size: 15px;
        line-height: 20px;
        margin: 0;
        padding: 0 0 8px;
    }

/* page load mddal/  */

.offcanvas.offcanvas-end.nav_sidebar_rtl {
    left: 0;
    right: initial;
}

.main_nav_arb .offcanvas.offcanvas-end {
    /* transform: translateX(-100%);*/
}

.nav-right.lng_ar_left {
    margin-right: 45px;
    margin-left: 0;
}

/* ================= end ================== */

.ehs-copy {
    position: relative;
}
.ehs-copy h1{
    font-size: 50px;
    text-align: center;
    color: var(--theme-color2);
    margin: 0 0 30px;
}
.overlap-copy {
    background:var(--theme-color2);
    border-radius: 20px;
    max-width: 90%;
    margin: -8rem auto 0;
    width: 100%;
    padding: 25px;
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    line-height: 40px;
    position: relative;
}
.ehs-copy p{
    font-size: 17px;
    line-height: 30px;
    margin: 20px 0 0;
}
.elmnt-3
{
    position: absolute;
    top: 0;
    left: -60px;
}

.elmnt-4
{
    position: absolute;
    left: -35px;
    top: 0;
    height: 130px;
}
.terms_listed
{
    margin:0 0 20px 20px;
}
.ser_listed_group {
    display: flex;
    margin: 0 0 2rem;
}
.ser_listed_group .ser_icon {
    position: relative;
    margin-right: 15px;
}
.ser_listed_group .ser_icon div {
    position: relative;
    width:45px;
    height: 45px;
    border-radius: 100%;
    font-size: 18px;
    line-height: 45px;
    color: #fff;
    background: var(--theme-color2);
    text-align: center;
    border: 2px solid #ffffff;
    transition: box-shadow .3s ease, background .3s ease;
}
.ser_listed_group:hover .ser_icon div {
    background-color: #fff;
    color:var(--theme-color2);
    border: 2px solid #2C286D;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -ootransform: scale(1.1);
    transform: scale(1.1);
    transition: box-shadow .3s ease, background .3s ease;
}
.ser_listed_group .ser_text {
    position:relative;
}
.ser_listed_group .ser_text strong{
    font-size: 20px;
    color: #000000;
    font-weight: 600;
}
.ser_listed_group .ser_text p{
    font-size: 17px;
    color: #000000;
    line-height: 1.8;
}
.enqdtl
{
    position:relative;
}
.enqdtl strong
{
    font-size: 20px;
    color: #000000;
    font-weight: 600;
}
.enqdtl p
{
    font-size: 17px;
    color: #000000;
}

.date
{
    font-size:18px;
    font-weight:bold;
    padding:0 0 20px;
}
.ppc_copy
{
    position:relative;
    border-bottom:1px solid #efefef;
    margin:0 0 30px;
}
.about-area .ppc_copy:nth-last-child(1)
{
    border-bottom:none;
}
.ppc_copy h2
{
    font-size:22px;
    font-weight:bold;
    padding:0 0 10px;
    text-transform:none;
}
.ppc_copy p
{
    font-size:18px;
    padding:0 0 10px;
}
.ppc_copy ul
{
    margin:0 0 15px 35px;
}
.ppc_copy ul li
{
    font-size:18px;
    list-style:disc;
}
.brandBack:before
{
    position:absolute;
    content:'';
    top:0;
    bottom:0;
    left:0;
    right:0;
    background: url(../img/brand_bg_graphic.png) no-repeat center;
    margin:0 auto;
}
.footer-ctor-bg
{
    background: url(../img/footer-cta-bg.webp) no-repeat center #387a5c;
    padding: 60px 0;
    position: relative;
}
.cta-body-content
{
    color:#ffffff;
    position: relative;
    text-align: center;
}
.cta-body-content h3
{
    font-size:35px;
    margin-bottom: 10px;
    color:#ffffff;
}
.cta-body-content p
{
    font-size:20px;
    margin-bottom: 15px;
    color:#ffffff;
}

@media all and (max-width: 640px) {
.ehs-copy h1 {
    font-size: 30px;
}
.overlap-copy {
    border-radius: 20px;
    margin: -3rem auto 0;
    padding: 15px;
    font-size: 18px;
    line-height: 25px;
}
.ehs-copy p {
    font-size: 18px;
    line-height: 28px;
    margin: 20px 0 0;
    text-align: center;
}
.ehs-copy p:nth-child(1)
{
    margin:0px 0 0;
}
.elmnt-3
{
    display: none;
}
.desk
{
    display: none;
}
}

@media (min-width: 641px) {
.mob
{
    display: none;
}
}