@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&amp;display=swap");

body {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #041c5c;
}

.section-ganimate{
    background: radial-gradient(45deg, #d2001a, #7462ff, #23d5ab);
    background-size: 300% 300%;
    animation: color 12s ease-in-out infinite;
}
@keyframes color{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 0 50%;
    }
    10%{
        background-position: 0 50%;
    }
}


.section-glass{
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
}
.footer-three__info-text{
    text-transform: lowercase !important;
}

::-moz-selection { /* Code for Firefox */
  background: #fa9a05;
  color: white;
}

::selection {
  background: #fa9a05;
  color: white;
}

.about-two{
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url(../images/sec-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; /* Center the background image */
    background-attachment: fixed;
}

.service-one{
    padding-bottom: 150px;
    background-image: url(../images/sec-bg-rtl.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; /* Center the background image */
}

.portfolio-two{
    padding-bottom: 150px;
    background-image: url(../images/sec-bg-blur.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; /* Center the background image */
}

.subscribe-one-alt{
    background-color: var(--digihub-special, #3c91e6ff);
}

.page-header{
    padding: 130px 0 0px;
}

.color-change-section {
    transition: 2s ease;
}

.main-slider-three {
    padding-top: 180px;
    padding-bottom: 130px;
}

.main-slider-three__content {
    margin-top: 0px;
}

.form-wrap {
    background-color: #fff;
    padding: 28px 28px;
    margin-top: 32px;
    border-radius: 9px;
}

.form-wrap .comment-form__form-input {
    border: 0;
    outline: 0;
    padding: 20px;
    height: 48px;
    width: 100%;
    background-color: var(--digihub-white3, #F6F6F6);
    border: 1px solid transparent;
    transition: border 0.3s ease-in-out;
}

.form-wrap .comment-form__form-message {
    min-height: 130px;
}

.service-sec {
    background-image: url(../images/service-sec-bg.webp);
    background-attachment: fixed;
    background-size: cover;
    padding: 130px 0px;
    background-repeat: no-repeat;
    background-position: top center; /* Center the background image */
}

.service-sec .sec-title__heading {
    color: #ffffff;
}

.service-sec .about-three__desc {
    color: #ffffffbd;
    margin-top: 17px;
}

.service-sec-pad{
    padding: 0px 100px;
}



.service-sec-btn{
    padding: 10px;
    
}


.about-quote-sec{
    background-image: url(../images/about-sec-blur.webp);
    background-attachment: fixed;
    padding: 100px 0px;
}

.about-quote-sec-glass{
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    padding: 100px 0px;
}


.about-quote-sec .sec-title__heading {
    
    font-size: var(--digihub-size-6xl);
    color: #ffffff;
    
}

.about-quote-sec .about-two__desc {
    color: #ffffffba;
}

.comment-form__form-input {
    border-radius: 9px;
}

.sec-title__heading {
    
    font-size: var(--digihub-size-6xl);
    
}



/* ----------------Flip Cards--------------------- */

.container-3d{
    transform-style: preserve-3d;
}

.container-3d .box{
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
}

.container-3d .box .body{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 0.9s ease;
}



.container-3d .box .body .imgContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.container-3d .box .body .imgContainer img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.box-amz{
    background: #fa9a01;
}

.box-shopify{
    background: #9bc44a;
}

.box-walmart{
    background: #6bc8e9;
}

.box-phunt{
    background: #44448c;
}

.container-3d .box .body .content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: rotateY(180deg);
    border-radius: 10px;
}


.container-3d .box:hover .body{
    transform: rotateY(180deg);
}

.container-3d .box .body .content div{
    transform-style: preserve-3d;
    padding: 20px;
    background-color: #fff;
    transform: translateZ(100px);
}

.container-3d .box .body .content div h3{
    letter-spacing: 0px;
}

.container-3d .box .body .content div p{
    font-size: 14px;
}

/* ----------------End Services Flip box------------------------ */

/* ----------------Start FAQ Section------------------------ */

.faq-sec .accordion-button:not(.collapsed) {
    color: #fa9a01;
    background-color: transparent;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.faq-sec .accordion-button:focus {
 
    border-color: transparent;
    box-shadow: none;
}

.faq-sec .accordion-item:first-of-type {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.faq-sec .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    
}

.faq-sec .accordion-button{
    font-weight: 600;
}
.faq-sec .accordion-item {
    
    border: 0px;
    border-bottom: 1px solid #bbb;
    padding: 10px;
}

.faq-sec .accordion {
    border-radius: 0px;
    box-shadow: none;
    border-top: 1px solid #ddd;
}
/* ----------------End FAQ Section------------------------ */



.main-slider-three__heading {
    margin-bottom: 15px;
    font-size: 47px;
}


.service-two {
    padding-top: 50px;
}

.process-sec{
    margin-top: 30px;
}

.faq-sec{
    padding: 100px 0px 20px 0px;
}

.hero-icon-desc {
    padding: 45px;
    background: #ffffff;
    box-shadow: #ea472314 0px 7px 29px 0px;
}

.hero-icon-desc-top-mg {
    margin-top: 45px;
    padding: 35px 21px;
}

.hero-icon-desc .service-details-page__inner-two-service-icon-box {
    border-bottom: 0px solid rgba(var(--digihub-secondary-rgb, 101, 101, 101), 0.2);   
}

.hero-icon-desc .service-details-page__inner-two-service-title {
    color: #fa9a01;
}

.stricky-header {
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}


.img-overlay-primary{
    background-color: rgba(255, 136, 57, 0.5);
    padding: 50px 0px;
}

.cta_row {
    background: url(../images/cta-bg.webp);
    background-attachment: fixed;
    padding: 40px 0;
    position: relative;
    top: -40px;
}

.cta-btn-btm{
    display: inline-block;
    vertical-align: top;
}

.cta-btn{
    
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: var(--digihub-base, #EA4723);
        position: relative;
        transition: 0.3s ease-in;
    
}

.cta-btn:hover{
    background-color: #f9c266;
}

.cta-btn i {
    font-size: 24px;
    color: var(--digihub-white, #FFFFFF);
}

.bg-cta {
    background-image: url(../images/bg-cta.webp);
    padding: 100px 0px 250px 0px;
    background-position: bottom;
    background-size: cover;
    background-color: #f6f6f6;
}

.banner6 {
    font-family: "Montserrat", sans-serif;
    color: #8d97ad;
    font-weight: 300;
    overflow: hidden;
    position: relative;
  }
  
  .banner6 h1,
.banner6 h2,
.banner6 h3,
.banner6 h4,
.banner6 h5,
.banner6 h6 {
  color: #3e4555;
}

.banner6 .subtitle {
  color: #8d97ad;
  line-height: 24px;
}

.banner6 a {
  text-decoration: none;
}

.banner6 .btn-danger-gradiant {
  background: #ff4d7e;
  background: -webkit-linear-gradient(legacy-direction(to right), #ff4d7e 0%, #ff6a5b 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff4d7e), to(#ff6a5b));
  background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
  background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
  background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
}

.banner6 .btn-danger-gradiant:hover {
  background: #ff6a5b;
  background: -webkit-linear-gradient(legacy-direction(to right), #ff6a5b 0%, #ff4d7e 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff6a5b), to(#ff4d7e));
  background: -webkit-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
  background: -o-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
  background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
}

.banner6 .btn-md {
  padding: 15px 45px;
  font-size: 16px;
}

.banner6 .bg-facebook {
  background-color: #3b5a9a;
}

.banner6 .bg-twitter {
  background-color: #56adf2;
}

.banner6 .text-danger {
  color: #ff4d7e !important;
}

.banner6 .right-image {
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin-top: 0px;
  border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;

}

@media (max-width: 1023px) {
  .banner6 .contact-form {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .banner6 .contact-form {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1023px) {
	.banner6 .right-image {
		position: relative;
		bottom: -95px;
	}
}

.sec_3 h2{
    color: #ff9a02;
}


.primary-color{
    color: #fa9a01;
}

.roi{
    padding: 100px 0px 100px 0px;
}
/* _______________________________________SERVICES PAGE________________________________________ */


.main-menu-three-service {
    background-color: #fff;
    padding: 15px 0px;
    
}

.about-quote-sec-glass-service {
    padding: 150px 0px 100px 0px;
}

.form-wrap-service .comment-form__form-input {
    border: 0;
    outline: 0;
    padding: 20px;
    height: 48px;
    width: 100%;
    background-color: var(--digihub-white3, #F6F6F6);
    border: 1px solid transparent;
    transition: border 0.3s ease-in-out;
}

.form-wrap-service .comment-form__form-message {
    min-height: 102px;
}


.service-details-page__inner-two-service {
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.hero-icon-desc-top-mg-service{
    margin-top: 20px;
}

.hero-icon-desc-top-mg-service .service-details-page__inner-two-service-icon-wrap {
    background-color: #fa9a01;
    border-radius: 10px;
}

.hero-icon-desc-top-mg-service .service-details-page__inner-two-service-icon {
    color: #fff;
}

.service-page .about-two__desc {
    max-width: 100%;
}

.service-amz-a-hero {
    background-image: url(../images/service/amz-a-bg.jpg);
    background-attachment: fixed;
    padding: 0px;
}

.service-amz-a-hero-shopify {
    background-image: url(../images/shopify-bg.webp);
    background-attachment: fixed;
    padding: 0px;
}

.service-amz-a-hero-walmart {
    background-image: url(../images/shopify-bg.webp);
    background-attachment: fixed;
    padding: 0px;
}

.about-quote-sec-glass-shopify {
    background: #03644cd1;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    
}

.about-quote-sec-glass-walmart {
    background: #004887cc;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.service-page .service-details-page__inner-one-service-title-box i {
    color: #ffffff !important;
    background: #fa9a01;
    width: 55px;
    height: 55px;
    align-content: center;
    text-align: center;
    justify-content: center;
    display: grid;
    border-radius: 10px;
    font-size: 30px;
        padding: 30px;
}
.add-height {
    height: 260px !important;
}

.service-page .service-details-page__inner-one-service {
    padding: 15px;
    background: #ffffff;
    transition: 0.5s ease-in-out;
    height: 300px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-page .service-details-page__inner-one-service:hover {
    box-shadow: #ea472340 0px 7px 29px 0px;
}


.service-page .main-slider-three {
    padding-top: 80px;
    padding-bottom: 80px;
}


.service-page .about-two__design-box {
    height: 300px;
}

.service-page-main-menu {
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

.modal-body-quote{
    padding: 0px;
}

.modal-body-quote .btn-close {
    position: absolute;
    top: 11px;
    right: 14px;
}

.modal-body-quote .comment-form__form-input {
   
    height: 49px;
}

.modal-body-quote .comment-form__form-message {
    min-height: 120px;
}

.svg-inline--fa {
    display: var(--fa-display,inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
    color: #fa9a01;
    padding-right: 5px;
}

.automation-banner-list{
        margin: 30px 0 0 !important;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        list-style: none;
}

.automation-banner-list li {
    color: #fff;
    flex: 0 0 50%;
    margin: 0 0 10px;
    font-weight: 400;
    font-size: 15px;
}

.service-box i{
    color: #ffffff !important;
    background: #fa9a01;
    width: 50px;
    height: 50px;
    align-content: center;
    text-align: center;
    justify-content: center;
    display: grid;
    border-radius: 10px;
    font-size: 30px;
}

.ctoast{
    visibility: hidden;
    position: absolute;
    bottom: 95px;
    right: 136px;
    
}

.ctoast .toast-body{
padding: 20px 10px;
    border-radius: 10px;
    color: #fa9a01;
    font-size: 14px;
    text-align: center;
    background: #fff;
}

#exampleModal .ctoast{
    visibility: hidden;
    position: absolute;
    bottom: -5px;
    left: 74px;
    z-index: 1000000000;
}


.about-two__desc {
    max-width: 100%;
}

.about-two__design-title {
    font-size: var(--digihub-size-2xl);
 
}

.about-three svg.radial-progress circle.bar-animated2  {
    stroke-dasharray: 261.911486;
 
 
}

.footer-disclaim{
    background-color: #242424;
}

.footer-disclaim p{
    color: #fff;
    font-size: 12px;
}

.footer-disclaim p strong{
    color: #fa9a01;
}

.service-two__single {
    height: 370px;
}

.sec-title__heading span{
    color: #fa9a01;
}

.main-slider-three__heading span{
    color: #fa9a01;
}
/* ____________________________________Mobile Menu____________________________ */


.mobile-nav__content {
    background-color: #ffffff;
}

.mobile-nav__content .main-menu__list li a {
    color: #242424;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgb(92 92 92 / 26%);
}

.mobile-nav__contact li a {
    color: #2a2a2a;
 
}

.contact-page__info-box i {
    
    color: #fa9a01;
    
}

.contact-page__info-box::after {
 
    background-color: #fa9a01;
 
}

.about-about-sec{
    padding: 100px 0px;
}

.about-about-sec .contact-page__info-box i {
    color: #fa9a01;
    background: #f9c266;
    padding: 10px;
    width: 60px;
    height: 60px;
    border-radius: 101px;
    font-size: 40px;
}

.case-study-sec{
    padding: 100px 0px;
    background-color: #eeeeee;
}

.case-study-sec img{
    max-width: 80%;
}

/* ____________________________________Mobile Menu End____________________________ */



body::-webkit-scrollbar {
    width: 8px;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
    background-color: #fa9a01;
    /* outline: 1px solid slategrey; */
    border-radius: 10px;
}

.cust-review a{
    width: 100%;
    height: 80px;
    padding: 8px 12px;
    background-color: #fa9a01;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cust-review a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



@media only screen and (max-width: 480px) {
    .service-sec-pad{
        padding: 0px 0px;
    }   

    .custom-cursor__cursor, .custom-cursor__cursor-two{
        display: none;
    }

    .service-page .about-two__design-box {
        height: 480px;
    }

    .service-page .service-details-page__inner-one-service {
        height: 230px;
    }

    .modal-body-quote .btn-close {
        top: -565px;
        right: 7px;
    }

    .service-two__single {
        height: 450px;
    }

}

   


/*Fba Sec Css Start*/
.fba-sec {
    padding: 70px 0;
    overflow: hidden;
}

section.fba-sec .proces-title {
    border-bottom: none;
}

section.fba-sec .portf-blk-odd {
    margin: 0;
}

section.fba-sec .portf-blk {
    margin: 0 0 30px;
}

section.fba-sec .portf-blk {
    margin: 0 0 30px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.radius1 {
    border-radius: 100px 0 0 0 !important;
}

.radius2 {
    border-radius: 0 0px 0px 100px !important;
}

.radius3 {
    border-radius: 0 100px 0 0px !important;
    margin-top: 50px !important;
}

.radius4 {
    border-radius: 0 0 100px 0 !important;
}

span.img-shape {
    background-color: #d0d1dd4a;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

span.img-shape img {
    max-height: 80px;
}

.pkgs-sec .card {
    background-color: #fd9900;
    margin: 12px 0;
}

.pkgs-sec .card .btn {
    color: #fff !important;
    padding: 24px 30px !important;
    /* font-family: "Outfit", serif; */
    font-size: 24px;
    text-decoration: none !important;
    position: relative;
        display: block;
    width: 100%;
    text-align: left;
    /* font-family: ; */
}

.pkgs-sec .card .btn::before {
    content: 'Read More';
    position: absolute;
    right: 70px;
    font-size: 13px;
    top: 30px;
}

.pkgs-sec .card .btn span {
    color: #fff;
}

.pkgs-sec .crew .btn span {
    color: #fd9900;
}

.pkgs-sec .card .btn i {
    float: right;
    background-color: #ffffff45;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transform: rotate(-90deg);
}

.pkgs-sec .card-body {
    padding: 0 50px 20px;
}

.pkgs-sec .card-body li {
    font-family: "Outfit", serif;
    color: #fff;
    list-style-type: disc;
    margin: 5px 0;
}

.crew {
    background-color: #241f21 !important;
}

.pkgs-sec .crew .btn i {
    background-color: #5956E8;
    transform: rotate(0deg);
}

.pkgs-sec .card:first-child {
    border-radius: 50px 0 0 !important;
}

.pkg-sec .card .card-header {
    padding: 0;
}

.pkgs-sec .card:last-child {
    border-radius: 0px 0px 0px 50px !important;
}


.pkg-sec .card .card-body  ul {
    padding-left: 0 ;
}
.price-blk-main {
    height: 100%;
    background-color: #241f21;
    border-radius: 0 50px 50px 0px;
}

.pric-blk {
    display: flex;
    align-items: center;
    color: #fff;
}

.pric-blk img {
    margin-right: 15px;
    width: 45px;
}

.pric-blk-inn h5 {
    font-weight: 300;
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.pric-blk-inn h5 span {
    color: #fff;
    font-weight: 600;
}

.pric-blk-inn h4 {
    font-weight: 800;
    font-size: 27px;
    margin: 0;
    color: #ffffff;
}

.pric-blk-inn h4 span {
    font-weight: 300;
    font-size: 16px;
    color: #FFC93E;
}

.pric-blk-box {
    border-bottom: 1px solid #ffffff38;
    padding: 28px 23px;
}

.pric-blk-box a {
    border: 1px solid #fff;
    width: 60%;
    display: inline-block;
    text-align: center;
    padding: 9px 0;
    border-radius: 30px;
    color: #fff !important;
    background-color: #ffffff21;
    margin-top: 12px;
}
.pkg-name {
    color: #fd9900;

}
.pric-blk-box a img {
    filter: invert(1);
    margin-left: 10px;
}

.pric-img img {
    width: 100%;
}

.profit-img img {
    width: 500px;
}

span.purple {
    color: #fd9900;
}


.proces-title {
    display: flex;
    border-bottom: 1px solid #00000026;
    padding-bottom: 50px;
}

.process-hd, .process-perag {
    width: 50%;
}

.process-hd h6 {
    color: #000000;
    font-size: 14px;
}

.process-hd h3 {
    color: #000000;
    margin: 0;
}

.process-hd, .process-perag {
    width: 50%;
}