@import url('../fonts/font.css');
@import url("https://use.typekit.net/itq0yzg.css");

:root {
    --font1: 'Gilroy', sans-serif;
    --font2: 'circe', sans-serif;
    ;
    --color1: #264c78;
    --color2: #221f20;
}

.clear {
    clear: both;
}

::selection {
    background-color: var(--color1);
    color: #fff;
}

.center-image {
    display: block;
    margin: 0px auto;
}

* {
    outline: 0 !important;
}

*,
::after,
::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

.nmb {
    margin-bottom: 0 !important;
}

.no-border {
    border: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.w-75 {
    width: 75% !important;
}

.w-60 {
    width: 60% !important;
}

.w-50 {
    width: 50% !important;
}

.w-40 {
    width: 40% !important;
}

.w-25 {
    width: 25% !important;
}

.mw-100 {
    max-width: 100%;
}

.left {
    float: left;
}

.right {
    float: right;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.absolute-center-x {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}

.absolute-center-y {
    position: absolute;
    top: 50% !important;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

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

.hide {
    display: none;
}

strong,
b {
    font-weight: 700;
}

.t2 {
    transition: all cubic-bezier(.6, .18, .85, .94) .2s;
    -moz-transition: all cubic-bezier(.6, .18, .85, .94) .2s;
    -webkit-transition: all cubic-bezier(.6, .18, .85, .94) .2s;
    -o-transition: all cubic-bezier(.6, .18, .85, .94) .2s;
}

.t3 {
    transition: all cubic-bezier(.6, .18, .85, .94) .3s;
    -moz-transition: all cubic-bezier(.6, .18, .85, .94) .3s;
    -webkit-transition: all cubic-bezier(.6, .18, .85, .94) .3s;
    -o-transition: all cubic-bezier(.6, .18, .85, .94) .3s;
}

.t4 {
    transition: all cubic-bezier(.6, .18, .85, .94) .4s;
    -moz-transition: all cubic-bezier(.6, .18, .85, .94) .4s;
    -webkit-transition: all cubic-bezier(.6, .18, .85, .94) .4s;
    -o-transition: all cubic-bezier(.6, .18, .85, .94) .4s;
}

.cubic-1 {
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -moz-transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -webkit-transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.cubic-2 {
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}

.row {
    position: relative;
}

.col {
    position: relative;
}

.column_left {
    float: left;
    order: 1;
}

.column_right {
    float: right;
    order: 2;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flex-center-y {
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-center-x {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.fontSmall80 {
    font-size: 80%;
}

.fontSmall60 {
    font-size: 60%;
    font-weight: 400;
}

.color-black {
    color: #000 !important;
}

.color-white {
    color: #fff !important;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font1);
}

img,
i {
    vertical-align: middle;
}

.container {
    position: relative;
    max-width: 1580px;
    width: 100%;
    margin: 0 auto;
}
header .container{
    max-width:none;
    width:100%;
    box-sizing: border-box;
    padding-left:120px !important;
    padding-right:120px !important;
}
@media (max-width: 1440px) {
    header .container{
        padding-left:70px !important;
        padding-right:70px !important;
    }
    header .w-100{
        width:70% !important;
    }
}
@media (max-width: 1024px) {
    header .container{
        padding-left:45px !important;
        padding-right:5px !important;
    }
    header .w-100{
        width:100% !important;
    }
    .header-link{
        padding:6px 10px !important;
        margin-top: 6px !important;
        font-size:12px !important;
    }
    #lang-menu{
        margin-top:12px !important;
    }
}
.full-container {
    position: relative;
    padding: 0 40px;
    width: 100%;
}

body {
    line-height: 1;
    font-family: var(--font1);
    font-weight: 400;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    height: 100%;
    overflow: hidden;
}

.onlyMobile {
    display: none;
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);
    z-index: 851;
    opacity: 0;
    visibility: hidden;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

body.trident * {
    display: none;
    position: relative;
}

body.trident::after {
    content: "SİTEMİZİ EN İYİ ŞEKİLDE GÖRÜNTÜLEMEK İÇİN LÜTFEN DAHA GÜNCEL BİR TARAYICI KULLANIN.";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    font-size: 45px;
    width: 60%;
    text-align: center;
    color: #180954;
    line-height: 1.3;
}

.up-to-body {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color2);
    z-index: 400;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    display: none;
    transition: all .3s ease-in-out;
}

.up-to-body.in-footer {
    background: #fff;
    color: var(--color2);
}

.erkanli-btn {
    line-height: 76px;
    display: inline-block;
    background: var(--color1);
    color: #fff;
    font-size: 18px;
    font-family: var(--font1);
    font-weight: 700;
    padding: 0 45px;
    letter-spacing: 3px;
    position: relative;
    min-width: 300px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -moz-transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -webkit-transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border: 2px solid var(--color1);
}

.erkanli-btn:hover {
    background: var(--color2);
    border-color: var(--color2);
}

/* .erkanli-btn::after, .erkanli-btn::before {
        content: "";
        position: absolute;
        top: 0;
        height: 50%;
        z-index: 0;
        transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0); 
        -moz-transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0); 
        -webkit-transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        background: var(--color2);
        width: 0;
    }
    .erkanli-btn::after {
        left: 0;
    }
    .erkanli-btn::before {
        right: 0;
        top: 50%;
        transition-delay: .1s;
    }
    .erkanli-btn:hover::after, .erkanli-btn:hover::before {
        width: 100%;
    } */

.erkanli-btn-mini {
    font-size: 18px;
    color: var(--color1);
    font-weight: 400;
    padding: 0;
    letter-spacing: 0.6px;
    display: inline-block;
    position: relative;
    line-height: 20px;
}

.erkanli-btn-mini::after {
    content: "";
    width: 40px;
    height: 11px;
    background: url(../images/arrow_R.svg) no-repeat center center;
    display: inline-block;
    margin-left: 20px;
    position: relative;
    right: 0;
    transition: all .25s ease-in-out;
}

.erkanli-btn-mini:hover::after {
    right: -10px;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    --headerMW: 120px;
    height: var(--headerMW);
    z-index: 75000;
    border-bottom: 1px solid rgba(244, 244, 244, 0.4);
    background-color: transparent;
}

header.sticky {
    /* --headerMW: 80px; */
    background-color: #fff;
    border-color: #f4f4f4;
}

.menu-btn {
    width: var(--headerMW);
    /* width: 120px; */
    background: #fff;
    color: var(--color2);
    font-size: 22px;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    border-right: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
}

.menu-btn img {
    max-width: 25px;
}

.menu-btn:hover {
    background: var(--color1);
    border-color: var(--color1);
}

.menu-btn:hover img {
    -webkit-filter: invert(1) brightness(2);
    filter: invert(1) brightness(2);
}

.language-select {
    position: absolute;
    right: 50px;
    padding-right: 18px;
    padding-left: 30px;
    background: transparent;
    border: none;
    font-family: var(--font2);
    top: 50%;
    margin-top: -21px;
}

.language-select .current {
    color: #fff;
    font-size: 18px;
    opacity: 0.8;
}

header.sticky .language-select .current {
    color: #000;
}

.language-select.nice-select:after {
    right: auto;
    left: 6px;
    border-color: #fff;
    opacity: 0.8;
    border-width: 2px;
    width: 8px;
    height: 8px;
    margin-top: -6px;
}

header.sticky .language-select.nice-select:after {
    border-color: #000;
}

.logo {
    width: 160px;
    display: inline-block;
    margin-left: 20px;
}

.logo img:last-child {
    display: none;
}


.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color2);
    opacity: 0;
    visibility: hidden;
    z-index: 10001;
}

.menu.open {

    opacity: 1;
    visibility: visible;
}

.menu-header {
    height: 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    position: relative;
}

.menu-header .menu-btn {
    width: 120px;
}

.menu-header .home-btn {
    width: 40px;
    border-left: #f4f4f4;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.menu-footer {
    height: 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    position: relative;
}

.menu-footer a {
    color: rgba(73, 72, 71, 0.8);
    font-size: 16px;
    font-weight: 600;
    margin-right: 30px;
}

.menu-footer .menu-social a {
    font-size: 24px;
    display: inline-block;
    margin-left: 30px;
    margin-right: 0;
}

.menu-footer a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.menu-wrapper {
    height: calc(100% - 240px);
    width: 100%;
    background: url('../images/menu-bg.jpg') no-repeat center center;
    background-size: cover;
}

.menu-list-item {
    height: 100%;
    background: var(--color2);
    padding: 50px;
    position: relative;
}

.menu-list-item:hover {
    background: transparent;
}

.menu-list-item::before {
    content: "";
    width: 1px;
    height: 84%;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 0;
    top: 8%;
}

.menu-list-item:last-child::before {
    display: none;
}

.menu-list-link>a {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
}

.menu-list-link>a span {
    display: block;
    font-weight: 300;
    opacity: 0.2;
    margin-bottom: 12px;
}

.menu-list-item:hover a {
    color: var(--color2);
}

.menu-list-item:hover .menu-list-link>a span {
    opacity: 1;
}

.sub-menu {
    margin-top: 60px;
    display: none;
    position: absolute;
}

.sub-menu>li {
    margin: 30px 0;
    display: block;
}

.sub-menu>li>a {
    font-size: 16px;
    color: var(--color2);
    font-weight: 600;
    text-transform: uppercase;
}

.sub-menu>li>ul {
    margin-top: 15px;
}

.sub-menu>li>ul a {
    font-size: 16px;
    color: var(--color2);
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.sub-menu>li>ul a::before {
    content: "";
    width: 0;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    background: var(--color2);
    position: relative;
    top: -2px;
    margin-left: -20px;
    transition: .3s all ease-in-out;
}

.sub-menu>li>ul a:hover::before {
    width: 30px;
}


#slider {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.main-slider {
    background: var(--color2);
    height: 100%;
}

.main-slider.slick-slider .slick-track,
.main-slider.slick-slider .slick-list {
    height: 100%;
}

.sliderImage {
    opacity: 0.4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.main-slider_item {
    position: relative;
}

.main-slider__content {
    z-index: 555;
    /* margin-top: -45px; */
}

.main-slider__content_title {
    font-family: var(--font1);
    color: #fff;
    font-size: 85px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 50px;
    opacity: 0;
    position: relative;
    top: -15px;
}

.animation .main-slider__content_title {
    opacity: 1;
    top: 0;
}

.main-slider__content .erkanli-btn {
    opacity: 0;
    transition: bottom 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) .3s, opacity 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) .3s, all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -moz-transition: bottom 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) .3s, opacity 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) .3s, all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -webkit-transition: bottom 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) .3s, opacity 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) .3s, all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    position: relative;
    bottom: -15px;
}

