html {
  scroll-behavior: smooth;
}
body{
    background: #f1f2f6;
}
.header{
    position: relative;
    top:0;
    left:0;
    right:0;
    z-index:10;
    background: rgba(255, 255, 255, 0.5);
}
.nav-menu{}
.nav-menu ul{
    padding: 0;
    margin:0;
    text-align: center;
}
.nav-menu ul li{
    display: inline-block;
    border: 2px solid #2980b9;
    transition:1s;
}
.nav-menu ul .logo-area{
    border:none;
}
.nav-menu ul li a{
    padding: 15px 30px;
    color:white;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    transition:0.5s;
    background: #3498db;
    border: 5px solid white;
}
.nav-menu ul li a.logo{
    background: transparent;
    border-color:transparent;
}
.nav-menu ul li a.logo img{
    height: 150px;
}
.nav-menu ul li a:hover{
    background: #2980b9;
    color:white;
    border: 5px solid #2980b9;
}
.nav-menu ul li a.logo:hover{
    background: transparent;
    border-color:transparent;
}
.about{
    position: relative;
    padding: 40px 0;
}
.about .about-text{
    width: 90%;
    margin:0 auto;
    background: #fff;
    position: relative;
    padding: 30px;
    border-top:5px solid #2980b9;
}
.about .about-text h3{
    text-align: center;
    font-weight: bold;
}
.about .about-text p{
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    font-size:13px;
}
.news{
    margin-top:40px;
    margin-bottom:40px;
}
.news-item{
    margin-bottom:30px;
}
.news-item .news-img{
    position: relative;
}
.news-item .news-img .bl{
    position: absolute;
    display: block;
    top:0;
    left:-5px;
    height: 50px;
    width: 5px;
    background: #2980b9;
}
.news-item .news-img .blt{
    position: absolute;
    display: block;
    top:-5px;
    left:-5px;
    height: 5px;
    width: 50px;
    background: #2980b9;
}
.news-item .news-img .br{
    position: absolute;
    display: block;
    top:0;
    right:-5px;
    height: 50px;
    width: 5px;
    background: #2980b9;
}
.news-item .news-img .brt{
    position: absolute;
    display: block;
    top:-5px;
    right:-5px;
    height: 5px;
    width: 50px;
    background: #2980b9;
}
.news-item .news-img img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.news-item .news-title{
    font-size: 13px;
    font-weight: bold;
    margin:10px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height:3em;
}
.news-item .news-descript{
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    
}
.more-btn span{
    color: #2980b9;
    cursor: pointer;
}
.news-content img{
    width: 250px;
    float:left;
    margin-right: 20px;
}
.partners{
    background: white;
    padding: 20px 0;
}
#owl-demo .item{
    text-align: center;
    margin-bottom:30px;
}
#owl-demo .item img{
    height:150px;
    object-fit:contain;
}
.owl-next{
    background:#2980b9!important;
    opacity: 1!important;
}
.owl-prev{
    background:#2980b9!important;
    opacity: 1!important;
}
.videos{
    margin-top: 40px;
    margin-bottom: 40px;
}
.video-item{
    margin-bottom:20px;
}
.video-item iframe{
    border: 5px solid #2980b9;
    width:100%!important;
    height:400px!important;
}
.contact{    
    height: 450px;
}
.contact-info{
    background: #575757;
    padding:0;
    padding-top: 40px;
    height:100%;
    color:white;
}
.contact-item{
    margin-bottom:20px;
}
.contact-item i{
    color:white;
    font-size: 16px;
    margin-right:20px;
}
.contact-map{
    height:100%;
    padding:0;
}
.contact-map iframe{
    height:100%;
}
.submit-btn{
    background: #2980b9;
    color:white;
}
.submit-btn:hover{
    background: #2980b9;
    color:white;
}
.gallery{
    margin-top:40px;
    margin-bottom:40px;
}
.gallery > div{
    margin-bottom:20px;
}
.gallery > div img{
    height:160px;
    width:100%;
    object-fit:cover;
    object-position:top;
}
@media only screen and (max-width: 1300px) {
    .nav-menu ul li a{
        font-size:12px;
        padding: 15px 20px;
    }
}
@media only screen and (max-width: 1070px) {
    .nav-menu ul li a{
        font-size:12px;
        padding: 15px 10px;
    }
}
@media only screen and (max-width: 930px) {
    .nav-menu ul li.logo-area{
         display:block;
    }
}