* {
  box-sizing: border-box;
}
.tab-toggle,
.button {
  position: relative;
  display: flex;
align-items: center;
  color: #000;
  padding: 0.25rem 2rem;
  margin: 0 auto;
  background-color: #fff;
  border: none;
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.button:hover {
  color:yellow;
}
button:hover:before, button:hover:after,
.button:hover:before,
.button:hover:after {
  color:yellow;
}
button:after, button:before,
.button:after,
.button:before {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* ---------------------- Vertical Tabs */
.tabs {
  position: relative;
  min-height: 0;
  overflow-x: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  /* ---------------------- Tab */
  /* ---------------------- Content */
}
.tabs .tab {
  margin-bottom: 10px;
  margin-left: 35px;
  /* ---------------------- Tab Toggle */
}
.tabs .tab .tab-toggle img {
  width: 80px;
}
@media screen and (min-width: 55rem) {
  .tabs {
    padding-top: 189px;
    overflow: hidden;
  }
  .tabs .tab {
    float: left;
    clear: left;
    width: 30%;
  }
}
.tabs .tab .tab-toggle {
  padding: 0rem 1rem 0rem 1rem;
  position: relative;
  outline: none;
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 55rem) {
  .tabs .tab .tab-toggle {
    text-align: left;
  }
}
.tabs .tab .tab-toggle:after {
  content: "\25BC";
  position: absolute;
  display: block;
  right: 2rem;
  top: 50%;
  -webkit-transform: rotate(0deg) translateY(-50%);
  -moz-transform: rotate(0deg) translateY(-50%);
  -ms-transform: rotate(0deg) translateY(-50%);
  -o-transform: rotate(0deg) translateY(-50%);
  transform: rotate(0deg) translateY(-50%);
}
@media screen and (min-width: 55rem) {
  .tabs .tab .tab-toggle:after {
    -webkit-transform: rotate(-90deg) translateX(50%);
    -moz-transform: rotate(-90deg) translateX(50%);
    -ms-transform: rotate(-90deg) translateX(50%);
    -o-transform: rotate(-90deg) translateX(50%);
    transform: rotate(-90deg) translateX(50%);
  }
}
.tabs .tab .tab-toggle.active {
  color: #000;
  cursor: default;
  background: #FFFFFF;
box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.48);
border-radius: 15px;
transform: translateY(-20px);
}
.tabs .tab .tab-toggle.active:after {
  color: yellow;
  -webkit-transform: rotate(180deg) translateY(50%);
  -moz-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  -o-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}
@media screen and (min-width: 55rem) {
  .tabs .tab .tab-toggle.active:after {
    -webkit-transform: rotate(-90deg) translateX(50%) translateY(0);
    -moz-transform: rotate(-90deg) translateX(50%) translateY(0);
    -ms-transform: rotate(-90deg) translateX(50%) translateY(0);
    -o-transform: rotate(-90deg) translateX(50%) translateY(0);
    transform: rotate(-90deg) translateX(50%) translateY(0);
    right: 1rem;
  }
}
.tabs .content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  background-color: #fff;
  box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.48);
border-radius: 20px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  z-index: 3;
}
@media screen and (min-width: 55rem) {
  .tabs .content {
    margin-top: 100px;
    max-height: none;
    position: absolute;
    right: 50px;
    top: 0;
    width: 65%;
    opacity: 0;
    padding: 50px 70px 70px;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.tabs .content.active {
  max-height: 1000px;
}
@media screen and (min-width: 55rem) {
  .tabs .content.active {
    max-height: none;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
.tabs .content a {
  color: #111;
  text-decoration: none;
}
.tabs .content h2 {
  padding-bottom: 52px;
  font-size: 36px;
  text-transform: uppercase;
  text-align: left;
}
.tabs .content h3 {
  font-size: 16px;
  text-transform: none;
}
.tabs .description {
  font-size: 15px;
}
.tabs .content .col-md-3 {
  position: relative;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.109);
  overflow: hidden;
}

.tabs .content .col-md-3::before {
  content: "";
  z-index: -9;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(246, 196, 0);
  overflow: hidden;
  transition: .3s ease-in-out;
}

.tabs .content .col-md-3:hover::before {

 transform: translateY(100%);
}









.product-main {
  padding: 100px 0;
}
.product-main a {
  text-decoration: underline;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.product-main ul:first-child li {
  display: flex;
align-items: center;
  margin: 10px 0;
background: #FFFFFF;
border-radius: 15px;
transition: .3s ease-in-out;
}
.product-main ul li:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.4);
}
.product-main ul .active {
  position: relative;
box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.4);
z-index: 99;
}
.product-main ul li img {
  margin-left: 24px;
  width: 70px;
  height: auto;
}

.product-main-content {
  position: relative;
  padding: 41px 30px 69px;
  background: #fff;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.4);
border-radius: 20px;
z-index: 3;
}
.product-main-content h1 {
  margin-top: -10px;
  font-size: 32px!important;
margin-bottom: 90px!important;
opacity: 1!important;
width: 100%;
}
.product-main-content .col-md-3 {
  position: relative;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.109);
  overflow: hidden;
}

.product-main-content .col-md-3::before {
  content: "";
  z-index: -9;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(246, 196, 0);
  overflow: hidden;
  transition: .3s ease-in-out;
}

.product-main-content .col-md-3:hover::before {

 transform: translateY(100%);
}

.product-main-content h2 {
  font-size: 24px;
}
.product-main-content h3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}

@media(min-width:768px) {
  .product-main-list {
    transform: translate(50px);
  }
  .product-main-content {
    margin-right: 50px;
    padding: 50px 70px 70px;
  }
  .product-main-content h1 {
    margin-top: 0px;
    font-size: 40px!important;
  margin-bottom: 90px!important;
  opacity: 1!important;
  width: 100%;
  }
  .product-main-content h2,
  .product-main-content p {
    margin-right: 100px;
  }
  .product-main-content h2 {
    margin-top: 40px;
  }
  .sp-center-y {
    display: flex;
    align-items: center;
  }
}
