/*----------------------------------------------- NAVIGATION -----------------------------------------------*/
/*NAV FRAMEWORK AND RESETS*/
#header-3tandai {
  width: 100vw;
  height: 50px;
  position: fixed;
  top: 0px;
  display: flex;
  justify-content: center;
  z-index: 5;
  background-color: white;

  top: env(safe-area-inset-top);
}

#header-3tandai nav {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
}

#header-3tandai nav [class*="button"],
#header-3tandai nav .menu-item-header, 
#header-3tandai nav .menu, 
#header-3tandai nav .menu-item, 
#header-3tandai nav a {
  cursor: pointer;
}







/*NAV-LEFT*/
#header-3tandai nav .nav-left {
  display: flex;
  flex-wrap: wrap;
}
















/*LOGO*/
#header-3tandai nav .logo {
  display: flex;
  overflow: hidden;
}

#header-3tandai nav .logo a {
  position: relative;
}



/*WIDTH OF LOGO A*/
@media screen and (max-width: 369px) {
  #header-3tandai nav .logo a {
    width: 100px;
  }

  /*THIS IS ONLY HERE SO THAT THE HINGE ANIMATION SHOWS*/
  #header-3tandai nav .logo a .logo-3tandai-old {
    left: 12px;
  }
}

@media screen and (min-width: 370px) {
  #header-3tandai nav .logo a {
    width: 100px;
  }
}



/*ORDER OF ELEMENTS*/
@media screen and (max-width: 768px) {
  #header-3tandai nav .nav-left .logo {
    order: 1;
  }
}

@media screen and (min-width: 769px) {
  #header-3tandai nav .nav-left .logo {
    order: 0;
  }
  #header-3tandai nav .logo a {
    padding-left: 30px;
  }
}



/*LOGO DIVS AND IMAGES - GENERAL*/
#header-3tandai nav .logo [class*="logo-3tandai"] {
  position: absolute;
}

#header-3tandai nav .logo img {
  height: 50px;
}



/*LOGO DIVS AND IMAGES - ANIMATIONS*/
.logo-3tandai-old {
  animation-delay: 2s;
  animation-duration: 1.25s;
}

#header-3tandai nav .logo .logo-3tandai-old .crossout {
  position: absolute;
  left: 5px;
  top: 24px;
  width: 0px;
  height: 3px;
  border-radius: 4px;
  background-color: #4C84FF;
  -webkit-animation: crossout .4s cubic-bezier(.55, 0, .1, 1);
  -moz-animation:    crossout .4s cubic-bezier(.55, 0, .1, 1); 
  -o-animation:      crossout .4s cubic-bezier(.55, 0, .1, 1); 
  animation:         crossout .4s cubic-bezier(.55, 0, .1, 1); 
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes crossout {
  100% {
    width: 93px;
    height: 3px;
  }
}

.logo-3tandai-new {
  animation-delay: 3s;
  animation-duration: 1.25s;
}

.logo-3tandai-new img {
  animation-delay: 4.25s;
}



/*LOGO DIVS AND IMAGES - HIDE AND DISPLAY*/
@media screen and (max-width: 369px) {
  #header-3tandai nav .logo .logo-3tandai-new img:first-of-type {
    display: none;
  }
}

@media screen and (min-width: 370px) {
  #header-3tandai nav .logo .logo-3tandai-new img:last-of-type {
    display: none;
  }
}


































/*HAMBURGER MENU*/
.hamburger-3tandai {
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
}

.hamburger-3tandai div,
.hamburger-3tandai div:after,
.hamburger-3tandai div:before {
  width: 25px;
  height: 7px;
  border-radius: 3.5px;
}

.hamburger-3tandai div:before,
.hamburger-3tandai div:after {
  background: #4C84FF;
}

.hamburger-3tandai div {
  background: transparent;
}

