/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .home h2 {
        font-size: 48px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .dp-banner h1 {
        font-size: 50px;
        text-align: center;
    }

    .dp-form-dat-lich .group {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .dp-form-dat-lich {
        padding: 20px 12px;
    }

    .toastify {
        max-width: calc(80% - 20px) !important;

    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {}