@font-face {
  font-family: defaultFont;
  src: url("../fonts/Cairo-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: defaultFont;
  src: url("../fonts/Cairo-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: defaultFont;
  src: url("../fonts/Cairo-SemiBold.ttf");
  font-weight:500;
}

html, body, div{
  font-family: defaultFont;
}
div {
  transition: width 2s, height 4s;
}

 td{
  font-weight: bold;
  font-size: 18px;
  color: white !important;
  padding-right: 10px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
tr{
  text-align: left;
  vertical-align: middle;
  padding: 0px !important;
  border: none !important;
}

.link,.link:hover,.link:focus{
  font-size: 18px;
  text-decoration:none;
  padding: 0px !important;
  margin: 0px !important;
  color:#f29c1e;
}

.myButton{
  font-family: defaultFont;
  background: #dcd3c4;
  color: #273a54;
  font-size: 16px;
  font-weight: bold;
  width: 220px;
  height: 40px;
  margin: 4px;
  border-radius: 100px;
  font-weight: 500; 
  transition: .3s;
  border-style: none;
}
.myButtonCircle{
  font-family: defaultFont;
  background: #dcd3c4;
  color: #273a54;
  font-size: 16px;
  font-weight: bold;
  width: 60px;
  height: 35px;
  border-radius: 20px;
  font-weight: 500; 
  transition: .3s;
  border-style: none;
}

.myButton:hover,.myButtonCircle:hover{
  transform: scale(1.15);
  border-style: none;
}

.dot {
  height: 1px;
  width: 1px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display:block;
  padding: 1px;
  margin-top: 1px;
}

.bg-image{
  color: white;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:-1;
  min-height: 100%;

}
.mainImage{
  height: 170px;
  width: 300px;
  min-height: 150px;
  min-width: 300px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.33, #f29c1e), color-stop(0.67, #f29c1e));
  background-image: -moz-linear-gradient(center bottom, #f29c1e 33%, #f29c1e 67%);
  padding: 1px;
  border-radius: 20px;
}

#logo{
  margin-top: 15px;
  text-align: center;
  animation: fadein 1s;
  -moz-animation: fadein 1s; /* Firefox */
  -webkit-animation: fadein 1s; /* Safari and Chrome */
  -o-animation: fadein 1s; /* Opera */ 
}

@keyframes fadein {
  from {
      transform: scale(1.2);
      opacity:0;
  }
  to {
      transform: scale(1);
      opacity:1;
  }
}

@-moz-keyframes fadein { /* Firefox */
  from {
      transform: scale(1.2);

      opacity:0;
  }
  to {
    transform: scale(1);

      opacity:1;
  }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}

@-o-keyframes fadein { /* Opera */
  from {
      opacity:0;
  }
  to {
      opacity: 1;
  }
}

/*swup transitions*/
.transition-fade {
  transition: .3s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

html.is-leaving .transition-fade{
  opacity: 0;
}

.transition-swipe{
  text-align: center;
  color: white;
  transition: .3s;
  opacity: 1;
  transform: translateX(0);
}

html.is-animating .transition-swipe {
  opacity: 0;
  transform: translateX(-800px);
}

html.is-leaving .transition-swipe {
  opacity: 0;
  transform: translateX(-800px);
}

