body {
    font-family: "Lato", Arial, Tahoma, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

.font-poppins {
    font-family: "Poppins";
}
.fw-900 {
    font-weight: 900 !important;
}
.btn-gg {
    border-radius: 4px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    border: 0;
    font-weight: 600;
    display: inline-flex;
    padding: 11px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(-90deg, #009f9d, #9cfbad, #009f9d, #9cfbad);
    background-size: 300% 300%;
    -webkit-animation: Gradient 3s ease infinite;
    -moz-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
}
@-webkit-keyframes Gradient {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
@-moz-keyframes Gradient {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
@keyframes Gradient {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.btn-white {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    border: 0;
    border: 1px solid #dcdcdc;
    font-weight: 600;
    display: inline-flex;
    padding: 11px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.white-card {
    border-radius: 5px;
    background: #212529;
    color: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.owl-height-100 .owl-stage {
    display: flex;
}

.owl-height-100 .item {
    height: 100%;
}

.owl-height-100 .owl-stage .white-card {
    height: 95%;
}

.text-gg {
    background: var(
        --button,
        linear-gradient(90deg, #009f9d 0.04%, #9cfbad 90%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.header-green .navbar-toggler {
    border: 0;
}

.header-green .navbar-toggler-icon {
    background: transparent;
}

/*menu*/
.navbar-brand img {
    width: 130px;
}

.menu {
    background: #1e1e1e;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 2.3rem;
    padding-left: 2.3rem;
    line-height: 48px;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-collapse {
    width: 70%;
}

.navbar-expand-lg .navbar-nav .nav-item:hover .tray-menu {
    display: block;
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1) 20ms,
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 20ms;
    border-top: 1px solid #d4dbe0;
}

.header-white {
    border-bottom: 1px solid #f2f2f2;
}

.header-white .menu {
    background: #fff;
}

.header-white a.nav-link,
.header-white a.nav-link:hover,
.header-white .text-white {
    color: #000 !important;
}

.header-white .navbar-toggler-icon img {
    display: none;
}

.header-white .navbar-toggler {
    border-radius: 0;
    border: 0;
}

.nav-pills .active {
    font-weight: 800;
    text-decoration: underline;
}

.show-project {
    overflow: hidden;
    position: relative;
    margin-top: 0.4rem;
}

.category-holder {
    display: block;
    -webkit-transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
    -o-transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
    transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
}

.our-work a:hover .category-holder {
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    opacity: 0;
}

.show-project-link {
    position: absolute;
    font-weight: 600;
    opacity: 0;
    left: 0;
    -webkit-transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
    -o-transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
    transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
}

.our-work a:hover .show-project-link {
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    opacity: 1;
}

.our-work a:hover .show-project-link:after {
    content: "";
    width: 3rem;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    right: -0.5rem;
    top: 48%;
    -webkit-transform: translate(100%, 50%);
    -ms-transform: translate(100%, 50%);
    transform: translate(100%, 50%);
}

.bg-grey {
    background: #f2f2f2;
}

.tray-menu {
    /* left: 0; */
    /* right: 0; */
    height: auto;
    z-index: 1030;
    display: block;
    overflow: hidden;
    visibility: hidden;
    min-width: 12.5rem;
    transform: scaleY(0);
    transform-origin: top;
    color: var(--color-module-fg);
    position: absolute;
    background-color: #fff;
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1) 20ms,
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 20ms;
    box-shadow: 0 0.5rem 0.25rem -0.5rem rgb(117 117 117 / 25%);
    will-change: transform, height, visibility;
    color: #111;
    background-color: #f5f7f8;
}

.dropdown-meu {
    cursor: auto;
    margin-top: 2rem !important;
    top: unset;
}

.tray-menu {
    /* left: 0; */
    /* right: 0; */
    height: auto;
    z-index: 1030;
    display: block;
    overflow: hidden;
    visibility: hidden;
    min-width: 12.5rem;
    transform: scaleY(0);
    transform-origin: top;
    color: var(--color-module-fg);
    position: absolute;
    background-color: #fff;
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1) 20ms,
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 20ms;
    box-shadow: 0 0.5rem 0.25rem -0.5rem rgb(117 117 117 / 25%);
    will-change: transform, height, visibility;
    color: #111;
    background-color: #f5f7f8;
}

.visible-menu {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1) 20ms,
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 20ms;
    border-top: 1px solid #d4dbe0;
}

.tray-img {
    width: 25vw;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.tray-list {
    flex-wrap: nowrap !important;
    left: 0;
    flex: 2 3;
    display: flex;
    min-width: 25%;
    flex-wrap: wrap;
    padding: 2.5rem 0 0 3.3rem;
}

.tray-list ul {
    opacity: 1;
    padding: 0 4vw;
    margin-bottom: 1.5rem;
    margin-inline-end: -2px;
    padding-inline-start: 0;
    list-style: none;
}

/*.tray-list ul > li:first-of-type {font-size: 19px;font-weight: 600;}
*/
.tray-list ul > li {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.tray-list ul > li a {
    color: #212529;
    text-decoration: none;
}

.tray-list ul > li a:hover {
    text-decoration: underline;
}

.right-section img {
    width: 25px;
    height: 25px;
}

.border-green {
    border-color: green !important;
}

/*modal-popup*/
#bookAppointment .modal-content {
    background: #e7e7e7 url(../img/form-bg.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 1;
    /* height: 80vh; */
    background-size: contain;
}

#bookAppointment .btn-popup {
    background-color: #0b2718;
    color: #fff;
    border: 1px solid #0b2718;
}

#bookAppointment .btn-popup:hover {
    border: 1px solid #0b2718;
    color: #0b2718;
}

#bookAppointment .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bookAppointment .book-form {
    max-width: 767px;
    margin-top: 15px;
}

#bookAppointment .book-form button.close {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100px;
    top: -12%;
    height: 100px;
    display: flex;
    background: #e7e7e7;
    border: 1px solid #e7e7e7;
    border-radius: 50%;
}

#bookAppointment .book-form button.close span.close-icon:before {
    background: #000;
    right: 29px;
    top: 40px;
    width: 40px;
}

#bookAppointment .close-icon:before {
    background: #fff;
    width: 23px;
    transform: rotate(41deg);
    right: 0;
}

#bookAppointment .modal-dialog.modal-xl {
    max-width: 100%;
    display: flex;
    align-items: end;
    margin-bottom: 0;
    margin-top: 0;
    height: 100%;
}

