@charset "utf-8";
/* CSS Document */
@media screen and (min-width:990px) {
*{
    box-sizing: border-box;
}   
body{
    margin: 0px;
    background: #FFF;
}
html {
    scroll-behavior: smooth;
}

.menu-mobile{
     display:none;
}
#menumob{
     display:none;
}

.loading{
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    color: #6ebe3b;
    display: none;
}
.loading .inner{
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}
.loading .inner > div{
    width: 100%;
}
.loading img{
    display: block;
    margin: 0 auto 0 auto;
    width: 170px;
}

.header_atas{
    float: left;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
    background: #313d59;
    font-size: 14px;
    font-family: 'Source Sans Pro';
    font-weight: normal;
}
.header_atas i{
    font-size: 11px;
    color: #FFF;
    float: left;
    margin-top: 2px;
    margin-right: 7px;
}
.header_atas a{
    float: left;
    margin-right: 20px;
    color: #FFF;
}
.header_atas .right{
    font-size: 14px;
    color: #FFF;
    float: right;
}
.header_atas .right a{
    color: #FFF;
    margin-left: 5px;
}
.header_atas .right a i{
    float: left;
    margin-top: 3px;
    margin-right: 4px;
    font-size: 12px;
}
.header_atas .right a:hover{
    text-decoration: underline;
}

.menu_atas{
    float: left;
    width: 100%;
    background: #FFF;
    padding-top: 15px;
    padding-bottom: 15px;
}
.menu_atas .logo{
    float: left;
}
.menu_atas .logo img{
    width: 100%;
    max-width: 250px;
}

#navbar {
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FFF;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
    color: #000;
    z-index: 5;
}
.sticky + .content {
    padding-top: 60px;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
#cssmenu #menu-button {
    display: none;
}
#cssmenu {
    float: right;
    font-family: 'Source Sans Pro';
    margin-top: 3px;
}
#cssmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}
#cssmenu ul:after,
#cssmenu:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
#cssmenu ul li {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}
#cssmenu > ul > li {
    float: right;
    transition: all 0.3s ease 0s; 
    -webkit-transition: all 0.3s ease 0s;
}
#cssmenu > ul > li > a {
    padding: 15px;
    margin-right: 5px;
    text-align: center;
    font-size: 1.1vw;
    font-weight: bold;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease 0s; 
    -webkit-transition: all 0.3s ease 0s;
}
#cssmenu > ul > li a:hover,
#cssmenu > ul > li a.active{
    background: #e79800;
    color: #FFF;
}
#cssmenu ul li ul {
    position: absolute;
    left: -9999px;
    top: 45px;
    z-index: 20;
    background: #FFF;
}
#cssmenu ul li ul li {
    max-height: 0;
    position: absolute;
    -webkit-transition: max-height 0.4s ease-out;
    -moz-transition: max-height 0.4s ease-out;
    -ms-transition: max-height 0.4s ease-out;
    -o-transition: max-height 0.4s ease-out;
    transition: max-height 0.4s ease-out;
}
#cssmenu ul li.has-sub:after {
    position: absolute;
    top: 19px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    content: "";
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border-color 0.2s ease;
    -moz-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}
#cssmenu ul li.has-sub:hover:after {
    position: absolute;
    top: 19px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    content: "";
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border-color 0.2s ease;
    -moz-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}
#cssmenu ul li ul li a {
    font-size: 15px;
    text-transform: none;
    color: #666;
    letter-spacing: 0;
    display: block;
    padding: 13px;
    width: 250px;
    line-height: 1.3em;
    font-family: 'Source Sans Pro';
    transition: all 0.3s ease 0s; 
    -webkit-transition: all 0.5s ease 0s;
}
#cssmenu ul li ul li:hover > a,
#cssmenu ul li ul li.active > a {
    color: #FFF;
}
#cssmenu ul li ul li:hover > ul {
    left: 100%;
    top: 0;
}
#cssmenu ul li ul li:hover > ul > li {
    max-height: 72px;
    position: relative;
}
#cssmenu > ul > li {
    float: left;
}
#cssmenu > ul > li:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    z-index: 0;
    background:none;
    -webkit-transition: height .2s;
    -moz-transition: height .2s;
    -ms-transition: height .2s;
    -o-transition: height .2s;
    transition: height .2s;
}
#cssmenu > ul > li:hover > a:before,
#cssmenu > ul > li.active > a:before {
    border-top-color:none;
}
#cssmenu > ul > li:hover > ul {
    left: 0;
}
#cssmenu > ul > li:hover > ul > li {
    max-height: 72px;
    position: relative;
}
#cssmenu #menu-button {
    display: none;
}
#cssmenu > ul > li > a {
    display: block;
}
#cssmenu > ul > li {
    width: auto;
}
#cssmenu > ul > li > ul {
    width: 250px;
    display: block;
}
#cssmenu > ul > li > ul > li {
    width: 250px;
    display: block;
}

