@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Furore';
    src: url('../font/Furore/Furore.woff') format('woff2'),
        url('../font/Furore/Furore.woff') format('woff'),
        url('../font/Furore/Furore.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Poppins", sans-serif;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
a,
ul,
ol,
select,
header,
input,
footer {
    margin: 0;
    padding: 0;
    text-decoration: none;
    /* color: var(--black); */
    scroll-behavior: smooth;
    box-shadow: none;
    outline: none;
    border: none;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Furore';
}

input:focus,
input:active {
    border: none;
    box-shadow: none;
    background: none;
    outline: none;
}

:root {
    --black: #000;
    --white: #fff;
    --theme-red: linear-gradient(to top, #00c6ff, #003087);
    --light-gray: #ececec;
    --theme-color-1: #102039;
}

.font-furore {
    font-family: 'Furore', sans-serif;
}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

.h1 {
    font-size: 40px;
    line-height: 42px;
}

.h2 {
    font-size: 35px;
    line-height: 38px;
}

.h3 {
    font-size: 30px;
    line-height: 33px;
}

.h4 {
    font-size: 24px;
    line-height: 28px;
}

.h5 {
    font-size: 20px;
    line-height: 24px;
}

.h6 {
    font-size: 18px;
    line-height: 22px;
}

.h7 {
    font-size: 14px;
    line-height: 18px;
}

.p {
    font-size: 16px;
    line-height: 20px;
}

.ptb50 {
    padding: 50px 0;
}

.fw300 {
    font-weight: 300;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.fw900 {
    font-weight: 900;
}

/* Header styles for home page */
.header-transparent {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.header-transparent .navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-transparent .nav-link {
    color: var(--white);
}

.header-transparent .navbar-brand {
    color: var(--white);
}

/* Fixed navbar state */
.header-transparent .navbar.fixed-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-transparent .navbar.fixed-nav .nav-link:hover {
    color: #00b8f4;
}

.header-transparent .navbar.fixed-nav .nav-link {
    color: var(--black);
}

.header-transparent .navbar.fixed-nav .navbar-brand {
    color: var(--black) !important;
}

/* Keep hover and active states */
.header-transparent .nav-link:hover,
.header-transparent .nav-link.active {
    color: #00b8f4;

}

.dropdown-toggle::after {
    display: none;
}

/* Logo display rules for homepage */
body.home-page .normal_logo {
    display: block;
}

body.home-page .scroll_logo {
    display: none;
}

body.home-page .fixed-nav .normal_logo {
    display: none;
}

body.home-page .fixed-nav .scroll_logo {
    display: block;
}

/* Logo display rules for other pages */
body:not(.home-page) .normal_logo {
    display: none;
}

body:not(.home-page) .scroll_logo {
    display: block;
}


/********************** header *********************/

.header {
    position: absolute;
    z-index: 99;
    width: 100%;

}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    padding: 40px 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 25px;
    left: 0;
    background-color: #050708;
    transition: width 0.6s;
}

/* White underline for home page */
body.home-page .nav-link::after {
    background-color: #ffffff;
}

/* Change to black when navbar becomes fixed on home page */
body.home-page .fixed-nav .nav-link::after {
    background-color: #050708;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar {
    padding: 0;
    position: fixed;
    width: 100%;
    top: 45px;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.dropdown-menu {
    border-radius: 5px;
    padding-top: 0;
    padding-bottom: 0;
    /* background: var(--theme-color); */
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s ease;
    margin-top: 0;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Remove default Bootstrap display:none */
.dropdown .dropdown-menu {
    display: block !important;
}

.dropdown-item {
    /* color: var(--white); */
}

/* Desktop specific styles */
.navbar.d-none.d-lg-block {
    padding: 0;
    position: fixed;
    width: 100%;
    /* top: 45px; */
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Mobile specific styles */
.navbar.d-lg-none {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
}

/*****************************  header two page **************************/
.bg-color-1 {
    background: var(--theme-color-1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 150px;
    /* background: var(--theme-color-1); */
}

.header-top-contact-info {
    display: inline-flex;
    gap: 50px;
}

.header-top-socials {
    color: #fff;
    display: inline-flex;
    gap: 20px;
    font-size: 14px;
}

.header-top-contact-info span {
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 14px;
}

.p-relative {
    position: relative;
}

.header-top-contact-info span.email::before {
    content: "\e90a";
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    left: -25px;
}

.header-top-contact-info span.time::before {
    content: "\e92b";
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    left: -25px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pt-160 {
    padding-top: 160px;
}

.dropdown-item {
    /* color: var(--white); */
}


/* Fixed navbar state */
.navbar.fixed-nav {
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.fixed-nav .nav-link {
    color: var(--black);
}

.navbar.fixed-nav .navbar-brand {
    color: var(--black) !important;
}

/* Home page specific styles */
body.home-page .navbar .nav-link,
body.home-page .navbar .navbar-brand {
    color: var(--white);
}

body.home-page .navbar.fixed-nav .nav-link,
body.home-page .navbar.fixed-nav .navbar-brand {
    color: var(--black);
}

/* Non-index page navbar */
body:not(.home-page) .navbar {
    background: var(--white);
}

body:not(.home-page) .nav-link {
    color: var(--black);
}

body:not(.home-page) .navbar-brand {
    color: var(--black) !important;
}

/* Hide header-top when navbar is fixed */
.bg-color-1.hide-top {
    transform: translateY(-100%);
}

/* Home page specific styles */
body.home-page .bg-color-1 {
    display: none;
}

.dropdown-item {
    font-weight: 500;
    padding: 5px 15px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--theme-red);
    background-color: var(--light-gray);
}



.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:hover,
.offcanvas__content ul li a:hover {}

.nav-link:focus {
    color: var(--white);
}

.sidebar__toggle {
    cursor: pointer;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 500ms ease-in-out;
}

.sidebar__toggle .bar-icon .fa-solid {
    color: var(--white);
}

.bar-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    font-size: 40px;
    transform: scaleX(-1);
}

.btn-primary {
    background: none;
    outline: none;
    border: none;
}

.offcanvas {
    background: #191919 none repeat scroll 0 0;
}

.offcanvas .btn-close {
    background-color: var(--theme-red);
}

/* Menu Styles */
.offcanvas__content ul li {
    position: relative;
}

.offcanvas__content ul li a {
    display: block;
    padding: 12px 15px;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.7s ease;
}

.offcanvas__content .has-submenu>ul {
    display: none;
    padding-left: 15px;
    overflow: hidden;
    transition: all 0.7s ease-in-out;
}



.toggle-icon {
    position: absolute;
    right: 15px;
    top: 7px;
    cursor: pointer;
    transition: transform 0.7s ease;
    font-size: 30px;
    line-height: 30px;
    color: var(--white);
}

.toggle-icon.active {
    transform: rotate(45deg);
}

/* Submenu animation classes */
.submenu-entering {
    display: block;
    max-height: 0;
}

.submenu-entered {
    max-height: 1000px;
}

.submenu-exiting {
    max-height: 0;
}






/********************** home page *********************/
.bannerImg {
    background-image: url(../images/Home-page-image-Size/banner-image.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.bannerImg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwardscubic-bezier(.645, .045, .355, 1) .4s;
    opacity: 1;
}

.banner-area-2 {
    max-width: 775px;
    padding-left: 70px;
}

.banner-sub-title:before {
    content: "\e92c";
    font-family: 'icomoon';
    color: var(--white);
    border: 1px solid var(--white);
    position: absolute;
    top: 0px;
    left: -56px;
    height: 20px;
    width: 40px;
    padding: 2px 1px;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 50px;
}

.large-container {
    padding-top: 312px;
    padding-bottom: 225px;
    color: #fff;
}

p.banner-text {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    padding-bottom: 40px;
    padding-right: 29px;
}

h1.banner-title {
    color: #FFF;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 77px;
    padding: 20px 0;
}

.banner-sub-title {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 9px;
    text-transform: uppercase;
    margin-left: 56px;
}

/********************** home page *********************/

/* Features area css start */

.pb-80 {
    padding-bottom: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.home-page section.features-section {
    display: block;
}

.features-box-area {
    padding: 30px 30px 25px 30px;
    background: #fff;
    min-height: 360px;
}

.features-box-area .shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.features-box-area:hover .shape-3 {
    opacity: 1;
}

.features-box-area .shape-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-position: top right;
}

.features-box-area .icon-box {
    font-size: 50px;
    color: var(--theme-color);
}

.features-box-area:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--theme-color);
    transition: all 700ms ease;
}

.features-box-area:hover:before {
    width: 100%;
    left: 0;
}

.features-box-area:hover h5 {
    color: #fff;
    position: relative;
}

.features-box-area:hover .icon-box,
.features-box-area:hover p {
    color: #fff;
    position: relative;
}

.features-section .bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
}

.features-section .bg-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

/* Features area css end */


/* about us section */

.pl-50 {
    padding-inline-start: 50px;
}

:root {
    --primary-font: 'Inter', sans-serif;
    --secondary-font: 'Roboto', sans-serif;
    --theme-color: linear-gradient(to top, #00c6ff, #003087);
    --theme-color-icon: #003087;
    --theme-color-1: #003087;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
}

.mt-10 {
    margin-top: 10px;
}

h3 {
    font-size: 36px;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.small-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-2-image-area .main-image {
    text-align: center;
    padding-left: 20px;
}

.about-2-image-area .icon-box p {
    color: #fff;
    font-family: 'Roboto';
    margin: 0;
}

.about-2-image-area .icon-box h3,
.about-2-image-area .icon-box h3 .counter {
    color: #fff;
}

.about-2-image-area .main-image img {
    border-radius: 0 100px 0 0;
}

.section-space {
    padding-top: 120px;
    padding-bottom: 120px;
}

.p-relative {
    position: relative;
}

.fix {
    overflow: hidden;
}

.section-sub-title:before {
    content: "\e92c";
    font-family: 'icomoon';
    color: var(--white);
    border: 1px solid var(--white);
    position: absolute;
    top: 2px;
    left: -45px;
    height: 16px;
    width: 36px;
    padding: 2px 1px;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 50px;
}

.section-sub-title {
    position: relative;
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    margin-left: 45px;
}

.about-2-image-area .small-image {
    position: absolute;
    display: inline-block;
    bottom: 40px;
    right: -10px;
    border: 12px solid #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
}

.about-2-content-area .call-us {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
}

.about-2-btn-area:hover .icon-1 {
    transform: rotate(45deg);
}

.about-2-content-area .icon-1 {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    transform: rotate(0deg);
    transition: all 700ms ease;
}

.about-2-content-area .icon-1:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 58px;
    width: 58px;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
}

.about-2-content-area .content span {
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.about-2-content-area .content h5 {
    font-size: 18px;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
    text-decoration: none;
}


.mb-35 {
    margin-bottom: 35px;
}

.mb-45 {
    margin-bottom: 45px;
}

.primary-btn-1:hover {
    color: #fff;
    border: 1px solid var(--theme-color-1);
}

.primary-btn-1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 20px 24px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all .6s;
}

.about-2-content-area .about-2-btn-area {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}


.about-2-content-area ul.list-area li {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin-left: 10px;
}

.about-2-content-area ul.list-area li:before {
    content: "\e921";
    font-family: 'icomoon';
    color: var(--theme-color-icon);
    font-weight: 600;
    position: relative;
    top: 2px;
    left: -10px;
    font-size: 16px;
}

.about-2-image-area .shape-1 {
    position: absolute;
    top: 55px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.about-2-image-area .icon-box {
    background: var(--theme-color);
    display: flex;
    padding: 20px 10px;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    position: absolute;
    transform: rotate(270deg);
    top: 50%;
    left: -87px;
    max-width: 322px;
}

.about-2-image-area .icon-box .icon {
    color: var(--theme-color);
    font-size: 60px;
    padding: 25px 30px;
    background: #fff;
    display: inline-block;
    transform: rotate(90deg);
}




/* service section css  */

.pb-25 {
    padding-bottom: 25px;
}

.pt-25 {
    padding-top: 25px;
}

.bg-color-1 {
    /* background: var(--theme-color); */
}

.home-page section.service-tab-section {
    display: block;
}

.service-tab-title-area .primary-btn-4 {
    text-transform: uppercase;
    border: 1px solid #fff;
    background: transparent;
}

.primary-btn-4 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--theme-color-1);
    border: 1px solid var(--theme-color-1);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 15px 20px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all .6s;
}

.mt-20 {
    margin-top: 20px;
}

.service-tab-title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mb-70 {
    margin-bottom: 70px;
}

.service-tab-content {
    background: #fff;
    padding: 28px;
    display: grid;
    gap: 50px;
    grid-template-columns: 330px auto;
    margin-top: 10px;
}

.service-tab-content .tab-bg-shape {
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.service-tab-btn-area ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: none;
}

.service-tab-btn-area ul .nav-link {
    position: relative;
    font-family: var(--primary-font);
    color: var(--theme-color-1);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 27px;
    padding: 24px;
    background: #fff;
    width: 298px;
    border-radius: 0 !important;
    border: none !important;
}

.service-tab-btn-area ul .nav-link.active {
    background: var(--theme-color);
    color: #fff;
}

.service-tab-btn-area ul .nav-link.active:before {
    background: var(--theme-color);
}

.service-tab-btn-area ul .nav-link:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    width: 35px;
    height: 60px;
    background: #fff;
    clip-path: polygon(100% 49%, 0 0, 0 100%);
}

.service-tab-btn-area ul .nav-link .icon-box {
    font-size: 50px;
    color: var(--theme-color);
}

.service-tab-btn-area ul .nav-link.active .icon-box {
    color: #fff;
}

.service-tab-content ul.tab-list-content li {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 15px;
    margin-left: 10px;
}

.service-tab-content ul.tab-list-content li:before {
    content: "\e921";
    font-family: 'icomoon';
    color: var(--theme-color-icon);
    font-weight: 600;
    position: relative;
    top: 2px;
    left: -10px;
    font-size: 16px;
}

p {
    color: #787878;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 26px;
    font-family: "Poppins", sans-serif;
    text-align: justify;
    hyphens: auto;
}

.pt-15 {
    padding-top: 15px;
}

.pb-10 {
    padding-bottom: 10px;
}

.service-tab-section .bg-shape-2 {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
}







/* work process css  */

.work-process-section .section-sub-title,
.about-2-section .section-sub-title,
.blog-two-section .section-sub-title,
.contact-page-section .section-sub-title {
    color: var(--black);
    border: var(--black);
}

.work-process-section .section-sub-title:before,
.about-2-section .section-sub-title:before,
.blog-two-section .section-sub-title:before,
.contact-page-section .section-sub-title:before {
    color: var(--black);
    border: 1px solid var(--black);
}

.work-process-box {
    padding: 20px;
    position: relative;
}

.work-process-box .icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 40px;
    background: #fff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
    color: var(--theme-color-icon);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.work-process-box .icon-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 500ms ease;
}

.work-process-box:hover .icon-box i {
    color: #fff;
    position: relative;
}

.work-process-box:hover .icon-box:before {
    transform: scale(1, 1);
}

.work-process-box .icon-box span {
    position: absolute;
    top: -3px;
    left: -5px;
    width: 34px;
    height: 34px;
    background: #fff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    font-size: 16px;
    font-family: var(--primary-font);
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-process-section .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/* TEXT SLIDER CSS START */

.text-slider-section .slide-box svg path {
    fill: #00378C;
}

.text-slider-box {
    display: flex;
    position: relative;
    animation: aspro-scroller 27s linear infinite;
    will-change: transform;
    white-space: nowrap;
    gap: 10px;
}

.text-slider-box .slide-box {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.text-slider-box .slide-box h2 {
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    /* 57.5% */
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--theme-color-1);
    color: transparent;
}


@keyframes aspro-scroller {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

@keyframes aspro-scroller-reverse {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100%, 0);
    }
}

/* TEXT SLIDER CSS END */

/* blog css start */
.mb-60 {
    margin-bottom: 60px;
}

hr:not([size]) {
    margin: 0;
    border-color: rgba(22, 22, 22, 0.1);
    opacity: 1;
    border-width: 1px;
}

.w-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-two-title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-style-two {
    display: grid;
    grid-template-columns: auto 370px;
}

.blog-style-two .blog-content-area {
    background: #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    padding: 30px 25px 30px 30px;
}

.blog-style-two .blog-title {
    padding-top: 20px;
}

.blog-style-two .blog-title:hover {
    color: var(--theme-color);
}

.blog-style-two .post-meta {
    display: inline-flex;
    gap: 26px;
    color: #787878;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding-bottom: 20px;
}

.blog-style-two .post-meta span i {
    margin-right: 10px;
    font-size: 16px;
    color: var(--theme-color-icon);
}

.blog-style-two .blog-text {
    padding: 25px 0;
    margin: 0;
}

.primary-btn-5 {
    color: var(--theme-color-1);
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    border: 2px solid var(--theme-color-1);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 15px 20px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    transition: all .6s;
    font-weight: 600;
}

/* blog css end */


/* contact page css start here */

.contact-page .info p {
    text-align: left;
}

.contact-p-info-area .contact-box {
    padding: 50px 40px 40px 40px;
    background: #F8F8F8;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.contact-p-info-area .contact-box .icon-1 {
    font-size: 50px;
    color: var(--theme-color);
}

.contact-p-info-area .info span {
    color: var(--theme-color);
}

.contact-p-info-area .info h4 {
    margin-top: 10px;
}


.contact-page-form-area {
    padding: 60px;
    background: #F8F8F8;
}

.contact-page-form label {
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-page-form input {
    height: 55px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #ECECEC;
}

.contact-page-form textarea {
    height: 136px;
    margin-bottom: 30px;
    resize: none;
    border-radius: 4px;
    border: 1px solid #ECECEC;
    padding-top: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea {
    width: 100%;
    padding-left: 21px;
    padding-right: 21px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* contact page css end here  */


/* faq page css start here */
.mb-25 {
    margin-bottom: 25px;
}

.faq-container .section-title {
    color: #fff;
}

.faq-section .shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.faq-section .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center left;
}

.faq-section .shape-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
}

/* faq start */

.accordion-button {
    padding: 20px 30px;
    text-align: left;
    background: #fff;
    gap: 15px;
    color: var(--theme-color-1);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    justify-content: space-between;
}

.accordion-button::after {
    content: "\f101";
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    font-weight: 400;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    line-height: 30px;
    border-radius: 50%;
    margin-inline-start: 0;
    text-align: center;
    position: absolute;
    right: 19px;
    content: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--theme-color);
}

.accordion-button:not(.collapsed)::after {
    background: #fff;
    color: var(--primary-color);
    content: "";
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 16px;
    line-height: 28px;
    padding: 0 30px 20px 30px;
    color: #787878;
}

.accordion-collapse {
    border: none;
    transition: all 0.5s;
}

.accordion-item {
    border: none;
    background: #fff;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.10);
    margin-bottom: 15px;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0px;

}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-width: 1px;
    border-radius: 0px;
}

.bd-faq-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* faq page css end here  */

/* footer css */

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-30 {
    padding-top: 30px;
}

footer#footer .footer-main {
    display: block;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widget-1 p {
    color: #fff;
    text-align: left;
    text-transform: capitalize;
}

.section-space-medium {
    padding: 100px 0;
}

.footer-widget-1 .footer-socials span {
    color: #fff;
    height: 36px;
    width: 36px;
    border: 1px solid #fff;
    font-size: 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 500ms ease;
}

.footer-widget-1 .footer-socials {
    display: inline-flex;
    gap: 10px;
}

.footer-widget-1 .footer-socials span:hover {
    background: var(--theme-color);
    color: #fff;
    border: 1px solid var(--theme-color);
}

.footer-title {
    color: var(--white);
    text-transform: uppercase;
    text-decoration: 2px underline var(--white);
    text-underline-offset: 10px;

}

.footer-widget-2 ul.service-list li {
    position: relative;
    color: #fff;
    margin-bottom: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-left: 30px;
}

.footer-widget-2 ul.service-list li::before {
    content: "\e902";
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    left: -30px;
    transition: all 500ms ease;
}

.footer-widget-2 ul.service-list li:hover {
    color: var(--white);
}

.footer-widget-3 .content .date {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    margin-left: 20px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}

.footer-widget-3 .content h6 {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}

.footer-widget-3 .content h6:hover {
    color: var(--theme-color);
}

.footer-widget-3 .content .date:before {
    content: "\e905";
    font-family: 'icomoon';
    color: var(--theme-color);
    position: absolute;
    top: 0;
    left: -20px;
}

.footer-widget-3 .footer-blog-post-box {
    display: flex;
    gap: 16px;
}

.footer-widget-3 .footer-blog-post-box img {
    width: 78px;
    height: 78px;
}

.footer-widget-4 p {
    color: #fff;
}

.footer-subscribe input[type=email] {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    height: inherit;
    border-radius: 0;
    margin-bottom: 10px;
    height: 60px;
}

.footer-subscribe button {
    width: 100%;
    justify-content: center;
}

.footer-bottom span {
    color: #fff;
}

.footer-bottom span {
    color: #fff;
}

.footer-bottom span:hover a {
    color: var(--theme-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .right-area {
    display: inline-flex;
    gap: 30px;
}


ul.footer-contact-info-widget h6 {
    color: #fff;
    font-size: 16px;
}

ul.footer-contact-info-widget p {
    color: #fff;
}

ul.footer-contact-info-widget li {
    display: flex;
    align-items: self-start;
    gap: 20px;
    color: #fff;
    margin-bottom: 20px;
}

ul.footer-contact-info-widget .icon {
    font-size: 24px;
    color: #fff;
}

.footer-main .footer-shape-3 {
    position: absolute;
    top: -25px;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-bottom .footer-socials span {
    color: #fff;
    height: 36px;
    width: 36px;
    border: 1px solid #fff;
    font-size: 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 500ms ease;
}

.footer-bottom .footer-socials {
    display: inline-flex;
    gap: 10px;
}

.footer-bottom .footer-socials span>a {
    color: #fff;
}

.footer-bottom .footer-socials span:hover {
    background: var(--theme-color);
    color: #fff;
    border: 1px solid var(--theme-color);
}

.footer-main .footer-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
}

/* .footer-main .footer-shape-1 {
    position: absolute;
    bottom: 96px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
} */

/* contact-form */

.section-space {
    padding-top: 120px;
    padding-bottom: 120px;
}

.mb-40 {
    margin-bottom: 40px;
}

.contact-from {
    padding: 60px;
    background: var(--theme-color);
}

.contact-from .section-sub-title:before {
    color: #fff;
    border: 1px solid #fff;
}

.contact-from label {
    color: #fff;
    margin-bottom: 10px;
}

.contact-from .section-title {
    font-size: 30px;
}

.contact__from-input input {
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-size: 15px;
    border: none;
    border-radius: 0;
    outline: none;
    background-color: var(--white);
    text-transform: uppercase;
}

.contact__select {
    position: relative;
}

.contact__select select {
    height: 60px;
    padding: 0 23px;
    line-height: 60px;
    width: 100%;
    border: 0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-overflow: "";
    text-indent: 0.01px;
    text-overflow: "";
    color: rgba(120, 120, 120, 1);
}

.contact__select:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid rgba(120, 120, 120, 1);
    right: 15px;
    cursor: pointer;
}

.testimonials-section .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonials-section .bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonials-section .bg-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
}

.testimonials-section .bg-shape-3 {
    position: absolute;
    bottom: 92px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
}

/* ******************* about us page ************************ */
.breadcrumb__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.breadcrumb__thumb_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

.breadcrumb__thumb_3 {
    position: absolute;
    top: 0;
    right: 415px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
}

.pt-100 {
    padding-top: 100px;
}

.breadcrumb__wrapper .breadcrumb__title {
    color: #fff;
}

.breadcrumb__wrapper ul {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.breadcrumb__wrapper ul li:last-child span::before {
    content: "\e902";
    font-family: 'icomoon';
    color: #fff;
    position: relative;
    top: 1px;
    left: -6px;
}

.breadcrumb__wrapper ul li:last-child span {
    color: #00b8f4;
    font-weight: 600;
}

.section-space {
    padding-top: 120px;
    padding-bottom: 120px;
}

.about-us-section .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
}

.about-us-section .shape-2 {
    position: absolute;
    top: 236px;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1;
}

.quote-animation {
    animation-duration: 10s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: card-bounce;
}

.about-us-section .shape-3 {
    position: absolute;
    top: 352px;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
}

.about-us-image-area .border-shape {
    position: absolute;
    top: -11px;
    right: 60px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    z-index: -1;
}

.about-us-image-area figure.image-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px dashed #000;
    padding: 20px;
}

.about-us-image-area figure.image-1::before {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.about-us-image-area .image-2-area {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 71px;
}

.about-us-image-area .image-2 {
    display: inline-block;
    border: 10px solid #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
}

.about-us-image-area .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_player_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 57px;
    width: 57px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.about-us-image-area .video_player_btn::before,
.about-us-image-area .video_player_btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 1;
    border-radius: 50%;
}

.video_player_btn::before {
    z-index: 0;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.video_player_btn::before,
.video_player_btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 1;
    border-radius: 50%;
}

.video_player_btn::before {
    z-index: 0;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.about-us-image-area .play-btn a {
    border-radius: 50%;
    color: #fff;
    z-index: 2;
    position: relative;
    font-size: 17px;
}

.about-us-image-area .video_player_btn:before,
.about-us-image-area .video_player_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 1;
    border-radius: 50%;
}

.video_player_btn:after {
    z-index: 1;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.about-us-image-area .working-area {
    background: var(--theme-color);
    display: inline-block;
    padding: 25px 16px 10px;
    text-align: center;
    position: absolute;
    top: 86px;
    left: -50px;
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.about-us-image-area .inner::before {
    content: "";
    position: absolute;
    bottom: -54px;
    left: -16px;
    width: 50px;
    height: 30px;
    background: #c3141f;
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 48% 47%, 0 0);
}

.about-us-image-area .icon-box i {
    color: #fff;
    font-size: 50px;
}

.about-us-image-area .icon-box h4 {
    color: #fff;
    margin-top: 14px;
    margin-bottom: 1px;
}

.about-us-image-area .icon-box p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    position: relative;
}


.about-us-content-area .icon {
    position: relative;
    font-size: 50px;
    padding: 15px;
    /* background: rgba(234, 24, 38, 0.06); */
    color: var(--theme-color);
    border: 1px dashed #000;
}

.about-us-content-area .icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    color: #fff;
    transform: scale(0);
    transition: all 500ms ease;
}

