@charset "UTF-8";

:root {
    --primary-color: #003399;
    --secondary-color: #fe0000;
    --bg-color: #f2f6ff;
    --white-color: #ffffff;
    --black-color: #151515;
    --dark-color: #002048;
    --text-gray-color: #606060;
    --transition: all 0.3s ease 0s;
}
* {
    margin: 0;
    box-sizing: border-box;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body {
    overscroll-behavior: none;
}
body,
html {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    color: var(--black-color);
    font-family: "Nunito Sans", sans-serif;
}
h1,h2,h3,h4 {
    margin: 0;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
h5,h6 {
    margin: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--black-color);
}
span, li {
    font-family: "Nunito Sans", sans-serif;
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}
a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    text-decoration: none;
    outline: 0
}
a:hover {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto
}
ul {
    margin: 0;
    padding: 0
}
li {
    list-style: none;
    transition: var(--transition);
}
.all-search i {
    font-size: 22px;
}
.container-fluid {
    padding-right: 80px;
    padding-left: 80px;
}
.section-padding {
    padding: 80px 0 80px 0;
}
.pad-top {
    padding-top: 80px;
}
.pad-bottom {
    padding-bottom: 80px;
}
.pad-top-half {
    padding-top: 40px;
}
.pad-bottom-half {
    padding-bottom: 40px;
}
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    flex-direction: column;
    z-index: 11;
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.section-heading {
    margin-bottom: 30px;
}
.main-head {
    font-size: 34px;
    line-height: 45px;
    margin-top: 5px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
.sub-head {
    background: #0033991a;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.section-bg {
    background: var(--bg-color) !important;
}
.bg-primary {
    background: var(--primary-color) !important;
}
.bg-secondary {
    background: var(--secondary-color) !important;
}


/*button section start*/
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.main-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}
.main-btn:after {
    content: "";
    position: absolute;
    right: 0;
    width: 0%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.main-btn:hover::after {
    left: 0;
    width: 100%;
}
.main-btn span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 8px 20px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.main-btn:hover span {
    animation: scaleUp 0.3s ease-in-out;
}
.main-btn:not(:hover) span {
    animation: scaleDown 0.3s ease-in-out;
}


.btn-1 {
    background: var(--primary-color);
}
.btn-1:after {
    background: var(--secondary-color);
}
.btn-1 span {
    color: var(--white-color);
}
.btn-1:hover span {
    color: var(--white-color);
}


.btn-2 {
    background: var(--secondary-color);
}
.btn-2:after {
    background: var(--primary-color);
}
.btn-2 span {
    color: var(--white-color);
}
.btn-2:hover span {
    color: var(--white-color);
}


.btn-white {
    color: #000;
    background: var(--white-color);
}
.btn-white:after {
    background: var(--primary-color);
}
.btn-white span {
    color: var(--black-color);
}
.btn-white:hover span {
    color: #ffffff;
}
/*button section end*/

/*hover-link start*/
.hover-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.hover-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transition: width .3s;
}
.hover-link:hover::after {
    width: 0%;
    transition: width .3s;
}
/*hover-link end*/


/*--------------------------------------------
           header section start
--------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999;
}
.header-top-section {
    padding: 5px 0;
    background: var(--primary-color);
}
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.top-info, .top-right {
    display: flex;
    column-gap: 10px;
}
.top-info a:hover {
    color: var(--white-color);
}
.top-info a {
    gap: 5px;
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 12px;
    margin-right: 25px;
    position: relative;
}
.top-info a i {
    color: var(--primary-color);
    font-size: 12px;
    width: 20px;
    height: 20px;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.header-social {
    display: flex;
    align-items: center;
    position: relative;
}
.header-social:before {
    content: "";
    position: absolute;
    left: -17px;
    top: 1px;
    background: #fff;
    width: 1px;
    height: 20px;
}
.header-social-inline {
    display: flex;
    column-gap: 2px;
    align-items: center;
}
.header-social-inline li {
    color: var(--white-color);
    font-size: 12px;
}
.header-social-list-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    border: 1px solid var(--white-color);
    line-height: 19px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 10px;
    display: inline-block;
    background: var(--white-color);
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.logo img {
    width: 80px;
    height: auto;
    position: relative;
    top: 0;
}
.support-area {
    display: flex;
    column-gap: 10px;
    align-items: center;
}
.support-text {
    position: relative;
    top: -2px;
    margin-right: 20px;
}
.support-area img {
    padding: 8px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0px 5px #113d842b;
}
.support-text span {
    font-size: 12px;
    line-height: 12px;
    color: var(--text-gray);
    font-weight: 500;
}
.support-text a {
    color: var(--primary-color);
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}
.menu-section-right {
    display: flex;
    align-items: center;
}
/*--------------------------------------------
           header section end
--------------------------------------------*/



