body {
    margin: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #FFFBF9;
}

a {
    background-color: transparent;
    text-decoration: none;
}

li {
    list-style: none;
}

* {
    transition: all 0.3s ease-in-out;
}

/*.................header style................*/
.moho_header {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    height: 55px;
    align-items: center;
    padding-bottom: 10px;
}

.moho_header .moho_logo a {
    font-size: 32px;
    font-weight: 400;
    color: #070707;
}

.moho_header .moho_btn-contact {
    display: flex;
    align-items: center;
}

.moho_header .moho_btn-contact div a {
    margin-inline-start: 15px;
    font-size: 20px;
    color: #070707;
}

.moho_header .moho_btn-contact span {
    font-size: 16px;
    font-weight: 400;
    color: #070707;
}

.moho_header ul li {
    margin: 0 10px;
}

.moho_header ul {
    display: flex;
}

.moho_header ul li a {
    font-size: 16px;
    font-weight: 300;
    color: #848484;
}

.moho_header ul li a:hover {
    color: #070707;
}

.moho_header ul li.active a,
.moho_header ul li.current-menu-item>a,
.moho_header ul li.current_page_item>a,
.moho_header ul li.current-menu-ancestor>a,
.moho_header ul li.current-menu-parent>a {
    color: #070707;
}

.moho_desktop-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.moho_desktop-menu li {
    list-style: none;
}

.moho_desktop-menu>li {
    position: relative;
}

.moho_desktop-menu>li>a {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 8px 0;
}

.moho_desktop-menu>li.menu-item-has-children>a::after {
    content: '\203A';
    transform: rotate(90deg);
    font-size: 12px;
    color: currentColor;
    transition: transform 0.3s ease;
}

.moho_desktop-menu>li.menu-item-has-children:hover>a::after,
.moho_desktop-menu>li.menu-item-has-children:focus-within>a::after {
    transform: rotate(-90deg);
}

.moho_desktop-menu li .sub-menu {
    position: absolute;
    inset-inline-start: 0;
    top: calc(100% + 18px);
    min-width: 220px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(4, 4, 21, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.moho_desktop-menu li .sub-menu li+li {
    margin-top: 12px;
}

.moho_desktop-menu li .sub-menu a {
    font-size: 15px;
    color: #4d4d4d;
    display: block;
}

.moho_desktop-menu li:hover>.sub-menu,
.moho_desktop-menu li:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.moho_desktop-menu>li.mega-menu {
    position: static;
}

.moho_desktop-menu>li.mega-menu>.sub-menu {
    width: 100%;
    inset-inline-start: 0;
    top: calc(100% + 24px);
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 40px;
    padding: 40px 56px 48px;
    border-radius: 28px;
    border: 1px solid rgba(7, 7, 7, 0.08);
    box-shadow: 0 35px 90px rgba(7, 7, 7, 0.12);
    direction: rtl;
    text-align: right;
}

.moho_desktop-menu>li.mega-menu>.sub-menu>li {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-inline-start: 24px;
}

.moho_desktop-menu>li.mega-menu>.sub-menu>li+li {
    border-inline-start: 1px solid rgba(7, 7, 7, 0.06);
}

.moho_desktop-menu>li.mega-menu>.sub-menu::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: 100%;
    height: 12px;
    pointer-events: none;
    background: transparent;
}

.moho_desktop-menu>li.mega-menu>.sub-menu>li>a {
    font-size: 16px;
    font-weight: 600;
    color: #070707;
    text-transform: none;
    letter-spacing: 0;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(7, 7, 7, 0.08);
}

.moho_desktop-menu>li.mega-menu>.sub-menu>li .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.moho_desktop-menu>li.mega-menu>.sub-menu>li .sub-menu a {
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #4d4d4d;
    padding: 2px 0;
}

.moho_mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.moho_mobile-menu-list li {
    list-style: none;
    position: relative;
    padding-inline-end: 40px;
}

.moho_mobile-menu-list li.menu-item-has-children>a {
    display: block;
}

.moho_mobile-menu-list .sub-menu {
    position: static;
    inset: unset;
    min-width: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 12px;
    margin-inline-start: 18px;
    padding-inline-start: 12px;
    border-inline-start: 1px solid rgba(7, 7, 7, 0.1);
    display: none;
    flex-direction: column;
    gap: 10px;
}

.moho_mobile-menu-list li.is-open>.sub-menu {
    display: flex;
}

.moho_mobile-menu-list .sub-menu a {
    font-size: 14px;
    color: #4d4d4d;
}

.moho_submenu-toggle {
    position: absolute;
    inset-inline-end: 0;
    top: 17px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(7, 7, 7, 0.15);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070707;
    transition: transform 0.3s ease, background 0.3s ease;
}

.moho_submenu-toggle::before {
    content: '+';
    font-size: 18px;
    line-height: 1;
}

.moho_mobile-menu-list li.is-open>.moho_submenu-toggle::before {
    content: '−';
}

.moho_mobile-menu-list li.is-open>.moho_submenu-toggle {
    background: rgba(7, 7, 7, 0.05);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hamburger Menu Styles */
.moho_hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #070707;
    padding: 0;
    z-index: 1001;
}

.moho_hamburger-btn i {
    font-size: 28px;
}

.moho_mobile-menu {
    display: none;
}

.moho_close-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: #070707;
    padding: 0;
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
    z-index: 1002;
}

