

/* Code By Webdevtrick ( https://webdevtrick.com ) */
@import url("https://fonts.googleapis.com/css?family=Lato:400,300");

container_lang {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #222;
}

.tabs {
  --links-height: 60px;
 /* --links-background: linear-gradient(135deg, #e5eaf1 0%, #b9c5d8 100%);*/
  --links-background:linear-gradient(45deg, rgba(49,6,231,1) 0%, rgba(22,2,107,1) 100%);
  --links-overlay: linear-gradient(0deg, rgba(250,74,17,1) 27%, rgba(236,127,253,1) 57%, rgba(231,80,255,1) 82%, rgba(253,187,45,1) 100%);
  --Sllink-background: linear-gradient(90deg,transparent 70%,rgba(255, 255, 255, 0.2) 100%);
  width: 100%;
  max-width: 1200px;
  min-width: 300px;
  font-family: "NeueBit-Regular";
  font-size: 35px;
}
.tabs .tabLinks {
  margin: 0;
  margin-top:20px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--links-height);
  background: var(--links-background);
  list-style-type: none;
}
@media screen and (max-width: 750px) {
  .tabs .tabLinks {
    height: calc(var(--links-height) / 1);
  }
}
.tabs .tabLinks li {
  flex: 1;
}
.tabs .tabLinks li .singleLink {
  all: unset;
  position: relative;
  height: var(--links-height);
  width: 100%;
  background: var(--Sllink-background);
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .tabs .tabLinks li .singleLink {
    height: calc(var(--links-height) / 1);
    /*font-size: 12px;*/
  }
}
.tabs .tabLinks li .singleLink::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: var(--links-overlay);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: 0.8s ease-in-out;
}
.tabs .tabLinks li .singleLink .linkText {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  transition: 2.0s;
}
.tabs .tabLinks li .singleLink .linkText::before {
  position: absolute;
  content: attr(data-text);
  top: 160%;
  z-index: -1;
  font-size: 45px;
  font-weight: 600;
  color: white;
  opacity: 0.3;
  transition: 2.2s ease-out;
}
@media screen and (max-width: 750px) {
  .tabs .tabLinks li .singleLink .linkText::before {
    display: none;
  }
}
.tabs .tabLinks li .singleLink:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.tabs .tabLinks li .singleLink:hover .linkText {
  color: white;
  opacity: 1;
}
.tabs .tabLinks li .singleLink:hover .linkText::before {
  -webkit-transform: translateY(-300%);
          transform: translateY(-300%);
}
.tabs .tabLinks li .singleLink.active {
  -webkit-transform: scaleY(1.0);
          transform: scaleY(1.0);
  background: #c2ff17;
   -webkit-box-shadow: 0px 0px 18px 11px rgba(250,74,17,1);
-moz-box-shadow: 0px 0px 18px 11px rgba(250,74,17,1);
box-shadow: 0px 0px 18px 11px rgba(250,74,17,1);
}
.tabs .tabLinks li .singleLink.active::before {
  -webkit-transform: scaleY(0.05);
          transform: scaleY(0.05);
}
.tabs .tabLinks li .singleLink.active .linkText {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.tabs .tabLinks li .singleLink.active .linkText, .tabs .tabLinks li .singleLink.active:hover .linkText {
  background: var(--links-overlay);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: 1;
}
.tabs .TabContents {
  position: relative;
  margin-top: 0;
  padding: 20px 25px;
  background: #c2ff17;
  list-style-type: none;
  transition: 1s;
  opacity:0.8;
  -webkit-box-shadow: 0px 0px 18px 11px rgba(250,74,17,1);
-moz-box-shadow: 0px 0px 18px 11px rgba(250,74,17,1);
box-shadow: 0px 0px 18px 11px rgba(250,74,17,1);
}
.tabs .TabContents::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
    background: var(--links-overlay);


}
.tabs .TabContents .insideContent {
  display: none;
  min-height: 100px;
  font-size: 25px;
  color: black;
  line-height: 1.0;
   text-shadow: 0px 0px #ff0000;
   text-align:left;
  opacity: 0;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  -webkit-animation: fadeIn 0.6s forwards;
          animation: fadeIn 0.6s forwards;

}
.tabs .TabContents .insideContent.active {
  display: block;

}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
