/*
Theme Name: Eonian Software Solutions
Theme URI: http://example.com
Author: Subhash
Author URI: https://eoniansoftware.com/
Description: A clean and lightweight custom WordPress theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eonian_software_solutions
*/


/*:root {--background-color:#ffffff; --default-color:#2b2b2b; --heading-color:#0d3035; --accent-color:#2b2b2b; --surface-color:#ffffff; --contrast-color:#ffffff;}
:root {--nav-color:#2b2b2b; --nav-hover-color:linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%); --nav-mobile-background-color:#ffffff; --nav-dropdown-background-color:#ffffff; --nav-dropdown-color:#555555; --nav-dropdown-hover-color:#036dda;}
.light-background {--background-color:#f1f7fc; --surface-color:#ffffff;}
.dark-background {--background-color:#060606; --default-color:#ffffff; --heading-color:#ffffff; --surface-color:#252525; --contrast-color:#ffffff;}*/


/*body.index-page.scrolled  .header .header-part {--background-color:#fff;}
.scrolled .header {--background-color:#000000;}
.header.sticky-top {top:30px; position:fixed; left:0; right:0; margin:0 auto; width:1280px;}
.scrolled .header {box-shadow:0px 0 18px rgba(0, 0, 0, 0.1);}*/


/*----------  Fonts  ----------*/