.moho_close-btn i {
    font-size: 32px;
}

/*.................end header................*/

/*.................Engineer section................*/
.moho_engineer-section {
    padding-bottom: 150px;
}

.moho_Engineer {
    display: flex;
    align-items: center;
    margin-top: 156px;
}

.moho_Engineer .moho_Engineer-img {
    z-index: -2;
    position: absolute;
    right: 0px;
    padding: 0;
    max-width: 714px;
}

.moho_Engineer .moho_Engineer-img img {
    width: 100%;
    height: 398px;
    object-fit: cover;
}

.moho_Engineer .moho_Engineer-content {
    display: flex;
    flex-direction: column;
    border-inline-start: 1px solid #EFCFA5;
    max-width: 540px;
}

.moho_Engineer .moho_Engineer-content a {
    display: flex;
    font-weight: 300;
    justify-content: center;
    font-size: 16px;
    background: #070707;
    padding: 8px 0;
    color: #FFFFFF;
    max-width: 123px;
}

.moho_Engineer .moho_Engineer-content h1 {
    font-size: 54px;
    line-height: 64px;
    font-weight: 700;
    color: #070707;
    margin-bottom: 16px;
}

.moho_Engineer .moho_Engineer-content p {
    text-align: justify;
    line-height: 29px;
    font-size: 16px;
    color: #848484;
    font-weight: 300;
}

.moho_Engineer .moho_Engineer-img:after {
    content: "";
    width: 196px;
    height: 165px;
    background: #EFCFA5;
    top: 268px;
    position: absolute;
    display: block;
    inset-inline-start: 66px;
    z-index: -1;
}

.moho_Engineer .moho_Engineer-img:before {
    content: "";
    position: absolute;
    top: -194px;
    inset-inline-end: 0;
    width: 369px;
    height: 265px;
    background: linear-gradient(0deg, rgba(239, 207, 165, 0.7) 50%, rgba(239, 207, 165, 0.05) 100%);
    z-index: 0;
}

/*.................end Engineer section................*/

/*................. Achievements Section ................*/
.moho_achievements {
    margin-top: 80px;
}

.moho_achievements-office {
    display: flex;
    align-items: center;
    gap: 80px;
    margin: 0 auto;
}

.moho_office-image {
    position: relative;
    flex: 0 0 45%;
    width: 517px;
}

.moho_office-image::before {
    position: absolute;
    content: '';
    border: 1px solid #EFCFA5;
    width: 511px;
    height: 317px;
    top: -25px;
    left: 110px;
    z-index: -1;
}

.moho_office-image::after {
    position: absolute;
    content: '';
    background: linear-gradient(177deg, rgba(239, 207, 165, 0.73) 51%, rgba(239, 207, 165, 0.41) 100%);
    width: 100%;
    height: 108px;
    bottom: -30px;
    right: 70%;
    z-index: 1;
}

.moho_office-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.moho_info-achievements {
    flex: 1;
    padding-inline-end: 20px;
}

.moho_info-achievements h2 {
    font-size: 54px;
    font-weight: 700;
    color: #070707;
    margin-bottom: 40px;
}

.moho_achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.moho_achievement-item {
    text-align: left;
}

.moho_achievement-number {
    font-size: 48px;
    font-weight: 400;
    color: #070707;
    margin-bottom: 8px;
}

.moho_achievement-title {
    font-size: 18px;
    font-weight: 700;
    color: #C88937;
    margin-bottom: 8px;
}

.moho_achievement-description {
    font-size: 16px;
    font-weight: 300;
    color: #848484;
    line-height: 1.4;
}

/*................. End Achievements Section ................*/


/*................. Services ................*/
.moho_services {
    margin-top: 160px;
}

.moho_services-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    margin-inline-end: auto;
    margin-inline-start: auto;
}

.moho_services-title-section {
    flex: 0 0 auto;
    width: 60%;
    margin: 10px 30px 0 0;
}

.moho_services-title {
    font-size: 54px;
    font-weight: 700;
    color: #070707;
    margin: 10px 0 0 0;
}

.moho_services-line {
    width: 120px;
    height: 1px;
    background-color: #EFCFA5;
    border-radius: 2px;
    width: 100%;
}

.moho_services-description {
    flex: 1;
    font-size: 20px;
    font-weight: 300;
    color: #848484;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.moho_services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.moho_service-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moho_service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.moho_service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.moho_service-card:hover .moho_service-image img {
    transform: scale(1.1);
}

.moho_service-title {
    font-size: 18px;
    font-weight: 700;
    color: #C88937;
    margin: 20px 20px 10px 0;
}

.moho_service-description {
    font-size: 16px;
    font-weight: 300;
    color: #848484;
    line-height: 1.5;
    margin: 0 20px 20px 0;
}