.animation .main-slider__content .erkanli-btn {
    opacity: 1;
    bottom: 0;
}

/* .char{
                    font-size: 85px;
                    height: 85px; 
                    animation: an 1s ease-out 1 both;
                    display: inline-block;
                }
        
                @keyframes an{
                    from{
                        opacity: 0;
                        transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
                    }
                    to{
                        opacity: 1;
                        transform: perspective(500px) translate3d(0, 0, 0);
                    }
                } */

.main-slider_dots {
    width: 550px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    background: var(--color2);
    color: #fff;
    z-index: 556;
    display: none;;
    padding-left: calc((1920px - 1580px)/2);
}

.main-slider_dots .dots {
    float: left;
    height: 35px;
}

.main-slider_dots .dots ul {
    height: 100%;
}

.main-slider_dots .dots li {
    display: inline-block;
    margin: 0 9px;
    opacity: 0.4;
    height: 100%;
    padding: 5px 0;
}

.main-slider_dots .dots li.slick-active {
    opacity: 1;
}

.main-slider_dots .dots li.slick-active button {
    background: transparent;
    border-color: #fff;
    transform: scale(1.25);
}

.main-slider_dots .dots li button {
    width: 8px;
    height: 8px;
    font-size: 0;
    border: 1px solid transparent;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    padding: 2px;
}

.main-slider_dots .status {
    float: right;
    height: 35px;
    font-family: var(--font2);
    font-weight: 600;
}

.main-slider_dots .status>div {
    display: inline-block;
    position: relative;
}

.main-slider_dots .status>div:first-child {
    vertical-align: top;
}

.main-slider_dots .status>div:last-child {
    vertical-align: bottom;
    opacity: 0.3;
}

.main-slider_dots .status>.status-seperator {
    height: 100%;
    width: 1px;
    background: #fff;
    display: inline-block;
    margin: 0 8px 0 15px;
    opacity: 0.3;
}

.pro-video {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36.5%;
    background: url('../images/video-btn.jpg') no-repeat center center;
    background-size: cover;
}

.pro-video>img {
    max-width: 100%;
    width: 100%;
    opacity: 0;
}

.pro-video>span {
    font-size: 26px;
    color: #fff;
    font-family: var(--font2);
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

.pro-video>span img {
    max-width: 100px;
    margin-right: 30px;
}

.scroll-down {
    font-family: var(--font2);
    color: #fff;
    opacity: 0.5;
    font-size: 16px;
    font-weight: 500;
    z-index: 556;
    bottom: 50px;
    text-align: center;
}

.scroll-down span {
    border-bottom: 1px solid;
    display: block;
    padding-bottom: 2px;
}

.scroll-down img {
    width: 22px;
    display: inline-block;
    margin-bottom: 15px;
}

.section:not(#slider) {
    padding: 150px 0;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #25408f;
    letter-spacing: 1px;
    margin-bottom: 50px;
    display: inline-block;
}

.section-title span {
    font-size: 18px;
    font-weight: 400;
    display: block;
    line-height: 20px;
    margin-bottom: 5px;
    color: #25408f;
    display: none;
}

/* section10 */
#section10 {
    background: url('../images/section10-bg.png') no-repeat center bottom;
    /* background-size: cover; */
}

#section10 .section-content {
    grid-column: 1/3;
    padding-right: 180px;
}

.section-content p {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--font2);
    color: #6d6e70;
    margin-bottom: 30px;
}