/*--------------------------------------------
           home section start
--------------------------------------------*/
.z-index-1 {
    z-index: 1;
}
.heading-white .main-head {
    color: #ffffff;
}
.new-slick-dots .slick-dots {
    bottom: 0;
    left: 0;
    margin: 15px 0 0;
    position: relative;
}
.new-slick-dots .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    border: 0;
}
.new-slick-dots li.slick-active button {
    background: var(--primary-color) !important;
}
.new-slick-dots .slick-dots li button {
    width: 5px;
    height: 5px;
    padding: 5px;
    border-radius: 50%;
    background: #00339954;
    opacity: 1;
}
.slick-slide {
    padding: 3px;
    margin-right: 3px;
    margin-left: 3px;
}
/*--------------------------------------------
           home section end
--------------------------------------------*/



/*--------------------------------------------
           banner section start
--------------------------------------------*/
.home2__slider--bg {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100vh;
}
.hero__slider--section .inline-main-btn {
    justify-content: center;
}
.home2__slider--bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #00000000 0%, #003399 50%);
    /* background: #161616; */
    width: 100%;
    height: 100%;
    opacity: 0.7;
}
.hero__slider--items__inner {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: relative;
}
.sub-heading-banner {
    display: flex;
    align-items: center;
}
.sub-heading-banner h4{
    width: 60%;
    height: 40px;
    text-transform: uppercase;
    background: #9b9b9b5e;
    color: var(--white-color);
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 40px;
    text-align: right;
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative;
}
.slider__content .sub-head {
    color: #ffffff;
}
.slider__content--maintitle {
    margin-bottom: 10px;
    font-size: 60px;
    line-height: 70px;
    color: var(--white-color);
    position: relative;
    font-weight: 700;
    width: 700px;
    text-transform: capitalize;
}
.slider__content--desc {
    width: 700px;
    font-size: 16px;
    line-height: 24px;
    color: var(--white-color);
    margin-bottom: 20px;
}
.swiper__nav--btn::after {
    background: url(../images/icon/left-arrow-angle.png) !important;
    width: 9px;
    height: 17px;
    font-size: 0;
}
.swiper__nav--btn.swiper-button-next::after {
    background: url(../images/icon/right-arrow-angle.png) !important;
}
.swiper__nav--btn {
    display: none !important;
    width: 3rem !important;
    height: 3rem !important;
    background: var(--primary-color) !important;
    border-radius: 50% !important;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.swiper__nav--btn:hover {
    background: var(--black-color);
}
.hero__slider--activation .swiper-button-prev {
    left: 1rem;
}
.swiper__nav--btn.swiper-button-prev {
    left: 0;
}
.swiper:hover .swiper__nav--btn {
    opacity: 1;
    visibility: visible;
}
.hero__slider--activation .swiper-button-next {
    right: 1rem;
}
.swiper__nav--btn.swiper-button-next {
    right: 0;
}
.slider__content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*--------------------------------------------
           banner section end
--------------------------------------------*/


/*--------------------------------------------
         happy client section start
--------------------------------------------*/
.happy-client-item {
    width: 100%;
    height: 90px;
    background: #fff;
    box-shadow: 0 0 5px #00000012;
    border-radius: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.happy-client-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}
/*--------------------------------------------
         happy client section end
--------------------------------------------*/


/*--------------------------------------------
         service section start
--------------------------------------------*/
.service-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    position: relative;
    gap: 15px;
}
.service-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #113d84, transparent);
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 14px;
}
.service-item {
    width: 100%;
    height: 185px;
    border-radius: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
}
.service-content {
    background: #fff;
    padding: 15px 15px 5px 15px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 90%;
    border-radius: 10px;
}
.service-content .main-head {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}
.service-content p {
    color: var(--text-gray);
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 5px;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.service-content .hover-link {
    color: var(--primary-color);
}
.service-content .hover-link::after {
    background: var(--primary-color);
}
.service-area-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    position: relative;
    gap: 20px;
}
.service-area-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000000;
    /* background: linear-gradient(to top, #000000, #000000); */
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 1;
}
.service-area-item {
    width: 100%;
    height: 300px;
}
.service-area-img {
    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-area-img .main-head {
    color: #ffffff;
    background: var(--secondary-color);
    background: linear-gradient(90deg, rgb(254 0 0 / 20%) 0%, rgb(254 0 0) 50%, rgb(254 0 0 / 24%) 95.35%);
    padding: 10px 50px;
    border-radius: 0;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    margin: 0;
    z-index: 1;
    transition: var(--transition);
}
.service-area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-area-content {
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 7px;
    padding: 15px;
    transform: scale(0);
    transition: var(--transition);
}
.service-area-content .main-head {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0;
    color: var(--primary-color);
}
.service-area-item:hover .service-area-img .main-head {
    transform: scale(0);
}
.service-area-item:hover .service-area-content {
    transform: scale(1);
    background: #ffffffe0;
}
.service-area-item:hover:before {
    opacity: 0;
}

/*--------------------------------------------
         service section end
--------------------------------------------*/

/*------ how-it-work-area start ------*/
.how-it-work-area {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    margin-top: 30px;
}
.work-text p {
    color: #747474;
    width: 80%;
    margin-top: 5px;
}
.work-text h3 {
    font-size: 18px;
    width: 75%;
    line-height: 26px;
}
.work-number h2 {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--primary-color);;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 11;
}
.work-number:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    border: 1px dashed #003399;
    z-index: 1;
}
/*------ how-it-work-area end ------*/