.moho_object-fit-cover {
    object-fit: cover;
}

/*................. End Services ................*/

/*................. What We've Built ................*/
.moho_what-built {
    margin-top: 160px;
}

.moho_slider-what-built {
    width: 2147px;
    height: 100%;
    direction: rtl;
    background: linear-gradient(189deg, rgba(239, 207, 165, 1) 48%, rgba(255, 241, 222, 0.66) 100%);
    padding: 23px 30px 23px 0;
    margin-inline-end: -16%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 282px !important;
    overflow: hidden;
    cursor: pointer;
}

.swiper-slide img {
    width: 282px;
    height: 374px;
}

.moho_slider-what-built .swiper-slide img {
    margin-left: 10px;
}

.moho_info-what-built {
    display: flex;
    gap: 25px;
}

.moho_what-built-title-desc h2 {
    font-size: 54px;
    font-weight: 700;
    color: #070707;
}

.moho_what-built-title-desc p {
    font-size: 20px;
    font-weight: 300;
    color: #848484;
    text-align: justify;
    margin-top: 24px;
    line-height: 32px;
}

.moho_what-built-button {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.moho_what-built-button a.moho_what-built-contact-us {
    background: #070707;
    padding: 5px 20px 8px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    border-radius: 0;
}

.moho_what-built-button a.moho_what-built-projects {
    color: #070707;
    font-size: 16px;
    font-weight: 300;
    margin-inline-start: 40px;
    display: flex;
    align-items: flex-end;
}

.moho_what-built-button a.moho_what-built-projects i {
    margin-inline-start: 5px;
    transform: rotate(45deg);
    font-size: 20px;
}

.moho_info-slider-what-bulit {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0 17px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.33) 24%);
    opacity: 0;
    transition: all 0.4s ease;
}

.swiper-slide:hover .moho_info-slider-what-bulit {
    top: 0;
    bottom: 0;
    opacity: 1;
}

.swiper-slide:hover img {
    transform: scale(1.1);
}

.moho_btn-design {
    background: #C88937;
    padding: 5px;
}

.moho_btn-design h3 {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.moho_info-slider-design h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.moho_info-slider-design p {
    font-size: 14px;
    font-weight: 300;
    color: #BABABA;
}

.moho_info-slider-design a {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 24px;
}

.moho_info-slider-design a i {
    font-size: 22px;
    transform: rotate(45deg);
    margin-inline-end: 5px;
}

/*................. End What We've Built ................*/

/*................. Certified Excellence ................*/
.moho_certified-excellence {
    margin-top: 160px;
}

.moho_info-certified {
    border-inline-start: 1px solid #EFCFA5;
    padding-inline-start: 12px;
    height: auto;
}

.moho_title-certified {
    display: flex;
}

.moho_title-certified h2 {
    width: 100%;
    font-size: 54px;
    font-weight: 700;
}

.moho_title-certified p {
    width: 100%;
    font-size: 20px;
    color: #848484;
    display: flex;
    flex-direction: column;
    text-align: justify;
}

.moho_title-certified p a {
    margin-top: 24px;
    color: #070707;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    align-items: flex-end;
}

.moho_title-certified p a i {
    margin-inline-start: 5px;
    transform: rotate(45deg);
    font-size: 20px;
}

.moho_slider-certified {
    margin-top: 24px;
    margin-inline-end: -16%;
}

.slider-hero .swiper-slide {
    width: 397px !important;
    height: 280px;
}

.slider-hero .swiper-slide img {
    width: 397px;
    height: 280px;
}

/*................. End Certified Excellence ................*/

/*.................Minds section................*/
.moho_minds-section {
    position: relative;
}

.moho_minds-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(239, 207, 165, 1) 20%, rgba(255, 241, 222, 0) 100%);
    z-index: -1;
}

.moho_Minds .moho_Minds-img {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}

.moho_Minds-content {
    margin-bottom: 64px;
}

.moho_Minds-content p {
    color: #848484;
}

.moho_Minds .moho_Minds-img div {
    max-height: 374px;
    width: 282px;
    position: relative;
    display: inline-block;
	cursor: pointer;
}

.moho_Minds .moho_Minds-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moho_Minds-img {
    position: relative;
    overflow: hidden;
}

.moho_Minds-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: filter 0.3s ease;
}

.moho_Minds-img-info img {
    filter: brightness(0.90) contrast(1.05);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(7, 7, 7, 0.8) 100%);
    background-blend-mode: overlay;
}

.moho_Minds-img-info:hover img {
    filter: brightness(0.45) contrast(1.1);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(7, 7, 7, 0.99) 100%);
}

.moho_info-minds {
    position: relative;
    top: -79px;
    z-index: 1;
    padding: 24px;
}

