@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800&subset=latin-ext";
@import "https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900&subset=latin-ext";
body {
    font-family: poppins, sans-serif;
    font-weight: 300;
}
.btn-primary-outline {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-color: #040404;
    border-width: 2px;
    color: #040404;
    padding: 8px 30px;
    font-weight: 700;
}
.btn-primary-outline:hover {
    border-color: #040404;
    background-color: #040404;
}
h2 {
    color: #4d5057;
}
p {
    color: #4d5057;
}
.margin-bottom-50 {
    margin-bottom: 50px !important;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-50 {
    margin-top: 50px;
}
.margin-top-100 {
    margin-top: 100px;
}
.fix-ie {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.link-grey {
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    color: #4d5057;
}
.link-grey:hover {
    color: #2d3134;
}
.img-object-fit-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.img-object-fit-cover img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.mobile-menu-container {
    margin: 0 !important;
    position: absolute;
    top: 5%;
    z-index: 2;
    height: 27px;
    width: 100%;
}
.mobile-menu-container .mobile-menu-logo {
    font-family: playfair display, serif;
    color: #fff;
    padding-left: 1rem;
    font-size: 1.5rem;
}
.button_container {
    position: relative;
    top: 5%;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
    display: inline-block;
    float: right;
}
.button_container:hover {
    opacity: 0.7;
}
.button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #fff;
}
.button_container.active .middle {
    opacity: 0;
    background: #fff;
}
.button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fff;
}
.button_container span {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}
.button_container span:nth-of-type(2) {
    top: 11px;
}
.button_container span:nth-of-type(3) {
    top: 22px;
}
.mobile-menu-overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
    z-index: 99;
}
.mobile-menu-overlay.open {
    opacity: 0.9;
    visibility: visible;
    height: 100%;
}
.mobile-menu-overlay.open li {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: 0.35s;
}
.mobile-menu-overlay.open li:nth-of-type(2) {
    animation-delay: 0.4s;
}
.mobile-menu-overlay.open li:nth-of-type(3) {
    animation-delay: 0.45s;
}
.mobile-menu-overlay.open li:nth-of-type(4) {
    animation-delay: 0.5s;
}
.mobile-menu-overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-family: vollkorn, serif;
    font-weight: 400;
    text-align: center;
}
.mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}
.mobile-menu-overlay ul li {
    display: block;
    height: 25%;
    height: calc(100% / 6);
    min-height: 50px;
    position: relative;
    opacity: 0;
}
.mobile-menu-overlay ul li a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}
.mobile-menu-overlay ul li a:hover:after,
.mobile-menu-overlay ul li a:focus:after,
.mobile-menu-overlay ul li a:active:after {
    width: 100%;
}
.mobile-menu-overlay ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: #fff;
    transition: 0.35s;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
.section--title {
    font-family: playfair display, serif;
    font-size: 3.5rem;
    font-weight: 600;
    position: relative;
}
.section--title:before {
    content: "";
    width: 100px;
    height: 2px;
    position: absolute;
    left: 0;
    top: -10px;
    background-color: #777;
}
.section--desc {
    color: #4d5057;
}
.section--title-two {
    font-family: playfair display, serif;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}