.welcome_home{
    float: left;
    width: 100%;
    background: #f2f3f6;
    padding-top: 14px;
    padding-bottom: 20px;
    position: relative;
}
.welcome_home .top{
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Caveat';
    font-weight: 600;
    color: #52b6bc;
    font-size: 65px;
}
.welcome_home .bottom{
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    color: #3a3a3a;
    font-size: 42px;
    line-height: 1.1em;
}
.welcome_home .text{
    float: left;
    width: 100%;
    text-align: center;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    color: #000;
    font-size: 18px;
    line-height: 1.3em;
}
.welcome_home .grid{
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -90px;
    width: 85%;
    margin-left: 7.5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.welcome_home .box{
    /*
    use
    33.33% grid of 3
    25%    grid of 4
    20%    grid of 5
    16.66% grid of 6
    */
    flex: 0 0 calc(25% - 40px);
    margin: 20px;
    height: 150px;
    padding: 20px;
    background: #FFF;
    overflow: hidden;
    text-align: center;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #747c84;
    font-size: 15px;
    text-transform: uppercase;
}
.welcome_home .box .ico{
    float: left;
    width: 100%;
    height: 50px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.welcome_home .box .ico img{
    width: 100%;
    height: 100%;
}

.info_home{
    float: left;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
    background: #FFF;
}
.info_home .left{
    float: left;
    width: 45%;
    height: 600px;
    overflow: hidden;
    position: relative;
	border-radius: 20px;
    -webkit-box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.1);	
}
.info_home .left .back{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 15%;
    background: rgba(0, 0, 0, .4);
}
.info_home .left .title{
    float: left;
    width: 100%;
    text-align: center;
    color: #FFF;
    font-size: 45px;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    line-height: 1.7em;
    margin-bottom: 50px;
}
.info_home .left .button{
    float: left;
    width: 100%;
    padding: 10px;
    background: #e79800;
    text-align: center;
    color: #FFF;
    font-size: 55px;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
	border-radius: 21px;
}
.info_home .left .button:hover{
    -webkit-box-shadow: 0px 0px 10px 3px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 10px 3px rgba(255,255,255,1);
    box-shadow: 0px 0px 10px 3px rgba(255,255,255,1);
}
.info_home .right{
    float: right;
    width: 45%;
    height: 600px;
    padding: 5%;
    background: #FFF;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.info_home .right:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: url(../images/back_login.jpg) no-repeat;
    opacity: 0.7;
}
.info_home .right .title{
    float: left;
    width: 100%;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    text-align: left;
    color: #000;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.info_home .right span{
    float: left;
    width: 100%;
    height: 50px;
    position: relative;
    margin-bottom: 40px;
}
.info_home .right .input{
    float: left;
    width: 100%;
    height: 50px;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    color: #747c84;
    font-size: 18px;
    background: #FFF;
    border: none;
    padding-left: 55px;
    border-bottom: 1px solid #bdbdbd;
    position: relative;
}
:focus{
    outline: none;
}
.info_home .right span i{
    color: #747c84;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 12px;
    z-index: 1;
	margin-left:10px;
}
.effect-1 ~ .focus-border{
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background-color: #00a7df; 
    transition: 0.4s;
}
.effect-1:focus ~ .focus-border{
    width: 100%; 
    transition: 0.4s;
}
.info_home .right .remember{
    float: left;
    width: 100%;
    font-size: 16px;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    color: #747c84;
    margin-bottom: 40px;
}
.info_home .right .remember .one{
    float: left;
}
.info_home .right .remember .two{
    float: right;
    color: #747c84;
    border-bottom: 1px solid #FFF;
}
.info_home .right .remember .two:hover{
    border-bottom: 1px solid #747c84;
}
.info_home .right .account{
    float: left;
    width: 100%;
    font-size: 16px;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    color: #747c84;
}
.info_home .right .account a{
    color: #747c84;
}
.info_home .right .account a:hover{
    border-bottom: 1px solid #747c84;
}
.info_home .right .button{
    float: left;
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    background: #00a7df;
    text-align: center;
    color: #FFF;
    font-size: 20px;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    border: none;
    margin-bottom: 40px;
}
.info_home .right .button:hover{
    background: #e79800;
}

.berita_home{
    float: left;
    width: 100%;
    background: #f5f5f5;
    padding-top: 30px;
}
.berita_home .title{
    float: left;
    font-family: 'Source Sans Pro';
    color: #253148;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
}
.berita_home .slide{
    float: left;
    width: 100%;
    margin-bottom: 80px;
}
.berita_home .box{
    float: left;
    width: 100%;
    height: 370px;
    background: #FFF;
    overflow: hidden;
    -webkit-box-shadow: inset 0px 0px 2px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0px 0px 2px 1px rgba(0,0,0,0.1);
    box-shadow: inset 0px 0px 2px 1px rgba(0,0,0,0.1);
    transition: 0.2s all ease-out;
    position: relative;
}
.berita_home .box .pic{
    float: left;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #000;
    position: relative;
}
.berita_home .box .pic .label{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px;
    border-radius: 3px;
    background: #fdc800;
    color: #FFF;
    font-size: 14px;
    font-family: 'Source Sans Pro';
    font-weight: bold;
}
.berita_home .box .pic img{
    width: 100%;
    height: 100%;
    transition: transform .5s;
}
.berita_home .box:hover .pic img{
    transform: scale(1.05);
}
.berita_home .box .desc{
    float: left;
    width: 100%;
    padding: 7.5%;
    overflow: hidden;
}
.berita_home .box .desc .title_berita{
    float: left;
    width: 100%;
    height: 45px;
    overflow: hidden;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #253148;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.berita_home .box:hover .desc .title_berita{
    color: #e79800;
}
.berita_home .box .desc .text{
    float: left;
    width: 100%;
    height: 40px;
    overflow: hidden;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    color: #777;
    font-size: 15px;
}
.berita_home .box .more{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 7.5%;
    padding-top: 10px;
    padding-bottom: 12px;
    border-top: 1px solid #e5e5e5;
}
.berita_home .box .more .date{
    float: left;
    font-size: 13px;
    color: #253148;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    margin-top: 10px;
}
.berita_home .box .more .button{
    float: right;
    padding: 10px;
    background: #e79800;
    text-align: center;
    color: #FFF;
    font-size: 13px;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    border: none;
}
.berita_home .box .more .button:hover{
    background: #07294d;
}
.carousel-wrap {
    width: 100%;
    margin: auto;
    position: relative;
}
.owl-carousel .owl-nav{
    height: 0px;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #2caae1;
}
.owl-carousel .item {
    text-align: center;
}
.owl-carousel .nav-news{
    height: 32px;
    position: absolute;
    width: 32px;
    cursor: pointer;
    top: -55px !important;
}
.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
    pointer-events: none;
    opacity: 1;
}
.owl-carousel .prev-news{
    background: url(../images/left.png) no-repeat;
    right: 32px;
}
.owl-carousel .next-news{
    background: url(../images/right.png) no-repeat;
    right: 0;
}
.owl-carousel .prev-news:hover{
    opacity: 0.7;
}
.owl-carousel .next-news:hover{
    opacity: 0.7;
}

