a:focus,
a:hover {
    color: #000;
    text-decoration: none;
}

ol,
ul,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6,
img,
p {
    padding: 0;
    margin: 0;
font-size:13px;
}

li {
    display: block;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
}

a {
    color: #292929;
    cursor: pointer;
}

strong {
    font-weight: 600;
}

.p-l-0 {
    padding-left: 0 !important;
}

.p-l-5 {
    padding-left: 5px !important;
}

.p-l-15 {
    padding-left: 15px !important;
}

.p-t-0 {
    padding-top: 0 !important;
}

.p-b-10 {
    padding-bottom: 10px !important;
}









/* preloader */

.preloader {
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}


.preloader img {
    max-width: 300px;
}

.ball-container {
    width: 300px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cord {
    padding-top: 100px;
    width: 15px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    float: left;
}


.ball {
    background: #333;
    width: 15px;
    height: 15px;
    float: left;
    border-radius: 50%;
}

.shadows {
    clear: left;
    padding-top: 20px;
    margin-left: -2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.shadows div {
    float: left;
    margin-left: 2px;
    width: 13px;
    height: 3px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 3px rgba(204, 204, 204, 0.3);
    box-shadow: 0px 0px 3px rgba(204, 204, 204, 0.3);
    background: rgba(204, 204, 204, 0.3);
}

.leftMove {
    -webkit-animation: leftBall .5s ease-in-out 0s infinite alternate;
    animation: leftBall .5s ease-in-out 0s infinite alternate;
}

.rightMove {
    -webkit-animation: rightBall .5s ease-in-out 0s infinite alternate;
    animation: rightBall .5s ease-in-out 0s infinite alternate;
}


.leftShadow {
    -webkit-animation: leftShadowN .5s ease-in-out 0s infinite alternate;
    animation: leftShadowN .5s ease-in-out 0s infinite alternate;
}

.rightShadow {
    -webkit-animation: rightShadowN .5s ease-in-out 0s infinite alternate;
    animation: rightShadowN .5s ease-in-out 0s infinite alternate;
}


@-webkit-keyframes leftBall {
    0% {
        -webkit-transform: rotate(0deg) translateY(0px);
        transform: rotate(0deg) translateY(0px);
    }
    /*this pauses the ball at the begining*/
    50% {
        -webkit-transform: rotate(0deg) translateY(0px);
        transform: rotate(0deg) translateY(0px);
    }
    100% {
        -webkit-transform: rotate(50deg) translateY(-20px);
        transform: rotate(50deg) translateY(-20px);
    }
}


@keyframes leftBall {
    0% {
        -webkit-transform: rotate(0deg) translateY(0px);
        transform: rotate(0deg) translateY(0px);
    }
    /*this pauses the ball at the begining*/
    50% {
        -webkit-transform: rotate(0deg) translateY(0px);
        transform: rotate(0deg) translateY(0px);
    }
    100% {
        -webkit-transform: rotate(50deg) translateY(-20px);
        transform: rotate(50deg) translateY(-20px);
    }
}

@-webkit-keyframes rightBall {
    0% {
        -webkit-transform: rotate(-50deg) translateY(-20px);
        transform: rotate(-50deg) translateY(-20px);
    }
    /*this pauses the ball at the begining*/
    50% {
        -webkit-transform: rotate(0deg) translateY(0px);
        transform: rotate(0deg) translateY(0px);
    }
    100% {
        -webkit-transform: rotate(0deg) translateY(0px) translateX(0px);
        transform: rotate(0deg) translateY(0px) translateX(0px);
    }
}

@keyframes rightBall {
    0% {
        -webkit-transform: rotate(-50deg) translateY(-20px);
        transform: rotate(-50deg) translateY(-20px);
    }
    /*this pauses the ball at the begining*/
    50% {
        -webkit-transform: rotate(0deg) translateY(0px);
        transform: rotate(0deg) translateY(0px);
    }
    100% {
        -webkit-transform: rotate(0deg) translateY(0px) translateX(0px);
        transform: rotate(0deg) translateY(0px) translateX(0px);
    }
}

@-webkit-keyframes leftShadowN {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    /*this pauses the ball at the begining*/
    50% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {

        -webkit-transform: translateX(-25px);

        transform: translateX(-25px);
    }
}

@keyframes leftShadowN {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    /*this pauses the ball at the begining*/
    50% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {

        -webkit-transform: translateX(-25px);

        transform: translateX(-25px);
    }
}

@-webkit-keyframes rightShadowN {
    0% {
        -webkit-transform: translateX(25px);
        transform: translateX(25px);
    }
    /*this pauses the ball at the begining*/
    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes rightShadowN {
    0% {
        -webkit-transform: translateX(25px);
        transform: translateX(25px);
    }
    /*this pauses the ball at the begining*/
    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}









/*colors*/

.cord:nth-of-type(1) .ball {
    background: #01abc8;
}

.cord:nth-of-type(2) .ball {
    background: #01abc8;
}

.cord:nth-of-type(3) .ball {
    background: #01abc8;
}

.cord:nth-of-type(4) .ball {
    background: #01abc8;
}

.cord:nth-of-type(5) .ball {
    background: #01abc8;
}

.cord:nth-of-type(6) .ball {
    background: #01abc8;
}

.cord:nth-of-type(7) .ball {
    background: #01abc8;
}

.menuDown {
    margin-left: 5px;
}

.menuRight {
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    margin-right: 5px;
}

.m-0 {
    margin: 0 !important
}

.mt-5 {
    margin-top: 5px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-15 {
    margin-top: 15px !important;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.m-t-15 {
    margin-top: -15px;
}

.m-t-0 {
    margin-top: 0 !important;
}

.dropdownMenu .dropdown-menu {
    min-width: 143px;
    z-index: 99
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    display: block;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown .menuDown {
    -moz-transition: transform 0.3s ease 0s;
    -ms-transition: transform 0.3s ease 0s;
    -o-transition: transform 0.3s ease 0s;
    -webkit-transition: transform 0.3s ease 0s;
}

.dropdown.open>a>.menuDown {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dropdown-menu.language {
    right: 0 !important;
}

.dropdownMenu li a {
    font-size: 12px;
}

.yamm .dropdown-menu>li>a:focus,
.yamm .dropdown-menu>li>a:hover {
    background: none;
    color: #fff;
}

.language li img {
    width: 20px;
    display: inline-block;
}

.language li span {
    padding-left: 15px;
    color: #757575;
}

.language li:hover span {
    color: #fff;
}

.mTop-15 {
    margin-top: -15px;
}

.indexVideo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}









/* general css */

.padding {
    padding: 50px 0;
}

.padding-2 {
    padding: 30px 0;
}

.sectionbg {
    background: #f7f7f7;
}

.mr0 {
    margin-right: 0 !important;
}

.letterspacing {
    letter-spacing: 3px;
}

.sectionTitle {
    font-weight: 600;
    color: #292929;
    padding-bottom: 30px;
}

.bold {
    font-weight: 600;
}

.facebook {
    color: #3b5998;
}

.twitter {
    color: #1da1f2;
}

.youtube {
    color: #d8362a;
}

.instagram {
    color: #c63570;
}

.linkedin {
    color: #0077b7;
}

header {
    width: 100%;
    height: auto;
    background: #fafafa;
    padding: 15px 0 0 0;
    border-bottom: 1px solid #eee;
}

.indexHeader {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.topbar {
    float: right;
    background: #f7f7f7;
    margin-top: -15px;
    border-bottom: 1px solid #f1f1f1;
}

.topbar ul {
    float: left;
}

.topMenu {
    z-index: 1;
    position: relative;
    right: -30px;
    padding-top: 9px;
}

.topMenu li {
    display: block;
    padding: 0 7px;
    float: left;
}

.topMenu li a {
    color: #757575;
    font-size: 13px;
    text-transform: uppercase;
}

.topMenu li:hover a {
    color: #01abc8;
}

.dropdownMenu {
    position: relative;
    z-index: 9
}

.topbarDropdown {
    float: right;
    margin: 0 7.5px;
}

.dropdownMenu #dropdownMenu1 {
    width: auto;
    height: auto;
    background: #01abc8;
    border-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #fff;
    padding: 10px 15px;
    text-align: left;
    outline: 0;
    z-index: 1f;
    position: relative;
    border: none;
}

.dropdownMenu #dropdownMenu1 .menuRight {
    float: right;
    margin-top: 8px;
    margin-left: 15px;
}

.topbarDropdown .dropdown-menu {
    background: #fff;
}

.topbarDropdown .dropdown-menu li a {
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    color: #757575;
}

.dropdownMenu .dropdown-menu li a:hover {
    background: #01abc8;
    color: #fff;
}

.dropdownMenu i {
    color: #fff;
    padding-right: 10px;
}

.dropdownMenu span {
    font-weight: 300;
    font-size: 12px;
}

.mainMenu .navbar-brand {
    height: auto;
}

.navbar-brand>img {
    margin-top: 25px;
    width: 290px;
}

.mainMenu {
    margin-bottom: 0;
    position: relative !important;
}

.mainMenu .dropdown-menu {
    top: 166%;
    width: 120%;
    left: -20%;
    border-radius: 0 0 4px 4px;
}

.dropdown-menu.dropdown-menu-2 {
    width: auto !important;
    left: auto;
    min-width: 250px;
}

.mainMenu .navbar-nav {
    margin-top: 30px;
}

.mainMenu>li>a {
    color: #757575;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 10px;
    margin: 0;
    font-size: 13px;
}

.mainMenu>li:last-child>a {
    margin-right: 0;
}

.mainMenu>li>a:focus,
.mainMenu>li>a:hover {
    background: #01abc8;
    color: #fff;
}

.mainMenu li.aday a {
    background: #01abc8;
    color: #fff;
}

.mainMenu li.search {
    position: static;
    margin-left: 10px;
}

.mainMenu li.search a {
    background: #757575;
    color: #fff;
    font-size: 14px;
    padding: 10px 13px;
    position: relative;
}

.searchIcon::before {
    content: "\f002";
    font-family: 'FontAwesome';
}

.search-content {
    position: absolute;
    width: 94%;
    height: 40px;
    top: -6px;
    right: 7%;
    left: 0;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    display: none;
}

.searchInput:focus {
    border-bottom: 1px solid #01abc8;
}

.searchSubmit {
    position: absolute;
    top: 17px;
    right: 15px;
    background: none;
    border: none;
    font-weight: 600;
    color: #757575;
    outline: none;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.mobile-search {
    display: none;
    float: right;
    margin-top: 33px;
    margin-right: 15px;
    position: static;
}

.mobile-search a {
    background: #757575;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    float: right;
}

.mobile-search .search-content {
    width: 100%;
    margin-right: 0;
    top: 132%;
    left: 0;
    z-index: 99;
}

.mobile-search .search-content .searchInput {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 15px;
}

.mobile-search .search-content .searchSubmit {
    top: 15px;
}

.searchInput {
    width: 100%;
    border: none;
    outline: 0;
    padding: 15px 15px 8px 15px;
    border-bottom: 1px solid #eee;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    -webkit-transition: all 1s ease 0s;
}

.nav li a,
.topMenu li a {
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.mainMenu .open>a,
.mainMenu .open>a:focus,
.mainMenu .open>a:hover {
    background: #01abc8;
    color: #fff;
}







/* home video */

.video-wrapper {
    width: 100%;
    position: relative;
    background-size: cover;
}

.video-wrapper:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #01abc8;
    background: -webkit-linear-gradient(to right, #01abc8, #1179b2);
    background: -webkit-gradient(linear, left top, right top, from(#01abc8), to(#1179b2));
    background: -webkit-linear-gradient(left, #01abc8, #1179b2);
    background: -o-linear-gradient(left, #01abc8, #1179b2);
    background: linear-gradient(to right, #01abc8, #1179b2);
    z-index: 1;
    opacity: 0.5
}

.video-sound {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    color: #fff;
    outline: none;
    border: none;
    background: none;
    font-size: 36px;
}








/* slider */

 .main-slider {
    position: relative;
    overflow: hidden;
    height: 75vh;
}

.slide-img {
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-position: center center;
}

.main-slider .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 15px;
    display: flex;
    justify-content: center;
}

.main-slider .owl-dots .owl-dot {
    border: 2px solid #fff !important;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    border-radius: 50%;
}

.main-slider .owl-dots .owl-dot.active {
    background: #fff;
} 

.fastAccessTitle {
    font-size: 20px;
    font-weight: 500;
    color: #132554;
    padding-bottom: 0;
}

.fastAccess li {
    display: block;
    text-align: center;
    margin: 0;
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.fastAccess li a {
    display: block;
    margin-top: 25px;
    position: relative;
}

.fastAccess li>a:nth-child(1) {
    margin-top: 15px;
}

.fastAccess li:nth-child(6):before,
.fastAccess li:nth-child(12):before,
.fastAccess li:nth-child(18):before {
    display: none;
}

.fastAccess li img {
    height: 30px;
    display: inline-block;
}

.fastAccess li a:before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 50px;
    background: #eee;
    top: 7.5px;
}

.fastAccess li a:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 15px;
    right: 15px;
    height: 1px;
    background: #eee;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.fastAccess li a:hover:after {
    background: #01abc8;
    left: 0;
    right: 0;
}

.fastAccess li:hover p {
    color: #0f234b;
}

.fastAccess li p {
    color: #292929;
    margin-top: 3px;
    font-size: 13px;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.news {
    width: 100%;
    height: auto;
    background-image: url(../img/haberbg.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.news:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #01abc8;
    opacity: 0.4;
    z-index: 0;
}

.news .sectionTitle {
    color: #fff;
    font-weight: 100;
    font-size: 22px;
    letter-spacing: 0.2px;
}

#kampuste-yasam .sectionTitle,
.mainSocial .sectionTitle {
    font-weight: 100;
    letter-spacing: 0.2px;
    font-size: 22px;
}

.titleWhite a {
    color: #fff;
}

.zIndex {
    z-index: 1;
    position: relative;
}

.mainNotice {
    width: 100%;
    padding: 5px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    max-height: 320px;
    overflow-y: scroll;
}


.mainNotice::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0, 0.3);
    border-radius: 10px;
    background-color: rgba(0,0,0, 0.3);
}

.mainNotice::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(0,0,0, 0.3);
}

.mainNotice::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(255,255,255, .5);
    background-color: #fff;
}

.mainNotice li {
    display: block;
    padding: 10px 15px;
}

.mainNotice li a {
    color: #fff;
}

.mainNews li,
.department-list li {
    display: block;
    width: 100%;
    padding: 0 15px;
    padding-bottom: 15px;
    float: left;
}

.department-list li {
    padding: 0 !important;
}

.mainNews li a,
.department-list li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
}

.mainNews li .newsImg,
.department-list li .newsImg {
    width: 100%;
    height: 152px;
    background-position: center;
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
}

.mainNews li .newsContent,
.department-list li .newsContent {
    height: auto;
    position: absolute;
    left: 0;
    right: -0.5px;
    bottom: 0;
    color: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    padding: 10px 15px;
    background: #072a4f;
    opacity: 0.8;
}

.newsContent h3,
.department-list h3 {
    font-size: 12px;
    font-weight: 300;
    height: 26px;
    overflow: hidden;
}

.mainNews li a:hover .newsContent,
.department-list li a:hover .newsContent {
    opacity: 0.9;
}

.mainNews .owl-dots,
.department-list .owl-dots {
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mainNews .owl-dots .owl-dot,
.department-list .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    margin: 0px 5px;
    background-color: #fff;
    float: left;
    border-radius: 100%;
    opacity: 0.6;
}

.department-list .owl-dots {
    position: static;
}

.department-list .owl-dots .owl-dot {
    background-color: #02acc8;
}

.mainNews .owl-dots .owl-dot.active,
.department-list .owl-dots .owl-dot.active {
    opacity: 1;
}

.mainEvent .eventImg img {
    height: 391px;
}

.mainEvent .eventContent h3 {
    font-size: 14px;
}

.mainEvent .owl-nav {
    position: absolute;
    width: 100%;
    top: 45%;
}

.mainEvent .owl-prev {
    position: absolute;
    left: 15px;
    float: left;
    color: #fff;
    font-size: 56px;
}

.mainEvent .owl-next {
    position: absolute;
    right: 15px;
    float: right;
    color: #fff;
    font-size: 56px;
}

.gallery {
    width: 50%;
}

.gallery li {
    display: block;
}

.gallery .owl-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.gallery .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    margin: 0px 5px;
    background-color: #fff;
    float: left;
    border-radius: 100%;
    opacity: 0.6;
}

.gallery .owl-dots .owl-dot.active {
    opacity: 1;
}















/* Abu Social */

.mainSocial {
    width: 100%;
    height: auto;
    background: #f4f4f4;
    position: relative;
}

.mainSocial:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/social.png);
}

.gallerylist li img {
    width: 100%;
}

.social-box {
    width: 100%;
    height: auto;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
    min-height: 161px;
}

.social-box i {
    font-size: 22px;
}

.social-box span {
    position: relative;
    top: -2px;
}

.instagram-box {
    min-height: 365px;
}

.instagram-box span {
    position: relative;
    top: -3px;
}

.instagram-img {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.socialList {
    margin-top: 15px;
}

.socialList li {
    display: block;
    color: #757575;
    font-size: 12px;
}

.socialList li a {
    color: #757575;
}

.socialList li p {
    max-height: 67px;
    overflow: hidden;
}

.social-box .owl-dots {
    position: absolute;
    top: -32px;
    right: 0;
}

.social-box .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    margin: 0px 5px;
    background-color: #3b5998;
    float: left;
    border-radius: 100%;
    opacity: 0.6;
}

.facebook-box .owl-dots .owl-dot {
    background-color: #3b5998;
}

.twitter-box .owl-dots .owl-dot {
    background-color: #1da1f2;
}

.social-box .owl-dots .owl-dot.active {
    opacity: 1;
}

.instagramList li {
    width: 50%;
    float: left;
    padding: 8px 15px;
    display: block;
}

.instagramList li a {
    display: block;
    position: relative;
}

.instagramList li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    border-radius: 4px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    opacity: 0;
}

.instagramList li a:hover:before {
    opacity: 1;
}

.instagramList li img {
    width: 100%;
    border-radius: 4px;
}

.social-box-middle {
    width: calc(50% - 30px);
    float: left;
    background: #fff;
    margin: 0 15px;
    border-radius: 4px;
}

.social-box-middle i {
    font-size: 18px;
}

.social-box-middle a {
    padding: 15px;
    color: #000;
    display: block;
}

.social-box-middle span {
    position: static;
}












/* footer */

footer {
    width: 100%;
    height: auto;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    background-position: center center;
}

/* footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #01abc8;
    opacity: 1;
    z-index: 0;
} */

.footerLogo {
    text-align: center;
}

.footerLogo img {
    display: inline-block;
    width: 300px;
}

.footerLogo h3 {
    color: #fff;
    margin-top: 30px;
    font-size: 16px;
}

.footerMenu {
    margin-top: 30px;
}

.footerMenu ul {
    padding-bottom: 25px;
}

footer ul li {
    display: block;
    padding-bottom: 10px;
}

.footerMenu ul li a {
    color: #fff;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.footerMenu ul li a:hover {
    color: #f1f1f1;
    margin-left: 5px;
}

.footerMenu {
    padding-bottom: 25px;
    border-bottom: 1px solid #fff;
}

.footerContact {
    margin-top: 25px;
}

.footerContact li {
    display: block;
    color: #fff;
    float: left;
    padding: 0 15px 15px 0;
    font-size: 12px;
}

.gallery {
    float: left;
}

.campus {
    width: 50%;
    float: right;
}

.campus-link {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.campus p {
    font-weight: 500;
    font-size: 12px;
    font-weight: 100;
    padding: 0 5px;
}

.campusTop li {
    display: block;
    width: 33.3333%;
    float: left;
    position: relative;
    padding-left: 5px;
}

.campusTop li:hover:before,
.campusTop li:hover:after,
.middleImg li:hover:before,
.middleImg li:hover:after,
.largeImg .listContent:hover:before,
.largeImg .listContent:hover:after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

.campusTop li:before,
.middleImg li:before,
.largeImg .listContent:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25px;
    height: 25px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    z-index: 9;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    border-radius: 3px;
}

.campusTop li:after,
.middleImg li:after,
.largeImg .listContent:after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    z-index: 9;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    border-radius: 3px;
}

.campusGreen {
    background-color: rgba(7, 147, 0, 0.3) !important;
}

.campusBlue {
    background-color: rgba(0, 57, 161, 0.3) !important;
}

.campusOrange {
    background-color: rgba(240, 80, 9, 0.3) !important;
}

.campusYellow {
    background-color: rgba(175, 160, 0, 0.3) !important;
}

.campusPurple {
    background-color: rgba(70, 39, 159, 0.3) !important;
}

.campusRed {
    background-color: rgba(245, 68, 55, 0.3) !important;
}

.campusTurk {
    background-color: rgba(2, 170, 199, 0.3) !important;
}

.listContent {
    position: absolute;
    width: calc(100% - 5px);
    height: 100%;
    top: 0;
    left: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.middleImg li {
    display: block;
}

.middleImg .listContent {
    height: calc(100% - 5px);
    bottom: 5px;
}

.listContent p {
    color: #fff;
}

.campus img {
    display: block;
}

.campusTop li img {
    width: 100%;
    height: 124px;
}

.campusBottom {
    padding-top: 5px;
}

.largeImg {
    width: 66.3%;
    float: left;
    position: relative;
}

.largeImg img {
    height: 262px;
    width: 100%;
    padding-left: 5px;
}

.largeImg p {
    font-size: 16px;
}

.middleImg {
    width: 33.7%;
    float: right;
}

.middleImg ul li {
    padding-left: 5px;
    padding-bottom: 5px;
    position: relative;
}

.middleImg ul li img {
    width: 100%;
    height: 128px;
}

.navbar.yamm {
    position: relative;
    top: -25px;
    min-height: none;
    margin-bottom: 0;
}

.yamm-content h3 {
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.yamm-content li {
    padding: 5px 0;
    outline: none;
}

.yamm-content li a {
    color: #fff;
    font-size: 14px;
    font-weight: 100;
    outline: none;
    overflow: hidden;
}

.yamm-content li:hover>a,
.dropdown-menu-2 li:hover>a {
    color: #f1f1f1;
    background: none;
    margin-left: 5px;
}

.dropdown-menu.yamm-content {
    padding: 0;
}

.dropdown-menu.yamm-content ul {
    padding: 15px 0;
}

.yamm-content ul {
    padding: 15px;
}

.navbar.yamm .dropdown-menu-2 li {
    padding: 5px 0;
}

.navbar.yamm .dropdown-menu-2 li a {
    color: #fff;
    font-size: 12px;
    font-weight: 100;
    outline: none;
}

.navbar .list-unstyled.column-three.dropdown-menu {
    padding: 15px;
}









/* content page */

#breadcrumb {
    width: 100%;
    height: auto;
    background: #292929;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 0;
    position: relative;
    background-position: center bottom;
}

#breadcrumb:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #01abc8;
    opacity: 0.8;
    z-index: 1;
}

#breadcrumb h3 {
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px;
}

#breadcrumb .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

#breadcrumb .bradcrumb>li {
    font-size: 12px;
}