#bookAppointment {
    bottom: -100vh;
    transition: 1s, _ 1s;
    top: inherit;
}

#bookAppointment.show {
    bottom: 0;
}

#bookAppointment .book-form button.close span.close-icon:after,
#bookAppointment .book-form button.close span.close-icon:before {
    background: #000;
    right: 29px;
    top: 48px;
    width: 40px;
}

#bookAppointment .close-icon:after {
    background: #fff;
    width: 23px;
    transform: rotate(319deg);
    right: 0;
}

#bookAppointment .close-icon:after,
.close-icon:before {
    content: "";
    top: 12px;
    position: absolute;
    height: 1px;
}

#bookAppointment .user .user-hover input,
#bookAppointment .user .user-hover select {
    border-radius: 5px;
    height: 40px;
    width: 100%;
}

#bookAppointment .user-hover .row {
    margin-bottom: 30px;
}

#bookAppointment .form-control {
    border-radius: 5px;
    background: 0 0;
    border: 1px solid #8f8f8f;
}

.cursor {
    cursor: pointer;
}

.sec-1 {
    background-image: url(../img/main-banner.jpg);
    /* padding: 80px 0; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    background-position: center;
}
.astronaut-bg {
    background-image: url(../img/astronaut-bg.webp);
    height: 628px !important;
    padding: 0;
}
.astronaut-bg:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.astronaut-animation {
    animation: MoveUpDown 7.3s linear infinite;
    position: relative;
}
@keyframes MoveUpDown {
    0%,
    100% {
        bottom: 0;
    }
    50% {
        bottom: 50px;
    }
}
.sec-1 .text-left {
    max-width: 595px;
    position: absolute;
    left: 7%;
    top: 17%;
}

.sec-1 h1,
.sec-1 h2,
.banner1 h1 {
    color: #f8f8f8;
    font-size: 60px;
}

.sec-1 p {
    font-size: 20px;
    margin-top: 30px;
    font-weight: 800;
}

.cloud-bg {
    color: #fff;
    background: #020403;
    padding: 70px 0;
    position: relative;
}

.text-slider {
    color: #ffda67;
    font-size: 70px;
    font-weight: 800;
    font-style: italic;
    line-height: normal;
    font-family: "Pacifico", cursive;
}

.text-slider span {
    font-family: "Pacifico", cursive;
}

.colud-txt {
    position: relative;
    color: #fff;
}

.colud-txt span {
    z-index: 1;
    position: relative;
    font-size: 40px;
    font-weight: 800;
    line-height: 56px;
}

.text-box .title {
    margin-bottom: 10px;
    font-weight: 400;
    color: #ffda66;
    font-size: 18px;
}

.sec-2 {
    padding-bottom: 60px;
    background: #020403;
    padding-top: 30px;
}

.carousel1 {
    padding-right: 0;
}

.sec-1 .text-left {
    max-width: 595px;
    position: absolute;
    left: 7%;
    top: 17%;
}

.banner-slider .owl-stage,
.layout-slider .owl-stage,
.blog-slider .owl-stage,
.blog-slider1 .owl-stage,
.service-slider .owl-stage {
    padding-left: 0px !important;
}

.header-fixed nav.menu {
    background: transparent !important;
    position: fixed;
    width: 100%;
}

.header-fixed .menu {
    background: transparent !important;
}

.header-fixed:before {
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(
        180deg,
        rgb(0 0 0) 0%,
        rgba(0, 0, 0, 0) 92%
    ) !important;
    width: 100%;
    left: 0;
    top: 0px;
    position: absolute;
    height: 74px;
}

.header-fixed button.navbar-toggler.menuBtn {
    border: 0;
}

.text-orange {
    color: #f90;
}

.header-fixed span.navbar-toggler-icon {
    background: transparent;
}

.header-fixed .menu .container-fluid {
    position: relative;
}

.header-fixed {
    position: fixed;
}

.studio-slider .owl-dots span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
}

.studio-slider .owl-dots {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.studio-slider .owl-dots .owl-dot {
    margin-right: 8px;
}

.studio-slider .owl-dots .owl-dot.active span {
    background: #dab33f;
}

.studio-project {
    position: relative;
    overflow: hidden;
    top: 0;
    display: block;
    width: 100%;
}

.studio-project:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(
        left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.studio-project:hover:before {
    -webkit-animation: shine_hover 0.75s;
    animation: shine_hover 0.75s;
}

@-webkit-keyframes shine_hover {
    100% {
        left: 125%;
    }
}

@keyframes shine_hover {
    100% {
        left: 125%;
    }
}

.studio-project img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    width: 100%;
    height: auto;
    transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.studio-project:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.studio-project .project-name {
    position: absolute;
    bottom: 20px;
    left: 15px;
    color: #fff;
    z-index: 1;
}

.studio-project:hover .project-name .las {
    opacity: 1;
}

.studio-project .project-name .las {
    opacity: 0;
    transition: 0.3s;
}

.studio-project:after {
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);
    width: 100%;
    left: 0;
    bottom: 0px;
    position: absolute;
    height: 74px;
}

.panel-group .panel-heading a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    position: relative;
}

.panel-group .panel-heading a:after {
    content: "-";
    float: right;
}

.panel-group .panel-heading a.collapsed:after {
    content: "+";
}

.video-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.video-content {
    position: absolute;
}

.logos {
    display: flex;
    flex-wrap: wrap;
}

.logos .logo-img {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: scale(0.7) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-item {
    border: 0;
}

.accordion-button:not(.collapsed) {
    background: transparent;
}

button.accordion-button {
    padding: 15px 0;
    border-bottom: 1px solid #dddddd !important;
    font-size: 1.5rem;
    font-weight: bold;
    outline: none !important;
    box-shadow: none !important;
}

.card-body {
    padding: 25px 0;
}

span.cursor,
span.cursor1 {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
}

span.cursor.typing,
span.cursor1.typing1 {
    animation: none;
}
.m-video:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.bg-gg {
    background: var(
        --button,
        linear-gradient(90deg, #009f9d 0.04%, #9cfbad 99.92%)
    );
}

.arrow-center .owl-nav {
    transition: 0.3s;
}

.arrow-center:hover .owl-nav {
    opacity: 1;
}

.owl-carousel.owl-theme.arrow-center .owl-nav button {
    background: #fff !important;
    padding: 6px 8px !important;
    transition: 0.3s;
    box-shadow: 0px 0px 7px #9d9d9d;
}

.owl-height-100 .owl-stage .white-card .text-sm {
    margin-bottom: 10px;
}

.owl-carousel.owl-theme.arrow-center .owl-nav button:hover {
    background: #000000 !important;
}

.arrow-center .owl-nav button.owl-prev {
    left: 0;
    top: 40%;
}

.arrow-center .owl-nav button.owl-next {
    right: 0;
    top: 40%;
}

.mt-nd-5 {
    margin-top: -5rem;
}

@keyframes blink {
    0% {
        background-color: #ccc;
    }

    49% {
        background-color: #ccc;
    }

    50% {
        background-color: transparent;
    }

    99% {
        background-color: transparent;
    }

    100% {
        background-color: #ccc;
    }
}

.bg-space-4 {
    background: url(../img/space-4-bg.webp) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.bg-space-4 img.d-md-block.d-none.img-fluid {
    max-width: 70%;
}

.bg-space-4 .astro-space-4 {
    width: 37%;
    position: absolute;
    right: -3%;
    animation: MoveUpDown 7.3s linear infinite;
}
.jbs-content h1 {
    font-size: 30px;
}
.jbs-content h2 {
    font-size: 25px;
}
.jbs-content h3 {
    font-size: 20px;
}

@media (max-width: 1400px) {
    .sec-1 {
        height: 750px;
    }
}

@media (max-width: 1366px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media (max-width: 992px) {
    .navbar-toggler {
        padding-left: 0;
    }

    .navbar-nav {
        position: fixed;
        width: 80%;
        background: #f8f9fa;
        left: -800px;
        top: -95px;
        height: 100%;
        transition: 0.5s ease;
        z-index: 1001;
        justify-content: flex-start;
        padding-top: 60px;
    }

    .left0 {
        top: 0px;
        left: -20px;
        height: 100vh;
        overflow-y: scroll;
        justify-content: flex-start;
        position: inherit;
        width: 90%;
        background: #f8f9fa;
    }

    .closeBtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: #6c6c6c;
        text-decoration: none;
    }

    .navbar-nav .nav-link,
    .navbar-nav .nav-link:hover {
        color: #000;
    }

    .menuPhone {
        position: absolute;
        left: -900px;
        height: 900px;
    }

    .del9 {
        position: fixed;
        left: 0;
        height: 0;
    }

    .overlay {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        position: absolute;
        top: 0;
        overflow: hidden;
        display: none;
    }

    .contact-number {
        font-size: 14px;
    }

    .right-section {
        margin-right: 0rem;
    }

    .right-section img {
        width: 15px;
        height: 15px;
    }

    .navbar-brand img {
        width: 100px;
        margin: 5px 0;
    }

    .navbar-toggler {
        padding-left: 0;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 2.5rem;
        line-height: 30px;
        padding-right: 1.5rem;
        font-size: 15px;
        text-align: left;
        margin: 0 !important;
    }

    .colud-txt span {
        font-size: 25px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
}

/*menu closed*/
.text-sm {
    font-size: 0.9rem;
}

.btn-primary {
    background: #e86201;
    border: #e86201;
}

.btn-primary:hover {
    background: #c75300;
    border: #c75300;
}

.btn-secondary {
    background: #fedb71;
    border: #fedb71;
}

.btn-secondary:hover {
    background: #f1d06b;
    border: #f1d06b;
}

.bg-1 {
    background-color: #eee9e6;
}

.btn-pink,
.btn-pink:hover,
.btn-pink:focus {
    background: #f7aaaa;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.bg-2 {
    background-color: #f6f6f6;
}

.bg-3 {
    background: url(../img/form-bg1.jpg) no-repeat center;
    background-size: cover;
    background-position: bottom;
    padding: 80px 0 283px;
}
.get-in-touch h4 {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 2.5rem;
}
.get-in-touch .form-group {
    margin-bottom: 20px;
}

.get-in-touch .form-control {
    width: 100%;
    border: 1px solid #cbcdd0;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 10px;
}
.get-in-touch .form-control::placeholder {
    color: #dbd5d5;
}

input.black-btn {
    border: 0px solid;
    border-radius: 10px;
    padding: 10px 30px;
    margin-top: 10px;
    background: var(--theme);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}
.whatsapp a {
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
    text-decoration: none;
    font-family: var(--gilroy-bold);
}

.whatsapp a img {
    width: 40px;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.whatsapp {
    margin-bottom: 20px;
    margin-top: 23px;
    text-align: center;
}
input.black-btn {
    border: 0px solid;
    border-radius: 10px;
    padding: 10px 30px;
    margin-top: 10px;
    background: #e86201;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}
.font-style-2 {
    font-family: "Montserrat", sans-serif;
}

.font-style-3 {
    font-family: "Montserrat", sans-serif;
}

.list-none {
    list-style: none;
}

.logo img {
    height: 60px;
}

.ls-1 {
    letter-spacing: 1px;
}

.fs-17 {
    font-size: 17px;
}

.icon_box {
    position: relative;
    padding: 10px 0;
}

.icon_box .image_wrapper {
    position: relative;
    padding: 10px 0;
}

.icon_box:hover {
    box-shadow: 0px 15px 30px #e6e6e6;
    background-color: #fff;
    transition: all 0.3s ease-in;
}

.icon_box .desc_wrapper h3:before {
    content: "";
    display: block;
    width: 0;
    margin: 0 auto;
    height: 2px;
    top: -15px;
    position: relative;
    background-color: #ccc;
}

.icon_box .desc_wrapper h3:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.icon_box:hover .desc_wrapper h3:before {
    width: 100px;
}

.icon_box .desc_wrapper h3:before {
    background-color: #f7aaaa;
}

.testimonail blockquote {
    font-size: 18px;
}

.testimonail blockquote h3 {
    font-weight: 400;
    letter-spacing: 1px;
}

.owl-arrow .owl-nav {
    position: absolute;
    top: 40%;
    padding: 0 15px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.owl-arrow .owl-nav button {
    height: 40px;
    width: 40px;
    background: rgba(0, 0, 0, 0.05) !important;
    color: #000 !important;
    border-radius: 50% !important;
}

.owl-arrow-nx-3 .owl-nav {
    padding: 0;
}

.owl-arrow-nx-3 .owl-nav button.owl-prev {
    margin-left: -26px;
}

.owl-arrow-nx-3 .owl-nav button.owl-next {
    margin-right: -26px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #f7aaaa;
}

.footer-row h4 {
    color: #000;
    margin-bottom: 24px;
    font-size: 1rem;
    font-weight: 800;
    position: relative;
}

.footer-row ul {
    padding-left: 0;
}

.footer-row ul li {
    padding: 5px 0;
}

.footer-row ul li a {
    color: #000;
    font-size: 15px;
    line-height: 28px;
    text-decoration: none;
}

.footer-row ul li::marker {
    content: none;
}

.mt-180 {
    margin-top: 180px;
}

.filter-gray {
    filter: grayscale(1);
    width: 15%;
}

.social-icon {
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    top: 15px;
    left: 30px;
}

.social-icon li {
    float: left;
    margin-right: 40px;
}

.social-icon a {
    color: #000;
    text-decoration: none;
}

.social-icon a i {
    font-size: 40px;
}

.footer-row h4.collapsed:before,
.footer-row h4.collapse:before {
    content: "";
    position: absolute;
    right: 13px;
    top: 18px;
    display: block;
    width: 11px;
    height: 1px;
    background: #000000;
    z-index: 99;
}

.footer-row h4.collapsed:after {
    content: "";
    position: absolute;
    top: 13px;
    right: 18px;
    display: block;
    width: 1px;
    height: 11px;
    background: #000;
    z-index: 99;
}

footer a,
footer {
    text-decoration: none;
    color: #000;
}

#Footer h4 {
    color: #000;
    font-weight: 800;
}

ul.footer_links {
    padding-left: 0;
    list-style: none;
    font-size: 13px;
}

ul.footer_links li {
    margin-bottom: 10px;
}

ul.footer_links li .las {
    margin-right: 5px;
}

.text-grey {
    color: #9da1ac;
}

.modal.right .modal-dialog,
.modal.left .modal-dialog {
    position: fixed;
    margin: auto;
    width: 320px;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.modal.search-modal .modal-dialog {
    width: 400px;
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: 0;
    background: #fff;
}

.modal.right.fade .modal-dialog {
    right: -400px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.left.fade .modal-dialog {
    left: -400px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
    right: 0;
}

.modal.left.fade.show .modal-dialog {
    left: 0;
}

#button {
    display: flex;
    background-color: #000;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 72px;
    right: 8px;
    font-size: 16px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.top-header {
    background: #eee9e6 url(../img/subheader-img.png);
    background-repeat: no-repeat;
    background-position: center top;
}

.bg-yellow {
    background: #fddb70;
    margin-top: 350px;
}

.row.tech-top {
    margin-top: -308px;
}

.fancy-heading-divider {
    background: url(../img/fancy_heading_hr.png) center no-repeat;
    width: 100%;
    height: 5px;
    display: inline-block;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-bottom: 15px;
}

.bounceimg img {
    -webkit-animation: animation-jump 2s ease-in-out infinite;
    animation: animation-jump 2s ease-in-out infinite;
    position: relative;
}

@keyframes animation-jump {
    0% {
        top: 6px;
    }

    50% {
        top: -3px;
    }

    100% {
        top: 6px;
    }
}

.top-bottom-shadow {
    background: #f3f3f3;
    box-shadow: 0px 0px 53px 6px rgba(0, 0, 0, 0.12);
}

.cta {
    background: fixed url(../img/cta-bg.jpg);
    padding: 50px 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-yellow-green {
    padding: 50px;
    background: rgb(0 128 94);
    background: linear-gradient(0deg, #1f431d 0%, #23363c 100%);
    position: relative;
}

.bg-yellow-green h3 {
    color: #fff;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 40px;
    font-size: 35px;
    text-align: center;
    position: relative;
}

.bg-yellow-green .heading {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
}

.bg-yellow-green .heading span {
    color: #fedb71;
}

.sub-text {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

.heading-1 {
    margin-top: 30px;
    color: #000;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 30px;
    padding-bottom: 9px;
    position: relative;
}

.heading-1.white {
    color: #fff;
}

.heading-1.text-center:before,
.heading-1.text-center:after {
    margin: 0 auto;
    right: 0;
}

.heading-1.text-center:before {
    left: -31px;
}

.heading-1:before {
    width: 7px;
    height: 7px;
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    bottom: -2px;
    border-radius: 50%;
}

.heading-1.white:before,
.heading-1.white:after {
    background: #fff;
}

.heading-1:after {
    width: 32px;
    height: 2px;
    background: #000;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.heading-1.white:before,
.heading-1.white:after {
    background: #fff;
}

.icon-box-2 {
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.icon-box-2 li {
    list-style: none;
    margin-bottom: 20px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    font-weight: 500;
}

.icon-box-2 li span {
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    padding: 6px;
    border-radius: 10px 0px;
    margin-right: 11px;
    background: #20483f;
    display: inline-block;
}

.icon-box-2 li span img {
    width: 100%;
}

ul.icon-box-1 {
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin: 50px 0 30px;
}

ul.icon-box-1 li {
    list-style: none;
    margin-bottom: 20px;
    font-size: 13px;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    position: relative;
    max-width: 20%;
    font-weight: 500;
    line-height: 18px;
    padding-right: 20px;
    align-items: center;
    display: flex;
}

ul.icon-box-1 li img {
    position: relative;
    width: 45px;
    float: left;
    margin-right: 6px;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.text-green {
    color: #00805e;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.contact-info a {
    font-weight: 600;
    display: flex;
    position: relative;
    padding-right: 17px;
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
    font-size: 18px;
    background: #397f63;
    border-radius: 15px;
    align-items: center;
    text-align: left;
    transition: 0.3s;
    overflow: hidden;
}

.contact-info a img {
    float: left;
    margin-right: 15px;
    background: #2b654f;
    padding: 10px;
    width: 55px;
    transition: 0.3s;
}

.content h3 {
    position: absolute;
    z-index: 1;
    /* margin: auto; */
    left: 50%;
    transform: translateX(-50%);
    top: 14%;
    /* width: 100%; */
    color: #000;
    line-height: 42px;
    font-size: 27px;
    text-align: center;
    font-weight: 600;
    text-align: center;
}

.qfcta span {
    display: block;
    font-size: 35px;
    font-weight: 600;
    color: #747474;
}

.qfcta span a {
    color: #2e2e2e;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 52px;
    vertical-align: middle;
}

.qury {
    background: #fff;
    box-shadow: 0px 10px 31px 0px #0000001f;
    padding: 35px 65px;
    outline: 5px solid #00000014;
    outline-offset: -18px;
}

.form h5 {
    color: #2e2e2e;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 0;
    line-height: 46px;
    margin-bottom: 15px;
    text-align: center;
}

.form p {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    font-size: 16px;
}

.qury input {
    border-radius: 5px;
}

.form {
    background: #f3f3f3;
    padding: 40px 0;
    box-shadow: 0px 0px 53px 6px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.modal-header .btn-close {
    margin-top: 0;
    position: absolute;
    right: 13px;
    background: #fb4040;
    opacity: 1;
    color: #fff;
    font-weight: 400;
    padding: 0;
    height: 30px;
    width: 30px;
    top: 4px;
    box-shadow: 1px 1px 2px #00000082;
}

.accordion-design-1 h2 button {
    font-size: 20px;
    font-weight: 500;
}

.accordion-design-1 .collapsed .la-minus {
    display: none;
}

.accordion-design-1 .collapsed .la-plus {
    display: block;
}

.accordion-design-1 .la-plus {
    display: none;
}

.accordion-design-1 .las {
    margin-right: 10px;
}

.accordion-design-1 .accordion-body {
    padding-left: 49px;
}

.accordion-design-1 h2 button:after {
    display: none;
}

.desc {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    opacity: 0;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.desc_wrap {
    width: 100%;
    padding: 15px 20px;
    font-size: 17px;
    line-height: 22px;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.zoom_box:hover .desc {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.zoom_box:hover .photo img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.zoom_box {
    position: relative;
    line-height: 0;
    overflow: hidden;
}

.zoom_box .photo img,
.style-simple .zoom_box .desc {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.desc .desc_txt {
    background-color: #fedc75 !important;
}

.zoom_box .desc .desc_txt {
    width: 100%;
    padding: 15px 20px;
    font-size: 17px;
    line-height: 22px;
    color: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.zoom_box:hover .desc {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.zoom_box .photo img,
.zoom_box .desc {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-carousel .next-slide,
.review-slider .next-slide {
    background: url(../img/right-arrow.png) no-repeat;
    height: 40px;
    width: 82px;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .prev-slide,
.review-slider .prev-slide,
.banner-slider .prev-slide {
    background: url(../img/right-arrow.png) no-repeat;
    height: 40px;
    width: 82px;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.collarge-slider.owl-carousel .owl-nav .owl-prev,
.banner-slider .owl-nav .owl-prev {
    transform: rotate(180deg);
    top: -2px;
    position: relative;
    outline: none;
    margin-right: 10px;
}

.banner-slider .owl-nav {
    position: absolute;
    top: -60px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    right: 40px;
}

.del1 a picture {
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.del1 a {
    text-decoration: none;
}

.del1 a p {
    text-align: center;
    color: #fff;
    font-size: 23px;
    margin: 20px 0;
    font-style: normal;
    letter-spacing: 1.2px;
}

.bg-2 {
    padding: 50px 0;
    background: url(../img/bg-2.jpg) no-repeat;
    background-size: cover;
}
.bg-2-1 {
    padding: 50px 0;
    background: url(../img/bg-2-1.png) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.color-2 {
    color: #ffda67;
    font-weight: bold;
    font-family: var(--bs-font-sans-serif);
}

.white-text {
    color: #fff;
}

.collarge-box-l,
.collarge-box-p {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.collarge-box-l:hover .p-text,
.collarge-box-p:hover .p-text {
    opacity: 1;
}

.collarge-box-l:before,
.collarge-box-p::before {
    content: "";
    background: rgb(64 64 64 / 15%);
    position: absolute;
    width: 100%;
    height: 100%;
}

.collarge-box-p picture {
    display: inline-block;
    width: 100%;
}

.collarge-slider img {
    border-radius: 10px;
}

.caption-txt {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    color: #fff;
    margin-top: 10px;
}

.caption-txt h3 {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 20px;
}

.p-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    font-size: 14px;
    line-height: 25px;
    transition: 0.3s;
}

.collarge-box-l .p-text,
.collarge-box-p .p-text {
    opacity: 0;
}

.p-text a {
    display: block;
    color: #d34000;
    background: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    text-decoration: none;
    max-width: 132px;
    margin-top: 10px;
}

.collarge-slider .owl-nav {
    position: absolute;
    top: -104px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    right: 40px;
}

.review-text p {
    font-size: 15px;
    line-height: 27px;
}

.review-slider .next-slide {
    background: url(../img/right-arrow-b.png) no-repeat;
    background-size: 100%;
    width: 40px;
    height: 21px;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
}

.review-slider .owl-nav {
    position: absolute;
    width: 100%;
    display: flex !important;
    justify-content: flex-end;
    right: 40px;
    bottom: 30px;
}

.merchants-list img {
    max-width: 484px;
    width: 100%;
    margin: 0 auto;
}

.merchants-list {
    height: 489px;
    overflow: hidden;
    margin-bottom: -40px;
    margin-top: -149px;
    position: relative;
    text-align: right;
}

.merchants-list.ml-s {
    margin-top: 0;
    height: 224px;
}

.merchants-list.ml-s:before,
.merchants-list.ml-s:after {
    display: none;
}

.merchants-list .wrapper {
    -webkit-animation: 30s merchantlist linear infinite;
    animation: 30s merchantlist linear infinite;
}

@-webkit-keyframes merchantlist {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@keyframes merchantlist {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.merchants-list::before,
.merchants-list::after {
    content: "";
    left: 0;
    right: 0;
    bottom: -3px;
    height: 100px;
    position: absolute;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    background: -webkit-linear-gradient(0, #eeeeee, rgba(244, 248, 255, 0));
    background: linear-gradient(0, #eeeeee, rgba(244, 248, 255, 0));
}

.merchants-list::before {
    z-index: 1;
}

.merchants-list::after {
    top: 0;
    background: -webkit-linear-gradient(top, #eeeeee, rgba(244, 248, 255, 0));
    background: linear-gradient(180deg, #eeeeee, rgba(244, 248, 255, 0));
}

.merchants-list.dark::before,
.merchants-list.dark::after {
    background: linear-gradient(0, #000000, rgba(244, 248, 255, 0));
}
.merchants-list.dark::after {
    background: linear-gradient(0, rgba(244, 248, 255, 0), #000000);
}
.sec-3 {
    background-color: #eeeeee;
}

.why-us .img {
    max-width: 100px;
}

.why-us .img svg {
    width: 50px;
    height: 100%;
    fill: #fff;
}

.sec-10 {
    background-color: rgb(1 0 42);
    color: rgb(248, 248, 248);
    width: 100vw;
    position: relative;
    padding: 140px 0px 140px;
    background-image: url(../img/MMBO_HOME-4.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-position: center;
}

.fixed {
    position: absolute;
    right: 10%;
    top: 20%;
}

.fixed img {
    width: 100%;
    max-width: 400px;
}

.fixed {
    animation: scale 20s linear infinite;
}

@keyframes scale {
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.why-us h5 {
    margin: 20px 0;
    font-size: 1rem;
    color: #ffda58 !important;
}

.logos img {
    filter: grayscale(1);
}

.logos img:hover {
    filter: none;
}

.case-study-bg {
    background: url(../img/case-study-bg.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 0px 77px;
}

.light-green {
    background: #c8de3d;
}

.bg-dark-grey {
    background: #373333;
}

.text-grey {
    color: #737373 !important;
}

.bg-dark-green {
    background: #02413a;
}

.count-img {
    margin-top: -60px;
}

.amount-count-box {
    position: absolute;
    left: -0px;
    top: 50px;
}

.amount-count {
    position: absolute;
    left: 10px;
    top: 10px;
}

.amount-count #counter-box {
    font-size: 20px;
    font-weight: 700;
}

.new-order {
    position: absolute;
    right: 30px;
    bottom: 15%;
    padding: 10px 20px;
}

.bg-black {
    background: #212529;
}

.card-thumb img {
    border-radius: 10px;
}

.card-thumb .box-shadow {
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #000 100%);
    position: absolute;
    bottom: 0;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.bg-marketing {
    background: url(../img/bg-marketing.png) no-repeat;
    background-size: cover;
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.m-video {
    min-height: 375px;
}
.process-bg {
    background: #070c10;
}

.space-3 {
    background: url(../img/space3-home.webp) no-repeat;
    background-size: cover;
}

@media (min-width: 768px) {
    .type-text.fs-6 {
        font-size: 1.5rem !important;
    }
}
@media (min-width: 768px) {
    .mt-md-n5 {
        margin-top: -3rem !important;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1220px;
    }
}

@media (max-width: 767px) {
    .bg-space-4 .astro-space-4 {
        width: 41%;
        position: absolute;
        right: -3%;
        animation: MoveUpDown 7.3s linear infinite;
    }

    .bg-space-4 img.d-md-none.d-block {
        width: 100%;
    }
    .footer-row ul li {
        padding: 5px 0 0;
    }
    .footer-row ul li a {
        font-size: 14px;
        line-height: 18px;
    }
    .footer-row h4 {
        margin-bottom: 4px;
        position: relative;
    }
    .footer-row h4:before {
        content: "";
        position: absolute;
        right: 13px;
        top: 18px;
        display: block;
        width: 11px;
        height: 1px;
        background: #000000;
        z-index: 99;
    }
    .footer-row h4:after {
        content: "";
        position: absolute;
        top: 13px;
        right: 18px;
        display: block;
        width: 1px;
        height: 11px;
        background: #000;
        z-index: 99;
    }
    .footer-row {
        margin-bottom: 25px;
    }
    .social-icon a i {
        font-size: 20px;
    }
    .social-icon {
        display: block;
        margin-top: 20px;
        left: 0;
        top: 0;
    }
    .social-icon li {
        margin-right: 20px;
    }
    .owl-arrow .owl-nav {
        left: 0;
    }

    .top-header {
        background: #eee9e6 url(../img/mobilkle.png);
        background-repeat: no-repeat;
        background-position: center top;
        color: #fff;
    }

    .bg-yellow-green h3 {
        font-size: 22px;
        font-weight: 800;
        letter-spacing: 1px;
        float: left;
    }

    .bg-yellow-green .heading {
        font-size: 21px;
    }

    .sub-text {
        font-size: 14px;
    }

    .icon-box-2 li,
    ul.icon-box-1 li {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .icon-box-2 li span {
        width: 40px;
        height: 40px;
        border: 1px solid #fff;
        padding: 6px;
        border-radius: 10px 0px;
        margin-right: 7px;
    }

    .bg-yellow-green {
        padding: 25px;
    }

    ul.icon-box-1 li {
        font-size: 14px;
    }

    .contact-info a {
        float: left;
        font-size: 14px;
        border-right: 0;
        margin: 10px;
    }

    .qfcta span {
        display: block;
        font-size: 22px;
    }

    .qfcta span a {
        font-size: 28px;
    }

    .qury {
        padding: 35px 40px;
    }

    .f-review-slider {
        text-align: center;
    }

    .sec-1 h1,
    .sec-1 h2,
    .banner1 h1 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 0px;
    }

    .sec-1 .text-left {
        margin-bottom: 220px;
        left: 0px;
        top: 6%;
    }
    .astronaut-bg .text-left {
        top: 0;
        margin-bottom: 0;
    }

    .sec-1,
    .banner1 {
        height: 482px;
    }

    .text-slider {
        font-size: 42px;
    }

    .owl-carousel .prev-slide,
    .review-slider .prev-slide,
    .banner-slider .prev-slide,
    .owl-carousel .next-slide,
    .review-slider .next-slide {
        background-size: 100%;
        background-position: right;
        position: relative;
        width: 35px;
    }

    .ml-15 {
        margin-left: 15px;
    }

    .del1 a p,
    .success1 h6 {
        font-size: 17px;
    }

    .merchants-list {
        margin-top: 30px;
        height: 300px;
    }

    .fixed {
        position: absolute;
        right: 10%;
        top: 194px;
        z-index: 1;
    }

    .fixed img {
        width: 100%;
        max-width: 120px;
    }

    .sec-10 {
        padding: 39px 20px 12px;
        background-position: right center;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }

    .sec-9 .col-3 {
        width: 33%;
    }

    .logos {
        margin-bottom: 30px;
    }

    #bookAppointment .modal-content {
        background: #e7e7e7;
    }

    .study-logo {
        max-width: 250px;
    }

    .process-icons img {
        max-width: 68px;
    }

    button.accordion-button {
        font-size: 1rem;
    }

    .logos .logo-img {
        width: 33.3333%;
        padding: 20px 0;
    }

    .logos .logo-img img {
        max-width: 100px;
        max-height: 30px;
    }

    .btn-gg,
    .btn-white {
        width: 100%;
        padding: 10px;
    }

    .fs-sm-5.display-6 {
        font-size: 1.25rem !important;
    }

    .bg-marketing {
        background: #212529;
    }
    .menu-button {
        display: flex;
        justify-content: space-around;
        position: fixed;
        bottom: 0;
        z-index: 111;
        width: 100%;
        padding: 13px;
        align-items: center;
        background: #000000;
    }

    .menu-button a:first-child,
    .menu-button a:nth-child(2) {
        font-size: 21px;
        padding: 2px 10px;
        border-radius: 4px;
        border: 1px solid #000;
        background: #fff;
        color: #000;
    }
    .menu-button a:nth-child(3) {
        border: 1px solid #333;
        outline: 0;
        padding: 5px 13px;
        text-align: center;
        border-radius: 4px;
        background: #4caf50;
        display: flex;
        font-size: 15px;
        gap: 8px;
        align-items: center;
        color: #fff;
        text-decoration: none;
    }
    .menu-button a:nth-child(3) .fa {
        font-size: 26px;
    }

    .menu-button a:nth-child(2) {
        border: 1px solid #333;
        outline: 0;
        padding: 7px 20px;
        text-align: center;
        border-radius: 4px;
        background: #fff;
        font-size: 15px;
        text-decoration: none;
        color: #000;
    }
    .astronaut-animation {
        animation: MoveUpDown 7.3s linear infinite;
        position: relative;
        max-width: 175px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .astronaut-bg {
        height: 548px !important;
    }
    .spacesultter-bg-mobile {
        background: url(../img/spacesultter-2.png) no-repeat center;
        background-size: cover;
        position: relative;
    }
    .spacesultter-bg-mobile:before {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        content: "";
    }
    .z-1 {
        z-index: 2 !important;
        position: relative;
    }
    .del1 a p {
        font-size: 23px;
    }
}
@media (max-width: 340px) {
    .menu-button {
        zoom: 80%;
    }
}
.error {
    color: red;
}