.brosur_home{
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #FFF;
    overflow: hidden;
}
.brosur_home .grid{
    float: left;
    width: 90%;
    margin-left: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.brosur_home .box{
    flex: 0 0 calc(33.33% - 40px);
    margin: 20px;
    height: 500px;
    border-radius: 10px;
    background: #FFF;
    overflow: hidden;
    text-align: center;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #747c84;
    font-size: 15px;
    text-transform: uppercase;
    -webkit-box-shadow: inset 0px 0px 2px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0px 0px 2px 1px rgba(0,0,0,0.1);
    box-shadow: inset 0px 0px 2px 1px rgba(0,0,0,0.1);
    position: relative;
}
.brosur_home .box .top{
    float: left;
    width: 100%;
    padding: 15px;
    background: #291670;
    text-transform: none;
    color: #FFF;
    font-size: 20px;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    text-align: center;
}
.brosur_home .box .pic{
    float: left;
    width: 100%;
    height: 365px;
    padding: 25px;
    overflow: hidden;
    text-align: center;
}
.brosur_home .box .pic img{
    width: 100%;
    height: 100%;
}
.brosur_home .box .bottom{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: #f8f8f8;
    text-align: center;
}
.brosur_home .box .bottom .button{
    padding: 12px;
    padding-left: 30px;
    padding-right: 30px;
    background: #291670;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    border-radius: 5px;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    border: none;
    text-transform: none;
}
.brosur_home .box .bottom .button:hover{
    background: #e79800;
}

.galeri_home{
    float: left;
    width: 100%;
    padding-top: 50px;
    background: #291670;
    overflow: hidden;
}
.galeri_home .hastag{
    float: left;
    font-size: 150px;
    color: #fff500;
    margin-right: 30px;
}
.galeri_home .text{
    float: left;
    font-size: 50px;
    color: #FFF;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    line-height: 1em;
}
.galeri_home .frame{
    float: left;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 30px;
}
.galeri_home .frame .box_galeri{
    float: left;
    width: 25%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.galeri_home .frame .box_galeri img{
    width: 100%;
    height: 100%;
}
.maps_home{
    float: left;
    width: 100%;
    overflow: hidden;
}

.header_more{
    float: left;
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    background: #302e2e;
}
.header_more img.full{
    width: 100%;
    height: 100%;
}
.header_more .back{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.header_more .back .title_left{
    float: left;
    width: 100%;
    font-size: 40px;
    color: #FFF;
    font-family: 'Gazeta';
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: 10px;
}
.header_more .back .bread{
    float: left;
    width: 100%;
    font-size: 17px;
    color: #FFF;
    font-family: 'Source Sans Pro';
    font-weight: normal;
}
.header_more .back .bread a{
    color: #FFF;
}

.tentang_page{
    float: left;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    background: #FFF;
    overflow: hidden;
}
.tentang_page .side{
    float: left;
    width: 42%;
}
.tentang_page .side_two{
    float: right;
    width: 55%;
}
.tentang_page .title_tentang{
    float: left;
    width: 100%;
    position: relative;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    color: #003e5b;
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-align: left;
}
.tentang_page .title_tentang:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #e79800;
}
.tentang_page .title_tentang_bottom{
    float: left;
    width: 100%;
    font-family: 'Gazeta';
    font-weight: bold;
    color: #000;
    font-size: 38px;
    margin-bottom: 40px;
    text-align: left;
}
.tentang_page .text{
    float: left;
    width: 100%;
    font-family: 'Source Sans Pro';
    color: #777;
    font-size: 18px;
    line-height: 1.8em;
}
.tentang_page .text p{
    padding-bottom: 25px;
}
.tentang_page .text li{
    padding-bottom: 10px;
    margin-left: 20px;
    padding-left: 5px;
}
.tentang_page .pic_big{
    float: left;
    width: 100%;
    height: 450px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    background: url(../images/back_profil.png) no-repeat left bottom;
}
.tentang_page .pic_big .pic{
    float: right;
    width: 75%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}
.tentang_page .pic_big .pic img{
    width: 100%;
    height: 100%;
}
.tentang_page .visi{
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.tentang_page .box_visi{
    flex: 0 0 calc(50%);
    overflow: hidden;
    font-family: 'Source Sans Pro';
}
.tentang_page .text img.pic_text{
    width: 60% !important;
}
.tentang_page .box_visi .title{
    float: left;
    width: 100%;
    color: #000;
    font-family: 'Gazeta';
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
}
.tentang_page .box_visi .text{
    float: left;
    width: 100%;
    color: #7a7a7a;
    font-size: 20px;
    line-height: 1.7em;
    font-weight: normal;
}
.tentang_page .box_visi .text li{
    padding-bottom: 10px;
    margin-left: 20px;
    padding-left: 5px;
}
.tentang_page .dosen{
    float: left;
    width: 100%;
}
.tentang_page .dosen .grid{
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.tentang_page .dosen .box{
    float: left;
    width: 100%;
    height: 270px;
    background: #FFF;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.1);
    flex: 0 0 calc(50% - 40px);
    overflow: hidden;
    margin: 20px;
}
.tentang_page .dosen .box .pic{
    float: left;
    width: 40%;
    height: 270px;
    overflow: hidden;
}
.tentang_page .dosen .box .pic img{
    width: 100%;
    height: 100%;
}
.tentang_page .dosen .box .desc{
    float: left;
    width: 60%;
    padding: 5%;
    font-family: 'Source Sans Pro';
    color: #000;
    font-size: 16px;
}
.tentang_page .dosen .box .desc .name{
    float: left;
    width: 100%;
    margin-bottom: 5px;
    color: #291670;
    font-family: 'Gazeta';
    font-size: 20px;
    font-weight: bold;
}
.tentang_page .dosen .box .desc p{
    padding-bottom: 10px;
}
.tentang_page .dosen .box .desc li{
    padding-bottom: 5px;
    margin-left: 20px;
    padding-left: 0;
}

.berita_page{
    float: left;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    background: #edf0f2;
    overflow: hidden;
}
.berita_page .side{
    float: left;
    width: 67%;
}
.berita_page .side_two{
    float: right;
    width: 31%;
}
.berita_page .side .box_berita{
    float: left;
    width: 100%;
    height: 750px;
    background: #FFF;
    overflow: hidden;
    margin-bottom: 40px;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
}
.berita_page .side .box_berita .pic_berita{
    float: left;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.berita_page .side .box_berita .pic_berita img{
    width: 100%;
    height: 100%;
}
.berita_page .side .box_berita .desc{
    float: left;
    width: 100%;
    overflow: hidden;
    padding: 5%;
}
.berita_page .side .box_berita .desc .top{
    float: left;
    width: 100%;
    margin-bottom: 15px;
}
.berita_page .side .box_berita .desc .top .date{
    float: left;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #777;
    font-size: 15px;
    margin-right: 30px;
}
.berita_page .side .box_berita .desc .top .date i{
    float: left;
    color: #e79800;
    font-size: 15px;
    margin-right: 8px;
}
.berita_page .side .box_berita .desc .title_berita{
    float: left;
    width: 100%;
    height: 45px;
    overflow: hidden;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    color: #253148;
    font-size: 34px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.berita_page .side .box_berita:hover .desc .title_berita{
    color: #e79800;
}
.berita_page .side .box_berita .desc .text{
    float: left;
    width: 100%;
    height: 80px;
    overflow: hidden;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    color: #777;
    font-size: 17px;
    line-height: 1.5em;
    margin-bottom: 40px;
}
.berita_page .side .box_berita .desc .button{
    float: left;
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 3px;
    background: #07294d;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    border: none;
}
.berita_page .side .box_berita .desc .button:hover{
    background: #e79800;
}
.berita_page .side_two .cari{
    float: left;
    width: 100%;
    padding: 7%;
    background: #FFF;
    margin-bottom: 30px;
}
.berita_page .side_two .cari .input{
    float: left;
    width: 80%;
    padding: 3%;
    height: 50px;
    border: none;
    background: #FFF;
    color: #777;
    font-size: 16px;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(224,224,224,1);
    -moz-box-shadow: inset 0px 0px 0px 1px rgba(224,224,224,1);
    box-shadow: inset 0px 0px 0px 1px rgba(224,224,224,1);
}
.berita_page .side_two .cari .submit{
    float: left;
    width: 20%;
    padding: 3%;
    height: 50px;
    border: none;
    background: #07294d;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.berita_page .side_two .cari .submit:hover{
    background: #e79800;
    color: #07294d;
}
.berita_page .side_two .box_more{
    float: left;
    width: 100%;
    padding: 7%;
    background: #FFF;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
}
.berita_page .side_two .box_more .title{
    float: left;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    color: #253148;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
}
.berita_page .side_two .box_more .title:after{
    content: "";
    position: absolute;
    right: -45px;
    top: 13px;
    width: 30px;
    height: 2px;
    background: #e79800;
}
.berita_page .side_two .box_more .news_more{
    float: left;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    border-bottom: 1px solid rgba(224,224,224,1);
}
.berita_page .side_two .box_more .news_more:nth-last-child(1){
    float: left;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
    border-bottom: none;
}
.berita_page .side_two .box_more .news_more .pic{
    float: left;
    width: 30%;
    height: 80px;
    overflow: hidden;
}
.berita_page .side_two .box_more .news_more .pic img{
    width: 100%;
    height: 100%;
}
.berita_page .side_two .box_more .news_more .desc{
    float: right;
    width: 67%;
}
.berita_page .side_two .box_more .news_more .desc .title_berita{
    float: left;
    width: 100%;
    height: 40px;
    overflow: hidden;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    color: #253148;
    font-size: 17px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.berita_page .side_two .box_more .news_more .desc .title_berita:hover{
    color: #e79800;
}
.berita_page .side_two .box_more .news_more .desc .date{
    float: left;
    width: 100%;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #777;
    font-size: 15px;
}
.berita_page .side_two .box_more .kategori{
    float: left;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    border-bottom: 1px solid rgba(224,224,224,1);
    font-family: 'Source Sans Pro';
    font-weight: normal;
    color: #253148;
    font-size: 17px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.berita_page .side_two .box_more .kategori:hover{
    color: #e79800;
}
.berita_page .side_two .box_more .kategori:nth-last-child(1){
    float: left;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
    border-bottom: none;
}

.berita_page .side .box_berita_detail{
    float: left;
    width: 100%;
    background: #FFF;
    overflow: hidden;
    margin-bottom: 40px;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.05);
}
.berita_page .side .box_berita_detail .pic_berita{
    float: left;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.berita_page .side .box_berita_detail .pic_berita img{
    width: 100%;
    height: 100%;
}
.berita_page .side .box_berita_detail .desc{
    float: left;
    width: 100%;
    overflow: hidden;
    padding: 5%;
}
.berita_page .side .box_berita_detail .desc .top{
    float: left;
    width: 100%;
    margin-bottom: 15px;
}
.berita_page .side .box_berita_detail .desc .top .date{
    float: left;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #777;
    font-size: 15px;
    margin-right: 30px;
}
.berita_page .side .box_berita_detail .desc .top .date i{
    float: left;
    color: #e79800;
    font-size: 15px;
    margin-right: 8px;
}
.berita_page .side .box_berita_detail .desc .text{
    float: left;
    width: 100%;
    overflow: hidden;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    color: #777;
    font-size: 17px;
    line-height: 1.8em;
    margin-bottom: 40px;
}
.berita_page .side .box_berita_detail .desc .text p{
    padding-bottom: 25px;
}
.berita_page .side .box_berita_detail .desc .text li{
    padding-bottom: 5px;
    margin-left: 20px;
    padding-left: 0;
}
.berita_page .side .box_berita_detail .desc .share{
    float: left;
    width: 100%;
}

.paging{
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.paging ul{
    display: inline-block;
    margin: 0;
    padding: 0;
    zoom:1;
    *display: inline;
}
.paging li{
    float: left;
    list-style: none;
    margin: 5px;
    position: relative;
}
.paging li a{
    float: left;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 2px solid #07294d;
    background: #07294d;
    color: #FFF;
    font-size: 17px;
    line-height: 2em;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.paging li a:hover, .paging li a.active{
    border: 2px solid #e79800;
    background: #e79800;
}

.footer{
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #291670;
    position: relative;
}
.footer .grid{
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 30px;
}
.footer .grid > div{
    text-align: left;
}
.footer .box{
    float: left;
    width: 100%;
    max-width: 350px;
}
.footer .box .logo{
    float: left;
    width: 100%;
    margin-bottom: 35px;
}
.footer .box .logo img{
    width: 250px;
    float: left;
}
.footer .box .logo_two{
    float: left;
    width: 100%;
    margin-top: 35px;
    text-align: left;
}
.footer .box .logo_two img{
    width: 150px;
}
.footer .box .title{
    float: left;
    width: 100%;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #FFF;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: left;
}
.footer .box .text{
    float: left;
    width: 100%;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #FFF;
    font-size: 16px;
    overflow: hidden;
}
.footer .box .text p{
    padding-bottom: 10px;
}
.footer .box .link{
    float: left;
    width: 100%;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    color: #b7b7b7;
    font-size: 16px;
    margin-bottom: 10px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.footer .box .link:hover{
    color: #FFF;
}
.footer_bottom{
    float: left;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    background: #e79800;
    position: relative;
    color: #FFF;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    font-size: 17px;
    text-align: center;
}

/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    text-align: center;
    background: url(../images/top.png) no-repeat center #e79800;
    color: #FFF;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease-out; 
    -webkit-transition: all 0.3s ease-out;
    opacity: 0;
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.5);
}
#back-to-top:hover {
    opacity: 0.5;
}
#back-to-top.show {
    opacity: 1;
}
.container_24{
    margin-left: auto;
    margin-right: auto;
    width: 85%;
}
.container_25{
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}
}