#breadcrumb .breadcrumb li a {
    color: #d0bebe;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#breadcrumb .breadcrumb li a:hover {
    color: #fff;
}

#breadcrumb .breadcrumb li.active {
    color: #fff;
}

#breadcrumb .breadcrumb li+li:before {
    content: "\f105";
    font-family: 'FontAwesome';
    padding: 0 10px;
}

.faculty-name-area-between-navbars h3 {
    font-size: 18px;
}

.sidebarTitle {
    font-weight: 600;
    font-size: 16px;
    color: #292929;
    margin-bottom: 30px;
}

.lastNews li {
    display: block;
    margin-bottom: 15px;
}

.lastNews li .lastNewsImg {
    width: 30%;
    float: left;
}

.lastNewsImg img {
    width: 100%;
    display: block;
}

.lastNewsTitle {
    width: 100%;
    float: none;
    padding-left: 0;
    position: relative;
    height: 48px;
}

.lastNewsTitle h4 {
    font-size: 12px;
    color: #000;
    overflow: hidden;
    height: 27px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.lastNewsTitle h4:hover {
    color: #01abc8;
}

.lastNewsTitle time {
    color: #ababab;
    font-size: 10px;
    position: absolute;
    bottom: 0;
}

.sidebarWidget {
    margin-bottom: 15px;
}

.sidebarFastAccess li {
    margin-bottom: 15px;
    background: #f4f4f4;
    width: 100%;
    height: auto;
    border-radius: 4px;
    padding: 10px 15px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.sidebarFastAccess li:hover {
    background: #f1f1f1;
}

.sidebarFastAccess li img {
    float: left;
    padding-right: 15px;
    color: #757575;
    top: 2px;
    position: relative;
}

.sidebarFastAccess li span {
    color: #757575;
    font-size: 12px;
}

.leftImg {
    width: 50%;
    height: auto;
    float: left;
    padding-right: 15px;
    position: relative;
}

.leftImg .contentImg {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.leftImg .contentImgDesc {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.content {
    color: #757575;
    font-size: 13px;
    line-height: 28px;
    text-align: justify;
}

.content img {
    max-width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
    object-fit: cover;
}

.content p {
    margin-bottom: 15px;
}

.content a {
    color: #02abc8;
}

.content h4 {
    font-size: 16px;
    margin: 15px 0;
    font-weight: 600;
}

.content p:first-child {
    margin-top: 0;
}

.content li {
    display: list-item;
    padding-bottom: 10px;
}

.content table ul li {
    display: block;
}

.contentGallery {
    width: 100%;
}

.contentGallery li {
    width: 33.3333%;
    float: left;
    padding: 15px;
    border-radius: 4px;
    display: block;
}

.contentGallery li img {
    width: 100%;
    /* height: 200px; */
    display: block;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    border-radius: 4px;
}

.contentGallery li img:hover {
    -webkit-box-shadow: 0px 0px 60px 7px rgba(204, 204, 204, 1);
    box-shadow: 0px 0px 60px 7px rgba(204, 204, 204, 1);
}









/* content list page */

.contentList {
    margin-top: -15px;
}

.contentList li {
    padding: 15px;
    float: left;
    display: block;
}

.contentList li img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.contentList li h4 {
    font-size: 14px;
    line-height: 22px;
    margin-top: 15px;
    margin-bottom: 0;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    height: 41px;
    overflow: hidden;
}

.contentList li time {
    color: #757575;
    font-size: 10px;
}

.contentList li:hover h4 {
    color: #01abc8;
}

.numberList {
    padding-left: 15px;
}

.numberList li {
    display: list-item;
    list-style-type: decimal;
}

.list-item {
    padding-left: 15px;
}

.list-item li {
    display: list-item;
}

.discList {
    padding-left: 15px;
}

.discList li {
    display: list-item;
    list-style: disc;
}























/* academic staff page */

nav.sidebar,
.main {
    -webkit-transition: margin 200ms ease-out;
    -o-transition: margin 200ms ease-out;
    transition: margin 200ms ease-out;
}

.sidebar .navbar-nav,
.sidebar .nav-pills {
    width: 100%;
    background: #f4f4f4;
    border-radius: 4px;
    margin: 0;
    margin-bottom: 30px;
}

.sidebar .nav-pills>li.active>a,
.sidebar .nav-pills>li.active>a:focus,
.sidebar .nav-pills>li.active>a:hover {
    color: #000;
    background: transparent;
}

.sidebar .nav>li>a {
    padding: 10px 15px;
    color: #757575;
    font-size: 13px;
    border-radius: 5px;
}

.sidebar .dropdown a span.menuDown {
    float: right;
    margin-top: 4px;
}

.sidebar .dropdown-menu {
    background: #f4f4f4;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
    border: none;
}

.sidebar .dropdown-menu li a {
    color: #757575;
    font-size: 12px;
    font-weight: 100;
    padding: 5px 20px;
}

.sidebar .icon-bar {
    background-color: #6d6d6d;
}

.sidebar .navbar-brand {
    font-size: 12px;
    color: #000;
    padding: 15px;
}

.sidebar .navbar-collapse {
    padding: 0;
}

.sidebar .dropdown.open .dropdown-menu {
    min-width: auto;
}

.sidebar .dropdown-menu>li>a {
    white-space: normal;
}

@media (min-width: 765px) {

    nav.sidebar .navbar-brand,
    nav.sidebar .navbar-header {
        text-align: center;
        width: 100%;
        margin-left: 0px;
    }

    nav.sidebar .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #777;
    }

    nav.sidebar {
        width: 100%;
        height: 100%;
        float: none;
        margin-bottom: 0px;
    }

    nav.sidebar li {
        width: 100%;
    }
}


nav.sidebar .navbar-nav .open .dropdown-menu>li>a {
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

nav.sidebar .navbar-nav .open .dropdown-menu>li>a:hover,
nav.sidebar .navbar-nav .open .dropdown-menu>li>a:focus {
    color: #000;
}

.sidebar .nav .open>a,
.sidebar .nav .open>a:focus,
.sidebar .nav .open>a:hover {
    background: #f4f4f4;
    color: #000;
}

.sidebar .nav>li>a:focus,
.sidebar .nav>li>a:hover {
    background: #f4f4f4;
    color: #000;
}

.sidebar .navbar-header {
    background: #f4f4f4;
    border-radius: 4px;
}

nav.sidebar ul li img {
    display: inline-block;
    width: 16px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

/* .academicStaff {
    margin-top: -15px;
} */

.academicStaff li {
    text-align: center;
    padding: 15px;
    min-height: 258px;
}

.academicStaff li:hover h4 {
    color: #01abc8;
}

.academicStaff li h4 {
    font-size: 13px;
    color: #292929;
    font-weight: 600;
    margin: 15px 0 10px 0;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    max-height: 27px;
    overflow: hidden;
}

.academicStaff li p {
    color: #757575;
    font-size: 11px;
    margin-bottom: 0;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination>li>a,
.pagination>li>span {
    border: none !important;
    color: #000 !important;
    background: transparent !important;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    background: transparent !important;
    border: none !important;
    color: #01abc8 !important;
}

.academic-staff-col { 
    margin-bottom: 20px;
}

.academic-staff-col h4,
.staff-col h5 {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
}

.staff-col h6 {
    text-align: center;
}

.academic-staff-col {
    text-align: center;
}

.staffImg {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    text-align: center;
}

.staffImg img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 200px;
    display: block;
}

.title-area h3 {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
}

.title-area h4 {
    font-size: 14px;
    font-weight: 400;
}

.staffWrap {
    background: #f4f4f4;
}

.staffInfo {
    background: #eee;
    height: auto;
    padding: 50px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.staffInfo figure,
.rektor figure {
    position: relative;
    overflow: hidden;
}

.staffInfo figure::before,
.rektor figure::before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 0;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.staffInfo figure:hover::before,
.rektor figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.staffInfo img {
    border-radius: 4px;
    width: 100%;
}

.staffEducation {
    margin-top: 30px;
}

.staffEducation li {
    margin: 15px 0;
}

.staffEducation li h4 {
    margin-bottom: 5px;
    font-size: 14px;
}

.staffCv {
    font-weight: 600;
    font-size: 16px;
}

.staffCv i {
    margin-right: 5px;
}

.staffDescription {
    background: #f4f4f4;
    padding: 50px;
    overflow: hidden;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.staffDescription h3 {
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 30px;
}

.staffDescription h4 {
    color: #757575;
    font-weight: 400;
    font-size: 16px;
    padding: 15px 0;
}

.staffDescription p {
    font-size: 12px;
    color: #757575;
    padding: 15px 0;
}

















/* faculties page */

.pageList {
    margin-top: -15px;
}

.pageList li {
    padding: 15px;
    width: 33.333%;
    float: left;
    position: relative;
}

.pageList li img {
    width: 100%;
    border-radius: 4px;
}

.pageList .pageContent {
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 15px;
    left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(2, 170, 199, 0.5);
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    border-radius: 4px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.pageList h3 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.pageList .pageContent:hover {
    background: rgba(2, 170, 199, 0.8);
}

.contentBanner img {
    width: 100%;
    border-radius: 4px;
}

.contentSlider .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
}

.contentSlider .owl-nav i {
    color: #fff;
    font-size: 36px;
}

.contentSlider .owl-prev {
    float: left;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.contentSlider .owl-next {
    float: right;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.contentSlider .owl-next:hover,
.contentSlider .owl-prev:hover {
    background: rgba(0, 0, 0, 0.9);
}

.contentSlider li .slider-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center center;
}

.contentBanner {
    margin-bottom: 30px;
    border-radius: 4px;
}

/* ------------------------------------- */
/* --- SIDEBAR - PAGE CONTENT BANNER --- */
/* ------------------------------------- */
.container .contentBanner .contentSlider {
    border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;
    border: 0px solid #000000;
    overflow: hidden;
}
/* -------------------------------------- */
/* --- /SIDEBAR - PAGE CONTENT BANNER --- */
/* -------------------------------------- */

.contentDescription h3,
.contentDescription h4,
.contentDescription h5 {
    padding: 15px 0;
    font-weight: 500;
    color: #292929;
}

.contentDescription h3:first-child {
    padding-top: 0;
}

.contentDescription {
    color: #757575;
    text-align: justify;
}

.contentDescription p,
.contentDescription ul {
    margin-bottom: 15px;
}

.contentDescription .contactBox {
    margin: 0;
}

.contentDescription table p,
.contentdescription table ul {
    margin-bottom: 0;
}

.contentDescription a {
    color: #797575;
}

.contentDescription a:hover {
    color: #000;
}

.academicCalendar {
    margin-bottom: 50px;
}

.academicCalendar:last-child {
    margin-bottom: 0;
}

.academicCalendar thead {
    background: #eee;
}

.academicCalendar thead th {
    color: #292929;
    font-weight: 600;
    border-right: 1px solid #dcdcdc !important
}

.academicCalendar>thead>tr>th:last-child {
    border-right-color: #eee !important;
}

.academicCalendar tr {
    padding: 15px 0;
}

.academicCalendar td {
    font-size: 13px;
}

.academicCalendar tr th:nth-child(2),
.academicCalendar tr th:nth-child(3) {
    width: 16%;
}

table a {
    color: #999;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 10px;
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom-width: 0;
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid #eee;
}

.table>caption+thead>tr:first-child>td,
.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
.table>thead:first-child>tr:first-child>th {
    border-top: 1px solid #eee;
}

.table thead th {
    font-weight: 900;
    font-size: 12px;
}

.academicCalendarTab {
    border: none;
}

.nav-tabs>li>a {
    color: #292929;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
}

.nav-tabs>li>a:focus,
.nav-tabs>li>a:hover {
    text-decoration: none;
    background-color: transparent;
    color: #01abc8;
}


.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #01abc8;
    border: none;
    border-bottom: 1px solid #01abc8;
}

.tab-content {
    margin-top: 30px;
}

.videoList {
    margin-top: -15px;
}

.videoList li {
    width: 33.3333%;
    float: left;
    position: relative;
    padding: 15px;
    min-height: 255px;
}

.videoList li .videoImg img {
    width: 100%;
    border-radius: 4px;
}

.videoList li .videoImg {
    position: relative;
    width: 100%;
}

.videoList li .videoImg {
}

.videoList li .videoImg:after {
    content: "\f04b";
    position: absolute;
    font-family: "FontAwesome";
    font-size: 24px;
    color: #fff;
    top: 45%;
    left: 45%;
}

.videoList li .videoImg:hover:before {
    opacity: 0.8;
}

.videoList li h3 {
    margin: 15px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
}

.webList li {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    margin-bottom: 15px;
    position: relative;
}

.webList li p {
    float: left;
    width: 85%;
    padding: 10px;
    margin-bottom: 0;
}

.webList li span {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    height: 100%;
    background: #01abc8;
    color: #fff;
    float: right;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    text-align: center;
}

.webList li:hover {
    background: #f4f4f4;
}

.webList li:hover p {
    color: #01abc8;
}

.eventList li {
    min-height: auto !important;
}

.eventImg {
    position: relative;
}

.eventContent {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    padding-left: 15px;
    padding-top: 15px;
    font-size: 12px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    background: rgba(0,0,0,0.5);
    background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 49%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.5) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.5)), color-stop(20%, rgba(0,0,0,0)), color-stop(49%, rgba(0,0,0,0)), color-stop(80%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.5)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 49%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.5) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 49%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.5) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 49%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 49%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}

.eventList li .eventContent {
	background: rgba(0,0,0,0);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,1)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}

.eventContent time {
    display: block;
}

.eventContent time i {
    color: #fff;
    font-size: 13px;
    width: 13px;
}

.eventContent time span {
    color: #fff;
    padding-left: 5px;
}

.eventContent h3 {
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 15px;
    bottom: 15px;
    right: 15px;
    font-weight: 600;
    line-height: 15px;
}

.contact .formcss {
    width: 100%;
    height: auto;
    padding: 10px 15px;
    background: #eee;
    margin-bottom: 15px;
    border: none;
    outline: none;
    border-radius: 4px;
    resize: none;
    font-size: 12px;
}

.contact .formcss:focus {
    border: none;
}

.contact .form-group label.error {
    right: 30px;
    bottom: 15px;
}

.formSubmit {
    float: right;
    background: #292929;
    width: 135px;
    height: auto;
    padding: 10px 15px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.formSubmit:hover {
    background: #01abc8;
}

.contactList {
    margin: 15px 0;
    border-top: 1px solid #eee;
}

.contactList h4 {
    padding: 15px;
    color: #292929;
    font-weight: 600;
}

.contactList ul li {
    padding: 6px 15px;
    color: #757575;
    font-size: 12px;
}

.contactList ul li i {
    width: 20px;
    padding-right: 10px;
    font-size: 16px;
}

.contactList ul li span {
    width: 100%;
}

.contactBox {
    border-right: 1px solid #eee;
    margin: 15px 0 0 0;
}

.contactBox:last-child {
    border-right: none;
}

.formTitle {
    margin: 30px 0;
    letter-spacing: 0.5px;
}

.form-group {
    position: relative;
}

.form-column-2 {
    width: 50%;
    float: left;
    padding: 0 15px;
}

.formLabel {
    padding-left: 5px;
    font-size: 12px;
}

.form-column-2 .formLabel {
    position: relative;
    top: -5px;
    font-size: 12px;
}

.form-column-3 {
    width: 33.3333%;
    float: left;
    padding: 0 15px;
}

.form .group.form-column-2 span.inputTitle,
.form .group.form-column-3 span.inputTitle {
    left: 20px;
}

.form .group input[type=file] {
    border-bottom: none;
    display: inline-block;
    width: auto;
}

.form .group input[type=checkbox] {
    display: inline-block;
    width: auto;
}

.fileInfo {
    font-size: 11px;
}

.form label {
    display: inline;
    width: auto;
    font-weight: 300;
}

.table .formcss {
    padding: 10px;
}

.table th {
    font-weight: 600;
}

.required {
    padding-left: 5px;
    color: red
}













/* idari birimler */

.column-one {
    width: 100%;
}

.column-two li {
    width: 50%;
}

.column-three li {
    width: 33.333%;
    float: left;
}

.column-four li {
    width: 25%;
    float: left;
}

.column-four li img {
    height: auto;
}

.column-five li {
    width: 20%;
    float: left;
}

.column-five li .facultiesContent h3 {
    font-size: 12px;
    font-weight: 400;
    line-height: 25px;
}

.staff thead th {
    text-align: left;
}

.staff th {
    font-weight: 400;
}

.staff span {
    padding-left: 10px;
}

.inputSpan {
    width: 120px;
    text-align: right;
    display: inline-block;
}















/* form starting stylings ------------------------------- */

.contentTitle {
    margin-bottom: 30px;
}

.form .group {
    position: relative;
    margin-bottom: 30px;
}

.form .group input {
    font-size: 12px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee;
}

.form-group p,
.group p {
    margin-bottom: 15px;
    font-size: 12px;
    padding-left: 5px;
}

.form .group input:focus {
    outline: none;
}


















/* LABEL ======================================= */

.form .group span.inputTitle {
    font-weight: 300;
    font-size: 12px;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

















/* active state */

.form .group input:focus~span.inputTitle {
    top: -20px;
    color: #02abc8;
}

.form .group input.valid~.inputTitle {
    top: -20px !important;
    color: #02abc8;
}

.form .group input.error~.inputTitle {
    top: -20px;
    color: #02abc8;
}


.form .group input.inputTop~.inputTitle {
    top: -20px;
    color: #02abc8;
}

.formLabel.valid {
    color: #02abc8;
}

.form .group input.errorInput~.inputTitle {
    top: 10px;
    color: inherit;
}

.form .group input[disabled] {
    background: #eee;
    border-radius: 4px;
}










/* BOTTOM BARS ================================= */

.form .group .bar {
    position: relative;
    display: block;
    width: 100%;
}

.form .group .bar:before,
.form .group .bar:after {
    content: '';
    height: 1px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #02abc8;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    z-index: 999;
}

.form .group .bar:before {
    left: 50%;
}

.form .group .bar:after {
    right: 50%;
}





















/* active state */

.form .group input:focus~.bar:before,
.form .group input:focus~.bar:after {
    width: 50%;
}

.form-group label {
    font-weight: 300;
    font-size: 12px;
}

.form-group span {
    padding: 0 10px;
}

.formcss {
    width: 100%;
    height: auto;
    padding: 15px;
    border: 1px solid #eee;
    resize: none;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    outline: none;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}

.formcss:focus {
    border: 1px solid #02abc8;
}

.submitColor {
    background: #fff;
    border: 1px solid #02abc8;
    font-weight: 400;
    color: #02abc8;
}

.submitColor:hover {
    background: none;
    border-color: #02abc8;
    background: #02abc8;
    color: #fff;
}












/* IK */

.pdfDocument {
    margin-bottom: 15px;
}

.pdfDocument li {
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    margin-bottom: 15px;
    border: 1px solid #eee;
    position: relative;
    padding: 15px;
    border-radius: 4px;
    display: block;
}

.pdfDocument .document {
    display: inline-block;
    background: #01abc8;
    color: #fff;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-right: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pdfDocument .document+span {
    width: 100%;
    float: left;
    padding-left: 10%;
}

.pdfDocument li:hover {
    background: #01abc8;
    border-radius: 4px;
}

.pdfDocument li:hover span {
    color: #fff;
}

.documentList {
    margin-bottom: 15px;
}

.documentList li {
    float: left;
    padding: 0 15px;
    margin-bottom: 15px;
}

.documentList a {
    display: block;
    border: 1px solid #eee;
    border-radius: 4px;
    position: relative;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
}

.documentList .document {
    display: inline-block;
    background: #01abc8;
    color: #fff;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-right: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.documentList .document+span {
    width: 100%;
    float: left;
    padding-left: 10%;
}

.documentList li a:hover {
    background: #01abc8;
    border-radius: 4px;
}

.documentList li a:hover span {
    color: #fff;
}

.group select {
    border: none;
    background: none;
    border-bottom: 1px solid #eee;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 15px;
    margin: 0 10px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    font-size: 12px;
}

.group select:focus {
    border-bottom: 1px solid #01abc8;
}

.group label.error,
.form-group label.error {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #f50000;
    font-size: 10px;
}

.form-column-2 label.error,
.form-column-3 label.error {
    right: 15px;
}

#addItem,
#delItem {
    margin-top: 12px;
}

.form-group-3 label.error {
    bottom: -30px;
}











/* accordion */

#accordion .panel-title {
    font-size: 14px;
    font-weight: 400;
}

#accordion .panel-body {
    font-size: 12px;
}