:root {
    --default-font: 'Montserrat', system-ui, -apple-system;
    --bold-font: 'Montserrat-Bold', system-ui, -apple-system;
    --heading-font: 'Montserrat', sans-serif;
    --nav-font: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Regular.eot');
    src: url('assets/fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('assets/fonts/Montserrat-Regular.woff2') format('woff2'), url('assets/fonts/Montserrat-Regular.woff') format('woff'), url('assets/fonts/Montserrat-Regular.ttf') format('truetype'), url('assets/fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('assets/fonts/Montserrat-Bold.eot');
    src: url('assets/fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('assets/fonts/Montserrat-Bold.woff2') format('woff2'), url('assets/fonts/Montserrat-Bold.woff') format('woff'), url('assets/fonts/Montserrat-Bold.ttf') format('truetype'), url('assets/fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*----------  Smooth scroll  ----------*/

:root {
    scroll-behavior: smooth;
}


/*----------  Preloader  ----------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: #2b2b2b transparent #2b2b2b transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*----------  Scroll Top Button  ----------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #2b2b2b;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}


/*----------  PHP Email Form Messages  ----------*/

.php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #2b2b2b;
    border-top-color: #fff;
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

form.wpcf7-form p {
    margin: 0px;
}

.submit-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* space between button and icon */
    margin-top: 10px;
}

.submit-wrapper .wpcf7-submit {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.submit-wrapper .submit-icon {
    width: 24px;
    height: 24px;
}

body {
    color: #2b2b2b;
    background-color: #fff;
    font-family: var(--default-font);
}

a {
    color: #2b2b2b;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #2b2b2b;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2b2b2b;
    font-family: var(--heading-font);
}

.sticky-top {
    top: 30px;
}

img.borderradius {
    border-radius: 20px;
    overflow: hidden;
}


/*----------  Tag / Title Sections  ----------*/

section,
.section {
    color: #2b2b2b;
    padding: 85px 0 100px;
    scroll-margin-top: 90px;
    overflow: clip;
}

.section-title {
    position: relative;
}

.section .main-title {
    margin-bottom: 80px;
}

.section-title .main-title h2 {
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
    background: #fff;
    font-size: 16px;
    border-radius: 50px;
    gap: 10px;
    border: 1px solid rgba(43, 43, 43, 0.05);
    padding: 11.5px 21.5px;
    margin: 0;
    width: max-content;
    display: flex;
    align-items: center;
    font-family: var(--bold-font);
    font-weight: 700;
    position: relative;
}

.section-title .main-title h2 img {
    width: 20px;
    border-radius: 0;
}

.main-title p {
    font-size: 36px;
    text-align: left;
    line-height: 44px;
    margin-bottom: 0;
}

.start.inner-title.section {
    padding-top: 200px;
    padding-bottom: 110px;
}


/*----------  Box Sections  ----------*/

.box .box-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    height: 100%;
    border: 1px solid rgba(43, 43, 43, 0.05);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.box .box-item .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    color: #2b2b2b;
    font-size: 34px;
    margin-bottom: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.box .box-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.box .box-item p {
    color: #2b2b2b;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.box .box-item .btn-explore {
    border: 1px solid rgba(43, 43, 43, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    width: max-content;
    min-height: 44px;
    padding: 0 22px;
    margin-top: 35px;
}

.box .box-item .btn-explore:hover {
    border-color: #000;
    color: #000;
}


/*----------  Global Header Sections  ----------*/

.header .header-part {
    border-radius: 50px;
    color: #2b2b2b;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 10px 10px 20px;
    transition: all 0.5s;
    z-index: 997;
    position: absolute;
    left: 0;
    right: 0;
    top: 30px
}

.header .logo img {
    max-height: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    padding: 14.5px 32px;
    margin: 0 0 0 50px;
    transition: 0.3s;
}


/*----------  Navigation Sections  ----------*/

.navmenu {
    padding: 0;
    display: flex;
    align-items: center;
}

.navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navmenu ul li {
    white-space: nowrap;
    padding: 11px 20px;
}

.navmenu li {
    position: relative;
}

.navmenu a {
    color: #2b2b2b;
    padding: 0 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navmenu ul li:last-child {
    padding-right: 0;
}

.navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
}

.navmenu li:last-child a {
    padding-right: 0;
}

.navmenu li:hover a,
.navmenu li.current-menu-ancestor a,
.navmenu .current-menu-item:focus,
.navmenu li:hover .current-menu-item a,
.navmenu .current-menu-item a {
    background-image: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    color: transparent;
    background-clip: text;
}
.navmenu li:hover ul a {
    color: #555;
    background: transparent;
}

.navmenu li ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu li ul li {
    min-width: 270px;
    padding: 0;
}

.navmenu li ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #555;
}

.navmenu li ul a i {
    font-size: 12px;
}

.navmenu li ul a:hover,
.navmenu li ul .current-menu-item:hover,
.navmenu li ul li:hover>a {
    color: #036dda;
}

.navmenu li:hover ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navmenu li li ul {
    top: 0;
    left: -90%;
    visibility: hidden;
}

.navmenu li li:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
}

.navmenu .menu-item-has-children>a::after {
    content: "\f078";
    /* Font Awesome caret-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding-left: 5px;
}


/*----------  Start Section  ----------*/

.start.section {
    padding-top: 210px;
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
    background: url(assets/img/mask-dott.png);
}

.start .container {
    position: relative;
    z-index: 99;
}

.start .container .col-lg-7 {
    width: 54.33333333%;
}

.start .home-header .Innovate {
    font-size: 16px;
    font-weight: 400;
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    margin-bottom: 40px;
    border-radius: 30px;
    color: #fff;
    width: max-content;
    padding: 10px 21px;
}

.start .home-header h1 {
    font-family: var(--bold-font);
    font-size: 72px;
    line-height: 90px;
    font-weight: bold;
    color: #2b2b2b;
    margin-bottom: 30px;
}

.start .home-header h1 span {
    background-image: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    color: transparent;
    background-clip: text;
}

.start .home-header .site-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.start .home-header .site-icons span {
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px;
    background: #fff;
    min-width: 44px;
}

.start .home-header p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.start .home-header .btn-explore {
    border: 1px solid rgba(43, 43, 43, 0.15);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    width: max-content;
    min-height: 40px;
    margin: 0 0 30px;
    font-size: 14px;
    padding: 0 20px;
}

.start .home-header p.date {
    margin-top: 30px;
    margin-bottom: 0;
}

.getintouch {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    margin-top: 50px;
    border-radius: 30px;
    color: #fff;
    width: max-content;
}

.getintouch a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 31px;
}

.start .container .col-lg-5 {
    width: 45.66666667%;
}

.start .imgarea {
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(43, 43, 43, 0.05);
    border-radius: 30px;
    padding: 10px;
    background: #fff;
}

.start .imgarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.start .imgarea .clients {
    position: absolute;
    left: 40px;
    bottom: 40px;
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    border-radius: 30px;
    padding: 30px 28px;
    width: 344px;
}

.start .imgarea .clients .clients-list {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.start .imgarea .clients .clients-list .d-flex span {
    margin-left: -20px;
    /*border:#fff solid 2px;*/
}

.start .imgarea .clients .clients-list .d-flex span:first-child {
    margin-left: 0;
}

.start .imgarea .clients span {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #fff;
    border-radius: 100%;
    overflow: hidden;
    width: 54px;
    height: 54px;
}

.start .imgarea .clients span b {
    font-family: var(--bold-font);
    font-size: 18px;
}

.start .imgarea .clients p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: #fff;
    line-height: 28px;
}

.start.section img.mask {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.start .box-item {
    padding: 10px;
    height: auto;
}

.start .box-item .row {
    margin-left: -5px;
    margin-right: -5px;
}

.start .box-item .row .col-lg-6 {
    padding-left: 5px;
    padding-right: 5px;
}

.start .box-item img {
    border-radius: 20px;
    overflow: hidden;
}

.start .happyClients .clients {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    border-radius: 20px;
    padding: 30px 28px;
    margin-bottom: 10px;
}

.start .happyClients .clients .clients-list {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.start .happyClients .clients .clients-list .d-flex span {
    margin-left: -20px;
}

.start .happyClients .clients .clients-list .d-flex span:first-child {
    margin-left: 0;
}

.start .happyClients .clients span b {
    font-family: var(--bold-font);
    font-size: 36px;
}

.start .happyClients .clients span {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #fff;
    display: block;
}


/*----------  Services Section  ----------*/

.services.section .allservice .row {
    row-gap: 30px;
}

.services .service-item {
    position: relative;
    padding: 30px 30px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(43, 43, 43, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.services .service-item div {
    height: calc(100% - 80px);
}

.services .service-item .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    color: #2b2b2b;
    font-size: 34px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.services .service-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--bold-font);
}

.services .service-item h3 a {
    color: #2b2b2b;
    transition: color 0.3s ease;
}

.services .service-item h3 a:hover {
    color: #2b2b2b;
}

.services .service-item p {
    color: rgba(43, 43, 43, 0.5);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.services.section .btn-explore {
    border: 1px solid rgba(43, 43, 43, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    width: max-content;
    min-height: 44px;
    padding: 0 22px;
    margin-top: 35px;
}

.services.section .btn-explore:hover {
    border-color: #000;
    color: #000;
}

.services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 30px color-mix(in srgb, #2b2b2b, transparent 85%);
}

.services .service-item:hover .service-icon {
    transform: scale(1.1);
}

.total-service .service-item {
    padding: 10px;
}

.total-service .service-item div {
    padding: 30px 20px 30px;
    height: calc(100% - 355px);
}

.total-service .service-item div.imghover {
    padding: 0;
    height: auto;
}

.total-service .service-item div.imghover img {
    border-radius: 20px;
    overflow: hidden;
}

.services.total-service .btn-explore {
    margin: 0 20px 20px;
}


/*----------  Why Us Section  ----------*/

.why-choose {
    padding-top: 98px;
    padding-bottom: 98px;
    position: relative;
    overflow: hidden;
    background: url(assets/img/Maskgroup.png);
    background-size: cover;
}

.why-choose .image-wrapper {
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(43, 43, 43, 0.05);
    border-radius: 30px;
    padding: 10px;
    background: #fff;
}

.why-choose .image-wrapper img {
    width: 100%;
}

.why-choose .card-item {
    border: 1px solid rgba(43, 43, 43, 0.05);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-radius: 30px;
    background-color: #fff;
    height: 100%;
}

.why-choose.section .main-title {
    margin-bottom: 30px;
}

.why-choose .card-item h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.why-choose .card-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose .card-item ul li {
    border-bottom: 1px solid rgba(43, 43, 43, 0.15);
    margin-bottom: 20px;
    padding-bottom: 20px;
    display: flex;
    gap: 20px;
}

.why-choose .card-item ul li .dott {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    margin-top: 10px;
    min-width: 12px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
}

.why-choose .card-item ul li span {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 5px;
    display: block;
    font-family: var(--bold-font);
}

.why-choose .card-item p {
    color: rgba(43, 43, 43, 0.5);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.why-choose .card-item ul li:last-child {
    border: none;
    margin: 0;
    padding: 0;
}


/*----------  Trusted Section  ----------*/

.trusted.box img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.trusted.box p.trust-text {
    color: rgba(75, 75, 75, 1);
    font-size: 16px;
}

.trusted.box .btn {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    min-height: 62px;
    margin-top: 50px;
    padding: 13px 28px;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.trusted.box .box-item.number {
    padding: 10px;
    margin-top: 80px;
}

.trusted.box .box-item.number .row {
    row-gap: 10px;
    margin-left: -5px;
    margin-right: -5px;
}

.trusted.box .box-item.number .row .col-lg-4 {
    padding-left: 5px;
    padding-right: 5px;
}

.trusted.box .box-item .service-icon {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
}

.trusted.box .box-item.number img {
    border-radius: 0;
    width: auto;
}


/*----------  Portfolio Section  ----------*/

.portfolio.box .row.main-title {
    row-gap: 0;
}

.portfolio.box .row {
    row-gap: 30px;
}

.portfolio.box .box-item {
    padding: 10px;
}

.portfolio.box img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.portfolio.box .content {
    padding: 20px;
}

.portfolio.box .content h3 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 400;
}

.portfolio.box .content p {
    color: rgba(43, 43, 43, 0.5);
    font-size: 16px;
}

.portfolio.box .content div {
    gap: 10px;
}

.portfolio.box .content .btn-explore {
    margin-top: 20px;
}

.portfolio.box .btn {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    min-height: 62px;
    margin-top: 50px;
    padding: 13px 28px;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}


/*----------  Portfolio Details Section  ----------*/

.portfolio-details h1 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.portfolio-details p {
    margin-bottom: 20px;
}

.portfolio-details .row {
    row-gap: 50px;
}

.portfolio-details .row p:last-child {
    margin-bottom: 0;
}

.details-section {
    border: 1px solid rgba(43, 43, 43, 0.05);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-radius: 30px;
}

.details-section h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--bold-font);
    margin-bottom: 30px;
}

.details-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.details-section ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(43, 43, 43, 0.5);
    font-size: 16px;
    border-bottom: 1px solid rgba(43, 43, 43, 0.15);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.details-section ul li:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.details-section ul li span {
    color: #2b2b2b;
}


/*----------  Faq Section  ----------*/

.faq .main-title {
    margin-bottom: 20px;
}

.faq .content h3 {
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 20px;
}

.faq .content p {
    font-size: 16px;
}

.faq .faq-container .faq-item {
    background-color: #fff;
    position: relative;
    padding: 30px;
    margin-bottom: 10px;
    border-radius: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 700;
    font-family: var(--bold-font);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq .faq-container .faq-item.faq-active h3 {
    border-bottom: 1px solid rgba(43, 43, 43, 0.15);
    padding-bottom: 30px;
}

.faq .faq-container .faq-item h3:hover {
    color: #2b2b2b;
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
    color: rgba(43, 43, 43, 0.5);
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: #2b2b2b;
}

.faq .faq-container .faq-active h3 {
    color: #2b2b2b;
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 30px;
}

.faq .faq-container .faq-active .faq-toggle {
    color: #2b2b2b;
}

.faq .faq-container .faq-item .faq-toggle.open {
    display: none;
}

.faq .faq-container .faq-item.faq-active .faq-toggle.close {
    display: none;
}

.faq .faq-container .faq-item.faq-active .faq-toggle.open {
    display: block;
}


/*----------  Testimonials Section  ----------*/

.Testimonials.box .row.main-title {
    row-gap: 0;
}

.Testimonials.box .box-item .service-icon {
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
}

.Testimonials.box .box-item h3 {
    margin-top: 30px;
    font-family: var(--bold-font);
    margin-bottom: 10px;
}

.PainPoints.box .box-item .service-icon {
    width: 64px;
    height: 64px;
}

.PainPoints.box .box-item p {
    color: rgba(43, 43, 43, 0.5);
}


/*----------  Counter Section  ----------*/

.counter .box-item {
    min-height: 235px;
}

.counter .box-item div.d-flex {
    height: calc(100% - 48px);
}

.counter .box-item h3 {
    font-size: 36px;
    font-weight: 400;
    margin: 0;
}

.counter .box-item p {
    color: rgba(43, 43, 43, 0.5);
}


/*----------  Clients Section  ----------*/

.clients .row {
    row-gap: 30px;
}

.clients .worldwide {
    background: url(assets/img/Maskgroup.png);
    background-size: cover;
}

.clients.section .main-title {
    height: calc(100% - 162px);
    margin: 0;
}

.clients.section .main-title h2 {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.5);
}

.clients.box .box-item.worldwide h3 {
    font-size: 30px;
    font-weight: 400;
}

.clients .worldwide .row {
    row-gap: 10px;
    margin-left: -5px;
    margin-right: -5px;
}

.clients .worldwide .row .col-lg-4 {
    padding-left: 5px;
    padding-right: 5px;
}

.clients .worldwide .row img {
    background: #fff;
    border: 1px solid rgba(43, 43, 43, 0.05);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 20px;
}


/*----------  Blog Section  ----------*/

.blog.box .box-item {
    padding: 10px;
    border-radius: 20px;
}

.blog.box img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.blog.box .content {
    padding: 0 20px 20px;
}

.blog.box .box-item .d-flex {
    margin-top: 30px;
    margin-bottom: 10px;
}

.blog.box .box-item .d-flex.tag {
    margin-bottom: 20px;
}

.blog.box .box-item .btn-explore {
    min-height: 36px;
    margin: 0;
    font-size: 14px;
    padding: 0 14px;
}

.blog.box .box-item p {
    color: rgba(43, 43, 43, 0.5);
}

.blog.box .box-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: var(--bold-font);
}

.blog.box .col-lg-6 .col-lg-6 .box-item .content {
    padding: 0 10px 10px;
}

.blog.box .col-lg-6 .col-lg-6 .box-item .d-flex {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog.box .col-lg-6 .col-lg-6 .box-item h3 {
    font-size: 16px;
}

.blog.box .col-lg-6 .col-lg-6 .box-item .btn-explore {
    margin-top: 0;
    margin-bottom: 0;
}


/*----------  Welcome Section  ----------*/

.welcome .main-title p {
    font-size: 20px;
    line-height: 30px;
}

.welcome .main-title p:first-child {
    margin-bottom: 30px;
}

.welcome .box-item {
    padding: 10px;
    position: relative;
}

.welcome .box-item img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.welcome .Solutions {
    margin-left: 60px;
}

.welcome .row {
    row-gap: 120px;
}

.welcome .Solutions.two {
    margin-left: 0;
    margin-right: 60px;
}

.welcome h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.welcome p.excels {
    font-size: 16px;
    color: #2b2b2b;
    margin-bottom: 30px;
}

.welcome ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.welcome ul li {
    border-bottom: 1px solid rgba(43, 43, 43, 0.15);
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    gap: 20px;
}

.welcome ul li:last-child {
    border: none;
}

.welcome ul li .dott {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    margin-top: 6px;
    min-width: 12px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
}

.welcome ul li span {
    font-size: 18px;
    display: block;
    font-family: var(--bold-font);
}

.callus {
    font-size: 30px;
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-family: var(--bold-font);
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    border-radius: 30px;
    color: #fff;
    width: max-content;
    padding: 32px 31px;
    display: flex;
    align-items: center;
    min-width: 360px;
    gap: 20px;
}

.callus p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--default-font);
    margin: 0;
}


/*----------  Process Section  ----------*/

.process .main-title {
    margin-bottom: 20px;
}

.process .main-title h2 {
    background: rgba(255, 255, 255, 0.5);
}

.process .content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.process .number .row {
    row-gap: 30px;
}

.process .number .box-item .service-icon {
    font-size: 18px;
    color: #fff;
    width: 62px;
    height: 62px;
    margin-bottom: 30px;
}

.process .number h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-family: var(--bold-font);
}

.process .number p {
    color: rgba(43, 43, 43, 0.5);
}


/*----------  Skills Section  ----------*/

.services.skills {
    padding: 80px 0 130px;
}

.services.skills .service-item div {
    height: auto;
}

.services.skills .service-item h3,
.services.skills .service-item p {
    margin-bottom: 20px;
}

.services.skills .service-item .progress {
    width: 100%;
    display: flex;
    height: 8px;
    overflow: hidden;
    background-color: rgba(43, 43, 43, 0.15);
    border-radius: 30px;
}

.services.skills .service-item .progress-bar {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    border-radius: 30px;
}

.services.skills .service-item .progress-count {
    font-size: 18px;
    color: #2b2b2b;
    font-family: var(--bold-font);
}

.services.skills .btn-explore {
    min-height: 64px;
    margin-top: 90px;
    gap: 12px;
    font-size: 18px;
    font-family: var(--bold-font);
    padding: 0 28px;
}


/*----------  Misson / Vision Section  ----------*/

.mission-vision .box-item {
    padding: 10px;
    border-radius: 20px;
}

.mission-vision .box-item:first-child {
    margin-bottom: 50px;
}

.mission-vision .box-item .main-title,
.mission-vision .box-item h3,
.mission-vision .box-item p {
    margin-bottom: 30px;
}

.mission-vision.box .box-item h3 {
    font-size: 36px;
    font-weight: 400;
}

.mission-vision p:last-child {
    margin-bottom: 0;
}

.mission-vision .space {
    padding: 30px;
    height: calc(100% - 93px);
}

.mission-vision .col-lg-6 img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.mission-vision .getintouch {
    margin: 0 30px;
}

.imghover .arrow-icon {
    display: none;
}

.imghover:hover .arrow-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 50%);
    border-radius: 20px;
}