.hamburger-3tandai div {
  position: relative;
  transform: translateY(25px);
  transition: all 0ms 250ms;
}
.hamburger-3tandai div.animate {
  background: rgba(255, 255, 255, 0);
}

.hamburger-3tandai div:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  background: #4C84FF;
  transition: bottom 250ms 250ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-3tandai div:after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background: #4C84FF;
  transition: top 250ms 250ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-3tandai div.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 250ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-3tandai div.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 250ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 768px) {
  #header-3tandai nav .nav-left .hamburger-3tandai {
    display: flex;
  }
}

@media screen and (min-width: 769px) {
  #header-3tandai nav .nav-left .hamburger-3tandai {
    display: none;
  }
}







/*LINKS*/
@media screen and (max-width: 768px) {
  #header-3tandai nav .links {
    width: 100%;
    top: 50px;
    left: 0px;
    display: none;
    position: absolute;
    background-color: red;
    background-color: white;
    height: calc(100vh - 50px);
    overflow-y: scroll;
    border-top: 2px solid rgb(244,244,244);
  }
}

@media screen and (min-width: 769px) {
  #header-3tandai nav .links {
    order: 1;
    display: flex; 
    flex-wrap: wrap;
  }
}

/*BUTTONS (GENERAL)*/
@media screen and (max-width: 768px) {
  #header-3tandai nav .nav-left .links [class*="button"] {
    width: calc(100% - 40px);
    padding-left: 14px;
    padding-right: 26px;
    margin: 0px;
    background-color: red;
    background-color: white;
    border-bottom: 2px solid rgb(244,244,244);
  }
}

@media screen and (min-width: 769px) {
  #header-3tandai nav .nav-left .links [class*="button"] {
  }
}







/*MENU-ITEM-HEADER 768px AND SMALLER*/
@media screen and (max-width: 768px) {
  /*GENERAL*/
  #header-3tandai nav .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
  }

  /*MULTIPLE*/
  #header-3tandai nav .button-multiple-items .menu-item-header {
    padding: 8px 8px 8px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #header-3tandai nav div.button-multiple-items:hover .menu-item-header {
    background-color: rgb(244,244,244);
    background-color: yellow;
    background-color: #E4EDFF;
    background-color: #F2F6FF
  }

  #header-3tandai nav .button-multiple-items .menu-item-header h5 {
    color: #4C84FF;
    letter-spacing: -.5px;
    font-weight: 700;
  }

  .menu-item-header-highlight {
    background-color: rgb(244,244,244);
    background-color: yellow;
    background-color: #E4EDFF;
    background-color: #F2F6FF;
  }

  #header-3tandai nav .button-multiple-items .menu-item-header div {
    position: relative;
    height: 24px;
    width: 24px;
    border-radius: 12px;
    background-color: orange;
    background-color: #C9DAFF;
  }

  #header-3tandai nav .button-multiple-items .menu-item-header span {
    position: absolute; 
    width: 5px;
    height: 14px;
    top: 5px;
    left: 0px;
    right: 0px;
    margin: auto;
    border-radius: 2.5px;
    background-color: #4C84FF;
    -webkit-transition:all .25s ease-in-out;
       -moz-transition:all .25s ease-in-out;
        -ms-transition:all .25s ease-in-out;
         -o-transition:all .25s ease-in-out;
            transition:all .25s ease-in-out; 
  }

  #header-3tandai nav .button-multiple-items .menu-item-header span:first-of-type {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);  
  }

  #header-3tandai nav .button-multiple-items .menu-item-header span:last-of-type {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);  
  }

  .nav-plus-minus-rotate {
      -webkit-transform: rotate(90deg) !important;
              transform: rotate(90deg) !important;
  }

  /*SINGLE*/
  #header-3tandai nav .button-single-item .menu-item-header {
    height: 60px;
  }

  #header-3tandai nav .button-single-item .menu-item-header a { 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  #header-3tandai nav .button-single-item .menu-item-header a div {
    width: 100%;
    display: flex;
    align-items: center;
  } 

  #header-3tandai nav .button-single-item .menu-item-header a h5 { 
    text-align: left;
    padding: 10px 0px 11px 20px;
    color: #4C84FF;
    letter-spacing: -.5px;
    font-weight: 700;
  }

  #header-3tandai nav .button-single-item .menu-item-header a:hover div { 
    background-color: rgb(244,244,244);
    background-color: #F2F6FF;
    border-radius: 20px;
  }
}



