@import url('https://fonts.googleapis.com/css?family=Numans');

body{
width: 100%;
height: 80vh;
font-family: "Open Sans", sans-serif;
}
.swal2-popup {
    font-size: 1rem !important;
}

.container{
height: 100%;
align-content: center;
}

.card{
height: 350px;
margin-top: auto;
margin-bottom: auto;
width: 370px;
background-color: rgba(0,0,0,0.2) !important;
}

.social_icon span{
font-size: 60px;
margin-left: 10px;
color: #FFC312;

}


.social_icon span:hover{
color: white;
cursor: pointer;
}


.card-header h4{
color: white;
}


.social_icon{
position: absolute;
right: 20px;
top: -45px;
}


.input-group-prepend span{
width: 40px;
height: 40px;
background-color: #FFC312;
color: black;
border:0 !important;
}


input:focus{
outline: 0 0 0 0  !important;
box-shadow: 0 0 0 0 !important;

}


.login_btn{
color: black;
background-color: #FFC312;
width: 100px;
}


.login_btn:hover{
color: white;
background-color: #17105B;
}


.links{
color: white;
}


.links a{
margin-left: 4px;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/hero-bg.jpeg") top center;
  background-size: cover;
  height: 100vh;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}



/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 5px 0;
  text-align: bottom;
  
}

.clients img {
  max-width: 50%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 21px 0 ;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

