/* ===============================
GLOBAL MOBILE RESPONSIVE CSS
================================*/

/* Mobile devices */
@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    /* Section padding */
    .section-padding {
        padding: 60px 0 !important;
    }

    /* Titles */
    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* Buttons */
    .gt-btn {
        width: 100%;
        text-align: center;
    }

    /* Pricing cards */
    .pricing-card {
        margin-bottom: 25px;
    }

    /* Feature cards */
    .feature-card {
        margin-bottom: 20px;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Navbar spacing */
    .header-area {
        padding: 10px 0;
    }

    /* Hex grid */
    .hex-hive {
        transform: scale(0.85);
    }

    /* Card padding */
    .pricing-card_body {
        padding: 20px !important;
    }

    /* Center text mobile */
    .mobile-center {
        text-align: center !important;
    }
}


/* Tablet devices */
@media (min-width: 768px) and (max-width: 991px) {

    .section-padding {
        padding: 80px 0;
    }

    .hex-hive {
        transform: scale(0.9);
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }
}


/* Small laptop */
@media (min-width: 992px) and (max-width: 1200px) {

    .hex-hive {
        transform: scale(0.95);
    }
}


/* Fix overflow issue */
.container,
.row {
    max-width: 100%;
}


/* Make floating shapes responsive */
.shape1,
.shape2 {
    max-width: 100%;
}


/* Responsive icon circles */
.card-image-wrapper div {
    width: 90px !important;
    height: 90px !important;
    font-size: 40px !important;
}


/* Responsive spacing */
@media (max-width: 767px) {
    .pt-5 {
        padding-top: 30px !important;
    }

    .pb-5 {
        padding-bottom: 30px !important;
    }
}