.about-us-content-area .content h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.about-us-content-area .icon-box {
    display: flex;
    align-items: self-start;
    gap: 35px;
}

.about-us-content-area .icon-box:hover .icon::before {
    transform: scale(1, 1);
}

.about-us-content-area .icon-box:hover .icon i {
    position: relative;
    z-index: 1;
    color: #fff;
}



@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-30px);
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.section-space-top {
    padding-top: 120px;
}

.choose-section .bg-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.choose-section .shape-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.section-space-medium-bottom {
    padding-bottom: 100px;
}

.choose-section .section-title {
    color: #fff;
}

.choose-area-icon-box {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.choose-area-icon-box .icon-box {
    color: var(--theme-color);
    background: #fff;
    padding: 20px;
    font-size: 50px;
    display: inline-block;
}

.choose-area-icon-box .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    background: var(--theme-color);
    transition: all 700ms ease;
}

.choose-area-icon-box h5 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
}

.choose-area-icon-box p {
    color: #fff;
    margin: 0;
}

.choose-area-icon-box:hover .icon-box::before {
    transform: scale(1, 1);
}

.choose-area-icon-box:hover .icon-box i {
    color: #fff;
    position: relative;
    z-index: 1;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-15 {
    margin-bottom: 15px;
}



hr:not([size]) {
    margin: 0;
    border-color: rgba(22, 22, 22, 0.1);
    opacity: 1;
    border-width: 1px;
}

.choose-section hr {
    background: rgb(255 255 255 / 20%);
    margin-bottom: 15px;
}

.choose-section figure.image {
    position: relative;
    padding-top: 60px;
}

.m-img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}


