@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/*
font-family: "Red Hat Display", sans-serif;
*/

@font-face {
    font-family: 'SatoshiBlack';
    src: url('../fonts/SatoshiBlack.eot');
    src: url('../fonts/SatoshiBlack.eot') format('embedded-opentype'),
         url('../fonts/SatoshiBlack.woff2') format('woff2'),
         url('../fonts/SatoshiBlack.woff') format('woff'),
         url('../fonts/SatoshiBlack.ttf') format('truetype'),
         url('../fonts/SatoshiBlack.svg#SatoshiBlack') format('svg');
}

@font-face {
    font-family: 'SatoshiBold';
    src: url('../fonts/SatoshiBold.eot');
    src: url('../fonts/SatoshiBold.eot') format('embedded-opentype'),
         url('../fonts/SatoshiBold.woff2') format('woff2'),
         url('../fonts/SatoshiBold.woff') format('woff'),
         url('../fonts/SatoshiBold.ttf') format('truetype'),
         url('../fonts/SatoshiBold.svg#SatoshiBold') format('svg');
}

@font-face {
    font-family: 'SatoshiMedium';
    src: url('../fonts/SatoshiMedium.eot');
    src: url('../fonts/SatoshiMedium.eot') format('embedded-opentype'),
         url('../fonts/SatoshiMedium.woff2') format('woff2'),
         url('../fonts/SatoshiMedium.woff') format('woff'),
         url('../fonts/SatoshiMedium.ttf') format('truetype'),
         url('../fonts/SatoshiMedium.svg#SatoshiMedium') format('svg');
}

@font-face {
    font-family: 'SatoshiRegular';
    src: url('../fonts/SatoshiRegular.eot');
    src: url('../fonts/SatoshiRegular.eot') format('embedded-opentype'),
         url('../fonts/SatoshiRegular.woff2') format('woff2'),
         url('../fonts/SatoshiRegular.woff') format('woff'),
         url('../fonts/SatoshiRegular.ttf') format('truetype'),
         url('../fonts/SatoshiRegular.svg#SatoshiRegular') format('svg');
}

:root {
    /*--theme-color: #312782;*/
    --black: #000;
    --white: #fff;
    --paragraph: #303030;

}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'SatoshiBold';
}

h2, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'SatoshiBold';
}

p {
    font-family: 'SatoshiRegular';
    font-size: 17px;
    padding: 0;
    margin: 0 0 15px;
    color: var(--paragraph);
    font-weight: 500;
    line-height: normal;
}

.text-section p {
    opacity: 0;
    transform: translateY(20px);
}

ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
    text-decoration: none;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

.p-80 {
    padding: 80px 0;
}

.title1 h1 {
    font-family: 'SatoshiBold';
    font-size: 78px;
    color: #fff;
    text-transform: uppercase;
    line-height: 85px;
}

.title3 h3 {
    font-family: 'SatoshiBold';
    font-size: 48px;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
}