/*--------------------------------------------
         about us start
--------------------------------------------*/
.about-content-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.text-about {
    margin-top: 40px;
}
.about-img-area {
    margin-right: 50px;
    height: 400px;
}
.about-section {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    padding: 0 70px;
}
.about-img-area img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-area:after {
    content: "";
    background: var(--primary-color);
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 18px;
    height: 85%;
}
.year-experience {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    width: 300px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: -7px -7px 0 17px #fff;
}
.year-experience h3 {
    font-size: 64px;
    color: #fff;
    margin-bottom: 5px;
}
.year-experience span {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
}

/*--------------------------------------------
         about us end
--------------------------------------------*/


/*--------------------------------------------
     home contact with contact page start
--------------------------------------------*/
.home-contact-info {
    border-radius: 100px;
    display: grid;
    gap: 20px;
    width: 100%;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
}
.home-contact-info-items {
    background: var(--primary-color);
    border-radius: 14px;
    padding: 30px;
    z-index: 11;
    position: relative;
}
.home-contact-info-icon i {
    font-size: 24px;
    margin-right: 10px;
    background: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    color: var(--primary-color);
}
.contact-info-content h4 {
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-info-content p, .contact-info-content a {
    color: #fff;
    line-height: 28px;
    font-size: 16px;
    word-break: break-word;
    margin-bottom: 0;
}
.contact-form .form-control {
    height: 55px;
    color: #747474;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #efefef;
    position: relative;
    z-index: 11;
}
.contact-form .section-heading {
    margin-bottom: 15px;
}
.contact-form {
    background: var(--bg-color) !important;
    padding: 30px;
    border-radius: 14px;
    height: auto;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}
textarea.form-control {
    min-height: 145px;
}
.contact-section:before {
    content: "";
    background-image: url(../images/bg-img/map-dot-bg.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    opacity: 0.5;
}
.contact-map-home iframe {
    width: 100%;
    height: 480px;
    border-radius: 14px;
    object-fit: cover;
    position: relative;
    z-index: 11;
    margin-bottom: -15px;
}
.contact-page .contact-form {
    background: var(--bg-color);
}

/*--------------------------------------------
     home contact with contact page end
--------------------------------------------*/


/*--------------------------------------------
        footer section start
--------------------------------------------*/
.footer-section {
    background: #001338;
}
.footer-logo {
    height: 56px;
}
.footer-social-inline {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 15px;
}
.footer-social-list-icon:hover i{
    background: var(--primary-color);
    color: #fff;
    border-color: #fff;
}
.footer-social-inline li, .footer-social-inline li a {
    margin-bottom: 0;
}
.footer-social-list-icon i {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: var(--primary-color);
    line-height: 29px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 12px;
    display: inline-block;
    transition: var(--transition);
}
.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
.footer-widget a {
    font-size: 12px;
    color: #fff;
    word-break: break-word;
    width: fit-content;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer-widget a:hover {
    color: #fff;
}
.row-space-1 {
    padding-left: 50px;
}
.row-space-2 {
    padding-left: 65px;
}
.footer-widget ul li {
    margin-bottom: 5px;
    color: #fff;
}
.footer-widget p {
    font-size: 12px;
    margin-top: 15px;
    color: #fff;
}
.footer-bottom {
    padding: 20px 0 20px 0;
    position: relative;
    z-index: 2;
    /* border-top: 1px solid var(--black-color); */
    margin-top: 50px;
    background: #000f2c;
}
.copyright-content-link:hover {
    color: var(--primary-color);
}
.footer-bottom p {
    font-size: 12px;
    margin: 0;
    color: #fff;
}
.contact-info i {
    font-size: 20px;
    color: #ffffff;
    margin-right: 10px;
}
.contact-info a:hover i {
    color: var(--primary-color);
}
.extra-link a {
    font-size: 12px;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}
.extra-link a:hover {
    color: var(--primary-color);
}
.extra-link a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px;
    height: 70%;
    background: var(--black-color);
}
.extra-link a:last-child:before {
    content: "";
    width: 0;
}
.extra-link .hover-link::after {
    background: var(--primary-color);
}
#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
#scroll__top:hover {
    color: var(--primary-color);
    background: var(--white-color)
}

#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
#scroll__top svg {
    width: 25px;
    line-height: 1
}
.contact-info i {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: var(--primary-color);
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: -35px;
    font-size: 10px;
    display: inline-block;
    transition: var(--transition);
}
.contact-info a:hover i {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.contact-info a {
    margin-left: 35px;
    margin-bottom: 12px;
    position: relative;
}
.contact-info a:first-child {
    margin-bottom: 20px;
}
.inline-footer-widget {
    display: flex;
    justify-content: space-between;
}
.arrow-list li a:before {
    content: "\e1a1";
    font-family: "Font Awesome 6 Pro";
    padding-right: 10px;
}
/*--------------------------------------------
        footer section end
--------------------------------------------*/


/*--------------------------------------------
        breadcrumb section start
--------------------------------------------*/
.breadcrumb-area {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 150px;
    position: relative;
    margin-top: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcrumb-area .container {
display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.breadcrumb-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.breadcrumb-area h1, .breadcrumb-area h2, .breadcrumb-area h3, .breadcrumb-area h4 {
    color: #fff;
    font-size: 24px;
    position: relative;
}
.breadcrumb-list a, .breadcrumb-list li {
    color: var(--black-color);
    font-size: 12px;
    margin-right: 10px;
}
.breadcrumb-list li:last-child {
    margin-right: 0;
}
.breadcrumb-list li:last-child:after {
    display: none;
    opacity: 0;
}
.breadcrumb-list li:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    color: var(--black-color);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.breadcrumb-list ul {
    display: flex;
    background: #ffffff;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 30px;
    transition: var(--transition);
}
.breadcrumb-list ul:hover {
    background: var(--secondary-color);
}
.primary-bg {
    background: var(--primary-color);
}
.breadcrumb-list ul:hover a, .breadcrumb-list ul:hover li {
    color: #ffffff;
}
.breadcrumb-list ul:hover li:after {
    color: #ffffff;
}
/*--------------------------------------------
        breadcrumb section end
--------------------------------------------*/


/*--------------------------------------------
        CMS page start
--------------------------------------------*/
.cms-page .main-head {
    margin-top: 0;
    margin-bottom: 10px;
}
.sub-title {
    font-size: 20px;
    margin-bottom: 10px;
}
.cms-page ul li {
    list-style: inside;
    margin-bottom: 5px;
}
/*--------------------------------------------
        CMS page end
--------------------------------------------*/


/*--------------------------------------------
      service details page start
--------------------------------------------*/
.main-service-img img {
    margin-bottom: 20px;
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.sidebar-service-item {
    display: flex;
    column-gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.sidebar-service-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0 solid #e5e5e5;
}
.sidebar-service-item h4 {
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.service-details-area .main-head {
    margin-bottom: 10px;
    margin-top: 0;
}
.sidebar-service-item:hover h4 {
    color: var(--primary-color);
}
.sidebar-service-item h4:before {
    content: "\e1a1";
    font-family: "Font Awesome 6 Pro";
    padding-right: 10px;
}
.service-details-area h4, .service-details-area h5, .service-details-area h6{
    font-size: 16px;
    color: #707070;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}
.sidebar-heading {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 35px;
    position: relative;
}
.sidebar-heading:before {
    content: "";
    background: var(--primary-color);
    width: 55px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 6px;
}
.stickyexample {
    position: sticky;
    top: 115px;
}
.service-details-area ul li {
    list-style: inside;
    margin-bottom: 5px;
}
.service-details-area ul {
    margin-bottom: 10px;
}

/*--------------------------------------------
       service details page end
--------------------------------------------*/

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}
.newsteller {
    position: relative;
    padding: 40px 0;
    background: var(--primary-color);
}
.newsteller.style_one .content {
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #fff;
}
.newsteller.style_one .content h2 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 40px;
}
.newsteller.style_one .content p {
    margin-bottom: 0px;
    color: #fff;
}
.newsteller.style_one .item_scubscribe {
    position: relative;
    top: 9px;
}
form {
    position: relative;
}
input, input[type=text], input[type=email], input[type=number], textarea, select {
    position: relative;
    height: 56px;
    border-radius: 6px;
    width: 100%;
    padding: 5px 15px;
    display: block;
    transition: 0.5s ease-in-out !important;
    margin-bottom: 20px;
    border: 0;
}
.newsteller.style_one .item_scubscribe .mc4wp-form-fields button {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    background: var(--secondary-color);
    border-radius: 0 6px 6px 0;
    height: 56px;
    min-width: 100px;
    font-size: 16px;
    font-weight: 600;
    min-height: 56px;
    line-height: 56px;
    color: #fff;
    border: 0px !important;
}

.gallery-details {
    display: grid;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background: var(--primary-color);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
}
.gallery-img-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.gallery-details a {
    position: relative;
    display: block;
}
.gallery-details a:before {
    content: "";
    background: #ffffff9c;
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.gallery-details a:hover:before {
    opacity: 1;
    visibility: visible;
}
.gallery-details a:hover .view-icon {
    opacity: 1;
    visibility: visible;
}
.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background: #ffffff;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
}
.gallery-details a:hover .video-btn {
    opacity: 1;
    visibility: visible;
}
.gallery-text {
    background: var(--bg-color);
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.gallery-text h4 {
    color: var(--primary-color);
    font-size: 16px;
}
.gallery-text p {
    color: #ffffffdb;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    width: fit-content;
    border-radius: 30px;
    padding: 0 10px;
}
/*-----why-choose start-----*/
.why-choose-bg {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-choose-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    opacity: 0.9;
}
.why-choose-item {
    position: relative;
    z-index: 1;
    padding: 25px;
    background: #ffffff29;
    border-radius: 10px;
    display: block;
    height: 185px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-choose-item-img {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 800;
    border: 4px #00339936 solid;
}
.why-choose-item-text h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-top: 10px;
    color: var(--white-color);
    text-transform: capitalize;
}
/*----- why-choose end -----*/