@media screen and ( max-width: 720px ) {

    body {
        overflow-x: hidden;
    }

    html {
        overflow-x: hidden;
    }

    .main {
        padding: 0 15px;
    }

    .header {
        padding: 0 30px;
        height: 100px;
    }

    .header__logo {
        height: 70px;
    }

    .header__logo-link {
        border-right: none;
    }

    .header__logo-link h1 {
        font-size: 26px;
        margin-bottom: 3px;
    }

    .header__logo-text {
        font-size: 13px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        overflow-y: auto;
        background-color: #1b1b1b;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: all .3s ease-in;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translateX(-100%);
        z-index: 90;
        padding-top: 50px;
    }

    .nav-open .header-nav {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateX(0);
    }

    .header-nav__list {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 13px;
        width: 100%;
        padding: 0 45px;
        margin-top: 0;
    }

    .header-nav__link:link,
    .header-nav__link:visited {
        font-size: 15px;
        color: #f7f7f7;
        padding: 5px 0;
        width: 100%;
        justify-content: flex-start;
    }

    .header-nav__list li a [name="add-outline"] {
        font-size: 20px;
        margin-left: auto;
    }

    /* Mobile dropdown styling */
    .header-nav__item.dropdown {
        position: static;
        width: 100%;
        text-align: left;
    }

    .dropdown__menu {
        position: static;
        width: 80%;
        max-height: 0;
        overflow: hidden;
        background-color: #232323;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: max-height 0.3s ease-in-out;
        padding-left: 10px;
        border-left: 1px solid #ddd;
    }

    .dropdown__menu li a {
        font-size: 14px;
        padding: 6px 0;
        text-align: left;
        color: #dedede;
    }

    /* Active dropdown for mobile - expands the max-height to show content */
    .header-nav__item.dropdown.active > .dropdown__menu {
        max-height: 200px;
        transition: max-height 0.5s ease-in-out;
        border-left: 1px solid #ddd;
    }

    /* Mobile hamburger/close button display */
    .btn-mobile-nav {
        display: block;
        z-index: 9999;
    }

    .btn-mobile-nav:focus,
    .btn-mobile-nav:active,
    .btn-mobile-nav:focus-visible {
        outline: none;
        border: none;
        box-shadow: none;
    }

    .header-nav a:focus,
    .header-nav a:focus-visible,
    .header-nav button:focus,
    .header-nav button:focus-visible {
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
    }

    .header-login-link {
        padding: 3px 10px;
        font-size: 15px;
    }

    .nav-open .btn-mobile-nav [name="close-outline"] {
        display: block;
    }

    .nav-open .btn-mobile-nav [name="menu-outline"] {
        display: none;
    }

    .header__social-box{
        display: none;
    }

    .header__phone-box {
        display: none;
    }

    .slider {
        height: 70vh;
    }

    .slide__text-box h1 {
        font-size: 32px;
    }

    .slider p {
        font-size: 18px;
        line-height: 28px;
    }

    .slide__text-box {
        width: 75%;
    }

    .slider__btn {
        height: 3rem;
        width: 3rem;
        font-size: 2rem;
    }

    .primary-heading {
        line-height: 1.2;
        font-size: 40px;
        font-weight: 600;
        padding: 10px 0;
    }

    .about-header__box {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-us h2 {
        font-size: 26px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .about-us-top-box {
        flex-direction: column;
    }

    .about-us-top-right {
        margin-top: 40px;
    }

    .about-us-top-right-img {
        width: 85%;
    }

    .about-us-bottom-left {
        margin-top: 0;
        display: none;
    }

    .about-us-bottom-left-img {
        display: none;
    }

    .about-us-bottom-right {
        flex: 0 0 100%;
        margin-top: 50px;
        font-size: 20px;
    }

    .what_we_do_left {
        width: 100%;
    }

    .do_list {
        padding: 30px 20px;
        margin-top: 200px;
    }

    .what_we_do_left h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .why-us__wrapper {
        flex-direction: column;
    }

    .why-us__left h3 {
        font-size: 26px;
        line-height: 1.3;
    }

    .why-us__list li {
        font-size: 15px;
        border-bottom: 1px #bdbdbd solid;
    }

    .immigration-country__wrapperr h2,
    .section-header-text-box h2 {
        font-size: 21px;
    }

    .section-header-text-box a {
        padding: 4px 8px;
        font-size: 14px;
    }

    .immigration-country__box {
        flex: 0 0 47%;
    }

    .page-header-banner__text-box {
        width: 90%;
    }

    .page-header-banner__text-box h1 {
        font-size: 29px;
        line-height: 1.4;
    }

    .visa-intro__wrapper {
        flex-direction: column;
    }

    .domestic-tour__box {
        flex-direction: column;
    }

    .visa-intro__text-box h3 {
        font-size: 25px;
        line-height: 1.3;
    }

    .domestic-tour__text-box {
        padding: 20px 20px;
    }

    .domestic-tour__text-box h3 {
        font-size: 23px;
        line-height: 1.4;
    }

    .domestic-tour__btn {
        padding: 10px 22px;
        display: block;
        text-align: center;
    }

    #commitment {
        flex-wrap: wrap;
    }

    .commitment-left {
        flex: 0 0 100%;
        padding: 30px 30px 30px 30px;
    }

    .commitment-left h2 {
        padding-bottom: 5px;
    }

    .commitment-left h3 {
        font-size: 20px;
    }

    .commitment-right {
        flex: 0 0 100%;
    }

    .page_title h1 {
        font-size: 38px;
        padding: 50px 0 0;
        line-height: 1.3;
    }

    #home_products h2 {
        padding: 0 0 20px 0;
        font-size: 26px;
        color: #fff;
        text-align: left;
    }

    .section-header__text-box {
        width: 90%;
    }

    .section-header__text-box h2 {
        font-size: 26px;
    }

    #wrapper {
        padding: 50px 0 30px;
    }
	
	.single-post__box {
		flex-direction: column;
	}

    .container h3 {
        line-height: 1.3;
        text-align: left;
    }

    #about-hero-bottom {
        font-size: 25px;
    }

    .contact__text-box {
        flex-direction: column;
    }

    .contact__text-box > * {
        margin-bottom: 20px;
    }

    #about-details {
        flex-wrap: wrap;
    }

    .about-details-left {
        flex: 0 0 100%;
        order: 2;
        padding: 30px;
    }

    .about-details-left h3 {
        line-height: 1.3;
    }

    .about-details-right {
        flex: 0 0 100%;
        order: 1;
    }

    .our-promise {
        width: 100%;
        padding: 30px;
    }

    .our-promise h3 {
        font-size: 39px;
    }

    .about-details-right img {
        min-height: 300px;
    }

    .single-product__content {
        flex-wrap: wrap;
    }

    .single-product__wrapper {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .single-product__img {
        height: 270px;
    }

    .product-box img {
        width: 100%;
        height: 280px;
        border-right: none;
    }

    .package_name {
        width: 100%;
        padding: 30px;
    }

    .section-single-post {
        padding: 40px 0 50px;
    }

    .site-footer {
        padding: 50px 0 40px;
    }

    .footer-left {
        border-right: none;
    }

    .footer_main h3 {
        line-height: 1.4;
    }

    .footer-center {
        border-right: none;
        padding: 0;
    }

    .footer-bottom {
        padding-top: 18px;
        margin-top: 18px;
    }

}






