/*MENU-ITEM-HEADER 769px AND LARGER*/
@media screen and (min-width: 769px) {
  #header-3tandai nav .button-multiple-items {
    height: 50px;
  }

  /*MULTIPLE*/
  #header-3tandai nav .button-multiple-items .menu-item-header {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding-right: 4px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 16px;
  }

  #header-3tandai nav div.button-multiple-items:hover .menu-item-header {
    background-color: #E4EDFF;
  }

  #header-3tandai nav .button-multiple-items .menu-item-header h5 {
    padding: 6px 12px 7px 12px;
    color: #4C84FF;
    font-weight: 700;
    letter-spacing: -.5px;
  }

  /*CARROT/ARROW*/
  #header-3tandai nav .button-multiple-items .menu-item-header div {
    position: relative;
    height: 24px;
    width: 24px;
    border-radius: 12px;
    background-color: #F2F6FF;
  }

  #header-3tandai nav .button-multiple-items:hover .menu-item-header div {
    background-color: #C9DAFF;
  }

  #header-3tandai nav .button-multiple-items .menu-item-header span {
    position: absolute; 
    width: 4px;
    height: 10px;
    margin: auto;
    border-radius: 3px;
    background-color: rgb(184,184,184);
    -webkit-transition:all .25s ease-in-out;
       -moz-transition:all .25s ease-in-out;
        -ms-transition:all .25s ease-in-out;
         -o-transition:all .25s ease-in-out;
            transition:all .25s ease-in-out;
    background-color: #4C84FF; 
  }

  #header-3tandai nav .button-multiple-items .menu-item-header span:first-of-type {
    bottom: 7px;
    left: 12.5px; 
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  #header-3tandai nav div.button-multiple-items:hover .menu-item-header span:first-of-type {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  #header-3tandai nav .button-multiple-items .menu-item-header span:last-of-type {
    bottom: 7px;
    left: 7.5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);  
  }

  #header-3tandai nav div.button-multiple-items:hover .menu-item-header span:last-of-type {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  /*SINGLE*/
  #header-3tandai nav .button-single-item .menu-item-header {
    height: 50px;
  }

  #header-3tandai nav .button-single-item .menu-item-header a {
    height: 100%;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    align-items: center;
  }

  #header-3tandai nav .button-single-item .menu-item-header a div {
    display: flex;
    padding: 6px 12px 7px 12px;
    border-radius: 16px;
  }

  #header-3tandai nav .button-single-item .menu-item-header a div h5 {
    color: #4C84FF;
    font-weight: 700;
    letter-spacing: -.5px;
  }

  #header-3tandai nav div.button-single-item:hover a div {
    background-color: rgb(236,236,236);
    background-color: #E4EDFF;
  }
}







