/* only ipad 1024 and bigger screen landscape screen */

@media only screen and (min-width: 1024px) {
    #mainmenu>.menubox {
        display: flex !important;
    }


    #mainmenu ul li.has-menu .sub-menu {
        display: none;
        position: absolute;
        top: calc(100% + 62px);
        left: 0;
        background-color: white;
        padding: 20px;
        box-shadow: 4px 3px 15px rgba(0 0 0 / 0.1);
        min-width: 200px;
        border: 1px solid #f6f6f6;
    }

    #mainmenu ul li.has-menu:after {
        content: '';
        left: 0;
        width: 100%;
        top: 100%;
        height: 62px;
        cursor: pointer;
        background: transparent;
        z-index: -1;
        position: absolute;
    }

    #mainmenu ul li.has-menu:after li.has-menu:after {
        left: 100%;
        height: 60px;
        top: 0;
    }

    #mainmenu ul li.has-menu.hover {
        cursor: pointer;
    }

    #mainmenu ul li.has-menu .sub-menu ul {
        grid-gap: 10px 0;
        display: block;
    }

    #mainmenu ul li.has-menu .sub-menu::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid transparent;
        border-bottom-color: white;
        z-index: 1;
        display: none;
    }

}



/*==========================================================================================================*/

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

    :root {
        --h1: 56px;
        --h2: 48px;
        --h3: 34px;
        --h4: 26px;
        --h5: 20px;
    }

    .menubox {
        grid-gap: 60px;
    }

    #menu-main-menu {
        grid-gap: 30px;
    }

    .benefit-card {
        min-height: 400px;
    }

    .banner-inner-sec {
        min-height: 500px;
    }
}




/*==========================================================================================================*/

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

    :root {
        --h1: 48px;
        --h2: 42px;
        --h3: 30px;
        --h4: 24px;
    }

    body {
        min-width: 320px;
    }

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

    .wrap {
        width: auto;
        padding: 0 20px;
    }

    .button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .section-row {
        padding: 50px 0;
    }


    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 20px;
    }


    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
    }


    #mainmenu>.menubox {
        display: none;
        position: absolute;
        width: 100%;
        top: 100%;
        right: 0;
        bottom: 0;
        background: var(--primary);
        z-index: 5;
        overflow: hidden;
        height: 100vh;
        transform: translateX(100%);
        transition: transform 550ms cubic-bezier(0.45, 1, 0.32, 1), opacity 550ms cubic-bezier(0.45, 1, 0.32, 1);
    }

    #mainmenu>.menubox.open {
        transform: translateX(0);
    }

    #mainmenu ul {
        list-style: none;
        display: block;
    }

    #mainmenu .menubox ul li {
        margin-left: 0;
        margin-right: 0;
        /* float: none; */
        border-bottom: solid 1px rgba(255, 255, 255, 0.4);
    }

    #mainmenu ul li a {
        padding: 8px 15px;
        display: block;
        transform: translateX(100%);
        transition: transform 550ms cubic-bezier(0.45, 1, 0.32, 1), opacity 550ms cubic-bezier(0.45, 1, 0.32, 1), background-color 250ms ease-in-out, color 250ms ease-in-out;
        opacity: 0;
        font-size: 14px;
        color: var(--white);
    }

    #mainmenu ul li.current-menu-item a,
    #mainmenu ul li a:hover {
        background-color: rgba(0, 0, 0, 0.2);
    }

    #mainmenu .open ul li a {
        transform: translateX(0);
        opacity: 1;
    }

    #mainmenu .open li:nth-child(1) a {
        transition-delay: 0.05s;
    }

    #mainmenu .open li:nth-child(2) a {
        transition-delay: 0.1s;
    }

    #mainmenu .open li:nth-child(3) a {
        transition-delay: 0.15s;
    }

    #mainmenu .open li:nth-child(4) a {
        transition-delay: 0.2s;
    }

    #mainmenu .open li:nth-child(5) a {
        transition-delay: 0.25s;
    }

    #mainmenu .open li:nth-child(6) a {
        transition-delay: 0.3s;
    }

    #mainmenu .open li:nth-child(7) a {
        transition-delay: 0.35s;
    }

    #mainmenu ul li a:after {
        display: none;
    }

    /* Responsive Menu line icon*/

    .hasarrow {
        display: none;
    }

    .sub-menu-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 34px;
        height: 40px;
        z-index: 5;
        cursor: pointer;
        background-color: #000;
    }

    .sub-menu-toggle::before {
        transform: translate(-50%, -50%);
    }

    .sub-menu-toggle::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .has-menu.active .sub-menu-toggle::after {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }

    .sub-menu-toggle::after,
    .sub-menu-toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc(100% - 15px);
        height: 1px;
        background-color: #FFFFFF;
        transition: 200ms linear;
    }


    .header .current-menu-item .sub-menu-toggle::after {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }

    .sub-menu {
        border-top: 1px solid rgba(255, 255, 255, 0.4);

        li {
            a {
                padding-left: 30px !important;
            }
        }
    }

    .header {
        & .current-menu-item {
            .sub-menu {
                a {
                    color: var(--white) !important;
                }

                .current-menu-item {
                    a {
                        color: var(--primary) !important;
                        background-color: rgba(0, 0, 0, 0.2);
                    }
                }
            }
        }
    }

    #menu {
        display: flex;
        align-items: center;
    }

    .menulines-button {
        position: relative;
        width: 24px;
        height: 30px;
        transition-duration: 0.5s;
    }

    .menulines-button .icon-left,
    .menulines-button .icon-left:before,
    .menulines-button .icon-left:after,
    .menulines-button .icon-right,
    .menulines-button .icon-right:before,
    .menulines-button .icon-right:after {
        content: "";
        position: absolute;
        background-color: var(--white);
        transition-duration: 0.5s;
        width: 12px;
        height: 2px;
    }

    .menulines-button .icon-left,
    .menulines-button .icon-right {
        top: 14px;
    }

    .menulines-button .icon-right {
        left: 12px;
    }

    .menulines-button .icon-left:before,
    .menulines-button .icon-right:before {
        top: -9px;
    }

    .menulines-button .icon-left:after,
    .menulines-button .icon-right:after {
        top: 9px;
    }

    .menulines-button .icon-left:hover,
    .menulines-button:hover {
        cursor: pointer;
    }

    .menulines-button.menuopen .icon-left,
    .menulines-button.menuopen .icon-right {
        transition-duration: 0.5s;
        background: transparent;
    }

    .menulines-button.menuopen .icon-left:before {
        transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
    }

    .menulines-button.menuopen .icon-left:after {
        transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
    }

    .menulines-button.menuopen .icon-right:before {
        transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
    }

    .menulines-button.menuopen .icon-right:after {
        transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
    }

    #mainmenu li.has-menu li {
        margin-bottom: 0;
    }

    /* humberger menu */

    #menu-main-menu {
        grid-gap: 20px;
    }

    #mainmenu .menubox {
        grid-gap: 40px;
    }

    .banner-info {
        padding: 30px 30px 30px 0;
    }

    .mission-section::before {
        background-position: -10vw 3vh;
        background-size: 60% auto;
    }

    .mission-text {
        font-size: var(--h4);
    }

    .about-title {
        font-size: var(--h2);
    }

    .about-text {
        font-size: 20px;
    }

    .benefit-card {
        padding: 20px;
    }

    footer {
        padding: 80px 0;
    }

    .banner-inner-sec {
        min-height: 450px;
    }
    .benefits-btn {
        margin-top: 30px;
    }
    .col-mar-none-mobi .col-lg-6 {
        margin-top: 0;
    }
}