#accordion .panel-heading {
    padding: 0 15px;
}

.fastAccess.owl-carousel li img {
    width: auto;
    display: inline-block;
}

.fastAccess .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
}

.fastAccess .owl-prev {
    position: absolute;
    left: -30px;
    float: left;
    color: #757575;
    font-size: 34px;
}

.fastAccess .owl-next {
    position: absolute;
    right: -30px;
    float: right;
    color: #757575;
    font-size: 34px;
}

.gavia {
    margin-top: 10px;
    float: right;
}

.lg-actions button {
    outline: none;
    border: none;
}

.lg-sub-html a {
    color: #fff;
    font-size: 14px;
}

.sidebar-administrative {
    border: 1px solid #01abc8;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.administrative-img {
    display: inline-block !important;
    text-align: center;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    border-radius: 50%;
    object-fit: cover;
}

.administrative-img:hover {
    -webkit-box-shadow: 0px 0px 22px 0px rgba(173, 173, 173, 0.5);
    box-shadow: 0px 0px 22px 0px rgba(173, 173, 173, 0.5);
}

.sidebar-administrative h3 {
    font-size: 16px;
    margin: 15px 0;
}

.sidebar-administrative p {
    text-align: justify;
    font-size: 11px;
}

.administrative-btn {
    width: 100%;
    height: 40px;
    background: #01abc8;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 30px;
    line-height: 42px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 10px;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.administrative-btn:hover {
    color: #fff;
    -webkit-box-shadow: 0px 0px 22px 0px rgba(173, 173, 173, 0.5);
    box-shadow: 0px 0px 22px 0px rgba(173, 173, 173, 0.5);
}









/* popup */

.popup {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 0 auto;
    padding: 80px 0;
    z-index: 999;
    overflow: hidden;
    -webkit-transform: translateY(-300%);
    -ms-transform: translateY(-300%);
    transform: translateY(-300%);
    text-align: center;
    line-height: 7em;
    font-size: 2em;
    position: relative;
    -webkit-transition: all 900ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 900ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 900ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    -webkit-box-shadow: 0px 0px 20px rgba(56, 56, 56, .2);
    box-shadow: 0px 0px 20px rgba(56, 56, 56, .2);
    border-radius: 4px;
    top: 0;
}

.popup-content {
    max-width: 50%;
    position: relative;
    border: 4px solid #fff;
    background: #fff;
    border-radius: 4px;
}

.popup-content a {
    display: block;
}

.popup img {
    display: block;
    max-height: 600px;
    max-width: 100%;
}

.popup-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.popup-title h3 {
    position: absolute;
    font-size: 16px;
    bottom: 15px;
    left: 15px;
    color: #fff;
}

.popup h1 {
    color: #8e54e9;
    text-transform: capitalize;
    font-weight: 200;
    font-size: 1.1em;
    position: relative;
    left: -200%;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.popup .pop-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: .9em;
    font-weight: lighter;
    cursor: pointer;
    color: #fff;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 99;
}

.popup .pop-close img {
    width: 16px;
    height: 16px;
}

.overlay {
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-transition: all 3s ease-in-out;
    -o-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
}

.overlay::before {
    content: " ";
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
    -webkit-transition: 3s;
    -o-transition: 3s;
    transition: 3s;
}









/* bootstrap table css */

table {
    max-width: 100%;
    width: 100% !important;
    margin-bottom: 20px;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

table tr>td,
table>tbody>tr>th,
table>tfoot>tr>td,
table>tfoot>tr>th,
table>tr>td,
table>tr>th {
    border: 1px solid #eee !important;
    padding: 10px !important
}

table>tbody>tr>td,
table>tbody>tr>th,
table>tfoot>tr>td,
table>tfoot>tr>th,
table>tr>td,
table>tr>th {
    padding: 10px;
    line-height: 1.42857143;
    vertical-align: top;
}

table>tr>th {
    font-weight: 500 !important;
}

table tr td p,
table tr td span {
    font-size: 13px !important
}

table tr th p,
table tr th span {
    font-size: 14px !important
}

.share {
    display: inline-block;
    float: right;
    position: relative;
}

.share .icon {
    display: inline-block;
    background: #01abc8;
    width: 40px;
    height: 40px;
    color: white;
    margin-left: -3px;
    margin-right: -3px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}

.share .icon a {
    display: block;
    color: #fff;
    float: none !important;
}

.share .icon span {
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.share .first {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.share .last {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.share .label {
    color: white;
    font-weight: bold;
    pointer-events: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    line-height: 37px;
    font-size: 13px;
    font-weight: 500;
}

.share .label i {
    padding-right: 5px;
}

.share:hover .icon {
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    line-height: 44px;
}

.share:hover .icon span {
    opacity: 1;
}

.share:hover .label {
    opacity: 0;
}

.share:hover .fb {
    background: #3b5998;
}

.share:hover .twtr {
    background: #55acee;
}

.share:hover .linkd {
    background: #007bb5;
}

.share:hover .gplus {
    background: #dd4b39;
}

.dropdownMenu .dropdown-backdrop {
    display: none;
}









/* joints */


/* checkbox and radio css */

.label--checkbox,
.label--radio {
    line-height: 135%;
    cursor: pointer;
    top: 5px;
    padding-left: 0 !important
}


.label--radio label,
.label--checkbox label {
    padding-left: 5px;
}

.label--checkbox label {
    position: relative;
    top: -3px;
}

.checkbox {
    position: relative;
    top: -0.375rem;
    margin: 0 1rem 0 0;
    cursor: pointer;
    display: inline-block;
}

.checkbox:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -o-transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    content: "";
    position: absolute;
    left: 3px;
    top: 5px;
    z-index: 1;
    width: 0.75rem;
    height: 0.375rem;
    border: 2px solid #02abc8;
    border-top-style: none;
    border-right-style: none;
}

.checkbox:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
}

.checkbox:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #f2f2f2;
    cursor: pointer;
}

.radio {
    position: relative;
    margin: 0 1rem 0 0;
    cursor: pointer;
    display: inline-block;
}

.radio:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -o-transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    content: "";
    position: absolute;
    top: 2px;
    left: 1px;
    z-index: 1;
    width: 10px;
    height: 10px;
    background: #02abc8;
    border-radius: 50%;
}

.radio:checked:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.radio:after {
    content: "";
    position: absolute;
    top: -1px;
    left: -2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #f2f2f2;
    border-radius: 50%;
}

.width-100 {
    width: 100%;
}

nav.sidebar ul li>ul {
    /*display: none;*/
}

nav.sidebar ul li ul li ul {
    padding-left: 10px !important;
    padding-top: 10px !important
}






/* dekanın mesajı */

.presidentImg {
    max-width: 50%;
    height: auto;
    float: left;
    padding-right: 15px;
    position: relative;
}

.presidentImg img {
    max-width: 100%;
}






/* css hide checkbox & radio */

.hide-check input[type=radio] {
    display: none !important;
}

.hide-check input[type=radio]+label {
    display: inline-block !important;
    cursor: pointer !important;
    border-radius: 100% !important;
    width: 50px !important;
    height: 50px !important;
}

.hide-check input[type=radio]:checked+label {
    background: #292929 !important;
}

.hide-check input[type=checkbox] {
    display: none !important;
}

.hide-check input[type=checkbox]+label {
    display: inline-block !important;
    padding: 0 !important;
    cursor: pointer !important;
    border-radius: 50% !important;
}

.hide-check input[type=checkbox]:checked+label {
    background: #292929 !important;
}

.hide-check div.input-check {
    position: relative !important;
}

.hide-check div.input-check:before {
    content: "\f00c";
    font-family: fontawesome;
    color: #fff;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: -10px;
    left: 25px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: #02abc8;
    opacity: 0;
    z-index: 9;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(.5) rotate(180deg);
    -moz-transform: scale(.5) rotate(180deg);
    -ms-transform: scale(.5) rotate(180deg);
    -o-transform: scale(.5) rotate(180deg)
}

.hide-check input[type=checkbox] {
    display: none !important;
}

.hide-check input[type=checkbox]+label {
    display: inline-block !important;
    ;
    padding: 0 !important;
    ;
    cursor: pointer !important;
    ;
    border-radius: 50% !important;
}

.hide-check input[type=checkbox]:checked+label {
    background: 0 0!important
}

.hide-check input[type=checkbox]:checked~label .input-check:before {
    opacity: 0.9;
    -webkit-transform: scale(1.1) rotate(0)
}

.hide-check input[type=radio]:checked+label {
    background: 0 0!important
}

.hide-check input[type=radio]:checked~label .input-check:before {
    opacity: 0.9;
    -webkit-transform: scale(1.1) rotate(0)
}

.label-pr30.group label.error,
.label-pr30.form-group label.error {
    right: 30px;
    bottom: 15px;
}

.dropify-wrapper {
    border-radius: 4px;
    border: 1px solid #eee;
}

.full-button {
    width: 100%;
}

.documentList.ik li {
    float: none;
    text-align: center;
    padding: 0;
}

.dropify-wrapper label.error {
    position: absolute;
    bottom: 0;
    right: 15px;
    color: red;
    font-size: 11px;
}




/* yeni */

.mainMenu>li>a {
    font-size: 15px !important
}

.fastAccess li a {
    padding: 10px 3px;
}

.fastAccess li p {
    font-weight: 500 !important;
    margin-top: 10px !important;
}


.main-slider,
.slide-img {
    height: 60vh !important;
	width: 100% !important;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 20%;
    z-index: 2;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.7)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0);
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;
    color: #fff;
}

