body{
    font-family: 'Nunito', sans-serif;
}
h1,h3,h4{
    font-family: 'Montserrat', sans-serif;
}
.navbar-dark .navbar-nav .nav-link
{
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    transition: color 1s;
}
.bg-dark
{
    background-color: rgba(0, 0, 0, 0.7) !important;
}
.col-sm-12{
    position: relative;
    min-height: 1px;
    padding-right: 30px;
    padding-left: 30px;
}
.spnn form label {
    float: left;
    margin-top: 8px;
    width: 100%;
    color: #044a7e;
}
.carousel-item
{
    height: 60vh !important;
}
.spnn form input{
    height: 40px;
    margin-bottom: 30px;
    padding-left: 15px;
    border:1px solid #4187bd;
    border-radius: 2px;
    color: #044a7e;
    background: #f9f9f9;

}
.spnn form select{
     height: 40px;
    margin-bottom: 30px;
    padding-left: 15px;
    border:1px solid #4187bd;
    border-radius: 2px;
    color: #044a7e;
    opacity: 0.7;
        background: #f9f9f9;

}
.spnn form input[type="file"]{
    border:0;
}
.mony input{
    font-weight: bold;
}
.spnn form input:focus{
 border:1px solid #4187bd;
}
.spnn form label{
    float: left;
    margin-top:8px;
    width:100%;
  color: #044a7e;
}
.exn{
    padding: 0px;
    margin-bottom:10px;
}
.spnn input[type="submit"]{
 background: #e77c1d;
 color: #fff;
 width: auto !important;
 font-size: 26px;
 padding: 8px;
 height: auto !important;
 text-align: center;
 padding-right: 30px;
 padding-top: 10px;
 padding-left: 30px;
 margin-top: 30px;
 border-radius: 25px;
 border: 1px solid #777;
}
.spnn input[type="submit"]:hover
{
    cursor: pointer;
    background-color:#f7a804 ;
}
.ex textarea{
    height: 120px;
    border:1px solid #777;
    padding-top: 20px;
    padding-left: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.navbar-dark .navbar-nav .nav-link:hover
{
    color: #e65f78 ;
}
.home
{
    background-image: url(../images/header-bg.jpg);
    background-size: cover;
    height: 100vh;
}
.overlay
{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0,0.6);
}
.caption h1{
    font-size: 50px;
}
.scroll
{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
}
.scroll div{
    width:30px;
    height: 50px;
    border: 1px solid #fff;
    position: relative;
    animation: move 0.5s alternate infinite;
}
@keyframes move 
{
    0%{bottom: 20px;}
    25%{bottom:35px;}
    50%{bottom:40px ;}
    75%{bottom: 45px;}
    100%{bottom: 50px;}
}
.scroll div::after
{
    content: "";
    position: absolute;
    bottom:10px;
    left: 12px;
    background-color: #fff;
    width: 2px;
    height: 10px;
}
.setting
{
    position: fixed;
    left: 0px;
    top: 30%;
    z-index: 2000;
}
.client i 
{
    color: #e65f78;
}
.carousel-indicators li
{
    background-color: #e65f78;
    width: 20px;
    height: 8px;
}
.work-item 
{
    position: relative;
    overflow: hidden;
}
.work-item .layer
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.5s;
}
.details 
{
    position: relative;
    top:70%;
    transition: top 0.5s;
}
.work-item:hover .details 
{
    top:0;
}
.work-item img{
    transition: transform 0.5s;
}
.work-item:hover img{
    transform: scale(1.3);
}
.work-item:hover .layer{
    opacity: 1;
}