 /*new*/

/* Navbar */
.custom-navbar{
    background: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 12px 0;
    transition: .3s;
}

.navbar-brand{
    font-size: 28px;
    font-weight: 700;
    color:#0d6efd !important;
}

.navbar-brand span{
    color:#212529;
}

.nav-link{
    color:#212529 !important;
    font-weight:600;
    margin:0 8px;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:#0d6efd !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#0d6efd;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* Dropdown */
.dropdown-menu{
    border:none;
    border-radius:15px;
    padding:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.dropdown-item{
    padding:12px 15px;
    border-radius:10px;
    transition:.3s;
}

.dropdown-item:hover{
    background:#0d6efd;
    color:#fff;
}

.navbar-nav .nav-link.active {
    color: #0d6efd !important;
    /*padding: 8px 18px;*/
    border-bottom: 2px solid #0d6efd;
}

/* Contact Button */
.btn-contact{
    background:#0d6efd;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-contact:hover{
    background:#084298;
    color:#fff;
    transform:translateY(-2px);
}


#logo {
  max-width: 100%;
  height: auto;
  width: 240px;
}

/**/


.hero-section{
    position:relative;
    overflow:hidden;
    background:#f5f5f5;
    min-height:100vh;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-subtitle{
    font-size:18px;
    font-weight:700;
    color:#1f7ac7;
    text-transform:uppercase;
    display:block;
    margin-bottom:20px;
}

.hero-title {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
  margin-bottom: 25px;
}
.hero-text{
    font-size:22px;
    color:#333;
    line-height:1.9;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-enquire{
    background:#b8d431;
    color:#000;
    font-weight:700;
    padding:18px 40px;
    border-radius:50px;
    box-shadow:0 8px 20px rgba(132,87,255,.25);
}

.btn-enquire:hover{
    background:#a7c21f;
}

.btn-product{
    background:#fff;
    color:#1f7ac7;
    border:2px solid #b8d431;
    font-weight:700;
    padding:18px 40px;
    border-radius:50px;
    box-shadow:0 8px 20px rgba(132,87,255,.20);
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:100%;
    border-radius:0;
}

/* Decorative Shapes */

.shape{
    position:absolute;
    z-index:1;
}

.shape-1{
    width:180px;
    height:20px;
    background:#f6d9d9;
    transform:rotate(40deg);
    top:80px;
    right:45%;
    border-radius:20px;
}

.shape-2{
    width:100px;
    height:100px;
    border-radius:50%;
    background:
    repeating-linear-gradient(
        180deg,
        #d61f7f,
        #d61f7f 3px,
        transparent 3px,
        transparent 8px
    );
    top:20px;
    right:30px;
}

.shape-3{
    width:90px;
    height:90px;
    border-left:8px solid orange;
    border-bottom:8px solid orange;
    transform:rotate(45deg);
    bottom:100px;
    right:20px;
}

.shape-4{
    width:150px;
    height:15px;
    background:#f0e1d5;
    transform:rotate(40deg);
    bottom:50px;
    left:100px;
    border-radius:20px;
}

/* Responsive */

@media(max-width:991px){

    .hero-section{
        padding:100px 0 60px;
    }

    .hero-title{
        font-size:36px;
    }

    .hero-text{
        font-size:18px;
    }

    .hero-image{
        margin-top:50px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-content{
        text-align:center;
    }
    #logo {
    max-width: 100%;
    height: auto;
    width: 200px;
}
}


.header-social-icon ul {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.header-social-icon a:hover {
    background: #000;
    transform: translateY(-3px);
}


/**/
 .about-section {
            padding: 100px 0;
            background: #fff;
        }

        .section-title {
            color: #0d6efd;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .about-heading {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-text {
            color: #000;
            line-height: 1.8;
            text-align: justify;
        }

        .btn-custom {
            padding: 12px 30px;
            border-radius: 50px;
        }

        .image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-image {
            width: 100%;
            max-width: 450px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            position: relative;
            z-index: 2;
        }

        .shape-1 {
            position: absolute;
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #0d6efd, #6ea8fe);
            border-radius: 30px;
            top: -30px;
            right: 20px;
            z-index: 1;
            transform: rotate(15deg);
        }

        .shape-2 {
            position: absolute;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #20c997, #6fedd8);
            border-radius: 50%;
            bottom: -30px;
            left: 20px;
            z-index: 1;
        }

        .experience-box {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: #fff;
            padding: 15px 25px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            z-index: 3;
        }

        .experience-box h3 {
            margin: 0;
            color: #0d6efd;
            font-weight: 700;
        }

        @media (max-width: 991px) {
            .about-heading {
                font-size: 2.2rem;
            }

            .image-wrapper {
                margin-top: 50px;
            }

            .experience-box {
                right: 10px;
            }
        }




        .services-section{
    background: linear-gradient(180deg,#1b80c53d,#c1d840a6);
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all .4s ease;
    height:100%;
    position:relative;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(13,110,253,.18);
}

.service-img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.service-content {
  padding-top: 10px;
  text-align: center;
}

.service-content h4{
    font-weight:normal;
    margin-bottom:12px;
    color:#212529;
    font-size: 19px;
}

.service-content p{
    color:#6c757d;
    margin-bottom:0;
    line-height:1.7;
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        #0d6efd,
        #6f42c1,
        #20c997
    );
}



.testimonial-section{
    background:#fff;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:3px solid #0d6efd;
}

.testimonial-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
}

.swiper{
    padding-bottom:50px;
}

/**/


.clients-section {
    background: linear-gradient(180deg,#c1d840a6,#1b80c53d);
}

.section-tag{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}



.section-desc{
    color:#6c757d;
    max-width:700px;
    margin:auto;
}

.client-card{
    background:#fff;
    border-radius:0px;
    overflow:hidden;
    height:100%;
    position:relative;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.client-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(13,110,253,.15);
}

.client-images{
    height:220px;
    background:#f5f7ff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
}

.client-image img {
  max-width: 100%;
  object-fit: contain;
  transition: .4s;
}

.client-card:hover .client-image img{
    transform:scale(1.08);
}

.client-content{
    padding:25px;
    text-align:center;
}

.client-content h5{
    font-weight:700;
    margin-bottom:8px;
    color:#222;
    font-size: 16px;
}

.client-content span{
    color:#6c757d;
    font-size:15px;
}

.client-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    /*height:5px;
    background:linear-gradient(
        90deg,
        #0d6efd,
        #6f42c1,
        #20c997
    );*/
}

.swiper{
    padding-bottom:50px;
}

.swiper-pagination-bullet-active{
    background:#0d6efd;
}

.clientlogo{
    width: 100%;
    height: 200px;
}


/**/


.pricing-section{
    background:linear-gradient(
        180deg,
        #f8f9fa,
        #ffffff
    );
}

.pricing-tag{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
}

.pricing-title{
    font-size:45px;
    font-weight:800;
    margin-top:10px;
}

.pricing-desc{
    max-width:700px;
    margin:auto;
    color:#6c757d;
}

.pricing-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:left;
    position:relative;
    height: auto;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.pricing-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(13,110,253,.15);
}

.active-plan{
    background:linear-gradient(
        135deg,
        #0d6efd,
        #4f8cff
    );
    color:#fff;
    transform:scale(1.05);
}

.active-plan .price span,
.active-plan .pricing-features li{
    color:#fff;
}

.popular-badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#c1d840;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.price{
    font-size:35px;
    font-weight:800;
    float: right;
}

.price span{
    font-size:16px;
    color:#6c757d;
}

.pricing-features{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.pricing-features li{
    padding:10px 0;
    color:#555;
    border-bottom:1px solid #eee;
}

.btn-plan{
    background:#0d6efd;
    color:#fff;
    border-radius:50px;
    padding:12px 35px;
    font-weight:600;
}

.btn-plan:hover{
    background:#084298;
    color:#fff;
}

.btn-active{
    background:#fff;
    color:#0d6efd;
}

.btn-active:hover{
    background:#f8f9fa;
    color:#0d6efd;
}

@media(max-width:991px){

    .active-plan{
        transform:none;
    }

    .pricing-title{
        font-size:35px;
    }
}

.info-icon{
    position:relative;
    display:inline-block;
    cursor:pointer;
}

.info-text{
    position:absolute;
    bottom:120%;
    left:50%;
    transform:translateX(-50%);
    background:#c2d941;
    color:#fff;
    padding:8px 15px;
    border-radius:8px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.info-icon:hover .info-text{
    opacity:1;
    visibility:visible;
}


#footer-Content {
    padding-top: 56px;
    background: #40403f;
    padding-bottom: 8px;
}

.block-title {
    color: #c2d941;
    margin-bottom: 21px;
}
#footer-Content a {
    color: #fff;
    font-size: 15px;
    padding-top: 9px;
    text-decoration: none;
}
.menu
{
    list-style: none;
}

.whatsappbtn {
    position: fixed;
    width: 56px !important;
    height: 56px !important;
    bottom: 40px;
    left: 40px;
    background-color: green;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #000;
    z-index: 100;
}


.contact-card {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
    position: relative;
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.single-form input, .single-form textarea {
    width: 100%;
    height: 55px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 0 25px;
    font-size: 16px;
    color: #8a8fa3;
}
#sicon{
    font-size: 18px;
    border-radius: 50%;
    background: #c2d941;
    padding: 10px;
    color: #000;
}
.aboutus-section{
    padding: 30px 0;
    background: #fff;
}

.counter-section{
    background:#eef4fa;
    padding:80px 0;
}

.counter-box{
    text-align:center;
    padding:40px 25px;
    border-radius:20px;
    color:#fff;
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.counter-box:hover{
    transform:translateY(-10px);
}

.blue{
    background:#2185c5;
}

.green{
    background:#bfd63a;
}

.icon-box{
    width:95px;
    height:95px;
    background:#fff;
    border-radius:50%;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    font-size:42px;
    color:#000;
}

.counter-box h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box h4{
    font-size:20px;
    font-weight:600;
}



.mini-box{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:15px;
    padding:15px 10px;
    text-align:center;
    transition:.3s;
    height:100%;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.mini-box:hover{
    transform:translateY(-5px);
    border-color:#0d6efd;
    box-shadow:0 10px 25px rgba(13,110,253,.15);
}

.mini-box i{
    font-size:22px;
    color:#0d6efd;
    margin-bottom:10px;
    display:block;
}

.mini-box h5{
    font-size:24px;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:5px;
}

.mini-box span{
    display:block;
    font-size:13px;
    font-weight:600;
    line-height:1.4;
}

@media(max-width:767px){

    .mini-box{
        padding:12px 8px;
    }

    .mini-box i{
        font-size:18px;
    }

    .mini-box h5{
        font-size:20px;
    }

    .mini-box span{
        font-size:12px;
    }
}




.timeline{
    position:relative;
    margin-left:30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient( to bottom, #1c81c5, #1c81c5 );
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 20px;
    border: 1px;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c2d941;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(13,110,253,.3);
}

.timeline-item::after{
    content:'';
    position:absolute;
    left:50px;
    top:25px;
    width:30px;
    height:2px;
    background:#0d6efd;
}

.timeline-content h4{
    font-weight:700;
    margin-bottom:10px;
}

.timeline-content p{
    color:#000;
    margin:0;
    line-height:1.8;
}

@media(max-width:767px){

    .timeline{
        margin-left:0;
    }

    .timeline-item{
        padding-left:70px;
    }

    .timeline-number{
        width:40px;
        height:40px;
        font-size:14px;
    }

    .timeline-item::after{
        left:40px;
        width:20px;
        top:20px;
    }

    .timeline::before{
        left:20px;
    }

}




.industry-box{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:16px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.3s;
    height:100%;
}

.industry-box:hover{
    transform:translateY(-5px);
    border-color:#0d6efd;
    box-shadow:0 10px 25px rgba(13,110,253,.12);
}

.industry-box i{
    width:45px;
    height:45px;
    border-radius:12px;
    background:#eef4ff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.industry-box span{
    font-weight:600;
    font-size:15px;
}

@media(max-width:767px){

    .industry-box{
        padding:12px;
    }

    .industry-box i{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .industry-box span{
        font-size:14px;
    }
}





















/* Responsive */

@media(max-width:991px){

    .counter-box h2{
        font-size:40px;
    }

    .counter-box h4{
        font-size:22px;
    }
}


.brchead {
    font-size: 30px;
    padding-top: 100px;
}
#breadcrumb {
    background: linear-gradient(150deg,#c2d941,#1c81c5);
    display: block;
    text-align: center;
    height: auto;
    color: #fff;
    font-weight: bold;
}

.block-title {
    color: #c2d941;
    margin-bottom: 21px;
    font-size: 20px;
    font-weight: bold;
}


.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #c2d941;
}

.menu {
    padding-left: 0rem;
}

.contact-box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px 35px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.dropdown-toggle::after {
    display: none;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}



/**/


.service-details{
    background:#fff;
}

.service-tag{
    background:#eef4ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

.service-title{
    font-size:48px;
    font-weight:800;
    margin:20px 0;
}

.service-text{
    color:#000;
    line-height:1.9;
    padding: 0px;
}

.service-image img{
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.feature-box {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 15px;
    font-weight: normal;
    transition: .3s;
}

.feature-box:hover{
    background:#0d6efd;
    color:#fff;
}

.feature-box i{
    color:#28a745;
    margin-right:10px;
}

.feature-box:hover i{
    color:#fff;
}

.service-btn{
    background:linear-gradient(135deg,#0d6efd,#6f42c1);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.process-box{
    text-align:center;
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.process-box span{
    width:70px;
    height:70px;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.why-box{
    background:#fff;
    text-align:center;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-10px);
}

.why-box i{
    font-size:50px;
    color:#0d6efd;
    margin-bottom:20px;
}


.services-provides {
    background: linear-gradient(150deg,#c2d941,#1c81c5);
   
}

.ontimed {
    background: #c2d941;
    color: #fff;
}


/* mobile responsive */


/* Large Devices */
@media (max-width: 1199px) {

}

/* Tablets */
@media (max-width: 991px) {

    .hero-section{
        text-align:center;
    }

    .hero-section h1{
        font-size:40px;
    }

    .about-image{
        margin-bottom:30px;
    }

}

/* Mobile Devices */
@media (max-width: 767px) {

    h1{
        font-size:32px !important;
    }

    h2{
        font-size:18px !important;
    }

    h3{
        font-size:24px !important;
    }

    p{
        font-size:15px;
        padding: 10px;
    }

    .section-padding{
        padding:60px 0;
    }

    .btn{
        width:auto;%;
        margin-bottom:10px;
    }

    .counter-box{
        margin-bottom:20px;
    }

    .feature-box{
        margin-bottom:20px;
    }

    .navbar-brand img{
        max-height:50px;
    }

    .contact-form.pt-20 {
    border: 1px solid #ddd;
    padding: 1px !important;
    margin-top: 35px;
    background: #1c81c524;
}
.contact-form h5
{
text-align: center;
margin-top: 10px;
}
.seopages{
    width: 50%;
}
.brchead {
    font-size: 19px !important;
    padding-top: 100px;
    font-weight: bold;
}
.card-title {
    color: #1c82c5;
    font-weight: bold;
    font-size: 14px;
    padding-left: 10px;
}
.contact-card {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(15px);
    padding: 1px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 28px;
    padding-bottom: 10px;
}
.row {
        --bs-gutter-x: 10px;
    }
    .card{
        width:100% !important;
        max-width:100% !important;
    }

    img{
    max-width:100%;
    height:auto;
}
}

/* Small Mobile */
@media (max-width: 575px) {

    .hero-section{
        padding:70px 0;
    }

    .hero-section h1{
        font-size:28px !important;
        line-height:1.3;
    }

    .hero-section p{
        font-size:14px;
    }

    .section-title{
        font-size:16px !important;
    }

   

    .floating-card{
        position:static !important;
        margin-top:15px;
        width:100%;
    }

    .main-image{
        border-radius:15px;
    }

}

@media(max-width:767px){

    html,
    body{
        overflow-x:hidden;
    }

    .container,
    .container-fluid,
    .row{
        max-width:100%;
    }

    img{
        max-width:100%;
        height:auto;
    }

    .navbar-toggler{
        padding:8px 10px;
    }

    .navbar-toggler:focus{
        box-shadow:none;
    }

    .card-body {
    padding: 2px;
    text-align: justify;
}
}

@media (max-width: 767px){

    /* Remove horizontal scroll */
    html,
    body{
        overflow-x:hidden;
        width:100%;
    }

    /* Proper container spacing */
    .container,
    .container-fluid{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    /* Fix Bootstrap rows */
    .row{
        margin-left:0 !important;
        margin-right:0 !important;
    }

    /* Cards and boxes */
    .card,
    .feature-box,
    .service-box,
    .contact-form,
    .about-box{
        width:100%;
        margin-left:auto !important;
        margin-right:auto !important;
    }

    /* Images */
    img{
        max-width:100%;
        height:auto;
        display:block;
        margin:auto;
    }

    /* Center content */
    .text-center-mobile{
        text-align:center;
    }

    /* Buttons */
    .btn{
        max-width:100%;
    }

    /* Forms */
    input,
    select,
    textarea{
        width:100%;
    }

    /* Remove overflow from absolute elements */
    .position-absolute,
    .floating-card,
    .shape{
        max-width:100%;
    }
}