.section--title-two:before {
    content: "";
    width: 100px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -10px;
    background-color: #777;
}
.section--desc-two {
    font-size: 0.9rem;
    color: #999;
}
.basari-icin {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}
.basari-icin li {
    width: 46%;
    display: inline-block;
    margin: 0 30px 0 0;
    padding: 0;
}
.basari-icin li:last-child {
    margin: 0;
}
.breadcrumb-title {
    position: absolute;
    top: 50%;
    left: 1rem;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-size: 5rem;
}
.page-content {
    position: relative;
    height: inherit;
    padding-bottom: 50px;
}
.page-content .section--desc {
    padding: 30px 0;
}
.page-content--row {
    position: relative;
}
.page-content--col {
    position: relative;
    right: 0;
    top: -50px;
    background-color: transparent;
}
.page-content--wrapper {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07);
    padding: 50px;
    width: 100%;
    float: right;
    background-color: #fff;
}
.header {
    position: relative;
    height: 90vh;
    width: 100%;
}
.header .main-header-menu-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.header .main-header-menu-container .row {
    height: 100%;
}
.header .main-header-menu-container .row .col-md-12 {
    height: 100%;
}
.header .logo {
    font-family: playfair display, serif;
    font-size: 2rem;
    font-weight: 500;
    position: absolute;
    bottom: 100px;
    right: 1rem;
    z-index: 1;
    color: #fff;
}
.sub-page-header {
    background: url(images/slider/1.jpg) no-repeat center center fixed;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #4d5057;
    position: relative;
    height: 500px;
    width: 100%;
}
.sub-page-header:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.sub-page-header .main-header-menu-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.sub-page-header .main-header-menu-container .row {
    height: 100%;
}
.sub-page-header .main-header-menu-container .row .col-md-12 {
    height: 100%;
}
.sub-page-header .logo {
    font-family: playfair display, serif;
    font-size: 2rem;
    font-weight: 500;
    position: absolute;
    bottom: 100px;
    right: 1rem;
    z-index: 1;
    color: #fff;
}
header.home-header {
    position: absolute;
    right: 1rem;
    top: 100px;
    z-index: 1;
}
header.home-header .main-header-menu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
header.home-header .main-header-menu .menu li {
    margin: 0 0 0.5rem;
    padding: 0;
}
header.home-header .main-header-menu .menu li a {
    position: relative;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: 300;
}
header.home-header .main-header-menu .menu li a:before {
    transform: rotate(180deg) translateY(-50%);
    -moz-transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    bottom: 10px;
    height: 2px;
    width: 0;
    background-color: #fff;
}
header.home-header .main-header-menu .menu li a:hover:before {
    left: -110px;
    width: 100px;
}
header.home-header .main-header-menu .menu li a.active {
    font-weight: 700;
}
header.home-header .main-header-menu .menu li a.active:before {
    transform: rotate(180deg) translateY(-50%);
    content: "";
    position: absolute;
    top: 50%;
    left: -110px;
    bottom: 10px;
    height: 2px;
    width: 100px;
    background-color: #fff;
}
.mobile-menu {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}
.mobile-menu li {
    color: #fff;
    width: 49%;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.mobile-menu li:first-child {
    font-size: 1.3rem;
}
.mobile-menu li:last-child {
    text-align: right;
}
.carousel,
.carousel-inner,
.carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}
.carousel-item {
    padding: 5rem;
}
.carousel-fade .carousel-item {
    display: block;
    position: absolute;
    opacity: 0;
    transition: opacity 0.75s ease-in-out;
    background-color: #000;
}
.carousel-fade .carousel-item img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}
.carousel {
    position: relative;
}
.carousel-control.left {
    background-image: none;
    height: 0;
    bottom: 120px;
    left: 35px;
    position: absolute;
}
.carousel-control {
    top: auto;
}
.carousel-control.right {
    background-image: none;
    height: 0;
    bottom: 120px;
    left: 80px;
    position: absolute;
}
.carousel-caption {
    width: 40%;
    left: 0.9rem;
    bottom: 100px;
    padding-bottom: 0;
}
.carousel-caption h3 {
    font-family: playfair display, serif;
    font-weight: 900;
    text-align: left;
    font-size: 4rem;
}
.carousel-caption p {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 0;
    color: #fff !important;
}
.carousel-caption .carousel-caption-top-title {
    margin-left: 110px;
    position: relative;
}
.carousel-caption .carousel-caption-top-title:before {
    content: "";
    position: absolute;
    left: -110px;
    bottom: 10px;
    height: 2px;
    width: 100px;
    background-color: #fff;
}
.carousel-indicators {
    margin-left: 0;
    width: 0;
    right: 60px;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}