/* service page css start here */

.service-page-section .service-slider-area .content {
    background: #FFF;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.10);
    height: 100%;
    min-height: 240px;
}

ul.service-details-page-list li:before {
    content: "\e921";
    font-family: 'icomoon';
    color: var(--theme-color);
    font-weight: 600;
    position: relative;
    top: 0;
    left: -10px;
}

ul.service-details-page-list li {
    margin-left: 10px;
    font-weight: 500;
    margin-bottom: 10px;
}

.service-widget-1 {
    background: #F8F8F8;
    padding: 40px 30px;
}

.service-widget-1 h5 {
    font-size: 22px;
    margin-bottom: 25px;
}

.service-widget-1 li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
}

.service-widget-1 li .active {
    background: var(--theme-color);
    color: #fff;
}

.service-widget-1 li {
    margin-bottom: 16px;
}

.service-widget-1 li:last-child {
    margin-bottom: 0px;
}

.service-widget-2 .icon-box {
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: -30px;
}

.service-widget-2 .icon-box:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: 56px;
    height: 56px;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    z-index: 1;
}

.service-widget-2 .icon-box:after {
    content: "";
    position: absolute;
    top: -11px;
    left: -11px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 11px solid var(--theme-color-1);
}

.service-widget-2 .content h5 {
    color: #fff;
    margin: 24px 0;
}