.section-content .erkanli-btn {
    margin-top: 50px;
}

#section10 .section-content p:first-of-type::before {
    content: "";
    width: 40px;
    height: 2px;
    display: block;
    background: #6d6e70;
    margin-bottom: 30px;
}

.section10-img {
    position: relative;
}

.home-img-link {
    position: absolute;
    bottom: 18px;
    left: 30px;
    font-size: 18px;
    color: var(--color1);
    font-weight: 400;
    letter-spacing: 1px;
}

.home-img-link img {
    display: inline-block;
    width: 35px;
    margin-left: 10px;
}

.home-img-link>span {
    font-size: 24px;
    font-weight: 600;
    color: #231f20;
    display: block;
    margin-bottom: 25px;
}

.home-img-link>span>span {
    font-size: 18px;
    font-weight: 400;
    color: #6d6e70;
    display: block;
    margin-bottom: 5px;
}

/* section20 */
#section20 {
    background: url('../images/section20-bg.png') no-repeat bottom right #25408f;
}

#section20 .section-title,
#section20 .section-title span {
    color: #fff;
}

.numberInfo-text {
    padding: 59px 30px;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: .6px;
}

.numberInfo-text span {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: .9;
    display: block;
    margin-bottom: 10px;
}

.mini-numberInfo {
    height: 100%;
}

.numberInfo-text {
    height: 50%;
}

/* section30 */
#section30 p {
    font-size: 25px;
    color: #231f20;
    line-height: 1.2;
    margin-top: 50px;
    position: relative;
}

#section30 p::before {
    content: "";
    width: 40px;
    height: 2px;
    display: block;
    background: #6d6e70;
    margin-bottom: 30px;
}

.sector-box_link {
    padding: 50px 30px 0;
}

.sector-box__title {
    font-size: 24px;
    color: #231f20;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: .3px;
}

.news-section {
    margin-top: 80px;
}

.all-news-btn {
    font-size: 18px;
    color: var(--color1);
    font-weight: 700;
    margin-top: 35px;
}

.all-news-btn img {
    width: 0;
    margin-left: 10px;
    position: relative;
    top: -1px;
}

.all-news-btn:hover img {
    display: inline-block;
    width: 35px;
}

.news-slider-column-left {
    grid-column: 1/3;
    position: relative;
}

.news-slider-arrows {
    position: absolute;
    bottom: 40px;
    right: 70px;
    z-index: 445;
}

.news-slider-arrows .slick-arrow {
    width: 40px;
    display: inline-block;
    margin-left: 25px;
    -webkit-filter: invert(1) brightness(2);
    filter: invert(1) brightness(2);
}

.news-slider_item {
    position: relative;
}

.news-slider_item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.news-slider__content {
    left: 90px;
    right: 90px;
    z-index: 2;
}

.news-slider__content .new-category {
    line-height: 30px;
    background: #fff;
    color: var(--color1);
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.news-slider__content .new-title {
    font-size: 52px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}

.news-slider__content .new-text {
    font-size: 22px;
    font-family: var(--font2);
    color: #fff;
    margin-bottom: 60px;
    line-height: 1.2;
}

.news-slider-column-right {
    border: 1px solid rgb(230, 230, 230);
}

.last-news-item {
    height: 25%;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.last-news-item:last-child {
    border: none;
}

.last-news-item a {
    display: block;
    padding: 30px 50px 20px;
    height: 100%;
}

.last-news-item a:hover {
    background: rgba(0, 0, 0, 0.01);
}

.last-news-item .new-category {
    font-size: 14PX;
    color: var(--color1);
    font-weight: 600;
    margin-bottom: 20px;
}

.last-news-item .new-title {
    font-size: 18px;
    color: var(--color2);
    font-weight: 600;
    margin-bottom: 15px;
}

.last-news-item .new-date {
    font-size: 12px;
    color: var(--color2);
    line-height: 20px;
    opacity: 0.4;
}

.last-news-item .new-date i {
    margin-right: 10px;
    position: relative;
    top: -1px;
    font-size: 14px;
}



.content-header {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    max-height: 545px;
    overflow: hidden;
}

.content-header_inner {
    z-index: 55;
    position: absolute;
    top: 250px;
    height: 190px;
}

.content-header_inner h1 {
    font-size: 92px;
    color: #fff;
    font-weight: 700;
}

.content-header img {
    /* opacity: 0; */
    position: relative;
}

.breadcrumb {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 91px;
}

.breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    margin-right: 4px;
    font-weight: 500;
    line-height: 18px;
    padding: 0;
}

.breadcrumb li.seperator {
    /* font-size: 0; */
    color: rgba(0, 0, 0, 0.5);
    font-size: 0;
    height: 18px;
}

.breadcrumb li.seperator::before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-size: 10px;
    line-height: 18px;
    display: block;
}