@media only screen and (max-width: 782px) {
    .admin-bar #header {
        margin-top: 46px;
    }
}

/*==========================================================================================================*/

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


    .dart_banner {
        position: absolute;
        bottom: 0;
    }

    .products-images {
        margin-bottom: 80px;
    }

    /*.banner-video {
        height: 700px;
    }*/
}


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

    :root {
        --h1: 40px;
        --h2: 34px;
        --h3: 26px;
        --h4: 22px;

        --containerspace: 20px;
    }


    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    input[type="url"],
    select {
        height: 40px;
    }

    textarea {
        height: 100px;
    }


    input[type="button"],
    input[type="submit"],
    button {
        padding: 10px 25px;
    }

    .section-row {
        padding: 50px 0;
    }

    .mission-section::before {
        background-position: center 10vh;
        background-size: 80% auto;
    }

    .mission-text {
        font-size: var(--h4);
    }

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

    p {
        margin: 0 0 20px 0;
    }

    .about-link {
        justify-content: center;
        margin-top: 0;
    }

    .benefit-title {
        font-size: var(--h5);
    }

    .benefit-text {
        opacity: 1;
        transform: none;
        font-size: 16px;
    }

    .benefit-card {
        margin: 0;
    }

    .video-play i {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .text-end.form-btn {
        text-align: center !important;
    }

    .product-specs {
        margin-bottom: 20px !important;
    }

    footer {
        padding: 60px 0;
        text-align: center;
    }

    .ftr-txt {
        margin-top: 20px !important;
        font-size: 18px;
    }

    .fmenu ul {
        gap: 10px;
    }

    .footer-contact li a,
    .ftr-links li {
        justify-content: center;
    }

    .header {
        padding: 30px 0;
    }

    .info-text {
        margin-bottom: 20px;
    }

    .custom-logo-link {
        max-width: 120px;
    }

    .banner-inner-sec {
        min-height: 300px;
    }

    .banner-inner-sec .banner-info {
        padding: 40px 20px;
    }


    .wpcf7-form-control.wpcf7-checkbox,
    .wpcf7-form-control.wpcf7-radio {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo {
      width: 120px;
    }
}


@media only screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }

}

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

    body.admin-bar .header.sticky {
        top: 0;
    }

}

/*==========================================================================================================*/

/* only iphone4 landscape & Potriat 300 by 480*/

@media only screen and (max-width: 567px) {}

/*==========================================================================================================*/

/* only iphone landscape 340 by 478*/

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

    :root {
        --h1: 32px;
        --h2: 28px;
    }

    .benefit-card {
        border-radius: 6px;
    }

}

/*==========================================================================================================*/