.service-widget-2 .content .phone {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.service-widget-2 .btn-box {
    padding: 30px 0;
}

.service-widget-3 .company-file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--theme-color);
    padding: 20px;
    color: #fff;
}

.service-widget-3 .company-file h6 {
    color: #fff;
}

.service-widget-3 .file-size a {
    margin-left: 10px;
}

.service-slider-section h3.section-title {
    color: #fff;
}

.service-slider-area {
    background: #fff;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px -1px 2px 7px rgba(0, 0, 0, 0.10);
    min-height: 412px;
}

.service-slider-area img {
    -webkit-transition: all 0.3s 0s ease-out;
    /* -moz-transition: all 0.3s 0s ease-out; */
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.service-slider-area figure {
    overflow: hidden;
    margin-bottom: 0;
}

.service-slider-area:hover figure img {
    transform: scale(1.1);
}

.service-slider-area .content {
    position: relative;
    padding: 40px 30px 30px;

    /* background: #FFF;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.10); */

}

.product_page .content {
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.col-xxl-4.col-xl-4.col-lg-4.mb-15 {
    background: #FFF;
    /* box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.10); */
}

.service-slider-area .content h4:hover {
    color: var(--theme-color);
    transition: inherit;
}

.service-slider-area .icon-box {
    padding: 15px;
    font-size: 50px;
    border: 1px dashed #00c6ff;
    display: inline-block;
    color: var(--theme-color);
    position: absolute;
    right: 30px;
    top: -45px;
    background: #fff;
}

.service-slider-area .icon-box:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: var(--theme-color);
    transition: all 500ms ease;
}

.service-slider-area:hover .icon-box:before {
    width: 100%;
    left: 0;
}

.service-slider-area:hover .icon-box i {
    color: #fff;
    position: relative;
    transition: all 500ms ease;
}

.service-slider-area:hover .icon-box {
    border: 1px solid var(--theme-color);
}

.service-slider-area .service-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.service-slider-area .service-btn:hover {
    color: var(--theme-color);
}

.service_1_navigation__wrapprer button {
    color: #fff;
    height: 50px;
    width: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.service_1_navigation__wrapprer button:hover {
    border: 1px solid #fff;
}

.service-slider-section .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left;
}

.service-slider-section .shape-2 {
    position: absolute;
    bottom: 120px;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.service-slider-section .shape-3 {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.choose-section p {
    color: var(--white);
    color: #fff;
}

@media only screen and (max-width: 1400px) {
    .service_1_navigation__wrapprer {
        text-align: left !important;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .service_1_navigation__wrapprer button {
        margin: 0 20px 0 0;
    }

}


/* detale service page */

/* 29-5-25 */
.mt-25 {
    margin-top: 25px;
}

.pt-20 {
    padding-top: 20px;
}

ul.service-details-page-list li {
    margin-left: 10px;
    font-weight: 500;
    margin-bottom: 10px;
}

ul.service-details-page-list li:before {
    content: "\e921";
    font-family: 'icomoon';
    color: var(--theme-color);
    color: #003087;
    font-weight: 600;
    position: relative;
    top: 0;
    left: -10px;
}

.service-widget-2 .icon-box {
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: -30px;
}

.service-widget-2 .icon-box::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: 56px;
    height: 56px;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    z-index: 1;
}

.service-widget-2 .icon-box::after {
    content: "";
    position: absolute;
    top: -11px;
    left: -11px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 11px solid var(--theme-color-1);
}

.service-widget-2 .content h5 {
    color: #fff;
    margin: 24px 0;
}

.service-widget-2 .content .phone {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.service-widget-2 .btn-box {
    padding: 30px 0;
}

/* 30-5-25 */
/* Sticky sidebar styles */


/* For homepage */
/* body.home-page .service-sidebar {
    top: 100px;
} */

/* Container styles */


/* Service widget styles */
.service-widget-2 {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-tab-btn-area .nav-tabs .nav-link:hover {
    /* color: var(--theme-color-1); */
    -webkit-text-fill-color: unset;

}



/* product details page css  */

.product_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 50px;
}

.product_text {
    width: 70%;
    max-width: 100%;
}

.product_image {
    width: 30%;
    max-width: 100%;
}

.product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-family: sans-serif;
    border: 1px solid #ccc;
}

.custom-table th {
    background-color: #004890;
    color: #fff;
    padding: 10px;
    font-weight: bold;
}

.custom-table td {
    padding: 10px;
    border: 1px solid #000;
    background-color: #fff;
}















.img_map img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.img_map {
    width: 100%;
    height: 100%;
}

figure {
    margin-bottom: 0;
}

.icon-box svg.lucide-building-2,
.features-box-area .icon-box svg {
    width: 50px;
    height: 50px;
    stroke-width: 1px;
}

/*
.features-box-area .icon-box svg {
    stroke-width: 1px;
} */

svg#Capa_1,
svg#Layer_1,
svg#_x32_ {
    width: 50px;
    height: 50px;
}

.service-tab-btn-area ul .nav-link.active svg#Capa_1 {
    fill: #fff;
}

.service-tab-btn-area ul .nav-link.active svg#_x32_ .st0 {
    fill: #fff !important;
}