/*MENU AND MENU-ITEM 768PX AND SMALLER (ONLY OCCURS FOR MULTIPLE)*/
@media screen and (max-width: 768px) {
  #header-3tandai nav .menu {
    width: 100%;
    display: none;
  }

  #header-3tandai nav .menu a {
    width: 100%;
    display: flex;
  }

  #header-3tandai nav .menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: 25px;
    margin-right: 25px;
    border-radius: 20px;
  }

  #header-3tandai nav a .menu-item {
    margin-bottom: 12px;
  }

  #header-3tandai nav .menu-item img {
    width: 40px;
    height: 40px;
    background-color: orange;
    background-color: #F2F6FF;
    background-color: #E4EDFF;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  #header-3tandai nav .menu-item img,
  #header-3tandai nav .menu-item div {
    -webkit-transform:translateZ();
    -webkit-transition:all .25s ease-in-out;
       -moz-transition:all .25s ease-in-out;
        -ms-transition:all .25s ease-in-out;
         -o-transition:all .25s ease-in-out;
            transition:all .25s ease-in-out;
  }

  #header-3tandai nav div.menu-item:hover img {
    margin-left: 20px;
  }

  #header-3tandai nav .menu-item div {
    display: flex;
    align-items: center;
    width: 100%;
  }

  #header-3tandai nav .menu-item h5 {
    padding: 10px 20px 11px 4px;
    font-weight: 700;
    letter-spacing: -.5px;
    color: #4C84FF;
    background-color: orange;
    background-color: #F2F6FF;
    background-color: #E4EDFF;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

/*MENU AND MENU-ITEM 769PX AND LARGER (ONLY OCCURS FOR MULTIPLE)*/
@media screen and (min-width: 769px) {
  #header-3tandai nav .menu {
    position: absolute;
    height: 0px;
    overflow: hidden;
    top: 50px;
    background-color: #F2F6FF;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
  }

  /*IF ADDING A BUTTON ADD 52PX, IF REMOVING A BUTTON SUBTRACT 52PX
    IF SINGLE BUTTON WITHOUT MENU, GIVE A HEIGHT OF 0PX*/
  #header-3tandai nav .links [class*="button"]:nth-of-type(1):hover .menu {
    height: 50px;
    width: 220px;
  }

  #header-3tandai nav .links [class*="button"]:nth-of-type(2):hover .menu {
    height: 102px;
    width: 220px;
  }

  #header-3tandai nav .links [class*="button"]:nth-of-type(3):hover .menu {
    height: 102px;
    width: 220px;
  }

  #header-3tandai nav .links [class*="button"]:nth-of-type(4):hover .menu {
    height: 154px;
    width: 220px;
  }

  #header-3tandai nav .menu a {
    height: 50px; 
    display: none;
  }

  #header-3tandai nav [class*="button"]:hover .menu a {
    display: block; 
  }

  #header-3tandai nav [class*="button"] .menu a:not(:last-child) {
    border-bottom: 2px solid #F2F6FF;
  }

  #header-3tandai nav .menu-item {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 28px;
  }

  #header-3tandai nav .menu-item img {
    margin-right: -40px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: green;
    background-color: #E4EDFF
  }

  #header-3tandai nav .menu-item div {
    height: 40px;
    background-color: #F2F6FF;
    display: flex;
    align-items: center;
    padding-right: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  #header-3tandai nav .menu a:hover .menu-item div {
    margin-left: 40px;
    background-color: orange;
    background-color: #E4EDFF
  }

  #header-3tandai nav .menu-item div h5 {
    color: #4C84FF;
    letter-spacing: -.5px;
    font-weight: 700;
  }

  /*HOVER TRANSITIONS*/
  #header-3tandai nav .menu .menu-item div,
  #header-3tandai nav .menu,
  #header-3tandai nav .menu a {
    -webkit-transform:translateZ();
    -webkit-transition:all .25s ease-in-out;
    -moz-transition:all .25s ease-in-out;
    -ms-transition:all .25s ease-in-out;
    -o-transition:all .25s ease-in-out;
    transition:all .25s ease-in-out; 
  }
}