.slide-bg h3 {
    max-width: 75%;
}

.main-slider .owl-dots {
    justify-content: flex-end !important;
    padding-right: 30px;
    bottom: 35px;
}

.main-slider .owl-nav {
    position: absolute;
    width: 100%;
    top: 45%;
}

.main-slider .owl-nav .owl-prev {
    left: 0;
    float: left;
}

.main-slider .owl-nav .owl-next {
    position: absolute;
    right: 0;
    float: right;
}

.main-slider .owl-nav>div {
    content: "";
    width: 60px;
    height: 75px;
    line-height: 75px;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-size: 42px;
    position: absolute;
}

.main-slider .owl-nav>div:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.75;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.main-slider .owl-nav>div:hover:before {
    background: #01abc8;
}


.footerimg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
}

.footerimg img {
    max-width: 75%;
    opacity: 0.2;
    text-align: center;
    max-height: 350px;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo img {
    max-width: 100%;
    max-height: 50px;
}

.footer-logo a:first-child img {
    border-right: 0px solid rgba(255, 255, 255, 0.5);
    padding-right: 15px;
    margin-right: 20px;
}

.header-affix {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 99;
}

header {
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.footer-logo {
    text-align: right;
}

.footer-logo a:first-child img {
    
	padding-right: 30px;
	
}

.footer-logo a:last-child img {
    padding-right: 0;
}

.campus-img {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center center;
}

.largeImg .listImg {
    padding-left: 5px;
}

.largeImg .campus-img {
    height: 305px !important;
    padding-left: 5px;
}


@media (max-width: 992px) {
    .footer-logo {
        text-align: left;
    }
}

.event-img {
    width: 100%;
    height: 460px;
    background-size: cover;
    background-position: center center;
}

.campus p {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.largeImg p {
    font-size: 18px !important;
}

.newsContent h3 {
    font-size: 13px !important;
}

.newsContent p {
    font-size: 9px;
    text-align: center;
}

.newsImg {
    height: 225px !important;
}

.mainNotice {
    max-height: 327px !important;
}

.news-box {
    padding: 0 15px;
}

.newsContent {
    background: #fff;
    padding: 15px;
    height: 128px;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
}

.newsContent h3 {
    margin-bottom: 10px;
    font-weight: 400;
    height: 31px !important;
    font-size: 14px !important;
}

.news-img {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center center;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.main-news .owl-dots {
    position: absolute;
    bottom: -30px;
    right: 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-news .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    margin: 0px 5px;
    background-color: #fff;
    float: left;
    border-radius: 100%;
    opacity: 0.6;
}

.main-news .owl-dots .owl-dot.active {
    opacity: 1;
}

.mainNewsTab {
    border: none;
    display: flex;
    justify-content: center;
}

.mainNewsTab.nav-tabs>li.active>a,
.mainNewsTab.nav-tabs>li.active>a:focus,
.mainNewsTab.nav-tabs>li.active>a:hover {
    color: #fff;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
}

.mainNewsTab.nav-tabs>li>a {
    color: #fff;
}

.mainNewsTab.nav-tabs>li>a:focus,
.mainNewsTab.nav-tabs>li>a:hover {
    color: #fff;
}

.news-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 171, 200, 0.8);
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    border-radius: 4px 4px 0 0;
}

.news-box:hover .news-hover {
    opacity: 1;
    visibility: visible;
}

.topMenu .announcements a {
    padding-right: 15px;
    border-right: 1px solid #b1b1b1;
}

@media (max-width: 767px) {
    .main-news .owl-dots {
        display: none;
    }
}

.contentSlider .slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
    padding-left: 15px;
    background: rgba(0, 0, 0, 0);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.7)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0);
}