.imghover a {
    margin: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}


/*----------  Leader Section  ----------*/

.leader .row {
    row-gap: 80px;
}

.leader .image-wrapper {
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(43, 43, 43, 0.05);
    border-radius: 30px;
    padding: 10px;
    background: #fff;
}

.leader .image-wrapper img {
    width: 100%;
}

.leader h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    padding: 0;
}

.leader .getintouch {
    margin-top: 30px;
}


/*----------  Contect Us Section  ----------*/

.start.contact {
    padding-top: 180px;
    padding-bottom: 150px;
}

.start.contact .home-header {
    margin-bottom: 80px;
}

.start.contact .home-header p {
    margin: 0;
}


/*----------  Teams Condiction Section  ----------*/

.teamscondiction.section {
    padding: 90px 0 120px;
}

.teamscondiction .row {
    row-gap: 50px;
}

.teamscondiction h3 {
    font-size: 20px;
    font-family: var(--bold-font);
    font-weight: 700;
    margin-bottom: 20px;
}

.teamscondiction p:last-child {
    margin: 0;
}

.teamscondiction ul {
    list-style: disc;
    margin: 0;
    padding-left: 30px;
}

.teamscondiction ul li {
    padding: 10px 0;
}

ul.aroow-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.aroow-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 0;
}