.moho_info-minds h2 {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.moho_Minds-img-info:hover .moho_info-minds {
    top: -270px;
    text-align: center;
}

.moho_social-minds {
    max-width: 100%;
    margin-top: 12px;
    display: flex !important;
    justify-content: center;
    gap: 16px;
}

.moho_social-minds a {
    color: #ffffff;
}

.moho_social-minds a i {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff1a;
    font-size: 18px;
}

.moho_info-minds p {
    color: #BABABA;
    font-size: 14px;
    margin: 0;
}

.moho_Minds {
    display: flex;
    flex-direction: column;
}

.moho_Minds .moho_Minds-content div h2 {
    font-size: 54px;
    font-weight: 700;
    color: #070707;
    display: flex;
    align-items: center;
}

.moho_Minds .moho_Minds-content div span {
    background: #EFCFA5;
    height: 1px;
}

.moho_Minds .moho_Minds-content div {
    display: flex;
    align-items: center;
}

/*.................end Minds section................*/

/*.................Minds Testimonials................*/
.testimonial-section {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1.5px solid;
    border-image: linear-gradient(75deg, rgba(239, 207, 165, 0.75) 50%, rgba(255, 249, 242, 0.56) 85%) 1;
    position: relative;
    background: #fff;
}

.testimonial-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80%;
    min-width: 100%;
}

.testimonial-left {
    flex: 1;
    padding: 40px;
}

.testimonial {
    display: none;
    animation: fade 0.6s ease-in-out;
}

.testimonial.active {
    display: block;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    margin: 0;
    color: #C88937;
    font-size: 18px;
    font-weight: 700;
}

.user-info p {
    margin: 0;
    font-size: 18px;
    color: #848484;
    font-weight: 300;
}

.feedback {
    font-size: 16px;
    font-weight: 300;
    color: #848484;
    line-height: 25px;
    text-align: justify;
    margin-top: 40px;
}