.about-me {
    position: relative;
    height: inherit;
    margin-bottom: 100px;
}
.about-me .section--desc {
    padding: 30px 0;
}
.about-me--wrapper {
    position: relative;
}
.about-me--content-wrapper {
    position: absolute;
    right: 0;
    top: -50px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07);
    background-color: #fff;
}
.about-me--content {
    margin-top: -50px;
    padding: 100px 50px 100px 170px;
    width: 120%;
    float: right;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07);
}
.about-me--img-wrapper {
    position: absolute;
    top: 100px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07);
}
.about-me--img {
    position: absolute;
    z-index: 1;
    margin-top: 100px;
}
.about-me--img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07);
}
.content-section img {
    height: 100%;
    width: 100%;
}
.content-section svg {
    font-family: playfair display, serif;
    font-size: 100em;
    font-weight: 800;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.content-section svg text {
    text-anchor: middle;
}
.content-section svg mask rect {
    fill: #fff;
}
.content-section svg > rect {
    fill: #fff;
    -webkit-mask: url(#mask);
    mask: url(#mask);
}
.news-one {
    padding: 100px 0 0;
}
.news-one .carousel-cell {
    -moz-transition: opacity 0.7s;
    -o-transition: opacity 0.7s;
    -webkit-transition: opacity 0.7s;
    transition: opacity 0.7s;
    opacity: 0.7;
    position: relative;
    width: 85%;
    height: 600px;
    margin-right: 10px;
    counter-increment: carousel-cell;
    overflow: hidden;
}
.news-one .carousel-cell img {
    filter: alpha(opacity=70);
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-one .carousel-cell .carousel-cell-caption {
    position: absolute;
    left: 80px;
    bottom: 40px;
    width: 40%;
}
.news-one .carousel-cell .carousel-cell-caption h2 {
    font-family: playfair display, serif;
    font-weight: 600;
    color: #fff;
}
.news-one .carousel-cell .carousel-cell-caption h2:before {
    content: "";
    width: 100px;
    height: 2px;
    position: absolute;
    left: 0;
    top: -10px;
    background-color: #fff;
}
.news-one .carousel-cell .carousel-cell-caption p {
    color: #fff;
}
.news-one .carousel-cell .carousel-cell-caption i {
    color: #fff;
}
.news-one .is-selected {
    opacity: 1 !important;
}
.news-two {
    padding: 0 0 100px;
}
.news-two--item-wrapper {
    position: relative;
    padding: 0;
    height: 500px;
    overflow: hidden;
    background-color: #000;
}
.news-two--item-wrapper img {
    filter: alpha(opacity=70);
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-two--content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.news-two--content-title-top {
    font-size: 0.8rem;
    color: #f4f4f4;
    margin-bottom: 0;
}
.news-two--content-title {
    color: #fff;
    font-weight: 600;
}
.news-two--item-wrapper-two {
    position: relative;
    padding: 0;
    height: 234px;
    margin-bottom: 30px;
    overflow: hidden;
    background-color: #000;
}
.news-two--item-wrapper-two img {
    filter: alpha(opacity=70);
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-two--content-two {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.news-two--content-title-top-two {
    font-size: 0.8rem;
    color: #f4f4f4;
    margin-bottom: 0;
    padding: 0.5rem 0.8rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    min-height: 55px;
}
.news-two--content-title-two {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}
footer {
    padding: 30px 0;
    background-color: #040404;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 300;
}
footer .site-creation-by a {
    color: #fff;
}
.m_social_media {
    list-style: none;
    margin: 0;
    padding: 0;
}
.m_social_media li {
    display: inline-block;
    margin-right: 1rem;
}
.m_social_media li i {
    color: #2d3134;
}
.m_social_media li:hover i {
    color: #434a4f;
}
.m_social_media li:last-child {
    margin-right: 0;
}
.page-about-me {
    position: relative;
    height: inherit;
    padding-bottom: 50px;
}
.page-about-me .section--desc {
    padding: 30px 0;
}
.page-about-me--wrapper {
    position: relative;
}
.page-about-me--content-wrapper {
    position: relative;
    right: 0;
    top: -50px;
    background-color: transparent;
}
.page-about-me--content {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07);
    padding: 50px 50px 30px;
    width: 100%;
    float: right;
    background-color: #fff;
    font-size: 1.1rem;
}
.page-about-me--content-title {
    font-size: 2rem;
    font-weight: 600;
}
.page-about-me .carousel-cell {
    position: relative;
    width: 100%;
    height: 250px;
    margin-right: 10px;
}
.page-about-me .carousel-cell-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    max-height: 200px;
    margin: 0 auto;
    max-width: 100%;
}
.page-about-me .news-page-carousel button {
    bottom: -65px;
    background: rgba(0, 0, 0, 0.35);
}
.page-about-me .news-page-carousel--title {
    position: absolute;
    left: 0;
    bottom: 1.2rem;
    font-weight: 600;
}
.page-about-me .news-page-carousel--link {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 0.9rem;
}
.carousel-button-padding {
    padding-bottom: 4rem;
    padding-top: 1rem;
}
@media screen and (min-width: 768px) {
    .carousel-cell {
        width: 20% !important;
    }
}
.left-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.left-menu-list li {
    margin: 0;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid rgba(45, 49, 52, 0.1);
}
.left-menu-list li:first-child {
    padding-top: 0;
}
.left-menu-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.left-menu-list li a {
    color: #2d3134;
    text-decoration: none;
}
.left-menu-list li a:hover {
    text-decoration: none;
}
.imglist .col-md-4 {
    margin-bottom: 2rem;
}
.imglist-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 500px;
    min-width: 100%;
}
.imglist-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.flickity-prev-next-button.previous {
    left: 0 !important;
}
.flickity-prev-next-button.next {
    right: 0 !important;
}
.interviews {
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.02), 0 20px 40px rgba(0, 0, 0, 0.02);
}
.interviews--img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}
.interviews--img-wrapper img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}
.interviews--content {
    text-align: center;
    padding: 20px;
}
.interviews--category {
    letter-spacing: 0.2rem;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #9e9e9e;
}
.interviews--title {
    position: relative;
    text-align: center;
    margin-top: 0.7rem;
    margin-bottom: 2.5rem;
}
.interviews--title:before {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    height: 25px;
    transform: rotate(90deg);
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAACGklEQVRIS71VwXHbMBC8xfEfpQO5A3FI/uUKLFdguYIoHdAVWB2E6UCuIPKb4FCpIOog0p/QZS4DehwKFKk8jBm+AN5i9/YWoA9Y+AAMGg1S1/XUOXfHzC/OuRkz7+I43o+55CBIXdcz59wzEc0DBfcACmPMSxzHuz7AiyDW2oKIHvzPRyIqAOxFRL8ZgBkR3fn9LTPfx3F86IL1grwDOAJYGWM2oQJlWc4BbIjoExFt0zS9HQSp63rSNI3e8oeIvEZRtBzS3ku6VSAAX5MkWb8HOmOiIM65mohe0zRdjmmsninLMgfwBcDTIEhVVSsReWbmz115vMNW2hciOhhj1GF/G+73fgF4TJJEe/m2zphYa/WnXZeFl3GVZVnex85aK2NBRERusyxTjd9WVVVLY8z2Un8URESeuhcJMQmCqOZRFBVDIMwcd2cmCBI6qExE5JCmqdr1bPlezplZ3fjPrPT1JO8W8zbN2yI6H62kfm/DzLNRw1iW5dYYU3Qdoo0nIrX3WkS+RVH0s2maKQBNhCMz5yEApXzGxNPWIHwM6W+tXQCYnk6nhaaAN0NvbgVB/DD+JqLv1wzjpaENZpe1VmPhgZlv+iQYmwRBJn56VfsdgHU3Iq4p3p7tTeE29ERk0R3Ma4EuvietNQHkXbddAzTmZVTpNK8mzLz6nx4NgrQ3Vtd522qmTS49t4OP1jUyjD07msnYgqFzfwDl8DIpvnUHvQAAAABJRU5ErkJggg==)
        no-repeat center center;
}
.interviews--desc {
    height: 90px;
    overflow: hidden;
    text-align: center;
    color: #9e9e9e;
}
.interviews a {
    text-align: center;
    text-decoration: none;
}
.interviews a:hover {
    text-decoration: none;
}
.flickity-prev-next-button {
    border-radius: 0;
    top: auto;
    transform: translateY(0);
    height: 44px;
    width: 44px;
    background: rgba(255, 255, 255, 0.45);
}
.flickity-prev-next-button.previous {
    left: auto;
    bottom: 0;
}
.flickity-prev-next-button {
    bottom: 0;
}
.container {
    max-width: 92.25rem;
}
.m_image_wrapper {
    height: 300px;
    position: relative;
    overflow: hidden;
}
.m_image_wrapper a img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}
@media (max-width: 768px) {
    .content-section .section--title {
        margin-top: 50px;
    }
    .carousel-cell .carousel-cell-caption {
        left: 20px;
        width: 90%;
    }
    .news-two--item-wrapper {
        margin-bottom: 30px;
    }
    .carousel-caption {
        left: 0;
        width: 100%;
        bottom: 80px;
        padding-right: 30px;
        padding-left: 30px;
    }
    .carousel-caption h3 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 0.8rem;
    }
    .header .logo {
        right: 0;
        bottom: 70px;
        width: 100%;
        text-align: center;
    }
    header.home-header {
        top: 50px;
    }
    .breadcrumb-title {
        font-size: 2rem;
        width: 100%;
        text-align: center;
        left: 0;
    }
    .sub-page-header {
        height: 300px;
    }
    .page-about-me {
        padding-bottom: 0 !important;
    }
    .page-about-me--content {
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07) !important;
        padding: 50px 30px;
        font-size: 1.3rem;
    }
    .page-about-me--content .section--title {
        margin-top: 20px;
    }
    .page-about-me--content .section--desc {
        padding-bottom: 0;
    }
    .page-about-me--content-wrapper {
        background-color: transparent !important;
    }
    .page-content .imglist img {
        margin-bottom: 3rem;
    }
}
@media (max-width: 992px) {
    .about-me {
        margin-bottom: 50px;
    }
    .about-me--img {
        display: none;
        position: relative !important;
        top: 0 !important;
    }
    .about-me--img img {
        box-shadow: none;
    }
    .about-me--content {
        margin-top: -50px;
        width: 100%;
        padding: 100px 50px;
    }
    .basari-icin li {
        width: 100%;
    }
    .content-section {
        margin-top: 150px;
    }
    .carousel-item {
        padding: 1rem;
    }
}
@media (min-width: 992px) {
    .mobile-menu-container {
        display: none;
    }
}
.mecra_adi {
    color: #fff;
}