ul.aroow-list li img {
    width: auto;
    height: auto;
}


/*----------  Our Clients Section  ----------*/

.ourclients h3 {
    font-size: 20px;
    color: rgba(26, 18, 15, 1);
    font-weight: 700;
    margin-bottom: 50px;
    font-family: var(--bold-font);
}

.ourclients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 30px;
    height: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
}

.ourclients .row {
    row-gap: 24px;
}


/*.ourclients .client-logo img {max-width:100%; transition:0.3s; opacity:0.5;}
.ourclients .client-logo:hover img {filter:none; opacity:1;}*/


/*----------  Team Section  ----------*/

.team .box-item {
    padding: 10px;
    position: relative;
}

.team .box-item .team-details {
    color: #fff;
    width: 670px;
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 9;
}

.team .box-item h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
}

.team .box-item p {
    color: #fff;
    margin-bottom: 30px;
}

.team .box-item .getintouch img {
    width: auto;
}

.team .box-item .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-radius: 20px;
}

.team .box-item img {
    border-radius: 20px;
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}


/*----------  Contact Section  ----------*/

.bgarea.section {
    padding: 88px 0;
    background: url(assets/img/Maskgroup.png);
    background-size: cover;
}

.contact .contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}

.contact .contact-form .row {
    row-gap: 30px;
}