.breadcrumb li a {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.breadcrumb li a:hover {
    color: rgba(0, 0, 0, 0.7);
}

.content {
    padding-bottom: 100px;
    position: relative;
    z-index: 10000;
}

.content-column-left {
    grid-column: 1/3;
    padding-right: 180px;
    /* margin-bottom: 100px; */
}

.content-text-top p {
    font-size: 28px;
    line-height: 1.2;
    font-family: var(--font2);
    font-weight: 800;
    color: #6d6e70;
    margin-bottom: 50px;
}

.content-text h2 {
    font-size: 30px;
    line-height: 1.2;
    font-family: var(--font2);
    font-weight: 700;
    color: #25408f;
    margin-bottom: 15px;
}

.content-text p {
    font-size: 22px;
    line-height: 1.2;
    font-family: var(--font2);
    font-weight: 400;
    color: #6d6e70;
    margin-bottom: 35px;
}

.content-column-right {
    margin-top: -275px;
    position: relative;
}

.img-shadow {
    box-shadow: 0px 35px 32px 0px rgba(0, 0, 0, 0.1);
}

.img-with-text {
    font-size: 28px;
    color: #000;
    font-weight: 700;
    width: 70%;
    position: absolute;
    top: 270px;
    left: -35px;
    letter-spacing: 0.7px;
}

.img-with-text::before {
    content: '';
    width: 45px;
    height: 40px;
    background: var(--color1);
    display: block;
    margin-bottom: 50px;
    opacity: 0;
}

.mainBg {
    background: url(../images/main-bg.png) no-repeat center center;
    background-size: cover;
}

.mainBg2 {
    background: url(../images/main-bg2.png) no-repeat center bottom;
    background-size: cover;
}

.sidebar-widget {
    background: url(../images/sidebar-bg.png) no-repeat center center var(--color1);
    padding: 65px 45px 25px;
}

.sidebar-box {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
}

.sidebar-text {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    padding-left: 30px;
}

.sidebar-text span,
.sidebar-text a {
    display: block;
    /* font-weight: 400; */
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-text a:hover {
    color: rgba(255, 255, 255, 0.9);
}


.content-list {
    margin-top: 80px;
}

.content-list_item {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.content-list_item:last-child {
    border: none;
}

.content-list__text {
    width: 65%;
    font-size: 18px;
    color: #000;
}

.content-list__text strong {
    display: block;
    margin-bottom: 15px;
    letter-spacing: .6px;
}

.content-list__text p {
    color: #6d6e70;
    margin-bottom: 30px;
    font-weight: 400;
}

.content-list__img {
    width: 20%;
    padding-top: 30px;
}

.bottom-links {
    background: var(--color2);
}

.bottom-link-item {
    padding: 100px 170px;
    background-color: #919191;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-blend-mode: multiply;
}

.bottom-link-item img {
    width: 100px;
    display: inline-block;
    vertical-align: middle;
}

.bottom-link-item span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.1;
}

.bottom-link-item:first-child img {
    margin-right: 20px;
}

.bottom-link-item:last-child img {
    margin-left: 20px;
}

.bottom-link-item:last-child {
    text-align: right;
}

.bottom-link-item:hover {
    background-color: rgba(38, 76, 120, 0.8);
}

.map-wrapper {
    position: relative;
    padding-bottom: 150px;
}

#map {
    margin: 0 50px;
    height: 700px;
    width: auto;
}

.location-list-wrapper {
    background: #fff;
    padding: 45px 50px;
    position: absolute;
    right: 0;
    top: -210px;
    box-shadow: 0px 35px 95px 0px rgba(0, 0, 0, 0.05);
    width: 33.333%;
    font-family: var(--font2);
    z-index: 55;
}

.location-list {
    margin-top: -20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    height: 80px;
    overflow: hidden;
    position: relative;
}

.location-list.open {
    height: auto;
}

.location-list.open a:not(.open-dropdown) {
    display: block;
}

.location-list a:not(.open-dropdown) {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    line-height: 80px;
    display: none;
}

.location-list a:not(.open-dropdown).active {
    display: block;
    pointer-events: none;
}

.location-list .open-dropdown {
    position: absolute;
    right: 0;
    width: 80px;
    top: 10px;
    height: 60px;
    color: #000;
    line-height: 60px;
    font-size: 21px;
    z-index: 99;
    /* background: rgba(0, 0, 0, 0.05); */
    text-align: right;
}

.location-list .open-dropdown.open i {
    transform: rotate(180deg);
}

.location-detail {
    display: none;
}

.location-detail p {
    font-size: 18px;
    color: #6d6e70;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.location-detail__contact {
    font-size: 18px;
    color: #6d6e70;
    font-weight: 600;
    margin-bottom: 24px;
}

.location-detail__contact span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.location-detail__contact a {
    font-size: 18px;
    color: #6d6e70;
    font-weight: 600;
    font-family: var(--font1);
}

.map-wrapper_inner {
    padding-right: 185px;
    padding-left: 80px;
    padding-top: 80px;
    font-family: var(--font2);
    color: #6d6e70;
    font-size: 22px;
    font-weight: 400;
}

.map-wrapper_inner p {
    margin-bottom: 50px;
}

.map-wrapper_mail-list {
    grid-row-gap: 30px;
}

.mail-info span {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

.mail-info span::before {
    content: "";
    width: 20px;
    height: 1px;
    background: #000;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 10px;
    position: relative;
    top: -2px;
}

.mail-info a {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    text-decoration: underline !important;
}

.contact-form-wrapper {
    background: url(../images/sidebar-bg.png) no-repeat center center var(--color1);
    padding: 65px 45px;
    position: absolute;
    top: 350px;
    left: 0;
    width: 33.333%;
}

.contact-form_title {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    letter-spacing: .6px;
    margin-bottom: 60px;
}

.input-row {
    width: 100%;
    margin-bottom: 55px;
    display: block;
    position: relative;
}

.input-row.error .form-message {
    display: block;
    right: 0;
    font-size: 12px;
    letter-spacing: 1px;
    bottom: -20px;
}

.input-row .label-title {
    color: #fff;
    font-size: 18px;
    font-family: var(--font1);
    font-weight: 300;
    position: absolute;
    left: 0;
    top: 15px;
    z-index: 0;
    pointer-events: none;
}

.input-row input {
    height: 50px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    font-family: var(--font1);
    font-weight: 300;
    width: 100%;
    z-index: 1;
}

.input-row input:focus~.label-title,
.input-row input:not([value=""])~.label-title {
    top: -10px;
    font-size: 14px;
}

.contact-form_submit {
    font-size: 18px;
    color: var(--color1);
    font-weight: 700;
    background: #fff;
    letter-spacing: 2px;
    padding: 0 60px;
    line-height: 76px;
    display: inline-block;
    margin-top: 30px;
    border: 2px solid #fff;
}

.contact-form_submit:hover {
    background: transparent;
    color: #fff;
}

.principle-wrapper {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
}
.principle-item::before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 1;
    background: rgba(0,0,0,.6);
}
.principle-item#item-1 {
    grid-area: 1 / 1 / 2 / 3;
}

.principle-item#item-2 {
    grid-area: 1 / 3 / 2 / 4;
}

.principle-item#item-3 {
    grid-area: 2 / 1 / 4 / 2;
}

.principle-item#item-4 {
    grid-area: 2 / 2 / 3 / 4;
}

.principle-item#item-5 {
    grid-area: 3 / 2 / 4 / 3;
}

.principle-item#item-6 {
    grid-area: 3 / 3 / 4 / 4;
}

.principle-item#item-7 {
    grid-area: 4 / 1 / 5 / 3;
}

.principle-item {
    position: relative;
    overflow: hidden;
}

.principle-item_content {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    z-index: 55;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}



.principle-item_content span {
    width: 90px;
    height: 90px;
    display: block;
    text-align: center;
    line-height: 90px;
    margin: 0 auto 40px;
    position: relative;
}

.principle-item_content span img {
    height: 100%;
    width: auto;
}

.principle-item .principle-item_img {
    height: 100%;
    width: auto;
    transition: 1s all ease-in-out;
}

.principle-item .principle-item_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.long-principle {
    /* grid-column: 1/3; */
}

.long-principle .principle-item_img {
    width: 100%;
}

.principle-item:hover .principle-item_img {
    transform: scale(1.15) rotate(1deg);
}

.timeline {
    padding-top: 100px;
}

.timeline-item {
    margin-top: -40px;
}

.timeline-item_image {
    overflow: hidden;
}

.timeline-item_image img {
    width: 100%;
}

.timeline-item_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 20% 0;
}

.timeline-item_genContent {
    margin-top: -70px;
}

.timeline-item_genContent h2 {
    font-size: 28px;
    color: #000;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.timeline-item_genContent p {
    font-size: 20px;
    color: #6d6e70;
    font-weight: 400;
    font-family: var(--font2);
    line-height: 1.1;
}

.timeline-item_content.text-right {
    align-items: flex-start;
}

.timeline-item_content.text-right>div {
    padding: 0 0px 0 60px;
}

.timeline-item_content.text-left {
    align-items: flex-end;
}

.timeline-item_content.text-left>div {
    padding: 0 60px 0 0px;
}

.timeline-item__year {
    font-size: 38px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 20px;
}