/*MENU AND MENU-ITEM 768PX AND SMALLER (ONLY OCCURS FOR MULTIPLE)*/
@media screen and (max-width: 768px) {
  #header-3tandai nav .mobile-menu-bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    -webkit-transform:translateZ();
    -webkit-transition:all .25s ease-in-out;
    -moz-transition:all .25s ease-in-out;
    -ms-transition:all .25s ease-in-out;
    -o-transition:all .25s ease-in-out;
    transition:all .25s ease-in-out;
    background-color: white;
  }

  /*TURN ON FOR USE FOR PROMO OR SOMETHING OF THE LIKE. DO NOT APPLY ANY MARGINS/PADDING DIRECTLY TO THIS DIV*/
  /*#header-3tandai nav .mobile-menu-bottom-body {
    width: 100%;
    background-color: orange;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #header-3tandai nav .mobile-menu-bottom-body div {
    padding: 100px 50px;
  }*/

  #header-3tandai nav .mobile-menu-bottom-footer {
    width: 100%;
    display: flex;    
    align-self: flex-end;   
    justify-content: center;
    align-items: flex-end;
    border-bottom: 3px solid rgb(236,236,236);
  }

  #header-3tandai nav .mobile-menu-bottom-footer h6 {
    font-weight: 800;
    color: #F5A623;
    letter-spacing: -.5px;
    margin-bottom: 5px;
  }

  #header-3tandai nav .mobile-menu-bottom-footer div {
    width: 100px;
    height: 40px;
  }

  #header-3tandai nav .mobile-menu-bottom-footer div img  {
    width: 100%;
    display: block;
  }
}

@media screen and (min-width: 769px) {
  #header-3tandai nav .mobile-menu-bottom  {
    display: none;
  }
}







/*NEW ICON*/
#header-3tandai nav [class*="button"] h6 {
  color: white;
  background-color: #00CC91;
  padding: 2px 7px 2px 7px;
  border-radius: 9px;
  margin-left: 6px;
  margin-top: 1px;
  font-weight: 700;
}







/*NAV-RIGHT*/
#header-3tandai nav .nav-right {
  display: flex;
  flex-wrap: wrap;
}

#header-3tandai nav .nav-right a {
  padding-top: 11px;
}

#header-3tandai nav .nav-right a:first-of-type {
  padding-right: 7px;
  padding-left: 27px;
}

#header-3tandai nav .nav-right a:last-of-type {
  position: relative;
  padding-right: 27px;
  padding-left: 7px;
}

#header-3tandai nav .nav-right a img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #EDF2FF;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out; 
}

#header-3tandai nav .nav-right a:hover img {
  background-color: #C9DAFF;
}


#header-3tandai nav .nav-right .cart-count {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #F5A623;
  border-radius: 50%;
  top: 5px;
  right: 15px;
}

#header-3tandai nav .nav-right .cart-count h5 {
  color: white;
  width: 100%;
  text-align: center;
  font-size: 12px !important;
  padding-top: 2px;
  font-weight: 800;
}

@media screen and (min-width: 769px) {
  #header-3tandai nav .nav-right {
    padding-right: 20px;
  }
}
/*----------------------------------------------- NAVIGATION (END) -----------------------------------------------*/



















/*----------------------------------------------- FOOTER -----------------------------------------------*/
#footer-3tandai {
  display: flex;
  padding-top: 100px;
  background-color: rgb(236,236,236);
}
@media screen and (min-width: 1025px) {
  #footer-3tandai {
    width: calc(100% - 140px);
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 70px;
    padding-left: 70px;
  }
}
@media screen and (min-width: 576px) and (max-width: 1024px) {
  #footer-3tandai {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 575px) {
  #footer-3tandai {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 50px;
  }
}



/*FOOTER LINK WRAPPER*/
#footer-3tandai .footer-link-wrapper {
  display: flex;
}
@media screen and (min-width: 1025px) {
  #footer-3tandai .footer-link-wrapper {
    width: 100%;
    max-width: 600px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 576px) and (max-width: 1024px) {
  #footer-3tandai .footer-link-wrapper {
    order: 1;
    padding-top: 40px;
    border-top: 3px solid rgb(220,220,220);
    width: 100%;
    max-width: 600px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 575px) {
  #footer-3tandai .footer-link-wrapper {
    order: 1;
    border-top: 2px solid rgb(220,220,220);
    width: 100%;
    max-width: 260px;
    flex-wrap: wrap;
    justify-content: center;
  }
}