.contact .contact-form label {
    font-family: var(--bold-font);
    color: #2b2b2b;
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 12px 20px;
    min-height: 50px;
    border-color: rgba(43, 43, 43, 0.15);
    border-radius: 10px;
    background-color: #fff;
    color: #2b2b2b;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: #2b2b2b;
}

.contact .contact-form .btn {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    font-family: var(--bold-font);
    font-size: 18px;
    color: #fff;
    padding: 13px 28px;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.contact .contact-form .btn i {
    font-size: 1.25rem;
}

.contact .info-box {
    padding: 10px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(43, 43, 43, 0.05);
}

.contact .info-box .row {
    row-gap: 10px;
}

.contact .info-box .row {
    margin-left: -5px;
    margin-right: -5px;
}

.contact .info-box .row .col-lg-6,
.contact .info-box .col-lg-12 {
    padding-left: 5px;
    padding-right: 5px;
}

.contact .info-box .service-item {
    position: relative;
    border: 1px solid rgba(43, 43, 43, 0.15);
    padding: 30px 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact .info-box .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    color: #2b2b2b;
    font-size: 34px;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact .info-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact .info-box p {
    color: rgba(43, 43, 43, 0.5);
    margin-bottom: 0;
    transition: color 0.3s ease;
}


/*----------  Footer  ----------*/

.footer {
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    padding-bottom: 40px;
}

.footer .footer-about img {
    width: 185px;
}

.footer .footer-contact p {
    margin-top: 28px;
    margin-bottom: 28px;
    font-size: 16px;
    color: #2b2b2b;
}

.footer .site-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .site-icons span {
    border: 1px solid rgba(43, 43, 43, 0.05);
    cursor: pointer;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
    width: 56px;
    height: 56px;
    border-radius: 100%;
}

.footer .site-icons span:hover {
    background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%)
}

.footer .footer-contact .site-icons span img {
    width: 100%;
}

.footer .footer-top h4 {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--bold-font);
    margin-bottom: 30px;
    color: #2b2b2b;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.footer .footer-links ul a {
    display: inline-block;
    color: #2b2b2b;
    line-height: 20px;
    font-size: 16px;
}