.testimonial-right {
    flex: 1;
    background: #fff;
    padding: 44px 0 20px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-right h2 {
    font-size: 54px;
    color: #070707;
    margin-bottom: 15px;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonial-right p {
    font-size: 20px;
    color: #848484;
    line-height: 30px;
    margin-bottom: 40px;
    font-weight: 300;
}

.dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #C88937;
    width: 24px;
    border-radius: 8px;
}

.testimonial-section::after {
    content: "";
    width: 196px;
    height: 195px;
    position: absolute;
    background: #EFCFA5;
    inset-inline-start: 41px;
    bottom: -24px;
    z-index: -6;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 800px) {
    .testimonial-right {
        padding: 40px 20px;
    }
}

/*.................end Testimonials................*/

/*................. FAQ ................*/
.moho_faq {
    display: flex;
    justify-content: space-between;
}

.accordion-button {
    padding: 16px 0px;
    text-align: left;
}

.faq-section {
    position: relative;
    max-width: 495px;
}

.moho_faq>div:last-child::after {
    content: "";
    width: 213px;
    height: 242px;
    border: 1.5px solid;
    border-inline-end: 0px solid;
    border-image: linear-gradient(0deg, rgba(239, 207, 165, 0.75) 50%, rgba(255, 249, 242, 0.56) 100%) 1;
    display: block;
    position: absolute;
    inset-inline-end: 0;
    margin-top: 12px;
}

.moho_faq>div:first-child::after {
    content: "";
    width: 213px;
    height: 242px;
    border: 1.5px solid;
    border-inline-start: 0px solid;
    border-image: linear-gradient(180deg, rgba(239, 207, 165, 0.75) 50%, rgba(255, 249, 242, 0.56) 100%) 1;
    display: block;
    position: absolute;
    inset-inline-start: 0;
    margin-top: 220px;
}

.faq-title {
    text-align: center;
    font-weight: 700;
    font-size: 54px;
    margin-bottom: 40px;
}

.accordion-button {
    background-color: transparent !important;
    color: #C88937 !important;
    font-weight: 700;
    box-shadow: none;
    font-size: 16px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #f1d7b8;
    background: unset;
    width: 530px;
}

.accordion-item:first-child {
    border-bottom: 1px solid #f1d7b8;
}

.accordion-item:last-child {
    border-bottom: 0px solid !important;
}

.accordion-button::after {
    display: none;
}

.accordion-button.collapsed::before {
    content: '+';
    font-weight: bold;
    font-size: 32px;
    color: #070707;
    margin-inline-end: 12px;
    font-weight: 300;
}

.accordion-button:not(.collapsed)::before {
    content: '−';
    font-weight: 300;
    font-size: 32px;
    color: #070707;
    margin-inline-end: 12px;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-body {
    color: #777;
    font-size: 16px;
    font-weight: 300;
    padding-inline-start: 39px;
    padding-inline-end: 1px;
}

/*................. End FAQ ................*/

/*................. Blog ................*/
.moho_blog-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.moho_blog-title h2 {
    color: #070707;
    font-size: 54px;
    font-weight: 700;
}

.moho_blog-title a {
    color: #070707;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.moho_blog-title a i {
    margin-inline-start: 5px;
    transform: rotate(45deg);
    font-size: 20px;
}

.moho_blog-items {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

.moho_blog-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.moho_blog-img img {
    display: block;
    width: 100%;
    height: 296px !important;
    object-fit: cover;
}

.moho_blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 20%);
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.moho_blog-item {
    width: 52%;
    cursor: pointer;
}

.moho_blog-item:hover img {
    transform: scale(1.1);
}

.moho_blog-item h2 {
    margin-top: 15px;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #070707;
}

.moho_blog-item h2:hover {
    color: #C88937;
}

.moho_blog-item p {
    margin-top: 8px;
    font-size: 14px;
    color: #848484;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.moho_blog-informations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}

.moho_blog-info {
    display: flex;
    gap: 52px;
}

.moho_blog-info span {
    color: #848484;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.moho_blog-info span i {
    color: #070707;
    font-size: 20px;
    margin-inline-end: 10px;
}

.moho_blog-read-more a {
    color: #C88937;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.moho_blog-read-more a i {
    color: #C88937;
    display: inline-block;
    transform: rotate(45deg);
    font-size: 20px;
    margin-inline-start: 5px;
}

.moho_blog-sort {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -7px;
    width: 50%;
}

.moho_blog-item-sort {
    border-bottom: 1px solid #EFCFA5;
    padding-bottom: 33px;
    padding-top: 33px;
    cursor: pointer;
}

.moho_blog-item-sort:first-child {
    padding-top: 0;
}

.moho_blog-item-sort:last-child {
    border-bottom: unset;
    padding-bottom: 0;
}

.moho_blog-item-sort h2 {
    margin-top: 0;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.moho_blog-item-sort>.moho_blog-informations {
    margin-top: 57px;
}

.moho_archive-blog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

.moho_archive-blog .moho_blog-item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .moho_archive-blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.moho_title-archive {
    display: flex;
    justify-content: center;
}

.moho_title-archive h2 {
    font-size: 54px;
    font-weight: 700;
    color: #070707;
}

.moho_archive {
    margin-top: 64px;
    margin-bottom: 160px;
}

/*................. End Blog ................*/

/*................. Footer ................*/
.moho_info-subscription h2 {
    color: #070707;
    font-size: 36px;
    font-weight: bold;
}

.moho_footer {
    position: relative;
    margin-top: 30px;
    padding: 60px 60px 12px 60px;
    height: 393px;
    overflow: hidden;
    z-index: 1;
}

.moho_footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(239, 207, 165, 0.71), rgba(239, 207, 165, 0.71)),
        url(../images/4309fb944ab4a760d46b7a220325fac2d4a7ef4f.jpg) center center / cover no-repeat;
    filter: blur(10px);
    transform: scale(1.1);
    z-index: -1;
}

.moho_menu-footer h2 {
    color: #C88937;
    font-size: 17px;
    font-weight: bold;
}

.moho_menu-footer .footer-toggle-icon {
    display: none;
    margin-inline-start: 12px;
}

.moho_menu-footer .footer-toggle-icon i {
    font-size: 22px;
    color: #070707;
    transition: transform 0.3s ease;
}

.moho_menu-footer ul {
    padding: 0;
    margin-top: 12px;
}

.moho_menu-footer ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.moho_menu-footer ul li a {
    color: #070707;
    font-size: 16px;
}

.moho_menu-footer ul li a:hover {
    color: #cd8b5c;
}

.moho_menu-footer ul li i {
    color: #C88937;
    font-size: 30px;
    padding-inline-end: 8px;
}

.moho_menu-footer ul.moho_social {
    margin-top: 30px;
}

.moho_social li {
    margin-inline-end: 12px;
}

.moho_social li a i {
    color: #070707;
}

.moho_social li a i:hover {
    color: #cd8b5c;
}

.moho_footer-static {
    border: none;
}

.moho_footer-static h2 {
    display: block;
}

.velora-footer-copy-right {
    border-top: 1px solid #C88937;
}

.velora-footer-copy-right p {
    margin: 12px 0 0 0;
}

/*................. End Footer ................*/

/*................. Pagination ................*/
.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #EFCFA5;
    color: #070707;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #070707;
    color: #ffffff;
    border-color: #070707;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    width: auto;
    padding: 0 15px;
    border: none;
    font-size: 20px;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
    background: transparent;
    color: #C88937;
}

.nav-links {
    display: flex;
}

/*................. End Pagination ................*/

/*................. Single blog ................*/
.moho_single {
    margin-top: 64px;
}

.moho_image-post {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.moho_image-post::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 20%);
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.moho_image-post img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.moho_content-post {
    margin-top: 35px;
}

.moho_content-post h2 {
    color: #070707;
    font-size: 40px;
    font-weight: 700;
}

.moho_info-post {
    display: flex;
    margin-top: 8px;
}

.moho_info-post h6 {
    color: #848484;
    font-size: 16px;
    font-weight: 300;
}

.moho_info-post span {
    color: #848484;
    font-size: 16px;
    margin: 0 7px;
}

.moho_content-post p {
    margin-top: 41px;
    color: #848484;
    font-size: 20px;
    font-weight: 300;
}

.moho_recent-blog {
    margin-top: 80px;
}

.moho_title-single-blog {
    display: flex;
    justify-content: center;
}

.moho_title-single-blog::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(239, 207, 165, 1) 20%, rgba(255, 241, 222, 0) 100%);
    z-index: -1;
    right: 0;
    left: 0;
}

