@charset "UTF-8";
/* common styles !!!YOU DON'T NEED THEM 

.button-effect {
  padding: 10px 0px;
}
*/
.submitbutton {
  background: transparent;
  border: none;
  background-color: var(--darkblue);
  text-decoration: none !important;
}
.button-effect a {
  margin-right: 17px;
  background-color: var(--cyan);
  color: var(--white) !important;
}
.regbutton { 
    background: transparent;
    border: none;
    text-decoration: none !important;
    background-color: var(--cyan);
    text-align: center;
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: var(--white) !important;
    font-family: 'Univers_light', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 13px 0px;
    width: 170px;
    border-radius: 100px;
    overflow: hidden;
} 
.orangebtn a {
  background-color: var(--navy);
}
/* button styles !!!YOU NEED THEM 
!!!ALSO YOU NEED TO ADD FONTWESOME */
.effect {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #fff !important;
  font-family: 'Univers_light', sans-serif;
  font-size: 18px;
  padding: 13px 0px;
  width: 170px;
  border-radius: 0px;
  overflow: hidden;
}
/* effect-1 styles */
.effect.effect-1 {
  transition: all 0.2s linear 0s;
  text-decoration: none;
}
.effect.effect-1:before {
  content: "\f061";
  font-family: FontAwesome;
  font-size: 15px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 40px;
  margin-left: 20px;
  transition: all 0.2s linear 0s;
  text-decoration: none;
  border-radius: 100px;
}
.effect.effect-1:hover {
  text-indent: -20px;
}
.effect.effect-1:hover:before {
  opacity: 1;
  text-indent: 0px;
}
.downarrow:before {
  content: none;
  content: "\f063" !important;
  font-family: FontAwesome;
}
/* effect-2 styles */
.effect.effect-2 {
  transition: all 0.2s linear 0s;
}
.effect.effect-2:before {
  content: "\f061";
  color: var(--white) !important;
  font-family: FontAwesome;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -48px;
  width: 48px;
  height: 100%;
  background-color: var(--navy);
  border-radius: 0px 0px 0px 0px;
  transition: all 0.2s linear 0s;
  text-align: center;
  border-radius: 0px;
}
.effect.effect-2:hover {
  text-indent: -30px;
}
.effect.effect-2:hover:before {
  right: 0;
  text-indent: 0px;
}
/* effect-3 styles */
.effect.effect-3 {
  transition: all 0.2s linear 0s;
}
.effect.effect-3:before {
  content: "\f178";
  font-family: FontAwesome;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 30px;
  transition: all 0.2s linear 0s;
}
.effect.effect-3:hover {
  text-indent: -9999px;
}
.effect.effect-3:hover:before {
  top: 0;
  text-indent: 0;
}
/* effect-4 styles */
.effect.effect-4 {
  transition: all 0.2s linear 0s;
}
.effect.effect-4:before {
  content: "\f178";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 30px;
  transform: scale(0, 1);
  transition: all 0.2s linear 0s;
}
.effect.effect-4:hover {
  text-indent: -9999px;
}
.effect.effect-4:hover:before {
  transform: scale(1, 1);
  text-indent: 0;
}
/* effect-5 styles */
.effect.effect-5 {
  transition: all 0.2s linear 0s;
}
.effect.effect-5:before {
  content: "\f054";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 50% 50% 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: all 0.2s linear 0s;
}
.effect.effect-5:hover {
  text-indent: 30px;
}
.effect.effect-5:hover:before {
  transform: scale(1, 1);
  text-indent: 0;
}