body{
    margin: 0;
    background-color: #1e88e5;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #111;
}
p{
  font-size: 14px;
}
.mobi-container{
    max-width: 360px;
    margin: 20px auto;
    border-radius: 10px ;
    background-color: #e0edf8;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.brand img{
    display: block;
    margin: auto;
}
header.brand {
  background-color: #000b48;
    border-radius: 10px 10px 0 0;
}
video {
    display: block;
    margin: auto !important;
    }
.btn-hover {
    width: 160px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  
  .btn-hover:hover {
    background-position: 100% 0;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  
  .btn-hover:focus {
    outline: none;
  }
  
.btn-hover.btn {
  background-image: linear-gradient(
    to right,
    #25aae1,
    #4481eb,
    #04befe,
    #3f86ed
  );
  box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
  }
  .btn {
    display: block;
    margin: 0 auto 15px;
  }
  a{
    text-decoration: none;
  }
  .copy{
    padding: 10px 5px;
    background-color: #cfe2ff;
    border-radius: 0px 0px 10px 10px;
    text-align: center;
  }
  .copy p{
    font-size: 12px;
    margin: 0;
  }
  .inline{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

@media only screen and (max-width: 960px) {
    .mobi-container{
        max-width: 100%;
        margin: 0px auto;
        border-radius: 0px;
        box-shadow: none;
    }
    header.brand {
        border-radius: 0px;
    }
    .copy{
      border-radius: none;
    }
  }

/*--- POPUP ---*/
.welcomeModal {
  display: none;
  position: fixed; 
  z-index: 99999;  
  left: 0; 
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.7); 
}
.modal-content {
  background-color: #eee;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 300px;
  width:90%;
  border-radius: 10px;
  text-align: center;
  position: relative;
  animation-name: modal-ani;
  animation-duration: 2s;
  top:70px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
@keyframes modal-ani {
  from {top:-200px;}
  to {top:70px;}
}
.close {
  font-family: arial;
  font-weight: 300;
  font-size: 56px;
  padding: 0;
  margin: 0;
  width: auto;
  position: absolute;
  top: 8px;
  right: 8px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  color: #4a4a4a;
  line-height: 0.5;
  cursor: pointer;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #bdbdbd;
}
textarea {
    border-radius: 20px !important;
}
label{
  font-size: 13px;
  font-weight: 700;
}
select {
  margin-bottom: 20px;
}
.image-cover{
  overflow: hidden;
  margin-bottom: 20px;
}
main {
    height: auto;
}
@media only screen and (max-width: 1020px) {
  main {
    min-height: calc(100vh - 146px);
    }
}