.footer .footer-links ul a:hover {
    background-image: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    color: transparent;
    background-clip: text;
}


/*----------  Media Quiry  ----------*/

@media (min-width:1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1280px;
        padding: 0;
    }
}

@media (min-width:1199.98px) and (max-width:1399.98px) {
    .counter .box-item div.d-flex {
        height: calc(100% - 96px) !important;
    }
    .clients .main-title {
        height: calc(100% - 150px) !important;
    }
    .contact .info-box .service-icon {
        margin-bottom: 32.5px;
    }
    .total-service .service-item div {
        height: auto;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .d-flex {
        display: block !important;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .btn-explore {
        margin-bottom: 10px;
    }
    .welcome .Solutions {
        margin-left: 30px;
    }
    .welcome .Solutions.two {
        margin-right: 30px;
    }
    .mission-vision .space {
        height: auto;
    }
    .mission-vision .getintouch {
        margin-bottom: 30px;
    }
}

@media (min-width:991.98px) and (max-width:1199.98px) {
    .clients .main-title {
        height: calc(100% - 136px) !important;
    }
    .counter .box-item div.d-flex {
        height: calc(100% - 96px) !important;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .content .d-flex {
        display: block !important;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .content .btn-explore {
        margin-bottom: 10px;
    }
    .contact .info-box .service-icon {
        margin-bottom: 37.5px;
    }
}

@media (max-width:1199.98px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
    .start.section,
    .start.inner-title.section {
        padding-top: 200px;
        padding-bottom: 100px;
    }
    .start .home-header h1 {
        font-size: 55px;
        line-height: 60px;
    }
    .main-title p {
        font-size: 30px;
        line-height: 40px;
    }
    .blog.box .box-item h3 {
        line-height: 24px;
    }
    .navmenu ul li {
        padding: 11px 16px;
    }
    .contact.section,
    .Testimonials {
        padding: 80px 0;
    }
    .teamscondiction.blog-data {
        padding-bottom: 0 !important;
    }
    .services,
    .why-choose,
    .trusted,
    .portfolio,
    .clients,
    .blog,
    .teamscondiction,
    .portfolio-details {
        padding: 80px 0 !important;
    }
    .start .imgarea {
        margin-top: 30px;
    }
    .start .imgarea .clients {
        padding: 30px 28px !important;
    }
    .portfolio-details h1 {
        font-size: 30px;
    }
    .mobile-nav-toggle {
        display: none;
    }
    .blog.box .box-item .d-flex.tag {
        display: block !important;
    }
    .blog.box .box-item .btn-explore {
        margin-bottom: 10px;
    }
    .total-service .service-item div {
        height: calc(100% - 275px);
    }
    .welcome .Solutions {
        margin-left: 30px;
    }
    .welcome .Solutions.two {
        margin-right: 30px;
    }
    .Testimonials .welcome .row {
        row-gap: 80px;
    }
    .leader-detils {
        padding: 0 !important;
    }
    .mission-vision .space {
        height: auto;
    }
    .mission-vision .getintouch {
        margin-bottom: 30px;
    }
    .team .box-item img {
        max-height: 500px;
    }
    .start .happyClients .clients {
        padding: 20px 20px !important;
    }
    .contact .contact-form,
    .contact .info-box .service-item {
        padding: 25px;
    }
}

@media (max-width:991.98px) {
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .mobile-nav-toggle {
        color: #2b2b2b;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
        display: block;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu a,
    .navmenu a:focus {
        color: #555;
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background: linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: #2b2b2b;
        color: #fff;
    }
    .navmenu a:hover,
    .navmenu .current-menu-item,
    .navmenu .current-menu-item:focus {
        color: #036dda;
    }
    .navmenu .current-menu-item i,
    .navmenu .current-menu-item:focus i {
        background-color: #2b2b2b;
        color: #fff;
        transform: rotate(180deg);
    }
    .navmenu li ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: #fff;
        border: 1px solid linear-gradient(132.99deg, #257BFF 0%, #B850FD 100%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }
    .navmenu li ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu li .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu ul {
        display: block;
    }
    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin: 0;
    }
    .start.section,
    .start.inner-title.section {
        padding-top: 170px;
    }
    .start .container .col-lg-7,
    .start .container .col-lg-5 {
        width: 100%;
    }
    .Testimonials .row,
    .bgarea.section .row,
    .start.inner-title.contact .row {
        row-gap: 30px;
    }
    .bgarea.section .row.main-title,
    .contact .info-box .row,
    .start.inner-title.contact .info-box .row {
        row-gap: 10px;
    }
    .clients .main-title {
        height: auto !important;
        margin-bottom: 30px !important;
    }
    .start.contact .home-header {
        margin-bottom: 50px;
    }
    .clients .worldwide .row .col-lg-4 {
        width: 33.33%;
    }
    .clients .worldwide .row .col-lg-4 img {
        width: 100%;
    }
    .section .main-title .col-md-3 {
        width: 33.33%;
    }
    .section .main-title .col-md-9 {
        width: 33.33%;
    }
    .why-choose .card-item {
        margin-top: 30px;
        height: auto;
    }
    .portfolio.box .content h3 {
        font-size: 26px;
    }
    .total-service .service-item div {
        height: calc(100% - 305px);
    }
    .Testimonials .welcome .row {
        row-gap: 50px;
    }
    .welcome h1 {
        font-size: 32px;
    }
    .welcome ul li span {
        font-size: 16px;
    }
    .welcome ul li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .welcome .Solutions {
        margin-left: 25px;
    }
    .welcome .Solutions.two {
        margin-right: 25px;
    }
    .welcome .getintouch {
        margin-top: 30px;
    }
    .team .box-item img {
        max-height: 400px;
    }
    .leader.box.section .row {
        align-items: start !important;
    }
    .leader.box.section .row.center {
        align-items: normal !important;
        row-gap: 30px;
    }
    .start.section .box {
        margin-top: 50px;
    }
    .callus {
        min-width: auto;
        padding: 16px 30px;
        bottom: -45px;
    }
    .services.skills .btn-explore {
        margin-top: 30px;
    }
    .team .box-item .team-details {
        width: auto;
        right: 50px;
    }
    .start.section .box .row {
        row-gap: 10px;
    }
    .start.section .box .row img.w-100 {
        border-radius: 20px;
        object-fit: cover !important;
    }
    .start .happyClients .clients {
        height: 50%;
    }
}

@media (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
    .contact.section {
        padding: 50px 0;
    }
    .teamscondiction.blog-data {
        padding-bottom: 0 !important;
    }
    .services,
    .why-choose,
    .trusted,
    .portfolio,
    .Testimonials,
    .clients,
    .blog,
    .teamscondiction,
    .portfolio-details {
        padding: 50px 0 !important;
    }
    .teamscondiction h3 {
        margin-bottom: 15px;
    }
    .teamscondiction .row {
        row-gap: 40px;
    }
    .start .imgarea .clients {
        padding: 30px 28px !important;
    }
    .blog .col-lg-6 .row .col-lg-6 {
        margin-top: 30px;
    }
    .contact .info-box .service-icon {
        margin-bottom: 25px;
        width: 60px;
        height: 60px;
    }
    .section.faq .main-title {
        margin-bottom: 20px;
    }
    .section.faq .content {
        margin-bottom: 50px;
    }
    .section .main-title {
        margin-bottom: 50px;
    }
    .portfolio.box .btn {
        margin-top: 30px !important;
    }
    .trusted.box .box-item.number {
        margin-top: 50px !important;
    }
}

@media (max-width:767.98px) {
    .start.section,
    .start.inner-title.section {
        padding-bottom: 70px;
    }
    .counter .box-item {
        min-height: auto !important;
    }
    .counter .box-item div.d-flex {
        height: auto !important;
        margin-bottom: 30px;
    }
    .trusted.box p.trust-text:first-child {
        margin-top: 30px;
    }
    .trusted.box p.trust-text:last-child {
        margin-bottom: 30px;
    }
    .section .main-title p,
    .why-choose .card-item {
        margin-top: 30px;
    }
    .footer .row {
        row-gap: 30px;
    }
    .footer .footer-top h4 {
        margin-bottom: 20px;
    }
    .total-service .service-item div {
        height: auto;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .d-flex {
        display: block !important;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .btn-explore {
        margin-bottom: 10px;
    }
    .welcome ul li span {
        font-size: 18px;
    }
    .welcome ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .welcome .Solutions {
        margin-left: 0px;
    }
    .welcome .Solutions.two {
        margin-right: 0px;
    }
    .team .box-item img {
        max-height: 500px;
    }
    .callus {
        position: relative;
        bottom: 0;
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }
    .col-lg-6.col-md-6.happyClients {
        height: 100%;
    }
}

@media (max-width:575.98px) {
    .container,
    .container-sm {
        padding: 0 30px;
    }
    .header .header-part {
        left: 30px;
        right: 30px;
    }
    .header .btn-getstarted {
        margin: 0;
        padding: 14.5px 16px;
        font-size: 14px;
        gap: 8px;
    }
    .start .home-header h1 {
        font-size: 45px;
        line-height: 60px;
    }
    .start .imgarea .clients {
        width: auto;
        padding: 20px !important;
        left: 25px;
        right: 25px;
        bottom: 25px;
    }
    .start .imgarea .clients .clients-list .d-flex span {
        width: 40px;
    }
    .blog.box .content {
        padding: 0 10px 10px !important;
    }
    .clients .worldwide .row .col-lg-4 {
        width: 50%;
    }
    .clients .worldwide .row .col-lg-4 img {
        padding: 15px;
    }
    .portfolio.box .content {
        padding: 20px 10px !important;
    }
    .portfolio.box .content .btn-explore {
        padding: 0 15px;
    }
    .main-title p {
        font-size: 26px;
        line-height: 36px;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .d-flex {
        display: flex !important;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .btn-explore {
        margin-bottom: 0;
    }
    .mission-vision .space {
        padding: 20px;
    }
    .mission-vision .getintouch a {
        margin: 0 20px 20px;
    }
    .team .box-item .team-details img {
        height: auto;
    }
    .team .box-item img {
        height: 420px;
        max-height: 420px;
    }
}

@media (max-width:479.98px) {
    .container,
    .container-sm {
        padding: 0 20px;
    }
    .header .header-part {
        left: 20px;
        right: 20px;
    }
    .header .btn-getstarted {
        display: none;
    }
    .start.section,
    .start.inner-title.section {
        padding-top: 130px;
    }
    .start .home-header h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .getintouch a {
        padding: 15px 30px;
    }
    .trusted.box .btn,
    .portfolio.box .btn {
        min-height: auto !important;
    }
    .start .imgarea .clients .clients-list {
        display: block;
        margin-bottom: 20px;
    }
    .start .imgarea .clients .clients-list .d-flex span {
        margin-top: 0;
    }
    .start .imgarea .clients span {
        margin-top: 20px;
        display: block;
    }
    .start .imgarea .clients p {
        font-size: 15px;
        line-height: 24px;
    }
    .why-choose .card-item,
    .trusted.box .box-item.number .box-item,
    .clients.box .box-item,
    .contact .contact-form,
    .contact .info-box .service-item {
        padding: 20px;
    }
    .why-choose .card-item h1 {
        font-size: 30px;
    }
    .portfolio.box .content h3 {
        font-size: 26px !important;
    }
    .section .main-title {
        margin-bottom: 30px;
    }
    .blog.box .box-item .d-flex {
        display: block !important;
    }
    .blog.box .box-item .btn-explore {
        margin-bottom: 10px !important;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .d-flex {
        display: block !important;
    }
    .blog.box .col-lg-6 .col-lg-6 .box-item .btn-explore {
        margin-bottom: 10px;
    }
    .portfolio.box .content .btn-explore {
        padding: 0 10px;
    }
    .callus {
        font-size: 26px;
    }
    .team .box-item .team-details {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
    .team .box-item img {
        height: 420px;
        max-height: 420px;
    }
}