@media screen and (min-width:980px) {
    .header {
        box-shadow: 0px 10px 15px -10px;
        height: 75px
    }

    .logo {
        height: 64px;
        width: 64px;
    }

    .phone-header-btn {
        display: none;
    }

    .header-margin {
        margin-top: 75px;
    }

}

@media screen and (max-width: 979.9px) {
    .header {
        box-shadow: 0px 10px 15px -10px;
        height: 75px
    }

    .logo {
        height: 64px;
        width: 64px;
    }

    .nav-btn {
        display: none;
    }

    .header-margin {
        margin-top: 75px;
    }


}

@media screen and (max-width: 767px) {
    .header {
        box-shadow: 0px 10px 15px -10px;
        height: 60px
    }

    .logo {
        height: 48px;
        width: 48px;
    }

    .nav-btn {
        display: none;
    }

    .header-margin {
        margin-top: 60px;
    }


}

@media screen and (max-width: 479px) {
    .header {
        box-shadow: 0px 10px 15px -10px;
        height: 50px
    }

    .logo {
        height: 48px;
        width: 48px;
    }

    .nav-btn {
        display: none;
    }

    .header-margin {
        margin-top: 50px;
    }



}

.my-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
    margin-right: calc(-.5* var(--bs-gutter-x));
}

.menu-open {}

.humberger {
    height: 100%;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.menu-open .humberger .line1 {
    transform: rotate(-45deg) translateX(0px);
    top: 45%;
    left: 37%;
}

.menu-open .humberger .line2 {
    opacity: 0;
}

.menu-open .humberger .line3 {
    transform: rotate(45deg) translateX(0px);
    top: 45%;
    left: 37%;
}

.humberger .line1 {
    width: 30px;
    height: 4px;
    position: absolute;
    top: 30%;
    transform: translate3D(-50%, -50%, 0);
    left: 50%;
    background: #fff;
}

.humberger .line2 {
    width: 30px;
    height: 4px;
    position: absolute;
    top: 50%;
    transform: translate3D(-50%, -50%, 0);
    left: 50%;
    background: #fff;
}

.humberger .line3 {
    width: 30px;
    height: 4px;
    position: absolute;
    top: 70%;
    transform: translate3D(-50%, -50%, 0);
    left: 50%;
    background: #fff;
}



.no-underline {
    text-decoration: none;
}

.header-btn {
    background-color: #3C7E62;
    height: 100%;
    width: 100%;
    letter-spacing: 0.2em;
    display: block;
}



.header-btn:hover {
    transition: 0.3s;
    background-color: #1e3a2e;
    height: 100%;
    width: 100%;
    letter-spacing: 0.2em
}

.header-icon {
    height: 32px;
    width: 32px;
    display: inline;
}

.search-btn {
    background-color: #ffffff;
}

.header form {
    margin: 0;
}

.underline {
    position: relative;
    height: 100%;
    width: 100%;
    display: inline-block;
}

.underline:after {
    content: '';
    position: absolute;
    bottom: 35%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: center top;
}

.underline:hover::after {
    transform: scale(1, 0.5);
}

.menu-item {
    width: 100%;
}

.menu-open .phone-humberger-menu {
    visibility: visible;
    z-index: 1030;
    opacity: 1;
    transition: 0.3s;
    background-size: cover;
    background-image: url(../image/japanese-paper_00148.jpg);
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
}

.phone-humberger-menu {
    transition: 0.3s;
    position: fixed;
    visibility: hidden;
    background-color: #ffffff;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;

}

.phone-humberger-menu a {}

.phone-humberger-menu span {
    color: #ffffff;
    background-color: #1e3a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    padding: 3rem;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
}

.phone-humberger-menu span:hover {
    transition: 0.3s;
    color: #1e3a2e;
    background-color: #ffffff;

}

body {
    overflow-x: hidden;
    max-width: 100%;
}

.x-hidden {
    overflow-x: hidden;
    max-width: 100%;
}