.timeline-item__text {
    font-size: 15.5px;
    color: #6d6e70;
    font-weight: 400;
    line-height: 1.17;
}

.timeline-item_content::after {
    content: "";
    width: 1px;
    height: 25%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: -12.5%;
    left: 50%;
}

.timeline-item_content::before {
    content: "";
    height: 1px;
    width: 10px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 12.5%;
    left: calc(50% - 9px);
}

.timeline-item_content.text-left::before {
    left: 50%;
}


.news-header {
    margin-bottom: 45px;
    text-align: center;
}

.news-header a {
    background: #fff;
    line-height: 100px;
    padding: 0 50px;
    font-size: 20px;
    color: #000;
    margin: 0 10px;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font2);
    letter-spacing: .7px;
    box-shadow: 0px 35px 95px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-width: 25%;
}

.news-header a.active,
.news-header a:hover {
    background: var(--color1);
    color: #fff;
    border-color: var(--color1);
}


.news-wrapper {
    margin-bottom: 25px;
    display: none;
}

.news-wrapper_row {
    grid-gap: 25px;
}

.new-item {
    padding: 20px;
    border: 1px solid #e6e6e6;
}

.new-item:hover {
    background: rgba(0, 0, 0, 0.01);
}

.new-item_image {
    width: 35%;
    display: inline-block;
    vertical-align: middle;
    margin-right: -4px;
    height: 170px;
    overflow: hidden;
}

.new-item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-item_inner {
    width: 65%;
    display: inline-block;
    vertical-align: middle;
    padding-left: 50px;
    font-weight: 600;
}

.new-item__category {
    font-size: 14px;
    letter-spacing: .6px;
    color: var(--color1);
    margin-bottom: 20px;
}

.new-item__name {
    font-size: 18px;
    letter-spacing: .6px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.new-item__date {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    opacity: 0.4;
}

.new-item__date i {
    position: relative;
    top: -1px;
    margin-right: 10px;
    font-size: 16px;
}

.career-form .input-row {
    margin-bottom: 20px;
}

.career-form .input-row input {
    border: 1px solid #221f20;
    color: #221f20;
    padding: 0 50px;
    height: 80px;
    background: #fff;
}

.career-form .input-row .label-title {
    color: #221f20;
    left: 50px;
    top: 30px;
}

.career-form .input-row.error .form-message {
    bottom: 4px;
    right: 4px;
}

.career-form .input-row input:focus~.label-title,
.career-form .input-row input:not([value=""])~.label-title {
    top: -9px;
    font-size: 14px;
    left: 15px;
    background: #221f20;
    color: white;
    padding: 3px 5px;
}

.career-form .contact-form_submit {
    background: var(--color1);
    color: #fff;
    border-color: var(--color1);
    margin-top: 10px;
}

.career-form .contact-form_submit:hover {
    background: var(--color2);
    border-color: var(--color2);
}

.disabled {
    pointer-events: none;
    /* cursor: wait !important; 
        opacity: 0.6;*/
}

.input-file {
    border: 1px solid #221f20;
    color: #221f20;
    padding: 0;
    height: 80px;
    background: #fff;
}

.input-file input {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.input-file>span {
    position: absolute;
    left: 200px;
    top: 33px;
}

.input-file::after {
    content: "";
    width: 166px;
    height: 50px;
    background: url('../images/file-upload.jpg') no-repeat center center;
    position: absolute;
    top: 15px;
    left: 15px;
}

.career-form-title {
    font-size: 28px;
    color: #221f20;
    font-weight: 800;
    margin-bottom: 40px;
}


/* MEDIA */
.media-row {
    margin-bottom: 120px;
}

.media_title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color2);
    display: block;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 45px;
}

.media-inner-row {
    grid-column-gap: 20px;
    grid-row-gap: 50px;
}

.media-item {
    position: relative;
    text-align: center;
}

.media-item>img {
    max-width: 100%;
}

.media-item.logo-item {
    border: 1px solid var(--color2);
    padding: 90px 0;
}

.media-item.logo-item>img {
    max-width: 70%;
}

.media-item_desc {
    position: absolute;
    left: 40px;
    right: 40px;
    background: #fff;
    bottom: -30px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    padding: 5px;
}

.media-item_desc a {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: #6d6e70;
    font-weight: 400;
    transition: all .2s ease-in-out;
}

.media-item_desc a:hover {
    color: var(--color1);
}


/* FOOTER */
.footer-follow-us {
    padding: 35px 0;
    background: #f0f0f0;
}

.follow-us-text {
    display: inline-block;
    vertical-align: middle;
    width: 40%;
    margin-right: calc(5% - 4px);
}

.follow-us-title {
    font-size: 24px;
    color: #6d6e70;
    font-weight: 800;
    margin-bottom: 20px;
}

.follow-us-text p {
    font-size: 18px;
    color: #6d6e70;
    font-weight: 500;
    line-height: 1.4;
}