.service-tab-btn-area ul .nav-link.active svg#Layer_1 {
    fill: #fff;
    stroke: #fff;
    color: #fff;
}

.service-tab-btn-area .nav-tabs .nav-link:hover::after {
    width: unset;
}

.features-box-area:hover svg#Capa_1,
.features-box-area:hover .quantity-icon {
    fill: #fff;
}

.features-box-area:hover .client-icon {
    stroke: #fff;
}

.features-box-area svg.client-icon {
    stroke-width: 3px;
    width: 55px;
    height: 55px;
}


svg#work-process-icon {
    width: 40px;
    height: 40px;
}

#icon-hover-white {
    fill: var(--theme-color-icon);
    transition: fill 0.3s ease;
}

.work-process-box:hover #icon-hover-white {
    stroke: #fff !important;
}
.whatsapp {
    height: 50px;
    width: 50px;
    background: #25d366;
    border: none;
    position: fixed;
    right: 40px;
    bottom: 40px;
    text-transform: uppercase;
    margin: 0;
    padding: 7px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    z-index: 999;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    align-items: center;
    display: flex;
}
 
.whatsapp span {
    display: block;
    font-size: 30px;
    line-height: 24px;
    margin: auto;
}

.blog-widget-3 {
    background: #F8F8F8;
    padding: 40px 30px;
}

