@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Public Sans',sans-serif;
    /* font-family: 'Josefin Sans', sans-serif; */
}

.container-fluid{
    background-image: linear-gradient(#0163ac, #c1c1c1);
}
.logo{
    padding: 30px 0;
}
.logo1{
  text-align: right;
}
.cover-img{
    max-width: 240px;
    max-height: 400px;
    padding-bottom: 40px;
}
.whitepaper{
    padding: 30px 0 0 0;
    font-size: 20px;
}
.main-title{
    font-style: none;
    padding-top: 10px;
}
.abstract{
    padding-top: 50px;
    font-size: 20px;
}
ul{
    font-size: 20px;
    padding-left: 20px;
}
.form{
    padding: 50px;
}
.form-control{
    border: 1px solid #b1b3b3;
    border-radius: 5px;
    /* height: 50px; */
}

.cta_btn{
    text-decoration: none;
    margin-top: 20PX;
    font-size: 17px;
    letter-spacing: 1px;
    /* width: 200px; */
    min-width: 200px;
    background-color: #0064ad;
    border-color: #05758a;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    border-radius: 40px;
    transition: all .40s ease;
    color: #fff;
    outline: none;
    height: 50px;
    padding: 10px 20px;
}
.btn{
    margin-top: 20PX;
    font-size: 17px;
    letter-spacing: 1px;
    /* width: 200px; */
    min-width: 200px;
    background-color: #0064ad;
    border-color: #05758a;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    border-radius: 40px;
    transition: all .40s ease;
    color: #fff;
    outline: none;
    height: 50px;
}
.btn:hover, .cta_btn:hover{
    text-decoration: none;
    color: #fff;
    background-color: #2895a8;
}

#form{
    border-radius: 5px;
    box-shadow: 0px 10px 15px rgb(162 162 162);
    margin-bottom: 30px;

}

.parsley-errors-list{
    list-style-type: none;
    text-align: start;
    color: red;
    font-size: 16px;
}



/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
 .cover-img{
    margin-left: -92px;
  
 }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
    .cover-img{
     margin-left: -73px;
  
}}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
 .cover-img{
     margin-left: -73px;
  
 }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
   .cover-img{
    margin-left: -22px;
  
}}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
   .cover-img{
    margin-left: -22px;
   }
}