.moho_title-single-blog h2 {
    font-size: 54px;
    font-weight: 700;
    color: #070707;
    margin-top: 56px;
}

.moho_lik-post-grid {
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px;
}

.moho_like-post {
    margin-top: 160px;
}

.moho_like-post-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.moho_like-post-image img {
    display: block;
    width: 282px;
    height: 226px;
    object-fit: cover;
}

.moho_like-post-image:hover img {
    transform: scale(1.1);
}

.moho_like-post-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 20%);
    z-index: 2;
    pointer-events: none;
    width: 282px;
    height: 226px;
}

.moho_lik-post-card {
    overflow: hidden;
    width: 282px;
    height: 226px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.moho_lik-post-card p {
    overflow: hidden;
    opacity: 0;
    text-align: center;
    width: 282px;
    position: relative;
    top: 0;
    padding: 0 24px;
    font-size: 16px;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.moho_lik-post-card:hover p {
    text-align: center;
    width: 282px;
    position: relative;
    top: -64px;
    overflow: visible;
    opacity: 1;
}

.moho_lik-post-card:hover .moho_like-post-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 30%, rgba(7, 7, 7, 0.9) 90%);
    z-index: 0;
}

/*................. End Single blog ................*/

/*................. Page ................*/
.moho_page {
    margin-top: 85px;
}

/*................. End Page ................*/