.title3 h6 {
    font-family: "Red Hat Display", sans-serif;
    font-size: 17px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title3 h6:after {
    content: "";
    position: absolute;
    top: 8px;
    right: -95px;
    width: 82px;
    height: 8px;
    background-image: url(../images/line.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
}

/*.title3 h6::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -85px;
    width: 75px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), #c09945);
}

.title3 h6:after {
    content: "";
    position: absolute;
    top: 8px;
    right: -85px;
    width: 75px;
    height: 1px;
    background: linear-gradient(90deg, #c09945, rgba(255, 255, 255, .08));
}*/


.title2 h2 {
    font-size: 62px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    position: relative;
}

.title4 h4 {
    font-size: 30px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.title5 h5 {
    font-size: 24px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    transition: 0.6s;
}

.btn01 {
    font-family: "Red Hat Display", sans-serif;
    position: relative;
    font-size: 17px;
    border-radius: 30px;
    padding: 10px 30px;
    border: 1px solid #3a3a3a;
    color: #fff;
    font-weight: 500;
    text-align: center;
    background-color: #3a3a3a;
    transition: 0.6s;
    display: inline-block;
    margin-top: 20px;
}

.btn01:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-5px);
}

/*// backToTop //*/
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; padding: 10px; background: linear-gradient(to bottom, #469fd8, #797bf9); border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 1000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); border: 1px solid rgb(255 255 255 / 89%); transition: 0.6s; }
#backToTop .fa-arrow-up { font-size: 18px; color: #fff; top: -1px; position: relative; }
#backToTop:hover { background-color: #f15c5a; transform: scale(1.1); }
#backToTop:hover svg { transform: translateY(-3px); }
/*// backToTop //*/

.form-select:focus {
    box-shadow: none;
}

a {
    color: rgb(0 0 0);
    text-decoration: none;
}

/* ======================================================================= */
    /* header start */
/* ======================================================================= */

.headerarea {
    box-shadow: none;
    padding: 20px 0;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 11;
}

.headerarea .logo {
    width: 100%;
    max-width: 140px;
    position: relative;
    display: inline-block;
}

/*.footer_sec .logo img, .footer_sec .logo img {
    width: 100%;
    object-fit: cover;
    position: relative;
}*/

.headerarea .logo img {
    width: 100%;
    object-fit: cover;
    position: relative;
}

img.twentytwenty-after {
    filter: grayscale(1);
}

.headerarea .header-contact .call {
    width: 100%;
    min-width: 43px;
    max-width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F6F7FB;
    background-color: #F6F7FB;
    color: #000000;
    border-radius: 100%;
    margin-left: 10px;
    transition: 0.5s;
}

.headerarea .header-contact .call:hover {
    border-color: #000000;
    background-color: #000000;
    color: #ffffff;
}

.headerarea.fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    background-color: #10102A;
    /*padding: 5px 100px;*/
    z-index: 999;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.headerarea.fix .logo {
    max-width: 100px;
}

.headerarea.fix {
    background-color: #3a3a3a;
    padding: 10px 0;
}

.headerarea.fix .menu ul li a {
    color: var(--black);
}

.headerarea.fix .menu {
    margin-top: 0px;
    margin-right: 0;
}

.headerarea.fix .menu ul li a:hover, .headerarea.fix .menu ul li.active a {
    color: #1789ea;
}

/*.headerarea.fix .menu ul li.active a {
    color: #fff;
}*/


.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right .header-contact .btn {
    margin-right: 10px;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.headerarea .menu .active>a {
    color: #446CB4;
    background: transparent;
}

.headerarea .arrow {
    background-color: #fff !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    margin-top: 0px;
    border: none;
    margin-left: 15px;
}

.headerarea .arrow img {
    max-width: 25px;
    object-fit: contain;
}

/* ======================================================================= */
    /* banner_sec start */
/* ======================================================================= */
.banner_sec {
    width: 98%;
    max-width: 1920px;
    height: 900px;
    margin: 0 auto;
    padding-bottom: 80px;
    position: relative;
    border-radius: 20px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
}

.banner_sec:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: #00000063;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bnr_content {
    width: 100%;
    position: relative;
}

.bnr_content .title1 p {
    font-size: 20px;
    color: #fff;
    width: 85%;
}

.quote-form {
    width: 100%;
    max-width: 380px;
    position: relative;
    margin-top: 35px;
}

.quote-form input {
    font-family: 'SatoshiMedium';
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #fff;
    padding: 0 70px 0 20px;
    font-size: 15px;
    color: #111;
    box-sizing: border-box;
}

.quote-form input::placeholder {
    color: #111;
    opacity: 1;
}

.quote-form button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.quote-form button:hover {
    transform: rotate(15deg);
}

/**/
.service-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
}

.service-content {
    flex: 1;
}

.service-number {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.service-number span {
    font-size: 28px;
    font-weight: 700;
    color: #0d1425;
    line-height: 1;
}

.service-number small {
    font-size: 13px;
    color: #9a9a9a;
    margin-left: 2px;
    margin-bottom: 3px;
}

.service-content p {
    font-family: 'SatoshiMedium';
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    max-width: 180px;
    margin: 0;
}

.service-image {
    width: 170px;
    height: 130px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 46px;
    height: 46px;
    background: rgb(255 255 255 / 52%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
}

.play-btn svg {
    margin-left: 3px;
}

.play-btn:hover {
    transform: translate(-50%,-50%) scale(1.08);
}

@media (max-width:576px) {
    .service-box {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .service-content p {
        max-width: 100%;
    }
}

/* ======================================================================= */
    /* our_partner start */
/* ======================================================================= */
.our_partner {
    width: 100%;
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.brand-card {
    width: 230px;
    height: 72px;
    padding: 15px 35px;
    margin: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .35s ease;
    box-shadow: 1px 3px 6px 0 rgb(0 0 0 / 10%);
}

.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-card:hover {
    transform: translateY(-4px);
}

.brand-logo {
    max-width: 85%;
    max-height: 38px;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width:991px) {
    .brand-card {
        width: 135px;
        height: 68px;
    }
}

@media (max-width:767px) {
    .brand-card {
        width: 120px;
        height: 60px;
        border-radius: 10px;
    }

    .logo-track {
        gap: 12px;
    }
}

@media (max-width:575px) {
    .brand-card {
        width: 105px;
        height: 55px;
    }
}

.right-line:after {
    content: "";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 1px solid #ccc;
}

.left-line:before {
    content: "";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: 100%;
    margin-left: -100%;
    margin-right: 10px;
    border-top: 1px solid #ccc;
}

.our_partner h2 {
    font-family: 'SatoshiMedium';
    font-size: 28px;
    color: #000;
    overflow: hidden;
    width: 85%;
    margin: 0 auto 50px;
}

/* ======================================================================= */
    /* about_sec start */
/* ======================================================================= */
.about_sec {
    width: 100%;
}

.about_secpic {
    width: 95%;
    height: 600px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.about_secpic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bx_icon {
    width: 65px;
    height: 65px;
    background-color: #3a3a3a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bx_icon img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.sectors_engineering_sec1 .title3 h5 {
    font-size: 24px;
    color: #000;
    font-weight: 400;
    margin-bottom: 5px;
}

.year {
    position: absolute;
    left: 12px;
    right: 0px;
    margin: 0 auto;
    bottom: 9px;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 15px 25px;
    text-align: center;
    font-size: 50px;
    color: #000;
    font-weight: 600;
    display: table;
    line-height: 30px;
}

.year small {
    font-family: 'SatoshiMedium';
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

/* ======================================================================= */
    /* why_choose start */
/* ======================================================================= */
.why_choose {
    width: 100%;
    background-color: #F6F6F6;
}

.why_choose_card {
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 30px 30px;
    text-align: center;
    transition: 0.6s;
}

.choose_circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c7c4c463;
    margin: 0 auto 35px;
    transition: 0.6s;
}

.choose_circle img {
    max-width: 30px;
    object-fit: contain;   
}

.why_choose_card h5 {
    font-size: 22px;
    color: var(--black);
    margin-bottom: 10px;
    transition: 0.6s;
}

.why_choose p {
    margin: 0;
    transition: 0.6s;
}

.why_choose_card:hover {
    background-color: #3a3a3a;
}

.why_choose_card:hover h5, .why_choose_card:hover p {
    color: #fff;
}

.why_choose_card:hover .choose_circle {
    transform: scale(1.4);
    background-color: #fff;
}

/* ======================================================================= */
    /* our_services start */
/* ======================================================================= */
.our_services {
    width: 100%;
}

.services_card {
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 10px 10px 20px;
    text-align: center;
    transition: 0.6s;
}

.services_cardpic {
    height: 380px;
    position: relative;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}

.services_cardpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.services_card h4 {
    font-size: 22px;
    color: #000;
    text-transform: uppercase;
    width: 75%;
    margin: 20px auto 10px;
    transition: 0.6s;
}

.services_card p {
    margin: 0;
    text-align: center;
    transition: 0.6s;
}

.services_card:hover {
    background-color: #3a3a3a;
}

.services_card:hover h4, .services_card:hover p {
    color: #fff;
}

.services_card:hover .services_cardpic img {
    transform: scale(1.1);
}

/**/
.services_slide .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center; pointer-events: none;}
.services_slide .owl-nav button.owl-prev, .services_slide .owl-nav button.owl-next { width: 40px; height: 40px; border: 1px solid #000; border-radius: 50%; color: #000; font-size: 30px; pointer-events: all;}
.services_slide .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.services_slide .owl-nav button.owl-prev span::after { content: '\f060'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.services_slide .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.services_slide .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.services_slide .owl-nav button.owl-next span::before { content: '\f061'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.services_slide .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.services_slide .owl-nav button.owl-prev { left: 0px; position: relative;}
.services_slide .owl-nav button.owl-next { right: 0px; position: relative;}
.services_slide .owl-nav {
    position: absolute;
    display: inline-flex;
    top: -97px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.services_slide .owl-nav button.owl-prev:hover, .services_slide .owl-nav button.owl-next:hover { background: #10102A; border: 1px solid #10102A; color: #fff; transition: all .3s ease-in-out;}
.services_slide .owl-nav { margin-top: 0; }
/**/

/* ======================================================================= */
    /* our_blog start */
/* ======================================================================= */
.our_blog {
    width: 100%;
    background-color: #3a3a3a;
}

.our_blog .title3 h3, .our_blog .title3 h6 {
    color: #fff;
}

.our_blog .title3 h6:after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(178deg) brightness(102%) contrast(100%);
}

.our_blogcard {
    width: 100%;
    background-color: #ffffff38;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: 0.6s;
}

.our_blogcard_pic {
    width: 100%;
    height: 220px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.our_blogcard_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.our_blog_textbox {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 22px;
    border: 1px solid #fff;
    transition: 0.6s;
}

.our_blog_textbox h5 {
    font-size: 20px;
    color: #000;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ccc;
}

.our_blog_textbox p {
    margin: 0;
}

.our_blog .container {
    position: relative;
}

.our_blog .btn01 {
    border: 1px solid #fff;
    color: #000;
    background-color: #fff;
    margin-top: 0px;
    position: absolute;
    top: 40px;
    right: 15px;
}

.our_blog .btn01:hover {
    color: #fff;
    background-color: #000;
}

.our_blog .row > .col-lg-4:nth-child(2) .our_blogcard {
    flex-direction: column-reverse;
}

.our_blogcard:hover {
    background-color: #fff;
}

.our_blogcard:hover .our_blog_textbox {
    border-color: #3a3a3a;
}

/* ======================================================================= */
    /* our_gallery start */
/* ======================================================================= */
.our_gallery {
    width: 100%;
    background-color: #F6F6F6;
}

.our_gallery .title3 {
    width: 47%;
    margin: 0 auto;
}

.gallery_grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: end;
    transition: 0.6s;
    margin-top: -150px;
}

.gallery_card {
    width: 100%;
    position: relative;
}

.gallery_card_pic {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.gallery_card_pic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.6s;
}

/* Heights */
.gallery_card:nth-child(1) .gallery_card_pic,
.gallery_card:nth-child(5) .gallery_card_pic {
    height: 510px;
}

.gallery_card:nth-child(2) .gallery_card_pic,
.gallery_card:nth-child(4) .gallery_card_pic {
    height: 410px;
}

.gallery_card:nth-child(3) .gallery_card_pic {
    height: 300px;
}

.gallery_action {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.gallery_action i {
    font-size: 22px;
    color: #000;
    transform: rotate(-45deg);
}

.gallery_card:hover .gallery_card_pic img {
    transform: scale(1.1);
}

.our_gallery .title3 h6:before {
    content: "";
    position: absolute;
    top: 8px;
    left: -95px;
    width: 82px;
    height: 8px;
    background-image: url(../images/line.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotate(180deg);
}

/* ======================================================================= */
    /* repairing_sec start */
/* ======================================================================= */
.repairing_sec {
    width: 100%;
}

.repairing_sec p {
    width: 70%;
    font-size: 32px;
    color: #000;
    margin-bottom: 35px;
}

.repairing_row {
    width: 70%;
    margin-left: auto;
}

.repairing_card {
    width: 100%;
}

.repairing_card_pic {
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 15px;
}

.repairing_card_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.repairing_card_pic:hover img {
    transform: scale(1.1);
}

.repairing_card h6 {
    font-family: 'SatoshiMedium';
    font-size: 20px;
    color: #000;
}

/* ======================================================================= */
    /*  portfolio_sec start */
/* ======================================================================= */
.portfolio_sec {
    width: 100%;
}

.portfolio_seccard {
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.portfolio_sec_pic {
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio_sec_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.portfolio_seccard:hover .portfolio_sec_pic img {
    transform: scale(1.1);
}

.portfolio_secbtm {
    width: 100%;
    padding: 15px;
}

.portfolio_sec small {
    font-family: 'SatoshiMedium';
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio_seccard h6 {
    font-family: 'SatoshiMedium';
    font-size: 20px;
}

.portfolio_secbtm article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.portfolio_secbtm article img {
    max-width: 35px;
    object-fit: contain;
}

.portfolio_sec a {
    width: 100%;
}

/* ======================================================================= */
    /* services_body start */
/* ======================================================================= */
.update_body {
    width: 100%;
}

.update_card {
    width: 100%;
    background-color: #F6F6F6;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    transition: 0.6s;
}

.update_cardPic1 {
    width: 100%;
    height: 380px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    flex-basis: 50%;
    flex-shrink: 0;
}

.update_cardPic1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.update_card:hover .update_cardPic1 img {
    transform: scale(1.1);
}

.update_card h4 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.update_card p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.update_body .btn01 {
    font-size: 15px;
    padding: 7px 15px;
    color: #000;
    background-color: transparent;
    border: 1px solid #3a3a3a;
    margin-left: 0;
    min-width: auto;
    margin-top: 20px;
    transition: 0.6s;
}

.update_card:hover .btn01 {
    background-color: #000;
    border-color: #000;
    color: #fff;
    box-shadow: none;
}

.update_card .btn01 .fa-circle-arrow-right {
    margin-left: 5px;
}

.update_card .btn01:hover .fa-circle-arrow-right {
    transform: rotate(0deg);
}

.bg_Color:nth-child(4) .update_card, .bg_Color:nth-child(5) .update_card, .bg_Color:nth-child(6) .update_card {
    background-color: #3a3a3a;
}

.bg_Color:nth-child(3) .update_card .details, .bg_Color:nth-child(6) .update_card .details {
    padding-left: 15px;
    padding-right: 15px;
}

.bg_Color:nth-child(4) .update_card h4, .bg_Color:nth-child(5) .update_card h4, .bg_Color:nth-child(6) .update_card h4, 
.bg_Color:nth-child(4) .update_card p, .bg_Color:nth-child(5) .update_card p, .bg_Color:nth-child(6) .update_card p {
    color: #fff;
}

.bg_Color:nth-child(4) .update_card .btn01, .bg_Color:nth-child(5) .update_card .btn01, .bg_Color:nth-child(6) .update_card .btn01 {
    border: 1px solid #fff;
    color: #fff;
}


/* ======================================================================= */
    /* design_etail_sec2 start */
/* ======================================================================= */



/* ======================================================================= */
    /* design_etail_sec3 start */
/* ======================================================================= */



/* ======================================================================= */
    /* benifit_sec3 start */
/* ======================================================================= */

/* ======================================================================= */
    /* footer area start */
/* ======================================================================= */
.footer-area {
    background-color: #000000;
    padding-top: 70px;
    border-radius: 40px 40px 0 0;
    overflow-x: hidden;
}

.footerGetInTouch-area {
    background-color: #ffffff;
    padding: 26px;
    margin-bottom: 65px;
    border-radius: 20px;
}

.footerGetInTouch-area .footerGetInTouch-adddress {
    padding: 35px 25px;
    box-shadow: 0px 4px 11.4px rgb(0 0 0 / 16%);
    border-radius: 20px;
}

.footerGetInTouch-area .footerGetInTouch-adddress h3 {
    font-size: 50px;
    font-weight: normal;
    line-height: 60px;
    color: #000000;
    margin-bottom: 20px;
}

.footerGetInTouch-area .footerGetInTouch-adddress .address {
    margin-bottom: 12px;
    color: var(--paragraph);
    font-size: 18px;
    line-height: 26px;
}

.footerGetInTouch-area .footerGetInTouch-adddress .address:last-child {
    margin-bottom: 0;
}

.footerGetInTouch-area .footerGetInTouch-adddress .address h4 {
    color: var(--black);
    font-size: 20px;
    line-height: 30px;
}

.footerGetInTouch-area .footerGetInTouch-adddress .address a {
    color: var(--paragraph);
    font-size: 18px;
    line-height: normal;
    font-family: "Red Hat Display", sans-serif;
}

.form-group label {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 16px;
}

.form-control {
    border: 1px solid #eeeeee;
    background-color: #eeeeee;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #B6B6B6;
    height: 58px;
    transition: all 0.5s ease-out;
    font-family: "Red Hat Display", sans-serif;
}

.form-control::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #B6B6B6;
}

.form-control:focus {
    border-color: #ffffff;
    background-color: #ffffff;
    box-shadow: 0 0 16px rgb(0 0 0 / 10%);
    color: #B6B6B6;
    font-weight: 400;
}

select.form-control {
    color: #B6B6B6;
    font-size: 16px;
    background-image: url(../images/arrow-down.png);
    background-position: right center;
    background-size: 15px;
    background-repeat: no-repeat;
    background-origin: content-box;
}

textarea.form-control {
    height: 140px;
    resize: none;
}

.btn-submit {
    border: 1px solid var(--black);
    background-color: var(--black);
    transition: all 0.5s ease-out;
    font-size: 16px;
    font-family: "Red Hat Display", sans-serif;
    color: var(--white);
    padding: 10px 64px 10px 34px;
    font-weight: 600;
    border-radius: 30px;
    position: relative;
    display: inline-block;
}

.btn-submit::before {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    background-color: var(--white);
    background-image: url(../images/long-arrow.png);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    border-radius: 50%;
    transform: translate(-3px, 3px);
    transition: all 0.5s ease-out;
}

.btn-submit:hover::before {
    transform: translate(-3px, 3px) rotate(45deg);
}

.footerGetInTouch-form .btn-submit {
    transform: translateY(-60px);
}

.footerBody-area .footer-logo {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
}

.footerBody-area .footer-logo img {
    width: 100%;
    object-fit: contain;
}

.footerBody-area .social-link ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.footerBody-area .social-link ul li a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 1px solid #ffffff;
    color: #ffffff;
    fill: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.5s ease-out;
}

.footerBody-area .social-link ul li a:hover {
    background-color: var(--white);
    color: var(--black);
    fill: var(--black);
}

.footer h4 {
    text-transform: uppercase;
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    margin: 0 0 24px;
}

.footer ul {
    gap: 18px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.footer ul li {
    font-family: "Red Hat Display", sans-serif;
}

.footer ul li a {
    color: var(--white);
    font-size: 17px;
    line-height: normal;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footerBody-area {
    flex-direction: row-reverse;
}

.footer-listing {
    position: relative;
}

.footer-listing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: rgb(255 255 255 / 25%);
}

.footer {
    padding-bottom: 40px;
}

.copyright {
    text-align: center;
    width: 100%;
    max-width: 75.3%;
    border-top: 1px solid rgb(255 255 255 / 25%);
    font-size: 16px;
    padding: 20px 0;
    color: var(--white);
    font-weight: normal;
    position: relative;
    font-family: "Red Hat Display", sans-serif;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4000px;
    height: 1px;
    background-color: rgb(255 255 255 / 25%);
    transform: translate(-4000px, -1px);
}

.copyright a {
    color: var(--white);
}

.copyright a:hover {
    text-decoration: underline;
}

/* ======================================================================= */
    /* inner banner area start */
/* ======================================================================= */
.innerbanner-area {
    padding: 8px 8px 0;
}

.innerbanner-bodyarea {
    border-radius: 20px;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 50px;
}

.innerbanner-bodyarea::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.77) 100%);
}

.innerbanner-bodyarea .container {
    position: relative;
}

.innerbanner-bodyarea h1 {
    color: var(--white);
    text-align: center;
    font-size: 60px;
    line-height: 90px;
    margin: 0 0 10px;
}

.innerbanner-bodyarea h6 {
    color: var(--white);
    font-size: 32px;
    font-family: 'SatoshiRegular';
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innerbanner-bodyarea h6 a {
    color: var(--white);
    position: relative;
}

.innerbanner-bodyarea h6 a::before, .innerbanner-bodyarea h6 a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 161px;
    height: 1px;
    background: #ffffff;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    transform: translate(-171px, 22px);
}

.innerbanner-bodyarea h6 a::after {
    left: auto;
    right: 0;
    transform: translate(171px, 22px);
    background: #ffffff;
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
/* ======================================================================= */
    /* service details start */
/* ======================================================================= */
.aboutServiceDetails-imgBox {
    overflow: hidden;
    border-radius: 20px;
    height: 445px;
}

.aboutServiceDetails-imgBox img {
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.aboutServiceDetails-imgBox:hover img {
    transform: scale(1.1);
}

.aboutServiceDetails-contain {
    box-shadow: 0px 12px 25px rgb(0 0 0 / 5%);
    border-radius: 20px;
    padding: 25px;
}

.aboutServiceDetails-contain h2 {
    color: var(--black);
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 16px;
}

.aboutServiceDetails-contain h6 {
    font-size: 20px;
    line-height: 30px;
    color: var(--black);
    margin-bottom: 8px;
}

.serviceType-area {
    background-color: #F6F6F6;
    ;
}

.heading h2 {
    color: var(--black);
    font-size: 48px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
}

.heading h3 {
    color: var(--black);
    font-size: 36px;
    font-family: 'SatoshiBold';
    line-height: 46px;
    margin-bottom: 24px;
    position: relative;
}

.heading ul {
    gap: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.heading ul li {
    position: relative;
    padding-left: 25px;
    font-size: 17px;
    font-family: 'SatoshiMedium';
    color: var(--black);
    background-image: url(../images/check-icon2.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center left;
}

.serviceType-area .heading {
    width: 100%;
    max-width: 1070px;
    margin-bottom: 50px;
}

.serviceType-area .heading p {
    margin: 0;
    width: 100%;
    max-width: 780px;
}

.secviceTypeBox {
    border-radius: 30px;
    padding: 25px;
    background-color: var(--white);
    transition: all 0.5s ease-out;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.secviceTypeBox:hover {
    background-color: var(--black);
}

.secviceTypeBox h4 {
    width: 100%;
    color: var(--black);
    font-size: 21px;
    line-height: 31px;
    margin-bottom: 12px;
    transition: all 0.5s ease-out;
}

.secviceTypeBox p {
    font-size: 14px;
    line-height: 22px;
    transition: all 0.5s ease-out;
}

.secviceTypeBox:hover h4, .secviceTypeBox:hover p {
    color: var(--white);
}

.secviceTypeBox .icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: rgb(0 0 0 / 16%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-out;
    padding: 16px;
}

.secviceTypeBox .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.secviceTypeBox:hover .icon {
    background-color: var(--white);
}

.serviceBenefits-area {
    background-color: var(--black);
    position: relative;
}

.serviceBenefits-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 115px;
    background-color: var(--white);
}

.serviceBenefits-area .container {
    position: relative;
}

.serviceBenefits-area .heading {
    margin-bottom: 40px;
}

.serviceBenefits-area .heading h2 {
    color: var(--white);
    margin: 0;
}

.serviceBenefits-area .serviceBenefits-imgBox, .ServiceDetailsListing-area .ServiceDetailsListing-imgBox {
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.serviceBenefits-area .serviceBenefits-imgBox img, .ServiceDetailsListing-area .ServiceDetailsListing-imgBox img {
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.serviceBenefits-area .serviceBenefits-imgBox:hover img, .ServiceDetailsListing-area .ServiceDetailsListing-imgBox:hover img {
    transform: scale(1.1);
}

.serviceBenefits-area .heading.content-box h3 {
    margin-top: 35px;
    margin-bottom: 35px;
    color: var(--white);
}

.serviceBenefits-area .heading.content-box ul li {
    background-image: url(../images/check-icon.png);
    color: var(--white);
}

.ServiceDetailsListing-area .row {
    flex-direction: row-reverse;
    margin-bottom: 24px;
}

.ServiceDetailsListing-area .row:last-child {
    flex-direction: row;
    margin-bottom: 0;
}

.add-area img {
    width: 100%;
    object-fit: contain;
}

.serviceDetailsExport-area {
    background-color: #F6F6F6;
    margin-bottom: 50px;
}

.serviceDetailsExport-area .row:first-child {
    flex-direction: row-reverse;
}
/* ======================================================================= */
    /* service listing area start */
/* ======================================================================= */
.aboutServiceListing-area .row {
    flex-direction: row-reverse;
}

.aboutServiceListing-area .aboutServiceDetails-contain {
    width: 648px;
    background-color: var(--black);
    position: relative;
    z-index: 1;
}

.aboutServiceListing-area .aboutServiceDetails-contain h2 {
    font-family: 'SatoshiMedium';
    color: #e7e7e7;
}

.aboutServiceListing-area .aboutServiceDetails-contain p {
    color: #e7e7e7;
}

.aboutServiceListing-area .aboutServiceDetails-imgBox {
    height: 590px;
}

.innerServiceListing-area .row:nth-of-type(2n) {
    flex-direction: row;
}

.innerServiceListing-area .row:last-child {
    flex-direction: row-reverse;
}

.innerServiceListing-area .heading {
    position: relative;
    width: 100%;
    padding-left: 10px;
}

.innerServiceListing-area .heading ul {
    padding-right: 205px;
}

.innerServiceListing-area .heading .btn-submit {
    position: absolute;
    bottom: 0;
    right: 0;
}

.innerServiceListing-area .row:nth-of-type(2n) {
    flex-direction: row;
}

.innerServiceListing-area:nth-of-type(2n) .row:first-child {
    flex-direction: row;
}

.innerServiceListing-area:nth-of-type(2n) .row:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.innerServiceListing-area:last-child .row:last-child {
    flex-direction: row;
}

.innerServiceListing-area .heading::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 110%;
    height: 100%;
    background-color: #000;
    transform: translateY(-38px);
    border-top-left-radius: 20px;
    opacity: 0;
}

.innerServiceListing-area .heading::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4000px;
    height: 100%;
    background-color: #000;
    transform: translate(4000px, -38px);
    opacity: 0;
}

.innerServiceListing-area .ServiceDetailsListing-imgBox {
    position: relative;
    z-index: 1;
    height: 465px;
}

.innerServiceListing-area .row:nth-of-type(2n) .heading::before, .innerServiceListing-area .row:nth-of-type(2n) .heading::after {
    opacity: 1;
}

.innerServiceListing-area .row:nth-of-type(2n) .heading ul li, .innerServiceListing-area .row:nth-of-type(2n) .heading h3, .innerServiceListing-area .row:nth-of-type(2n) .heading p {
    color: var(--white);
    position: relative;
}

.innerServiceListing-area .row:nth-of-type(2n) .heading h3 {
    color: var(--white);
}

.innerServiceListing-area .row:nth-of-type(2n) .heading ul li {
    background-image: url(../images/check-icon.png);
}

.innerServiceListing-area:nth-of-type(2n) .heading::before {
    left: 0;
    right: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 20px;
}

.innerServiceListing-area:nth-of-type(2n) .heading::after {
    right: auto;
    left: 0;
    transform: translate(-4000px, -38px);
}

.innerServiceListing-area .heading ul {
    gap: 8px;
}

.innerServiceListing-area .heading ul li {
    font-size: 16px;
}

.innerServiceListing-area .row .heading .btn-submit {
    transform: translate(-10px, -75px);
}

.innerServiceListing-area .row:nth-of-type(2n) .heading .btn-submit {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.innerServiceListing-area .row:nth-of-type(2n) .heading .btn-submit::before {
    background-image: url(../images/long-arrow2.png);
    background-color: var(--black);
}

.innerServiceListing-area {
    overflow-x: hidden;
}
/* ======================================================================= */
    /* inner about area start */
/* ======================================================================= */
/*.innerbanner-area.inner-about-banner {
    background-color: #030303;
}*/
.blackbg {
   background-color: #030303;
}
.innerAboutContent-area {
    position: relative;
    background-image: url(../images/inner-about-content-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.innerAboutContent-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 72%);
}

.innerAboutContent-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.innerAboutContent-area .container {
    position: relative;
    z-index: 1;
}

.innerAboutContent-area .heading h2 {
    color: var(--white);
}

.innerAboutContent-area .heading p {
    color: #ffffff;
}

.innerAboutContent-area .innerAboutContent-img {
    overflow: hidden;
    border-radius: 15px;
    height: 320px;
    transform: translateY(-80px);
}

.innerAboutContent-area .innerAboutContent-img img {
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.innerAboutContent-area .innerAboutContent-img:hover img {
    transform: scale(1.1);
}

.founder-box {
    width: 100%;
    max-width: 1024px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 20px;
    margin-top: -90px;
    margin-bottom: 80px;
}

.founder-box .media-img {
    width: 100%;
    max-width: 466px;
    border-radius: 20px;
    background-color: var(--black);
    display: flex;
    align-items: end;
    justify-content: center;
}

.founder-box .media-img img {
    max-width: 840px;
    width: 840px;
    height: 685px;
    object-fit: contain;
}

.founder-box .media-body {
    padding-left: 20px;
}

.founder-area .heading h2 span {
    position: relative;
}

.founder-area .heading h2 span::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 154px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../images/line.png);
    transform: translate(170px, 18px);
    display: none;
}

.founder-area {
    position: relative;
    background-color: #F6F6F6;
}

.innerAboutContent-area.p-80 {
    padding-bottom: 130px;
}

.founderPeace-area .heading {
    margin-bottom: 40px;
}

.founderPeace-box {
    padding: 20px;
    border-radius: 20px;
    background-color: var(--white);
    border: 1px solid transparent;
}

.founderPeace-box .body {
    background-color: #F6F6F6;
    padding: 16px;
    text-align: center;
    border-radius: 20px;
}

.founderPeace-box .body h5 {
    font-size: 24px;
    font-family: 'SatoshiBold';
    line-height: 34px;
    color: var(--black);
    margin-bottom: 10px;
}

.founderPeace-box .body h6 {
    font-family: 'SatoshiRegular';
    margin: 0;
    font-size: 36px;
    line-height: 46px;
    color: var(--black);
}

.founderPeace-box .icon {
    width: 112px;
    height: 112px;
    background-color: #D6D6D6;
    border-radius: 50%;
    margin: 32px auto 24px;
    padding: 28px;
}

.founderPeace-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.founderPeace-area .row .col-lg-4:first-child .founderPeace-box {
    border-left-color: var(--black);
}

.founderPeace-area .row .col-lg-4:nth-of-type(2n) .founderPeace-box {
    border-top-color: var(--black);
}

.founderPeace-area .row .col-lg-4:nth-of-type(2n) .founderPeace-box .icon {
    margin-top: 0;
}

.founderPeace-area .row .col-lg-4:last-child .founderPeace-box {
    border-top-color: transparent;
    border-bottom-color: var(--black);
}

.founderPeace-area .row .col-lg-4:first-child .founderPeace-box, .founderPeace-area .row .col-lg-4:nth-child(3) .founderPeace-box {
    transform: translateY(45%);
}

.inner-stape-area {
    background-color: var(--white);
}

.inner-stape-card h5 {
    color: var(--black);
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 8px;
}

.inner-stape-card .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background-color: var(--black);
    padding: 24px;
    position: relative;
}

.inner-stape-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inner-stape-card .icon span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    background-color: #D9D9D9;
    color: var(--black);
    font-size: 16px;
    font-family: 'SatoshiRegular';
    border-radius: 50%;
    position: absolute;
    transform: translate(8px, 14px);
}

.inner-stape-card {
    position: relative;
}

.inner-stape-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 23px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/line2.png);
    transform: translate(55px, 40px);
}

.inner-stape-card p {
    font-size: 15px;
    margin: 0;
}

.inner-stape-area .row .col-lg-3:last-child .inner-stape-card::before {
    display: none;
}

.inner-stape-area .heading {
    margin-bottom: 45px;
}

/* ======================================================================= */
    /* contact_sec start */
/* ======================================================================= */
.contact_sec {
    width: 100%;
}

.adress_box {
    width: 100%;
    position: relative;
    background-color: #3a3a3a;
    padding: 45px 30px;
    border-radius: 25px;
    z-index: 1;
}

.contact_sec .small_title h4 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 40px;
}

.info_circle {
    width: 45px;
    height: 45px;
    border: 1px solid var(--white);
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_circle i {
    color: var(--white);
    font-size: 20px;
}

.contact_sec .small, .contact_sec small {
    font-size: 16px;
    color: var(--white);
    display: block;
}

.contact_sec .adress_card a {
    font-family: 'SatoshiRegular';
    color: var(--white);
    font-size: 19px;
}

.contact_sec .adress_card p {
    color: var(--white);
}

.adress_card {
    margin-bottom: 20px;
}

.adress_box .footer-social {
    border-top: 1px solid #fff;
    padding-top: 20px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_sec_right {
    width: 130%;
    position: relative;
    left: -30%;
    background-color: #fff;
    padding: 80px 60px 80px 300px;
    border-radius: 25px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
}

.contact_sec_right .small_title h4 {
    color: var(--black);
    margin-bottom: 20px;
}

.contact_sec_right .small_title h4 span {
    color: var(--theme-color);
    font-weight: 600;
}

.contact_sec .field02,
.contact_sec .form-select,
.contact_sec .form-control {
    font-family: 'SatoshiRegular';
    width: 100%;
    border: none;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    background-color: transparent;
    font-size: 17px;
    color: var(--black);
    padding: 18px 15px 5px;
    height: 55px;
    font-weight: 400;
    margin-bottom: 15px;
    box-shadow: none;
}

.contact_sec .form-control {
    height: 120px;
    padding-top: 25px;
    resize: none;
}

.contact_sec_right .btn01 {
    margin-top: 25px;
    border: none;
}

.contact_sec .form-select:focus,
.contact_sec .field02:focus,
.contact_sec .form-control:focus {
    border-color: var(--theme-color);
    box-shadow: none;
}

.floating-group {
    position: relative;
}

.floating-group label {
    font-family: 'SatoshiMedium';
    position: absolute;
    left: 7px;
    top: 16px;
    font-size: 17px;
    color: #888;
    pointer-events: none;
    transition: 0.3s ease;
    background: #fff;
    padding: 0 5px;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label,
.floating-group textarea:focus + label,
.floating-group textarea:not(:placeholder-shown) + label,
.floating-group select:focus + label,
.floating-group select:valid + label {
    top: -8px;
    font-size: 15px;
    color: var(--theme-color);
}

.contact_sec .footer-social li a {
    width: 100%;
    min-width: 45px;
    max-width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    transition: 0.6s;
    text-decoration: none;
    /* box-shadow: 0px 4px 15px rgb(0 0 0 / 24%); */
}

.contact_sec .footer-social li a:hover {
    background-color: var(--white);
    color: var(--green2);
}

.floating-group label span {
    color: red;
}

.contact_sec .btn012 {
    margin-top: 25px;
    background-color: transparent;
    border: 1px solid #3a3a3a;
    padding: 10px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    color: #3a3a3a;
    transition: 0.6s;
    display: inline-block;
}

.contact_sec .btn012:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.inner_connect:before {
    display: none;
}

.contact_sec .nav-link {
    font-family: 'SatoshiMedium';
    border: 1px solid #3a3a3a;
    font-size: 16px;
    color: var(--black);
    min-width: 120px;
    text-align: center;
}

.contact_sec .nav-pills .nav-link {
    border-radius: 30px;
}

.contact_sec .nav {
    gap: 10px;
    margin-bottom: 25px;
}

.contact_sec .nav-pills .nav-link.active, .contact_sec .nav-pills .show>.nav-link {
    color: var(--white);
    background-color: #3a3a3a;
    border-color: #3a3a3a;
}

.mapsec {
    width: 100%;
    margin-top: 35px;
}

.mapsec iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
}


/* ======================================================================= */
    /*  guides_details start */
/* ======================================================================= */
.guides_details {
    width: 100%;
}

.blog-main {
    width: 100%;
    padding-right: 20px;
    border-right: 1px solid #ccc;
}

.guides_details .blog-main .thumb {
    height: auto;
    margin-bottom: 25px;
}

.guides_details .blog-main .thumb img {
    border-radius: 20px;
    transition: 0.6s;
}


.blog-category2 {
    background-color: #dddddd;
    padding: 5px 15px;
    text-align: center;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.meta-item i {
    font-size: 16px;
    color: #555;
}

.divider {
    width: 1px;
    height: 18px;
    background: #cfcfcf;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    transition: .3s;
}

.social-icons a:hover {
    background: #000;
    color: #fff;
}

.guides_details .blog-main .content {
    padding-top: 0;
    padding-right: 0;
    width: 81%;
    margin-bottom: 25px;
}

.guides_details .blog-main .content h2 {
    font-size: 34px;
    color: #000;
    margin-bottom: 10px;
}

.guides_details .blog-main p {
    margin: 0 0 15px;
}

.guides_details .blog-main h4 {
    font-size: 30px;
    color: #000;
    font-weight: 400;
    margin: 30px 0 15px;
}

.guides_details ul li {
    font-family: 'SatoshiMedium';
    width: 100%;
    font-size: 18px;
    color: #000;
    position: relative;
    padding-bottom: 15px;
    padding-left: 26px;
}

.guides_details ul li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url(../images/check-icon2.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 100%;
}

.guides_detailspic {
    width: 100%;
    height: 400px;
    display: flex;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 25px;
}

.guides_detailspic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.guides_details h5 {
    font-size: 24px;
    color: #000;
    font-weight: 400;
    margin: 15px 0 10px;
}

.guides_detailspic23 {
    width: 100%;
    height: 250px;
    display: flex;
    overflow: hidden;
    border-radius: 15px;
}

.guides_detailspic23 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.testimonial-section {
    width: 100%;
    background: #EBEFFF;
    padding: 40px;
    margin: 25px 0;
    border-radius: 10px;
}

.testimonial-box {
    margin: auto;
    text-align: center;
}

.quote-icon {
    display: flex;
    justify-content: center;
    width: 60px;
    height: 50px;
    overflow: hidden;
    margin: 0 auto 25px;
}

.quote-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.testimonial-text {
    font-size: 24px;
    color: #000;
    font-style: italic;
    text-align: center;
    width: 86%;
    margin: 0 auto;
}

.author-name {
    font-size: 22px;
    font-weight: 600;
    color: #0b3a63;
    margin-bottom: 4px;
    margin-top: 15px;
}

.author-position {
    font-size: 16px;
    font-weight: 400;
    color: #111;
}

/* Tablet */
@media(max-width:991px) {

    .testimonial-section {
        padding: 50px 20px;
    }

    .testimonial-text {
        font-size: 28px;
    }

    .author-name {
        font-size: 26px;
    }

    .author-position {
        font-size: 22px;
    }
}

@media(max-width:767px) {

    .testimonial-section {
        padding: 40px 15px;
    }

    .quote-icon svg {
        width: 42px;
    }

    .testimonial-text {
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .author-name {
        font-size: 22px;
    }

    .author-position {
        font-size: 18px;
    }
}

.guides_details .side-blog .sideimg {
    width: 135px;
    height: 100px;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
}

.guides_details .side-blog {
    padding-right: 0;
}

.guides_details .side-blog h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.blog-main p {
    color: #212121;
    margin: 0;
}

.side-blog {
    display: flex;
    gap: 16px;
    padding-bottom: 17px;
    margin-bottom: 17px;
    border-bottom: 1px dashed #dddddd;
    transition: .35s;
    padding-right: 25px;
}

.side-blog:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.side-blog:hover .sideimg img {
    transform: scale(1.08);
}

.side-blog .sideimg {
    width: 175px;
    height: 130px;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
}

.side-blog .sideimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s;
}

.side-blog .content {
    flex: 1;
    padding-top: 4px;
}

.side-blog h3 {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin: 0 0 14px;
}

.blog-date {
    font-family: "Outfit", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #323232;
    text-transform: uppercase;
    font-weight: 500;
}

.blog-date svg {
    width: 17px;
    height: 17px;
    fill: #888;
}
.blog-category {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .7px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 5px;
}


.news_sec1rgt {
    width: 100%;
}

.news_sec1rgt_card {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.news_sec1rgt_card h5 {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.news_sec1rgt_card h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #8496EA;
}

.search-input {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input .srch_icon {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-51%);
    color: #fff;
    font-size: 18px;
    background-color: #023357;
    text-align: center;
    padding: 10px 25px;
    border-radius: 30px;
}

.search-input .search-field {
    font-family: 'SatoshiMedium';
    width: 100%;
    height: 51px;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0 115px 0 15px;
    outline: none;
    font-size: 16px;
    background: #F5F5F5;
}

.search-input .search-field:focus {
    border-color: #0F3E61;
}

.checkbox-btn {
    display: inline-block;
    cursor: pointer;
    margin: 0 10px 10px 0;
}

.news_sec1rgt_card_list {
    width: auto;
}

.checkbox-btn input {
    display: none;
}

.checkbox-btn span {
    font-family: "Outfit", sans-serif;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border: 1px solid #dfdfdf;
    border-radius: 50px;
    background: #FEFFF8;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s ease;
    text-align: center;
}

.checkbox-btn input:checked + span {
    background: #3a3a3a;
    color: #fff;
    border-color: #3a3a3a;
}

.checkbox-btn:hover span {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,62,97,.15);
}

.latext_box {
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    background: #22C1C3;
    background: linear-gradient(0deg, #023357b0 0%, #c6e425a8 50%, #8496eaba 100%);
}

.latext_boxin {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 30px;
    background: #fff;
    text-align: center;
}

.latext_boxin h6 {
    font-family: "Outfit", sans-serif;
    font-size: 19px;
    color: #000;
    font-weight: 400;
    padding: 10px 0 25px;
    position: relative;
    margin-bottom: 25px;
}

.latext_boxin h6:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 165px;
    height: 2px;
    background-color: #ccc;
}

.latext_boxin h6:last-child:after {
    display: none;
}

.latext_boxin h6:last-child {
    padding: 0;
    margin-bottom: 0;
}

/* ======================================================================= */
    /*  testimonial_sec start */
/* ======================================================================= */
.testimonial_sec {
    width: 100%;
}

.rating_box {
    width: 100%;
    background-color: #3a3a3a;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.rating_box ul li {
    display: inline-block;
    font-size: 25px;
    color: #fff;
}

.rating_box h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    color: #fff;
    font-weight: normal;
    margin: 5px 0 45px;
}

.rating_box p {
    color: #fff;
    margin: 0 0 25px;
}

.rating_box img {
    max-width: 149px;
    object-fit: contain;
}

.testimonial_right {
    width: 100%;
    border: 1px solid #C5C2C2;
    border-radius: 20px;
    padding: 40px;
}

.testimonial_card {
    width: 100%;
}

.testimonial_card ul li {
    display: inline-block;
    font-size: 25px;
    color: #FD9606;
}

.testimonial_card ul li span {
    font-size: 24px;
    color: #000;
    margin-left: 15px;
    font-weight: 500;
}

.testimonial_card p {
    margin: 25px 0 40px;
    width: 90%;
}

.testimonial_card h5 {
    font-size: 22px;
    color: var(--black);
    margin-bottom: 8px;
    position: relative;
}

.testimonial_card h5:after {
    content: "";
    position: absolute;
    left: 0;
    top: -15px;
    width: 175px;
    height: 2px;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.testimonial_card h6 {
    font-family: 'Satoshi-Regular';
    font-size: 16px;
    color: var(--paragraph);
    margin-bottom: 0;
}

/**/
.testimonial_carousel .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}
.testimonial_carousel .owl-nav button.owl-prev, .testimonial_carousel .owl-nav button.owl-next { width: 45px; height: 45px; border: 1px solid #a5a5a5; background-color: #fff; border-radius: 50%; color: #000; font-size: 30px; pointer-events: all; box-shadow: 0px 0px 5px 0px #ddd;}
.testimonial_carousel .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.testimonial_carousel .owl-nav button.owl-prev span::after { content: '\f060'; color: #817979 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.testimonial_carousel .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.testimonial_carousel .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.testimonial_carousel .owl-nav button.owl-next span::before { content: '\f061'; color: #817979 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 18px; }
.testimonial_carousel .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.testimonial_carousel .owl-nav button.owl-prev { left: 0px; position: relative; transition: 0.6s;}
.testimonial_carousel .owl-nav button.owl-next { right: 0px; position: relative; transition: 0.6s;}
.testimonial_carousel .owl-nav { position: absolute; display: inline-flex; bottom: 0; align-items: end; justify-content: flex-end; width: 100%; pointer-events: none; margin: 0 auto; }
.testimonial_carousel .owl-nav button.owl-prev:hover, .testimonial_carousel .owl-nav button.owl-next:hover { background: #3a3a3a; border-color: #3a3a3a; color: #fff; transition: all .3s ease-in-out; }
.owl-theme .owl-nav { margin-top: 0; }
/**/






































