/*------------------- 2.5. Mobile Menu -------------------*/
.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
    display: block;
    text-align: center;
    background-color: var(--smoke-color2);
}

.th-menu-wrapper .mobile-logo svg {
    max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}

.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}

.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.th-mobile-menu {
    max-height: calc(100vh - 200px);
    text-align: left;
}

.th-mobile-menu ul {
    margin: 0;
    padding: 0 0;
}

.th-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li > a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    padding-left: 18px;
}

.th-mobile-menu ul li > a:before {
    content: '\f105';
    font-family: var(--icon-font);
    position: absolute;
    left: 0;
    top: 12px;
    margin-right: 10px;
    display: inline-block;
}

.th-mobile-menu ul li.th-active > a {
    color: var(--theme-color);
}

.th-mobile-menu ul li.th-active > a:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
    padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
    border-bottom: none;
}

.th-mobile-menu ul .th-item-has-children > a .th-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}

.th-mobile-menu ul .th-item-has-children > a .th-mean-expand:before {
    content: '\f067';
    font-family: var(--icon-font);
}

.th-mobile-menu ul .th-item-has-children > a:after {
    content: "\f067";
    font-family: var(--icon-font);
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background-color: var(--smoke-color);
    float: right;
    margin-top: 1px;
}

.th-mobile-menu ul .th-item-has-children.th-active > a .th-mean-expand:before {
    content: '\f068';
}

.th-mobile-menu ul .th-item-has-children.th-active > a:after {
    content: "\f068";
}

.th-mobile-menu > ul {
    padding: 0 40px;
}

.th-mobile-menu > ul > li:last-child {
    border-bottom: none;
}

.th-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 20px;
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    display: inline-block;
    border-radius: 0;
}

.th-menu-toggle:hover {
    background-color: var(--title-dark);
}

.th-menu-toggle.style-text, .th-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--title-color);
    font-size: 20px;
}

.th-menu-toggle.style-text i, .th-menu-toggle.style-text-white i {
    margin-right: 10px;
}

.th-menu-toggle.style-text-white {
    color: var(--white-color);
}

@media (max-width: 400px) {
    .th-menu-wrapper .th-menu-area {
        width: 100%;
        max-width: 270px;
    }
    .th-mobile-menu > ul {
        padding: 0 20px;
    }
}


.sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
    -webkit-animation: stickyAni 0.4s ease-in-out;
    animation: stickyAni 0.4s ease-in-out;
}

@-webkit-keyframes stickyAni {
    0% {
        -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) scaleY(1);
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}

@keyframes stickyAni {
    0% {
        -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) scaleY(1);
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}

.news-area .title{
    font-size: 16px;
    background: #1a6de7;
    padding: 7px 10px;
}
.news-area .news-wrap{
    padding: 0 20px;
}
@media (max-width: 575px) {
    .news-area .title {
        padding: 7px;
        min-width: 150px;
    }

}
.font-lg {
    font-size: 3rem;
}
.bg-white-inverse {
    background-color: rgba(255,255,255, 0.75);
}
.p-1 {
    padding: 0.5rem !important;
}
.slide {
    position: relative;

}
.slide h2 {
    position: absolute;
    bottom: 10px;
    padding: 0 20px 4px 20px;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}
.slider .kaplama {
    opacity: 1;
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    margin: 0;
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top,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,1) 100%);
    background: -ms-linear-gradient(top,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,1) 100%);
    padding-top: 30px;
    padding-bottom: 0
}
.slide img{
    width:912px;
    height:490px;
    object-fit: cover;
}
.slick-dots {
    color: white;
    font-size: 30px;
    text-align: center;
    cursor: pointer;
    background: #0b0b0b;
    width:912px;
    padding:2px 0 2px 25px;
}
ul.slick-dots{
    list-style: none;
    display:inline-flex;
    margin-top: 0 !important;
}
ul.slick-dots li {
    text-indent: 0;
    margin: 0 2px;
    width: 50px;
    height: 40px;
    border: 1px solid #595959;
    line-height: 40px;
    font-size:18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(0deg, #515151 0%, #333333 100%);
    box-shadow: 1px 1px #000000;
    transition: all 0.25s ease;
}
ul.slick-dots li.slick-active, ul.slick-dots li:hover {
    margin: 0 2px;
    width: 50px;
    height: 40px;
    background: red;
}
a.dot{
    color: #fff;
}

.blog-img {
    line-height: 0.7;
    position: relative;
    overflow: hidden;
    margin: 0;
}
.blog-img img {
    width: auto;
    height:192px;
    object-fit: cover;
}
.border-blog {
    padding-bottom: 24px;
}
li.page-item.active span.page-link{
    background: #ff1d50;
    color: #fff;
    font-weight: bold;
}
.gallery img{
    width:436px;
    height: 250px;
    object-fit: cover;
}

.search-panel {
    display: flex;
}

.search-panel__filters {
    flex: 1;
}

.search-panel__results {
    flex: 3;
}

.ais-Highlight-highlighted {
    color: inherit;
    font-size: inherit;
}

#searchbox {
    margin-bottom: 2rem;
}

#pagination {
    margin: 2rem auto;
    text-align: center;
}

.hit-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 10px;
}

.hit-authors {
    margin-top: 3px;
    font-size: 0.8rem;
}

.hit-publication-year {
    font-size: 0.8rem;
    margin-top: 20px;
}

.hit-rating {
    margin-top: 3px;
    font-size: 0.8rem;
}


.ais-Hits-item {
    padding: 30px;
    box-shadow: none;
    border: 1px solid #e7e7e7;
}
.ais-SearchBox { margin: 1em 0; }
.ais-Pagination { margin-top: 1em; }
.ais-InstantSearch { max-width: 960px; margin: 0 auto; }
.ais-Hits-item {position:relative}
.ais-Hits-item h3 {
    font-size: 18px;
    line-height: 1.5;
}
.ais-Hits-item p {
    margin:0 0 30px
}
.ais-Hits-item p:before, .ais-Hits-item p:after {
    content: '...'
}
.ais-Hits-item img {
    width:260px;
    height:174px;
    object-fit: cover;
    margin-bottom:15px
}
.ais-Hits-item a {
    position: absolute;
    left:18px;
    bottom:10px
}
.ais-Stats{
    margin-bottom:20px;
    font-weight: 600;
}
.ais-Stats-text {
    font-size: .9rem !important;
}
.hit-name { margin-bottom: 0.5em; }
.hit-description { color: #888; font-size: 14px; margin-bottom: 0.5em; }
.ais-SearchBox-submitIcon {
    width: 24px !important;
    height: 24px !important;
    margin: 0 10px !important;
}

.ais-SearchBox-input {
    padding: .3rem 2.7rem !important;
    background-color: #fbfcff !important;
    border: 1px solid #8ba5cd !important;
    border-radius: 35px !important;
}
.ais-SearchBox-input:focus {
    border: 2px solid #0a58ca !important;
    border-radius: 35px !important;
}
.search-info{
    max-width:800px;
}
.search-text{
    font-size:16px;
    font-weight: 600;
    line-height: 26px;
    margin-left:5px
}
#blog-slide1 .blog-style1 {
    margin: 0 10px !important;
}
.big-img {
    position:relative;
    margin-bottom: 30px;
}
blog-style1.big-img img{
    height: 600px !important;
    width:600px !important;
    object-fit: cover;
    overflow: hidden;
}