.blog-widget-title:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--theme-color);
}

.blog-widget-3 .blog-post-sidebar {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 80px auto;
    gap: 15px;
}

.blog-widget-3 .content span {
    font-size: 14px;
    color: #787878;
}

.blog-widget-3 .content span i {
    color: #00b8f4;
    margin-right: 5px;
}

.blog-widget-3 .content h6 {
    font-size: 16px;
}

.blog-sidebar-sticky {
    position: sticky;
    top: 140px;
    align-self: flex-start;
    z-index: 2;
}

label {
    display: inline-block;
}

.postbox__comment-form label {
    font-weight: 500;
    margin-bottom: 15px;
}

.postbox__comment-form input[type="text"],
.postbox__comment-form input[type="email"] {
    border-radius: 4px;
    border: 1px solid #ECECEC;
    padding: 18px 20px;
    height: 55px;
    margin-bottom: 30px;
}

.blog-sidebar-stickyOne input[type=text],
.blog-sidebar-stickyOne input[type=email],
.blog-sidebar-stickyOne input[type=tel],
.blog-sidebar-stickyOne input[type=number],
.blog-sidebar-stickyOne input[type=password],
.blog-sidebar-stickyOne textarea {
    outline: none;
    background-color: #fff;
    height: 65px;
    width: 100%;
    line-height: 65px;
    font-size: 16px;
    color: var(--theme-color);
    padding-left: 21px;
    padding-right: 21px;
    border-radius: 5px;
    border: 1px solid var(--theme-color-1);
}

.blog-sidebar-stickyOne .postbox__comment-form textarea {
    border-radius: 4px;
    border: 1px solid #ECECEC;
    height: 200px;
    resize: none;
    margin-bottom: 30px;
}


.blog-style-one .blog-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-style-one .blog-image:before {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.blog-style-one .blog-content {
    background: #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.blog-style-one .post-meta {
    display: inline-flex;
    gap: 26px;
}

.blog-style-one .post-meta span {
    font-size: 14px;
}

.blog-style-one .post-meta span i {
    color: var(--theme-color);
    margin-right: 8px;
}