/*................. Page 404 ................*/
.moho_page-not-found {
    margin-top: 111px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.moho_title-not h3 {
    font-size: 250px;
    color: #070707;
}

.moho_not-found {
    width: 878px;
    height: 314px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgb(0 0 0 / 30%) 40%, rgba(0, 0, 0, 0.85) 100%);
    position: relative;
    top: -117px;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.moho_not-found h2 {
    font-size: 54px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
}

.moho_not-found p {
    font-size: 20px;
    color: #BABABA;
    text-align: center;
}

.moho_not-found a {
    background: #ffffff;
    padding: 10px 16px 12px 16px;
    color: #070707;
    display: flex;
    align-items: center;
}

.moho_not-found a i {
    margin-inline-start: 5px;
    transform: rotate(45deg);
    font-size: 20px;
    display: inline-block;
}
/*................. End Pa 404ge 404 ................*/

/*................. Responsive ................*/
@media screen and (max-width: 1024px) {

    .moho_Engineer {
        margin-top: 80px;
    }

    .moho_Engineer .moho_Engineer-img {
        top: 160px;
    }

    .moho_services {
        margin-top: 80px;
    }

    .moho_slider-certified {
        margin-inline-end: -5%;
    }

    .moho_Engineer .moho_Engineer-img:after {
        top: 170px;
    }

    .moho_engineer-section {
        padding-bottom: 60px;
    }

    .moho_office-image::before {
        width: 345px;
        top: -24px;
    }

    .moho_info-achievements h2 {
        font-size: 45px;
    }

    .moho_title-certified h2 {
        font-size: 45px;
    }

    .moho_Minds .moho_Minds-content div h2 {
        font-size: 45px;
        width: 35%;
    }

    .moho_Minds .moho_Minds-content div span {
        width: 65%;
    }

    .moho_Minds-img {
        overflow-x: auto;
    }

    .moho_Minds .moho_Minds-img {
        gap: 24px;
    }

    .moho_what-built-button {
        margin-bottom: 24px;
    }

    .moho_what-built {
        margin-top: 80px;
    }

    .moho_certified-excellence {
        margin-top: 80px;
    }

    .moho_minds-section {
        margin-top: 80px;
    }

    .moho_lik-post-grid {
        overflow-x: auto;
        gap: 24px;
    }

}

@media screen and (max-width: 768px) {

    /* Hide desktop menu and contact on mobile */
    .moho_desktop-menu,
    .moho_desktop-contact {
        display: none !important;
    }

    /* Show hamburger button */
    .moho_hamburger-btn {
        display: block;
    }

    /* Mobile menu styles */
    .moho_mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        background: #FFFBF9;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0 40px;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
            padding-top 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
            padding-bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .moho_mobile-menu.active {
        max-height: 100vh;
        padding-top: 80px;
        padding-bottom: 40px;
        overflow-y: auto;
    }

    /* Close button visible when menu is open */
    .moho_mobile-menu.active .moho_close-btn {
        display: block;
    }

    .moho_mobile-menu .moho_close-btn {
        animation: fadeIn 0.3s ease 0.2s both;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Mobile menu list */
    .moho_mobile-menu ul {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
        flex: 1;
        opacity: 0;
        visibility: hidden;
    }

    .moho_mobile-menu.active ul {
        display: flex;
        opacity: 1;
        visibility: visible;
        animation: slideUp 0.5s ease 0.1s both;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .moho_mobile-menu ul li {
        margin: 0;
        animation: slideUp 0.5s ease calc(0.1s + var(--delay, 0s)) both;
    }

    .moho_mobile-menu ul li:nth-child(1) {
        --delay: 0.05s;
    }

    .moho_mobile-menu ul li:nth-child(2) {
        --delay: 0.1s;
    }

    .moho_mobile-menu ul li:nth-child(3) {
        --delay: 0.15s;
    }

    .moho_mobile-menu ul li:nth-child(4) {
        --delay: 0.2s;
    }

    .moho_mobile-menu ul li:nth-child(5) {
        --delay: 0.25s;
    }

    .moho_mobile-menu ul li a {
        font-size: 24px;
        font-weight: 300;
        color: #070707;
        display: block;
        padding: 10px 0;
        transition: all 0.3s ease;
    }

    .moho_mobile-menu ul li a {
        text-align: center;
    }

    .moho_mobile-menu ul li a:hover {
        color: #C88937;
        transform: scale(1.05);
    }

    /* Mobile contact section - centered at bottom */
    .moho_mobile-menu .moho_btn-contact {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: auto;
        padding-top: 40px;
        opacity: 0;
        visibility: hidden;
    }

    .moho_mobile-menu.active .moho_btn-contact {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        animation: slideUp 0.5s ease 0.3s both;
    }

    .moho_mobile-menu .moho_btn-contact span {
        font-size: 18px;
        font-weight: 400;
        color: #070707;
    }

    .moho_mobile-menu .moho_btn-contact div {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .moho_mobile-menu .moho_btn-contact div a {
        font-size: 24px;
        color: #070707;
        margin: 0;
        transition: all 0.3s ease;
    }

    .moho_mobile-menu .moho_btn-contact div a:hover {
        color: #C88937;
        transform: scale(1.2);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Hamburger button animation */
    .moho_hamburger-btn {
        transition: transform 0.3s ease;
    }

    .moho_hamburger-btn:hover {
        transform: scale(1.1);
    }

    .moho_hamburger-btn.active {
        opacity: 0;
        pointer-events: none;
    }

    .moho_Engineer {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 32px;
        margin-top: 40px;
    }

    .moho_Engineer .moho_Engineer-img:before {
        right: -35px;
    }

    .moho_Engineer .moho_Engineer-img {
        position: relative;
        inset: unset;
        right: auto;
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .moho_Engineer .moho_Engineer-img img {
        width: 105%;
        height: auto;
        display: block;
    }

    .moho_Engineer .moho_Engineer-img:after {
        top: 275px;
    }

    .moho_Engineer .moho_Engineer-content {
        max-width: 100%;
        width: 100%;
        margin-top: 27px;
    }

    .moho_Engineer .moho_Engineer-content h1 {
        font-size: 36px;
    }

    .moho_achievements-office {
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .moho_info-achievements h2 {
        font-size: 36px;
    }

    .moho_office-image {
        left: -30px;
    }

    .moho_office-image::before {
        width: 436px;
        top: -24px;
    }

    .moho_services-header {
        flex-direction: column;
    }

    .moho_services-title {
        font-size: 36px;
    }

    .moho_services-title-section {
        width: 100%;
    }

    .moho_services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .moho_info-what-built {
        flex-direction: column-reverse;
    }

    .moho_what-built-title-desc h2 {
        font-size: 36px;
    }

    .moho_slider-what-built {
        width: 835px;
    }

    .moho_title-certified {
        flex-direction: column;
    }

    .moho_title-certified h2 {
        font-size: 36px;
    }

    .moho_Minds .moho_Minds-content div h2 {
        width: 38%;
        font-size: 36px;
    }

    .moho_Minds .moho_Minds-content div span {
        width: 62%;
    }

    .testimonial-container {
        flex-direction: column-reverse;
    }

    .testimonial-right {
        width: 100%;
    }

    .moho_faq {
        justify-content: center;
    }

    .faq-section {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .moho_border-faq {
        display: none;
    }

    .moho_subscription {
        flex-direction: column;
    }

    .moho_blog-items {
        flex-direction: column;
    }

    .moho_blog-item {
        width: 100%;
    }

    .moho_blog-sort {
        margin-top: 0;
        width: 100%;
    }

    .moho_blog-item-sort:first-child {
        border-top: 1px solid #EFCFA5;
        padding-top: 16px;
    }

    .moho_blog-item-sort {
        padding-bottom: 16px;
        padding-top: 16px;
    }

    .moho_blog-item-sort>.moho_blog-informations {
        margin-top: 24px;
    }

    .moho_blog-items {
        gap: 20px;
    }

    .moho_archive-blog {
        grid-template-columns: 1fr;
    }

    /* Footer mobile layout */
    .moho_footer {
        padding: 36px 24px 16px;
        height: auto;
    }

    .moho_footer>.d-flex {
        flex-direction: column;
        gap: 8px;
    }

    .moho_menu-footer {
        width: 100%;
        border-bottom: 1px solid #C88937;
        padding: 0;
    }

    .moho_footer.is-mobile .moho_menu-footer:last-child {
        border-bottom: none;
    }

    .moho_footer.is-mobile .moho_menu-footer h2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 16px 0;
        cursor: pointer;
        font-size: 18px;
    }

    .moho_footer.is-mobile .moho_menu-footer .footer-toggle-icon {
        display: inline-flex;
        align-items: center;
    }

    .moho_footer.is-mobile .moho_menu-footer.is-open .footer-toggle-icon i {
        transform: rotate(90deg);
    }

    .moho_footer.is-mobile .moho_menu-footer>ul,
    .moho_footer.is-mobile .moho_menu-footer>p {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    }

    .moho_footer.is-mobile .moho_footer-static h2 {
        cursor: default;
        justify-content: flex-start;
    }

    .moho_footer.is-mobile .moho_footer-static .footer-toggle-icon {
        display: none;
    }

    .moho_footer.is-mobile .moho_footer-static>ul,
    .moho_footer.is-mobile .moho_footer-static>p {
        max-height: none;
        opacity: 1;
        overflow: visible;
        margin-top: 4px;
        padding-bottom: 16px;
        transition: none;
    }

    .moho_footer.is-mobile .moho_menu-footer.is-open>ul,
    .moho_footer.is-mobile .moho_menu-footer.is-open>p {
        max-height: 500px;
        opacity: 1;
        margin-top: 4px;
    }

    .moho_footer.is-mobile .moho_menu-footer ul {
        margin-top: 0;
        padding-bottom: 0;
    }

    .moho_footer.is-mobile .moho_menu-footer.is-open>ul,
    .moho_footer.is-mobile .moho_menu-footer.is-open>p {
        padding-bottom: 16px;
    }

    .moho_footer.is-mobile .moho_menu-footer ul li {
        align-items: flex-start;
        font-size: 15px;
        line-height: 1.5;
    }

    .moho_footer.is-mobile .moho_social {
        display: flex;
        gap: 18px;
        padding-bottom: 20px;
    }

    .moho_footer.is-mobile .moho_social li {
        margin: 0;
    }

    .velora-footer-copy-right {
        margin-top: 8px;
        padding-top: 16px;
    }

    footer {
        padding: 0 !important;
        max-width: 100% !important;
        margin-bottom: 0;
    }

    .moho_slider-certified {
        margin-inline-end: -7%;
    }

    .moho_slider-Minds {
        margin-inline-end: -8%;
    }

    .moho_not-found {
        width: 100%;
        padding: 20px;
}

}

@media screen and (max-width: 425px) {

    .moho_Engineer .moho_Engineer-img:before {
        width: 200px;
        height: 170px;
    }

    .moho_Engineer .moho_Engineer-img:before {
        top: -130px;
        right: -11px;
    }

    .moho_Engineer .moho_Engineer-img:after {
        top: 105px;
    }

    .moho_Engineer .moho_Engineer-img img {
        width: 103%;
    }

    .moho_office-image {
        width: 332px;
    }

    .moho_office-image::before {
        width: 332px;
        top: -18px;
        left: 20px;
        height: 204px;
    }

    .moho_office-image img {
        width: 100%;
        height: 100%;
    }

    .moho_slider-what-built {
        width: 429px;
    }

    .moho_slider-Minds {
        margin-inline-end: -9%;
    }

    .moho_info-subscription {
        text-align: center;
    }

    .moho_service-image {
        height: auto;
    }

    .moho_Minds .moho_Minds-content div span {
        width: 34%;
    }

    .moho_Minds .moho_Minds-content div h2 {
        width: 65%;
    }

    .testimonial-right h2 {
        font-size: 36px;
    }

    .moho_blog-title h2 {
        font-size: 36px;
        width: 70%;
    }

    .moho_blog-img img {
        width: 400px;
        height: 201px !important;
        object-fit: cover;
    }

    .moho_blog-info {
        gap: 24px;
    }

    .moho_title-not h3 {
        font-size: 120px;
    }

    .moho_not-found h2 {
        font-size: 36px;
    }

    .moho_not-found p {
        font-size: 14px;
    }

    .moho_not-found {
        top: -62px;
    }

    .moho_slider-certified {
        margin-inline-end: -6%;
    }

    .accordion-item {
        width: 100%;
    }

}


@media screen and (max-width: 375px) {
    .moho_archive-blog {
        gap: 20px;
        margin-top: 24px;
    }

    .moho_Engineer .moho_Engineer-img:after {
        top: 70px;
    }

    .moho_office-image {
        left: -15px;
    }

    .moho_slider-what-built {
        width: 378px;
    }

    .moho_Minds .moho_Minds-content div span {
        width: 26%;
    }

    .moho_Minds .moho_Minds-content div h2 {
        width: 73%;
    }

}

@media screen and (max-width: 320px) {

    .moho_Engineer .moho_Engineer-img:after {
        top: 40px;
    }

    .moho_office-image {
        width: 260px;
    }

    .moho_office-image::before {
        width: 255px;
        height: 180px;
    }

    .moho_slider-what-built {
        width: 300px;
    }

}
/*................. End Responsive ................*/