.contentSlider .slider-content h3 {
    color: #fff;
}

/* kurdela */

.kurdela {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 99999;
}

.kurdela img {
    max-width: 50px;
}

/* kurdela */

.photo-bg {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center center;
    border-radius: 4px;
}
.pagination li {
    display: block !important;
}

.news .title a {
    font-size: 20px;
    color: #fff;
    display: block;
    text-align: center;
    text-transform: uppercase;
}

.news .title {
    margin-bottom: 15px;
}


/* responsive */



@media (min-width: 1199px) {

    .yamm .navbar-nav {
        background: transparent !important;
    }
}

@media (max-width: 1500px) {
	
	.slide-img {
    height: 50vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 50vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}

@media (max-width: 1400px) {
	
	.slide-img {
    height: 60vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 60vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}

@media (max-width: 1275px) {
	
	.slide-img {
    height: 40vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 40vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}


@media (max-width: 1199px) {
    .navbar-header img {
        width: auto;
        max-width: 290px;
        margin-top: 0;
    }
	
	.slide-bg h3 {
	bottom: -18px;
	position: relative;
    }

    .largeImg img {
        height: 216px;
    }

    .middleImg ul li img {
        height: 105px;
    }

    .fastAccess li:after {
        left: calc(50% - 50px);
        width: 100px;
    }

    .facultiesList li {
        width: 50%;
    }

    .column-five li {
        width: 25%;
    }

    .documentList .document+span {
        font-size: 12px;
    }

    .mainMenu>li>a {
        font-size: 12px;
    }

    .navbar.yamm {
        margin-right: 0;
        top: 0;
        padding-bottom: 20px;
    }

    .navbar.yamm .navbar-brand {
        padding: 15px 0;
    }

    .yamm .navbar-header {
        float: none;
    }

    .yamm .navbar-toggle {
        display: block;
        padding: 0;
        margin-top: 40px;
    }

    .yamm .navbar-toggle span {
        background: #000;
    }

    .yamm .navbar-collapse {
        border-top: 1px solid transparent;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: absolute;
        width: 100%;
        left: 0px;
        right: 0px;
        z-index: 9;
    }
    .yamm .navbar-collapse.collapse {
        display: none!important;
    }
    .yamm .navbar-nav {
        float: none!important;
        margin: 7.5px 0;
        background-color: #01abc8;
        margin-top: 21px;
    }
    .mainMenu li.aday a,
    .mainMenu>li>a:focus,
    .mainMenu>li>a:hover,
    .dropdownMenu #dropdownMenu1,
    .mainMenu .open>a,
    .mainMenu .open>a:focus,
    .mainMenu .open>a:hover,
    .yamm .dropdown-menu {
        background-color: #01abc8 !important;
    }
    .yamm .navbar-nav>li {
        float: none;
    }
    .yamm .navbar-nav>li>a {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        color: #fff;
    }
    .yamm .navbar-text {
        float: none;
        margin: 15px 0;
    }
    /* since 3.1.0 */
    .yamm .navbar-collapse.collapse.in {
        display: block !important;
        overflow-y: hidden;
    }
    .yamm .collapsing {
        overflow: hidden !important;
    }

    .yamm .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .yamm-content ul {
        padding: 0 15px;
    }

    .mainMenu li.search {
        display: none;
    }

    .mobile-search {
        display: block;
    }

    .footer-logo a:first-child img {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        padding-right: 15px !important;
        margin-right: 10px;
    }

    .header-affix {
        position: static;
    }
	
	.slide-img {
    height: 38vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 38vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}

@media (max-width: 1025px) {
    .topMenu {
        float: left !important;
    }

    .topMenu ul li a {
        font-size: 11px;
    }

    .navbar-header img {
        padding-top: 0;
        width: auto;
        max-width: 250px;
        margin-top: 5px;
    }

    .campusTop li img {
        height: 100px;
    }

    .campus p {
        font-size: 9px;
    }

    .largeImg img {
        height: 142px;
    }

    .middleImg ul li img {
        height: 68px;
    }

    .instagram-box {
        margin-top: 15px;
    }

    .footerLogo img {
        width: 350px;
    }

    .container>.navbar-collapse {
        margin: 0 -15px !important;
    }

    .navbar-collapse.in {
        overflow: hidden;
    }

    .map {
        margin-bottom: 15px;
    }

    .contactBox {
        border-right: none;
    }

    .contentDescription h3 {
        font-size: 18px;
    }

    .fastAccess li p {
        font-size: 10px;
    }

    .mobile-search .search-content {
        width: 96%;
    }

    .column-five li {
        width: 33.3333%;
    }

    .mainEvent .owl-nav {
        display: none;
    }

    .gavia {
        float: none !important;
        display: block;
        text-align: center;
    }

    .gavia img {
        display: inline-block;
    }

    .slide-bg h3 {
        max-widthzzz: 100%;
    }

    .main-slider .owl-dots {
        display: none;
    }

    .main-slider .owl-nav>div {
        content: "";
        width: 40px;
        height: 50px;
        line-height: 50px;
        z-index: 1;
        text-align: center;
        color: #fff;
        font-size: 24px;
        position: absolute;
    }

    .main-slider .owl-nav {
        top: 40%;
    }

    .responsive-top-30 {
        margin-top: 30px;
    }
    
    .responsive-top-50 {
        margin-top: 50px;
    }
	
	.slide-img {
    height: 25vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 25vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}

@media (max-width: 768px) {
    .gallery {
        width: 100%;
    }

    .campus {
        width: 100%;
        margin-top: 15px;
    }

    .campusTop li:first-child {
        padding-left: 0;
    }

    .campusBottom .largeImg .listImg {
        padding-left: 0;
    }

    .campusTop li:first-child .listContent {
        left: 0px;
        width: 100%;
    }

    .largeImg .listContent {
        left: 0;
        width: 100%;
    }

    .campusTop li img {
        height: 100px;
    }

    .largeImg img {
        padding-left: 0;
        height: 250px;
    }

    .middleImg ul li img {
        height: 123px;
    }

    .campus p {
        font-size: 14px;
    }

    .footerLogo img {
        width: 250px;
    }

    .footerContact li {
        float: none;
    }

    .fastAccess li:after {
        left: calc(50% - 25px);
        width: 50px;
    }

    .fastAccess li img {
        height: 20px;
    }

    .fastAccess li:nth-child(3):before,
    .fastAccess li:nth-child(6):before,
    .fastAccess li:nth-child(9):before,
    .fastAccess li:nth-child(12):before {
        display: none;
    }

    .dropdownMenu #dropdownMenu1 .caret {
        margin-left: 5px;
    }

    .dropdownMenu {
        width: auto;
    }

    .navbar-toggle {
        margin-right: 0;
    }

    .column-four li {
        width: 33.3333%;
    }

    .breadcrumb li a,
    .breadcrumb li {
        font-size: 11px;
    }

    #breadcrumb h3 {
        font-size: 16px;
    }

    .sidebar .navbar-header {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sidebar .navbar-collapse {
        border-top: 0;
    }

    .sidebar .navbar-nav {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .staffInfo,
    .staffDescription {
        height: auto;
        border-radius: 0;
    }

    .staffInfo img {
        width: 50%;
        margin: 0 auto;
    }

    .column-three li {
        width: 50%;
    }

    .column-three li h3 {
        font-size: 12px;
    }

    .contentGallery li {
        width: 50% !important;
    }

    .facultiesContent h3 {
        font-size: 12px;
    }

    .contentDescription h3 {
        font-size: 16px;
    }

    .formTitle {
        font-size: 14px;
    }

    .webList li p {
        width: 80%;
        font-size: 11px;
    }

    .webList li span {
        font-size: 10px;
        width: 20%;
    }

    .pdfDocument .document {
        width: 15%;
    }

    .pdfDocument .document+span {
        padding-left: 15%;
        font-size: 11px;
    }

    .nav-tabs>li {
        width: 100%;
        float: none;
    }

    .nav-tabs>li>a {
        font-size: 12px;
        border-bottom: none !important;
    }

    .form-column-3 {
        width: 100%;
    }

    .mobile-search .search-content {
        width: 100%;
    }

    .column-five li {
        width: 50%;
    }

    .column-two li {
        width: 100%;
    }

    .news .sectionTitle {
        padding: 30px 0;
    }

    .social-box-middle {
        width: calc(100% - 30px);
        margin-bottom: 15px;
    }

    .social-box-middle a {
        padding: 15px 0;
        font-size: 12px;
    }

    .dropdown-menu.language {
        left: -110%;
    }

    .footerMenu ul li a {
        font-size: 12px;
    }

    .popup-content {
        max-width: 80%;
    }

    .preloader img {
        max-width: 250px;
    }

    .slide-bg h3 {
        font-size: 18px;
    }
	
	.slide-img {
    height: 26vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 26vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}

@media (max-width: 600px) {
    .column-four li {
        width: 50%;
    }

    .content .contentImg {
        width: 100%;
        float: none;
        padding: 0;
    }

    .form-column-2 {
        width: 100%;
        float: none;
    }

    .contentDescription h3,
    .contentDescription h4,
    .contentDescription h5 {
        font-size: 14px;
    }

    .popup-content {
        max-width: 90%;
    }
	
	.slide-bg h3 {
    font-size: 15px;
	bottom: -18px;
	position: relative;
    }
	
	.slide-img {
    height: 20vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 20vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}

@media (max-width: 530px) {
    .largeImg {
        width: 100%;
    }

    .largeImg img {
        width: 100%;
        height: auto;
    }

    .middleImg {
        width: 100%;
        margin-top: 5px;
    }

    .middleImg li {
        width: 50%;
        float: left;
    }

    .middleImg ul li img {
        height: auto;
    }

    .campus p {
        font-size: 10px;
    }

    .campusBottom p.font18 {
        font-size: 18px;
    }

    .campusBottom p {
        font-size: 10px;
    }

    .staffInfo img {
        width: 100%;
    }

    .facultiesContent h3 {
        font-size: 10px;
    }

    .leftImg {
        width: 100%;
        padding-right: 0;
        float: none;
    }

    .presidentImg {
        width: 100%;
        float: none;
        max-width: none;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .presidentImg img {
        width: 100%;
    }
	
	.slide-img {
    height: 18vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 18vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}

@media (max-width: 440px) {
    .navbar-header img {
        max-width: 200px;
        margin-top: 10px;
    }

	.slide-bg h3 {
    font-size: 12px;
	bottom: -18px;
	position: relative;
    }

    .column-three li {
        width: 100%;
    }
		
	.slide-img {
    height: 15.3vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 15.3vh !important;
	width: auto !important;
	object-fit: cover !important;
}
}

@media (max-width: 350px) {
    .column-four li {
        width: 100%;
    }

    .navbar-header img {
        max-width: 170px;
        margin-top: 15px;
    }

    .contentGallery li {
        width: 100%;
    }
	
	.slide-img {
    height: 12vh !important;
	width: auto !important;
	object-fit: cover !important;
}

	.main-slider {
    height: 12vh !important;
	width: auto !important;
	object-fit: cover !important;

}

	.slide-bg h3 {
    font-size: 10px;
	bottom: -20px;
	position: relative;
    }
}

@media (max-height: 800px) {
    .popup img {
        display: block;
        max-height: 400px;
    }
}

@media (max-height: 500px) {
    .popup {
        padding: 25px 0;
    }

    .popup img {
        max-height: 300px;
    }
}