.follow-us-mail {
    width: 55%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.follow-us-mail input {
    height: 80px;
    padding: 30px 45px;
    border: 1px solid var(--color1);
    background: transparent;
    font-size: 18px;
    color: var(--color1);
    font-weight: 600;
    font-family: var(--font1);
    letter-spacing: 3px;
    width: calc(100% - 300px);
}

.follow-us-mail input::-webkit-input-placeholder,
.follow-us-mail input::placeholder {
    color: var(--color1);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #f0f0f0 inset;
    -webkit-text-fill-color: var(--color1);
}

.follow-us-mail .submit {
    line-height: 80px;
    background: var(--color1);
    color: #fff;
    width: 300px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.follow-us-mail .submit:hover,
.follow-us-mail .submit:focus {
    background-color: var(--color2);
}

.follow-us-mail .form-message {
    right: 305px;
}

.footer-top {
    padding: 70px 0;
    background: #25408f;
}

.footer-logo {
    width: 150px;
    display: block;
}

.footer-menu {
    display: inline-block;
    vertical-align: top;
    margin-right: -4px;
}

.footer-menu_title {
    font-size: 17px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 30px;
    font-family: var(--font2);
    letter-spacing: 2px;
}

.footer-menu ul li .footer-menu_item {
    font-size: 15.5px;
    color: rgba(255,255,255,.8);
    margin-bottom: 15px;
    display: block;
    position: relative;
    letter-spacing: .5px;
}

.footer-menu ul li:last-child .footer-menu_item {
    margin-bottom: 0;
}

.footer-menu ul li .footer-menu_item:hover {
    color: rgba(255, 255, 255, 0.7);
}

.social-media-title {
    font-size: 24px;
    color: rgba(255,255,255,.8);
    font-family: var(--font2);
    font-weight: 400;
    margin-bottom: 30px;
}

.social-media-title span {
    font-size: 18px;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.footer-social-media ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer-social-media ul li a {
    font-size: 20px;
    color: #fff;
}

.footer-social-media ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.vertical-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-bottom {
    background: #000;
    line-height: 60px;
    display: block;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    border-bottom: 1px solid;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a.scope-logo {
    color: white;
    fill: #fff;
    border-bottom: 0;
    opacity: .3;
    width: 80px;
}

.footer-bottom a.scope-logo:hover {
    opacity: .6;
}

.form-message {
    background: #000;
    padding: 4px;
    color: #fff;
    position: absolute;
    right: 4px;
    bottom: 4px;
    z-index: 555;
    display: none;
}

.form-message.error {
    background: red;
}

.form-message.success {
    background: yellowgreen;
}




/* RESPONSIVE  RESPONSIVE   RESPONSIVE   RESPONSIVE   RESPONSIVE    RESPONSIVE      RESPONSIVE    RESPONSIVE   */

@media (min-width: 1024px) {
    .mobileShow {
        display: none !important;
    }

    .sector-height {
        min-height: 300px;
    }

    #section30 p {
        padding-right: 100px;
    }

    .menu-list-item:hover .menu-list-link .sub-menu {
        display: block;
        position: relative;
    }

    .sub-menu>li>ul {
        /* opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transition: .3s all ease-in-out;
        margin: 0; */
        display: none;
    }

    .sub-menu>li:hover>ul {
        display: block;
    }
}

@media (min-width: 1024px) {
    .sector-height {
        min-height: 199px;
    }
}


@media (min-width: 1690px) {

    /* header .container{max-width: calc(100% - 300px)} */
    .sector-height {
        min-height: 350px;
    }
}

@media (max-width: 1700px) {
    .container {
        width: 1400px;
    }

 

    .main-slider__content_title {
        font-size: 50px;
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .erkanli-btn {
        line-height: 56px;
        min-width: auto;
        padding: 0 30px;
        font-size: 16px;
    }

    header {
        --headerMW: 85px;
    }

    .menu-header {
        height: 85px;
    }

    .menu-header .menu-btn {
        width: 85px;
    }

    .menu-footer {
        height: 85px;
    }

    .menu-wrapper {
        height: calc(100% - 170px);
    }

    .menu-list-item {
        padding: 30px 15px;
    }

    .main-slider__content_title {
        font-size: 55px;
    }

    .section:not(#slider) {
        padding: 80px 0;
    }

    .section-content p {
        font-size: 18px;
    }

    .section-content .erkanli-btn {
        margin-top: 25px;
    }

    .numberInfo-text span {
        font-size: 30px;
    }

    .numberInfo-text {
        font-size: 19px;
        padding: 47px 25px;
    }

    .sector-box__title {
        font-size: 18px;
    }

    .last-news-item a {
        padding: 20px 30px 10px;
    }

    .last-news-item .new-category {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .last-news-item .new-title {
        font-size: 16px;
    }

    .follow-us-mail .submit {
        width: 150px;
    }

    .follow-us-mail input {
        width: calc(100% - 150px);
    }

    .follow-us-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .follow-us-text p {
        font-size: 15px;
    }

    .content-header_inner {
        top: 144px;
    }

    .breadcrumb {
        margin-bottom: 60px;
    }

    .bottom-link-item {
        padding: 100px 100px;
        font-size: 20px;
    }

    .content-text-top p {
        font-size: 23px;
        margin-bottom: 30px;
    }

    .content-text p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .content-column-right {
        margin-top: -210px;
    }

    .sidebar-widget {
        padding: 50px 30px 25px;
    }

    .footer-menu_title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-menu ul li .footer-menu_item {
        font-size: 13px;
    }

    .principle-item_content {
        font-size: 23px;
    }

    .timeline-item_genContent h2 {
        font-size: 24px;
    }

    .timeline-item_genContent p {
        font-size: 15px;
    }

    .timeline-item_content.text-left>div {
        padding-right: 20px;
    }

    .timeline-item_content.text-right>div {
        padding-left: 20px;
    }

    .timeline-item__text {
        font-size: 13px;
    }

    .timeline-item__year {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .contact-form_submit {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .location-list-wrapper {
        padding: 30px 25px;
    }

    .location-list a:not(.open-dropdown) {
        font-size: 16px;
    }

    .location-list .open-dropdown {
        width: 55px;
    }
}

@media (max-width: 1366px) {
    header {
        --headerMW: 70px;
    }

    .content-header_inner {
        height: 150px;
    }

    .content-header_inner h1 {
        font-size: 74px;
    }
}

@media (min-width:1025px) and (max-width: 1251px) {
    .container {
        max-width: 1000px;
    }


    .main-slider_dots {
        width: 400px;
        padding-left: 50px;
    }

    .home-img-link {
        left: 0;
        bottom: 50px;
    }

    .news-slider__content .new-title {
        font-size: 42px;
    }

    .news-slider__content .new-text {
        font-size: 19px;
    }

    .social-media-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}


@media (min-width: 992px) and (max-width: 1024px) {
    #slider {
        height: auto;
    }

    .container {
        max-width: 850px;
    }

 

    .scroll-down {
        display: none;
    }

    .pro-video>span {
        font-size: 18px;
    }

    .pro-video>span img {
        max-width: 55px;
        margin-right: 15px;
    }

    #section10 .section-content {
        padding-right: 30px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .home-img-link {
        left: 0;
        font-size: 13px;
    }

    .home-img-link>span {
        font-size: 17px;
    }

    #section30 p {
        font-size: 25px;
    }

    .last-news-item {
        height: calc(100% / 3);
    }

    .last-news-item:last-child {
        display: none;
    }

    .last-news-item a {
        padding: 15px 20px 10px;
    }

    .news-slider__content .new-title {
        font-size: 35px;
    }

    .news-slider__content .new-text {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .footer-menu_title {
        font-size: 13px;
    }

    .footer-menu ul li .footer-menu_item {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .follow-us-text p {
        font-size: 12px;
    }

    .menu-list-link>a {
        font-size: 20px;
    }

    .location-list-wrapper {
        width: 45%;
    }

    .contact-form-wrapper {
        width: 45%;
        top: 450px;
    }

    .map-wrapper_inner {
        padding-right: 0;
    }

    .content-header_inner {
        height: 90px;
    }

    .content-header_inner h1 {
        font-size: 45px;
    }

    .principle-item_content {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
}


@media (max-width: 1024px) {
    .main-slider__content {
        margin-top: -25px;
    }

    .mobileHide {
        display: none !important;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: repeat(1, 100%);
    }

    .w-75 {
        width: 100% !important;
    }

    .w-60 {
        width: 100% !important;
    }

    .w-50 {
        width: 100% !important;
    }

    .w-40 {
        width: 100% !important;
    }

    .w-25 {
        width: 100% !important;
    }

    .container {
        max-width: 100%;
        padding: 0 45px;
    }

    .erkanli-btn {
        line-height: 45px;
        padding: 0 30px;
        font-size: 14px;
    }

    .up-to-body {
        width: 35px;
        height: 35px;
        line-height: 32px;
        font-size: 14px;
        right: 10px;
        bottom: 10px;
    }

    header {
        --headerMW: 45px;
    }

    .menu-btn img {
        width: 12px;
    }

    .logo {
        width: 75px;
        margin-left: 25px;
    }

    .home-img-link {
        left: 0;
        bottom: 0;
        font-size: 14px;
    }

    .home-img-link>span {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .home-img-link>span>span {
        font-size: 14px;
    }

    .main-slider__content_title {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .main-slider__content_title br {
        display: none;
    }

    .main-slider_item {
        overflow: hidden;
        height: 100vh;
    }

    .slick-slide img {
        height: 100%;
        width: auto;
        max-width: initial;
    }

    .main-slider_dots {
        width: 70%;
        padding: 20px 20px 20px 45px;
    }

    .pro-video {
        position: absolute;
        left: 45px;
        right: 45px;
        width: auto;
        bottom: 85px;
    }

    .pro-video>span {
        font-size: 14px;
    }

    .pro-video>span img {
        max-width: 50px;
        margin-right: 10px;
    }

    .scroll-down {
        bottom: 12px;
        right: 40px;
        transform: none;
        -webkit-transform: none;
        left: auto;
    }

    .scroll-down span {
        display: none;
    }

    .scroll-down img {
        margin-bottom: 0;
    }

    .section:not(#slider) {
        padding: 40px 0;
    }

    #section10 .section-content {
        grid-column: auto;
        padding-right: 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .section-title span {
        font-size: 14px;
    }

    .section-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    #section10 .section-content p:first-of-type::before {
        margin-bottom: 10px;
    }

    .section-content .erkanli-btn {
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .news-slider-column-left {
        grid-column: auto;
    }

    .follow-us-text {
        width: 100%;
        margin-bottom: 15px;
    }

    .follow-us-mail {
        width: 100%;
    }

    .mini-numberInfo .w-50 {
        width: 50% !important;
    }

    .numberInfo-text span {
        font-size: 19px;
        line-height: 1.3;
    }

    .numberInfo-text {
        font-size: 14px;
        padding: 10px;
    }

    #section30 p {
        margin-top: 0;
        font-size: 20px;
        margin-bottom: 30px;
    }

    #section30 p br {
        display: none;
    }

    #section30 p::before {
        margin-bottom: 10px;
    }

    .sector-box.sector-height {
        height: 0 !important;
        margin: 0 !important;
    }

    .sector-box {
        margin-bottom: 30px;
    }

    .sector-box_link {
        padding: 20px 0 0;
    }

    .sector-box__title {
        margin-bottom: 15px;
    }

    .erkanli-btn-mini {
        font-size: 14px;
    }

    .news-section {
        margin-top: 20px;
    }

    .news-slider__content {
        left: 40px;
        right: 40px;
    }

    .news-slider__content .new-title {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .news-slider__content .new-text {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .news-slider__content .new-text br {
        display: none;
    }

    .news-slider__content .new-category {
        line-height: 20px;
        font-size: 9px;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .news-slider-arrows {
        left: 20px;
        right: auto;
    }

    .follow-us-text p br {
        display: none;
    }

    .follow-us-mail .submit {
        width: 90px;
        line-height: 45px;
        font-size: 9px;
    }

    .follow-us-mail .form-message {
        right: 95px;
    }

    .follow-us-mail input {
        width: calc(100% - 90px);
        height: 45px;
        font-size: 9px;
        padding: 15px 20px;
    }

    .footer-logo {
        margin-bottom: 40px;
        width: 80px;
    }

    .footer-menu {
        display: block;
        margin: 0 0 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 10px;
        width: 100%;
    }

    .footer-menu ul {
        display: none;
        margin-top: 10px;
    }

    .footer-menu_title {
        margin-bottom: 0;
        font-size: 14px;
    }

    .footer-menu_title::after {
        content: "\f078";
        font-family: "Font Awesome 5 Pro";
        font-weight: 500;
        float: right;
        font-size: 12px;
        opacity: 0.6;
        transition: all .3s ease-in-out;
    }

    .footer-menu.active .footer-menu_title::after {
        transform: rotate(180deg);
    }

    .footer-menu ul li .footer-menu_item {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .footer-social-media {
        margin-top: 40px;
    }

    .social-media-title {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .social-media-title span {
        font-size: 14px;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-bottom {
        line-height: auto;
        padding: 10px 0;
    }

    .footer-bottom p {
        width: 50%;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 9px;
        line-height: 15px;
    }

    .footer-bottom a.scope-logo {
        margin-top: 8px;
    }

    .language-select {
        right: 30px;
        padding-right: 0;
        font-size: 11px;
        padding-left: 25px;
    }

    .language-select .current {
        font-size: 12px;
    }

    .language-select.nice-select:after {
        width: 5px;
        height: 5px;
        margin-top: -5px;
        left: 10px;
    }

    .nice-select .option {
        padding: 0 15px;
    }

    .menu-header {
        height: 45px;
    }

    .menu-header .menu-btn {
        width: 45px;
    }

    .menu-footer {
        height: 40px;
    }

    .menu-footer a {
        font-size: 12px;
    }

    .menu-social {
        display: none;
    }

    .menu-wrapper {
        height: calc(100% - 85px);
    }

    .menu-list-item {
        padding: 10px;
    }

    .menu-list-item::before {
        opacity: 0;
    }

    .menu-list-link>a {
        font-size: 20px;
    }

    .menu-list-link>a span {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .sub-menu {
        margin-top: 20px;
        position: relative;
    }

    .sub-menu>li {
        margin: 7.5px;
    }

    .sub-menu>li>a {
        font-size: 14px;
    }

    .sub-menu>li>ul a {
        font-size: 12px;
    }

    .content-header {
        height: 49vh;
        overflow: hidden;
    }

    .content-header img {
        height: 100%;
        object-fit: cover;
    }

    .content-header_inner {
        top: 50%;
        height: auto;
        transform: translateY(-50%);
        margin-top: 20px;
    }

    .content-header_inner h1 {
        font-size: 35px;
    }

    .breadcrumb {
        padding: 20px 0;
        margin-bottom: 30px;
    }

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

    .content-column-left {
        grid-column: auto;
        padding: 0;
    }

    .content-text-top p {
        font-size: 18px;
    }

    .content-text p {
        font-size: 15px;
    }

    .content-column-right {
        margin-top: 0;
    }

    .bottom-link-item {
        padding: 25px 45px;
        font-size: 16px;
    }

    .bottom-link-item img {
        width: 80px;
        position: absolute;
        top: 20px;
        left: 45px;
        margin: 0 !important;
    }

    .bottom-link-item:last-child img {
        left: auto;
        right: 45px;
    }

    .bottom-link-item span {
        margin-top: 15px;
    }

    .bottom-link-item span br {
        display: none;
    }

    .img-with-text {
        font-size: 17px;
        width: 85%;
    }

    .principle-wrapper {
        grid-template-columns: repeat(1, 100%);
        grid-template-rows: repeat(1, auto);
    }

    .principle-item {
        grid-area: auto !important;
    }

    .principle-item_content {
        font-size: 15px;
        padding: 0 10px;
    }

    .principle-item_content span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .location-list {
        margin-top: 0;
        height: 40px;
        margin-bottom: 20px;
    }

    .location-list-wrapper {
        position: relative;
        width: 100%;
        top: 0;
        padding: 15px 25px;
    }

    .location-list a:not(.open-dropdown) {
        font-size: 14px;
        line-height: 40px;
    }

    .location-list .open-dropdown {
        top: 3px;
        width: 50px;
        height: 30px;
        line-height: 30px;
        font-size: 19px;
    }

    .location-detail p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .location-detail__contact {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .location-detail__contact a {
        font-size: 13px;
    }

    .location-detail__contact span {
        font-size: 11px;
        margin-bottom: 0;
    }

    .contact-form-wrapper {
        position: relative;
        top: 0;
        width: 100%;
        padding: 30px 20px;
    }

    .contact-form_title {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .input-row {
        margin-bottom: 20px;
    }

    .input-row .label-title {
        font-size: 14px;
    }

    .input-row input:focus~.label-title,
    .input-row input:not([value=""])~.label-title {
        top: -1px;
        font-size: 12px;
    }

    .input-row input {
        font-size: 14px;
    }

    .contact-form_submit {
        width: 100%;
        padding: 0;
        line-height: 41px;
        font-size: 14px;
        text-align: center;
    }

    #map {
        margin: -20px -45px;
        height: 320px;
    }

    .map-wrapper_inner {
        padding: 0;
        margin-top: 30px;
        font-size: 17px;
    }

    .map-wrapper {
        padding-bottom: 0;
    }

    .news-header a {
        width: 50%;
        margin: 0 -1px;
        padding: 0 10px;
        font-size: 15px;
        line-height: 50px;
    }

    .new-item_image {
        width: 100%;
        margin: 0 0 10px;
        height: auto;
    }

    .new-item_inner {
        width: 100%;
        padding: 0;
    }

    .bottom-links {
        grid-template-columns: repeat(2, 50%);
    }

    .timeline {
        padding-top: 30px;
    }

    .timeline-item:first-child {
        margin-top: 0;
    }

    .timeline-item_genContent {
        margin: 0 0 30px;
    }

    .timeline-item_genContent h2 {
        font-size: 18px;
    }

    .timeline-item_genContent p {
        font-size: 15px;
    }

    .timeline-item_content {
        order: 1;
        padding: 120px 0 25px;
    }

    .timeline-item__year {
        font-size: 30px;
        padding: 0;
        margin-bottom: 10px;
    }

    .timeline-item_image {
        order: 2;
        overflow: visible;
    }

    .timeline-item .timeline-item_image img {
        position: relative;
    }

    .timeline-item:nth-child(2n-1) .timeline-item_image img {
        left: -45px;
    }

    .timeline-item:nth-child(2n+2) .timeline-item_image img {
        right: -45px;
    }

    .timeline-item_content::after {
        height: 90px;
        top: 0;
    }

    .timeline-item_content::before {
        top: 89px;
    }

    .timeline-item_content.text-right::after {
        right: 0;
        left: auto;
    }

    .timeline-item_content.text-right::before {
        right: 0;
        left: auto;
    }

    .timeline-item_content.text-left::after {
        left: 0;
    }

    .timeline-item_content.text-left::before {
        left: 1px;
    }

    .sidebar-title {
        font-size: 15px;
    }

    .sidebar-text {
        font-size: 15px;
        padding-left: 15px;
    }

    .media-row {
        margin-bottom: 75px;
    }

    .media_title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .media-item_desc {
        left: 20px;
        right: 20px;
        font-size: 18px;
    }

    .media-item_desc a {
        font-size: 15px;
        margin-top: 8px;
    }

    .career-form-wrapper {
        margin-top: 30px;
    }

    .career-form-title {
        font-size: 20px;
    }

    .input-file::after {
        width: 100px;
        background-size: contain;
    }

    .input-file>span {
        left: 125px;
    }

    .menu-header .home-btn {
        width: 25px;
        right: 15px;
    }

    .sub-menu>li>ul {
        margin-top: 10px;
        padding-left: 15px;
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {

    /* br {
        display: none;
    } */
    .main-slider_dots .status {
        display: none;
    }
}


@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }

    .logo {
        margin-left: 45px;
    }

    .follow-us-text p {
        font-size: 13px;
    }

    .bottom-link-item {
        padding: 20px 12px;
    }

    .bottom-link-item img {
        left: 12px;
    }

    .bottom-link-item:last-child img {
        right: 12px;
    }

    .timeline-item:nth-child(2n+2) .timeline-item_image img {
        right: -12px;
    }

    .timeline-item:nth-child(2n-1) .timeline-item_image img {
        left: -12px;
    }
}


@media screen and (max-width: 768px) and (min-width: 415px) and (orientation: landscape) {
    html {
        position: relative;
        height: 100%;
        overflow: hidden;
    }

    body * {
        display: none !important
    }

    body {
        background: url(../images/landscape.png) center center no-repeat;
        background-color: var(--color1);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-size: contain;
    }
}

.content-text p a {
    color: #000;
}

h3.center_title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
}

#lang-menu {
    float: right;
    margin-top: 25px;
}

#lang-menu li {
    float: left;
    margin-left: 20px;
    color: #fff;
    font-size: 18px;
    font-family: var(--font1);
    font-weight: 700;
    letter-spacing: 3px;
}

#lang-menu li a {
    color: #fff;
}

header.sticky #lang-menu li a {
    color: black;
}
.header-link{
    padding:10px 20px;
    border:1px solid white;
    font-size:20px;
    color:#fff;
    float:right;
    margin-top: 12px;
}
header.sticky .header-link{
    color:#000;
    border-color:#000;
}

.mytable {
    width: 100%; /* Tablo genişliğini tam genişlikte yapar */
    border-collapse: collapse; /* Çift sınırları kaldırır */
    margin: 20px 0; /* Yukarı ve aşağı boşluk */
    font-size: 16px; /* Yazı boyutu */
    text-align: left; /* Metni sola hizalar */
}

.mytable th, .mytable td {
    border: 1px solid #ddd; /* Hücrelerin kenarlıkları */
    padding: 12px; /* Hücre içi boşluk */
}

.mytable th {
    background-color: #f4f4f4; /* Başlık satırı için arka plan rengi */
    color: #333; /* Başlık metni rengi */
    text-transform: uppercase; /* Büyük harf yapar */
    font-weight: bold; /* Kalın metin */
}

.mytable tr:nth-child(odd) {
    background-color: #f9f9f9; /* Alternatif satır rengi */
}

.mytable tr:nth-child(even) {
    background-color: #ffffff; /* Alternatif satır rengi */
}

.mytable tr:hover {
    background-color: #f1f1f1; /* Hover durumunda arka plan değişikliği */
}

@media (max-width: 768px) {
    .mytable {
        font-size: 14px; /* Daha küçük ekranlar için yazı boyutunu azaltır */
    }

    .mytable th, .mytable td {
        padding: 8px; /* Mobil cihazlar için daha az hücre içi boşluk */
    }
}

#projectcontent{
    gap:100px}
#projectcontent div img{
    width:100%;
    margin-bottom: 20px;
}
#projectcontent h2{
    font-size:32px;
    font-weight: 700;
    margin-bottom: 20px;
    color:#25408f
}

#section30 img{height:250px;object-fit:cover;}
.content-header::after{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}