/*FOOTER LINK WRAPPER DIV*/
@media screen and (min-width: 1025px) {
  #footer-3tandai .footer-link-wrapper div {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 576px) and (max-width: 1024px) {
  #footer-3tandai .footer-link-wrapper div {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  #footer-3tandai .footer-link-wrapper div {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid rgb(220,220,220);
  }
}



/*FOOTER H5 HEADERS*/
#footer-3tandai .footer-link-wrapper > div > h5 {
  font-weight: 800;
  color: rgb(116,116,116);
}
@media screen and (min-width: 1025px) {
  #footer-3tandai .footer-link-wrapper > div > h5 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 576px) and (max-width: 1024px) {
  #footer-3tandai .footer-link-wrapper > div > h5 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  #footer-3tandai .footer-link-wrapper > div > h5 {
    margin-bottom: 10px;
  }
}



/*FOOTER H5 LINKS*/
#footer-3tandai .footer-link-wrapper > div > a > h5 {
  font-weight: 600;
  color: rgb(116,116,116);
}
@media screen and (max-width: 575px) {
  #footer-3tandai .footer-link-wrapper > div > a > h5 {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}



/*FOOTER H5 LINKS ON HOVER*/
#footer-3tandai .footer-link-wrapper a:hover h5 {
  color: rgb(184,184,184);
}









/*FOOTER HELP WRAPPER*/
#footer-3tandai .footer-help-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  #footer-3tandai .footer-help-wrapper {
    width: 200px;
    padding-left: 70px;
    border-left: 3px solid rgb(220,220,220);
  }
}
@media screen and (min-width: 576px) and (max-width: 1024px) {
  #footer-3tandai .footer-help-wrapper {
    width: 100%;
    order: 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  #footer-3tandai .footer-help-wrapper {
    width: 100%;
    order: 0;
    margin-bottom: 40px;
  }
}



/*H3*/
#footer-3tandai .footer-help-wrapper > h3 {
  width: 100%;
  text-align: center;
  font-weight: 800;
  color: rgb(116,116,116);
}
@media screen and (min-width: 1025px) {
  #footer-3tandai .footer-help-wrapper > h3 {
    margin-top: -10px;
  }
}



/*H5*/
#footer-3tandai .footer-help-wrapper > h5 {
  width: 100%;
  text-align: center;
  font-weight: 600;
  color: rgb(116,116,116);
}
@media screen and (min-width: 1025px) {
  #footer-3tandai .footer-help-wrapper > h5 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 576px) and (max-width: 1024px) {
  #footer-3tandai .footer-help-wrapper > h5 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  #footer-3tandai .footer-help-wrapper > h5 {
    margin-bottom: 10px;
  }
}



/*FOOTER HELP WRAPPER DIV*/
#footer-3tandai .footer-help-wrapper > div {
  width: 100%;
  display: flex;
  justify-content: center;
}



/*FOOTER HELP WRAPPER LINK*/
#footer-3tandai .footer-help-wrapper > div > a {
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  padding-left: 8px;
  padding-right: 8px;
}



/*FOOTER HELP WRAPPER IMG*/
#footer-3tandai .footer-help-wrapper > div > a > img {
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}



/*FOOTER HELP WRAPPER IMG ON HOVER*/
#footer-3tandai .footer-help-wrapper > div > a:hover img {
  -webkit-transform:translateZ();
  -webkit-transform:scale(1.2);
     -moz-transform:scale(1.2);
      -ms-transform:scale(1.2);
       -o-transform:scale(1.2);
          transform:scale(1.2);
}



/*FOOTER HELP WRAPPER H5*/
#footer-3tandai .footer-help-wrapper > div > a > h5 {
  font-weight: 600;
  margin-top: 2px;
  color: rgb(116,116,116);
  font-weight: 600;
}
/*----------------------------------------------- FOOTER (END) -----------------------------------------------*/