/*.admit-link {
  border: none;
  background-color: #1A237E;
  padding: 14px 28px;
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
 
  animation: mymove 2s infinite;
}
@keyframes mymove {
  50% {border-radius: 30px;}
}

/* Green */
/*.to-form {
  color: white;

}*/

/*.admit-link:hover {
  background-color: white;
  color: black;
}  
*/




.partnerbuttonglow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.partnerbuttonglow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.partnerbuttonglow-on-hover:active {
    color: #000
}

.partnerbuttonglow-on-hover:active:after {
    background: transparent;
}

.partnerbuttonglow-on-hover:hover:before {
    opacity: 1;
}

.partnerbuttonglow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}




blink {
  -webkit-animation: 2s linear infinite condemned_blink_effect; /* for Safari 4.0 - 8.0 */
  animation: 2s linear infinite condemned_blink_effect;
}

/* for Safari 4.0 - 8.0 */
@-webkit-keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}


* {box-sizing: border-box}

/* Style tab links */
.tablink {
  background-color: #555;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  width: 33.33%;
  
}

.tablink:hover {
  background-color: #777;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: black;
  display: none;
  padding: 100px 20px;
  height: 100%;
}



#Vacancies {background-color: #AED6F1;}
#Team {background-color: #E5E7E9;}
#Partner {background-color: #BFC9CA;}




.career-head-text {
  width: 100%;
  height: 100px;
  background-color: #BBDEFB;
  opacity: 0.9;
  position: relative;
  animation-name: example;
  animation-duration: 6s;
  text-align: center;
  padding: 30px;
 }

@keyframes example {
  0%   {background-color:#BBDEFB; left:0px; top:0px;}
  75%  {background-color:#FAFAFA; left:0px; top:200px;}
  100% {background-color:#BBDEFB; left:0px; top:0px;}
}




.card1 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 4);
  width: 130px;
  height: 220px;
  margin: auto;
  text-align: center;
  background-color: #5DADE2;
  border-radius: 80px 80px 0px 0px;
}

.card1:hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,1);
}

.post {
  color: black;
  font-size: 16px;
}

.zoom {
  transition: transform .9s;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);