@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* -------------------- NORMALİZE --------------------  */

:root {
    --container-width: 1400px;
    --theme-color: #16554b;
    --theme-body-color: #353535;
    --NT-metin-color: #000000;
    --theme-font: 'Overpass', sans-serif;
    /* site geneli için kullnılır */
    --text-font: 'Overpass', sans-serif;
    /* NT-metin için kullnılır */
    --mobile-icon-color: #fff;
    --custom-grey: #edeef2;
    --placeholder-color: #a3a3a3;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--theme-font);
    font-weight: 400;
    color: var(--theme-body-color);
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: inline;
    vertical-align: bottom
}

ul,
li {
    margin: 0;
    padding: 0;
    text-decoration: none;
    display: block;
    list-style: none
}

input,
textarea {
    outline: 0;
    display: block
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: none;
    font-weight: 700;
}

h1 {
    font-size: 21px
}

h2 {
    font-size: 19px
}

h3 {
    font-size: 17px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 15px
}

h6 {
    font-size: 13px
}

.temizle,
.clear {
    clear: both
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

a:focus,
a:hover,
a:active {
    outline: 0;
    text-decoration: none;
    color: #333
}

a {
    text-decoration: none;
    color: inherit;
}

.NT-metin {
    text-align: justify;
    line-height: 1.6;
    color: var(--NT-metin-color);
    font-family: var(--text-font);
    font-size: 20px;
    font-weight: 300;
}

.NT-metin li {
    display: list-item;
    list-style: circle;
    margin-left: 1em;
}

.form-group {
    margin-bottom: 1rem;
}

.fancybox-active #header,
.modal-open #header {
    width: calc(100% - 17px);
}

.gotoup {
    width: 60px;
    height: 60px;
    text-align: center;
    z-index: 2050;
    display: none;
    border-radius: 0;
    background: #fff !important;
    color: #003433;
    display: block !important;
    opacity: 1 !important;
    font-size: 35px;
    line-height: 63px;
    transform: translateY(-60px);
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.resimli-overlay {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.resimli-overlay-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.2); 
  z-index: 1;
  pointer-events: none;
  border-radius: 15px;
}



#content:before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 17;
    background: rgb(255 255 255 / 0);
    left: 0;
    top: 0;
    transition: .3s;
    user-select: none;
    pointer-events: none;
}

#content.darkback:before {
    background: rgba(0, 0, 0, 0.71);
}

/* -------------------- NORMALİZE END --------------------  */


/* -------------------- Mobile Menu Start --------------------  */

#mobilMenu {
    padding: 0;
}

.mobileMenuIcon {
    width: 44px;
    height: 44px;
    background: var(--theme-color);
    border-radius: 5px;
    padding: 11px;
    position: relative;
    z-index: 99;
    display: inline-block;
    vertical-align: middle;
}

.mobileMenuIcon i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background: var(--mobile-icon-color);
    transition: all 0.7s;
    margin: 4px 0 0 0;
}

.mobileMenuIcon.active i:nth-child(2) {
    opacity: 0;
    transform: translateX(50px);
}

.mobileMenuIcon.active i {
    opacity: 0;
    transform: translateX(-50px);
}

.mobileMenuIcon i:nth-child(1) {
    transition-delay: 50ms;
    width: 50%;
}

.mobileMenuIcon i:nth-child(2) {
    transition-delay: 100ms;
    width: 75%;
}

.mobileMenuIcon i:nth-child(3) {
    transition-delay: 150ms;
    width: 50%;
    margin-left: auto;
    margin-right: 0;
}

.mobileMenuIcon i:nth-child(4) {
    transition-delay: 250ms;
    background: transparent;
    opacity: 0;
    transform: translateY(-12px);
}

.mobileMenuIcon i:nth-child(4):before {
    content: '';
    height: 2px;
    background: var(--mobile-icon-color);
    display: block;
    position: absolute;
    width: 100%;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1), background .3s .3s cubic-bezier(.4, 0, .2, 1);
    transform: rotate(45deg) scaleX(.8) translateX(-75%);
}

.mobileMenuIcon i:nth-child(4):after {
    content: '';
    height: 2px;
    background: var(--mobile-icon-color);
    display: block;
    position: absolute;
    width: 100%;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1), background .3s .3s cubic-bezier(.4, 0, .2, 1);
    transform: rotate(-45deg) scaleX(.8) translateX(75%);
}

.mobileMenuIcon.active i:nth-child(4):before {
    transform: rotate(45deg) scaleX(.7) translateX(0);
}

.mobileMenuIcon.active i:nth-child(4):after {
    transform: rotate(-45deg) scaleX(.7) translateX(0);
}

.mobileMenuIcon.active i:nth-child(4) {
    opacity: 1;
    transform: translateY(-12px);
}

.nt_main_menu_content {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    transition-delay: 0.1s;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(100vh);
}

.nt_main_menu_content.active {
    opacity: 1
}

.nt_main_menu_content.active {
    pointer-events: auto;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    transform: translateY(0);
}

.mobileMenuContent {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding-bottom: 100px;
    width: 100vw;
    height: 100vh;
    padding-top: 100px;
    transform: translateY(100vh);
    background: rgba(255, 255, 255, 1);
}

.nt_main_menu_content_menu_copy {
    margin-top: 30px
}

.mobileMenuContent.active {
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
    transition: 0.2s;
    transform: translateY(0);
}

.mobileMenuContent ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.mobileMenuContent ul ul {
    display: none
}

.mobileMenuContent ul ul a {
    font-size: 14px;
    transition: all 0.3s;
    margin-right: 13px;
    margin-bottom: 5px;
    color: #6f6f6f
}

.mobileMenuContent ul ul li {
    width: auto
}

.mobileMenuContent.text-end ul ul a:hover {
    margin-right: 20px
}

.mobileMenuContent a {
    font-size: 21px;
    display: block;
    text-decoration: none;
    transition: color 0.5s ease;
    outline: 0;
    text-transform: uppercase;
}

.mobileMenuContent a:hover {
    color: var(--theme-color) !important;
}

.mobileMenuContent.active a {}

.mobileMenuContent div>ul>li:not(.has-children) {}

.mobileMenuContent div>ul>li {
    margin-bottom: 15px
}

.mobileMenuContent .has-children>a:after,
.mobileMenuContent .has-children>a.active:after {
    content: "\f107";
    display: inline-block;
    font-size: 16px;
    font-family: "Font Awesome 5 Pro", sans-serif;
    font-weight: 600;
    transform: none !important;
    position: initial !important;
    top: auto !important;
    right: auto !important;
    margin: auto auto auto 12px !important;
    background: initial !important;
    width: auto !important;
    height: auto !important;
}

.has-children:last-child ul {
    right: 0
}

.has-children>a.active:after {
    content: "\f106"
}


#mobilMenu.MenuType2 {
    position: absolute;
    right: 0;
}

#mobilMenu.MenuType2 .mobileMenuIcon {
    width: 85px;
    height: 70px;
    padding: 22px 0;
    background: transparent;
}

#mobilMenu.MenuType2 .mobileMenuIcon i {
    width: 26px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

#mobilMenu.MenuType2 .mobileMenuIcon:Before {
    content: 'Menu';
    position: absolute;
    right: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--theme-color);
    font-size: 1rem;
}

#mobilMenu.MenuType2 .nt_main_menu_content {
    transition: 0s 0s !important;
    background: black;
    opacity: 0.5 !important;
    position: absolute;
    width: 100vw;
    right: 0 !important;
    left: auto !important;
    top: 100%;
}

#mobilMenu.MenuType2 .mobileMenuContent.active {
    transform: translateX(0);
}

#mobilMenu.MenuType2 .mobileMenuContent {
    width: 370px;
    max-width: 100vw;
    margin-left: auto;
    position: absolute;
    top: 100%;
    background-color: white;
    transform: translateX(100vh);
}


/* -------------------- Mobile Menu End --------------------  */


/* -------------------- webmaster tool --------------------*/

.webmaster_tool {
    height: auto;
    position: fixed;
    z-index: 111111;
    background: #FFF;
    font-family: sans-serif;
    font-size: 12px;
    color: #000;
    line-height: 13px;
    display: block;
    left: 0;
    padding: 5px 0 5px 15px;
    width: 210px;
    bottom: 0;
    top: auto;
    box-shadow: 1px 1px 3px #ccc
}

.webmaster_tool>li {
    width: 100%;
    float: left;
    padding-bottom: 5px
}

.webmaster_tool>li>b {
    width: 90px;
    float: left
}

.webmaster_tool>h1 {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 0
}

.webmaster_tool a {
    font-weight: 700;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    padding: 3px 5px;
    margin: 4px 3% 0 -1%;
    width: 48%;
    float: left;
    text-align: center;
    font-size: 10px;
    line-height: 16px;
    border-radius: 3px
}

/* -------------------- NT Loader --------------------*/

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99994;
    overflow: hidden;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all .3s 1s ease-out;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 47px;
    z-index: 999;
    text-align: center;
    transform: translateX(-50%) translateY(-50%);
}

.loaded #loader {
    opacity: 0;
    transition: all .3s ease-out;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    z-index: 99;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
    /* -webkit-transform: translateX(-100%); */
    /* transform: translateX(-100%); */
    opacity: 0;
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

.loaded #loader-wrapper .loader-section.section-right {
    /* -webkit-transform: translateX(100%); */
    /* transform: translateX(100%); */
    opacity: 0;
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1);
}


/* NOT Loader */

body:not(.header_delay) #header {
    /* transform: translateY(-100%); */
}

body.header_delay #header,
body.loadedFull #header {
    transform: translateY(0);
}

body.header_delay #header {
    transition: all 1s ease;
    transition-delay: 0.3s;
}

#slider,
.banner,
.content_container {
    transition: all .5s ease;
}

/* NOT Loader END */

/* ------------------ popup ------------------ */
#popup {
    position: static;
}

#popup .fancybox-close-small {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

#popup .fancybox-close-small:before,
#popup .fancybox-close-small:after {
    content: "";
    position: absolute;
    background: var(--theme-color);
    height: 2px;
    width: 24px;
    right: auto;
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

#popup .fancybox-close-small:after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/* ------------------ fonts ------------------ */

.font-family-light {
    font-family: var(--theme-font) !important;
    font-weight: 200;
}

.font-family-normal {
    font-family: var(--theme-font) !important;
    font-weight: 400;
}

.font-family-bold {
    font-family: var(--theme-font) !important;
    font-weight: 700;
}

.font-family-numbers {
    font-family: arial, sans-serif !important
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-19 {
    font-size: 19px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-28 {
    font-size: 28px;
}

.fs-32 {
    font-size: 32px;
}


@media (min-width: 576px) {

    .fs-sm-8 {
        font-size: 8px;
    }

    .fs-sm-9 {
        font-size: 9px;
    }

    .fs-sm-10 {
        font-size: 10px;
    }

    .fs-sm-11 {
        font-size: 11px;
    }

    .fs-sm-12 {
        font-size: 12px;
    }

    .fs-sm-13 {
        font-size: 13px;
    }

    .fs-sm-14 {
        font-size: 14px;
    }

    .fs-sm-15 {
        font-size: 15px;
    }

    .fs-sm-16 {
        font-size: 16px;
    }

    .fs-sm-18 {
        font-size: 18px;
    }

    .fs-sm-19 {
        font-size: 19px;
    }

    .fs-sm-20 {
        font-size: 20px;
    }

    .fs-sm-22 {
        font-size: 22px;
    }

    .fs-sm-24 {
        font-size: 24px;
    }

    .fs-sm-28 {
        font-size: 28px;
    }

    .fs-sm-32 {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .col-md-55 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .fs-md-8 {
        font-size: 8px;
    }

    .fs-md-9 {
        font-size: 9px;
    }

    .fs-md-10 {
        font-size: 10px;
    }

    .fs-md-11 {
        font-size: 11px;
    }

    .fs-md-12 {
        font-size: 12px;
    }

    .fs-md-13 {
        font-size: 13px;
    }

    .fs-md-14 {
        font-size: 14px;
    }

    .fs-md-15 {
        font-size: 15px;
    }

    .fs-md-16 {
        font-size: 16px;
    }

    .fs-md-18 {
        font-size: 18px;
    }

    .fs-md-19 {
        font-size: 19px;
    }

    .fs-md-20 {
        font-size: 20px;
    }

    .fs-md-22 {
        font-size: 22px;
    }

    .fs-md-24 {
        font-size: 24px;
    }

    .fs-md-28 {
        font-size: 28px;
    }

    .fs-md-32 {
        font-size: 32px;
    }
}


@media (min-width: 1200px) {
    .col-xl-55 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .fs-xl-8 {
        font-size: 8px;
    }

    .fs-xl-9 {
        font-size: 9px;
    }

    .fs-xl-10 {
        font-size: 10px;
    }

    .fs-xl-11 {
        font-size: 11px;
    }

    .fs-xl-12 {
        font-size: 12px;
    }

    .fs-xl-13 {
        font-size: 13px;
    }

    .fs-xl-14 {
        font-size: 14px;
    }

    .fs-xl-15 {
        font-size: 15px;
    }

    .fs-xl-16 {
        font-size: 16px;
    }

    .fs-xl-18 {
        font-size: 18px;
    }

    .fs-xl-19 {
        font-size: 19px;
    }

    .fs-xl-20 {
        font-size: 20px;
    }

    .fs-xl-22 {
        font-size: 22px;
    }

    .fs-xl-24 {
        font-size: 24px;
    }

    .fs-xl-28 {
        font-size: 28px;
    }

    .fs-xl-32 {
        font-size: 32px;
    }
}

/* -------------------- form -------------------- */
.form-control {
    padding: 10px 15px;
    line-height: 1.42857;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-size: 14px;
    font-weight: 400;
    height: 50px !important;
    box-shadow: none !important;
    background-color: white !important;
    border-width: 2px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    color: #a4a4a4;
    border-radius: 5px;
    border: solid 2px #ebebeb;
}

textarea.form-control {
    height: auto;
    min-height: 120px;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJrYXRtYW5fMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MCA1MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNTA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48Zz48cGF0aCBzdHlsZT0iZmlsbDojYTNhM2EzOyIgZD0iTTI2LjksNDNMNDYuOCw4LjZjMC44LTEuNS0wLjItMy4zLTEuOS0zLjNINS4yYy0xLjcsMC0yLjcsMS44LTEuOSwzLjNMMjMuMSw0M0MyMy45LDQ0LjUsMjYuMSw0NC41LDI2LjksNDN6IiAvPjwvZz48L3N2Zz4=") no-repeat white;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 30px;
}

::-webkit-input-placeholder {
    color: var(--placeholder-color) !important;
}

::-moz-placeholder {
    color: var(--placeholder-color) !important;
}

:-ms-input-placeholder {
    color: var(--placeholder-color) !important;
}

:-moz-placeholder {
    color: var(--placeholder-color) !important;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 0 auto 0 auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 22px;
    z-index: 1;
    top: 14px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f040";
    font-family: 'font awesome 5 pro', sans-serif;
    color: #757575;
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTMgNTMiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUzIDUzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cGF0aCBzdHlsZT0iZmlsbDojRTdFQ0VEOyIgZD0iTTE4LjYxMyw0MS41NTJsLTcuOTA3LDQuMzEzYy0wLjQ2NCwwLjI1My0wLjg4MSwwLjU2NC0xLjI2OSwwLjkwM0MxNC4wNDcsNTAuNjU1LDE5Ljk5OCw1MywyNi41LDUzDQoJYzYuNDU0LDAsMTIuMzY3LTIuMzEsMTYuOTY0LTYuMTQ0Yy0wLjQyNC0wLjM1OC0wLjg4NC0wLjY4LTEuMzk0LTAuOTM0bC04LjQ2Ny00LjIzM2MtMS4wOTQtMC41NDctMS43ODUtMS42NjUtMS43ODUtMi44ODh2LTMuMzIyDQoJYzAuMjM4LTAuMjcxLDAuNTEtMC42MTksMC44MDEtMS4wM2MxLjE1NC0xLjYzLDIuMDI3LTMuNDIzLDIuNjMyLTUuMzA0YzEuMDg2LTAuMzM1LDEuODg2LTEuMzM4LDEuODg2LTIuNTN2LTMuNTQ2DQoJYzAtMC43OC0wLjM0Ny0xLjQ3Ny0wLjg4Ni0xLjk2NXYtNS4xMjZjMCwwLDEuMDUzLTcuOTc3LTkuNzUtNy45NzdzLTkuNzUsNy45NzctOS43NSw3Ljk3N3Y1LjEyNg0KCWMtMC41NCwwLjQ4OC0wLjg4NiwxLjE4NS0wLjg4NiwxLjk2NXYzLjU0NmMwLDAuOTM0LDAuNDkxLDEuNzU2LDEuMjI2LDIuMjMxYzAuODg2LDMuODU3LDMuMjA2LDYuNjMzLDMuMjA2LDYuNjMzdjMuMjQNCglDMjAuMjk2LDM5Ljg5OSwxOS42NSw0MC45ODYsMTguNjEzLDQxLjU1MnoiLz4NCjxnPg0KCTxwYXRoIHN0eWxlPSJmaWxsOiM1NTYwODA7IiBkPSJNMjYuOTUzLDAuMDA0QzEyLjMyLTAuMjQ2LDAuMjU0LDExLjQxNCwwLjAwNCwyNi4wNDdDLTAuMTM4LDM0LjM0NCwzLjU2LDQxLjgwMSw5LjQ0OCw0Ni43Ng0KCQljMC4zODUtMC4zMzYsMC43OTgtMC42NDQsMS4yNTctMC44OTRsNy45MDctNC4zMTNjMS4wMzctMC41NjYsMS42ODMtMS42NTMsMS42ODMtMi44MzV2LTMuMjRjMCwwLTIuMzIxLTIuNzc2LTMuMjA2LTYuNjMzDQoJCWMtMC43MzQtMC40NzUtMS4yMjYtMS4yOTYtMS4yMjYtMi4yMzF2LTMuNTQ2YzAtMC43OCwwLjM0Ny0xLjQ3NywwLjg4Ni0xLjk2NXYtNS4xMjZjMCwwLTEuMDUzLTcuOTc3LDkuNzUtNy45NzcNCgkJczkuNzUsNy45NzcsOS43NSw3Ljk3N3Y1LjEyNmMwLjU0LDAuNDg4LDAuODg2LDEuMTg1LDAuODg2LDEuOTY1djMuNTQ2YzAsMS4xOTItMC44LDIuMTk1LTEuODg2LDIuNTMNCgkJYy0wLjYwNSwxLjg4MS0xLjQ3OCwzLjY3NC0yLjYzMiw1LjMwNGMtMC4yOTEsMC40MTEtMC41NjMsMC43NTktMC44MDEsMS4wM1YzOC44YzAsMS4yMjMsMC42OTEsMi4zNDIsMS43ODUsMi44ODhsOC40NjcsNC4yMzMNCgkJYzAuNTA4LDAuMjU0LDAuOTY3LDAuNTc1LDEuMzksMC45MzJjNS43MS00Ljc2Miw5LjM5OS0xMS44ODIsOS41MzYtMTkuOUM1My4yNDYsMTIuMzIsNDEuNTg3LDAuMjU0LDI2Ljk1MywwLjAwNHoiLz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K')
}

.dropdown-menu.phoneCodeList {
    max-height: 300px;
    overflow: auto;
}

.dropdown-menu.phoneCodeList .dropdown-item {
    font-size: 12px;
    padding: 4px 11px;
    cursor: pointer;
}

.dropdown-menu.phoneCodeList .dropdown-item+.dropdown-item {
    border-top: 1px dashed #dedede;
}

.dropdown-menu.phoneCodeList .dropdown-item:hover,
.dropdown-menu.phoneCodeList .dropdown-item:focus,
.dropdown-menu.phoneCodeList .dropdown-item:active {
    background: #dedede;
    color: #000;
}

.btn-form-control {
    border-right: 1px solid #fff;
    background: whitesmoke;
    font-size: 13px;
    color: var(--placeholder-color);
}


/* hazir form butonu */
.btn-submit {
    outline: none;
    height: 50px;
    text-align: center;
    width: 190px;
    border-radius: 50px;
    background: #fff;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    cursor: pointer;
    transition: all 0.25s ease;
    margin-left: auto;
    line-height: 37px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-submit:hover {
    color: white;
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-submit:active {
    letter-spacing: 2px;
}

.btn-submit:after {
    content: attr(text);
}

.btn-submit.onclic {
    width: 40px !important;
    height: 40px !important;
    border-color: #bbbbbb !important;
    border-width: 3px !important;
    font-size: 0;
    border-left-color: #1ECD97 !important;
    animation: rotating 2s 0.25s linear infinite;
    border-radius: 50% !important;
    background: transparent !important;
}

.btn-submit.onclic:after {
    content: "";
}

.btn-submit.onclic:hover {
    color: #1ECD97;
    background: white;
}

.btn-submit.validate {
    font-size: 13px !important;
    color: white !important;
    background: #1ECD97 !important;
    border-color: #1ECD97 !important;
}

.btn-submit.validate:after {
    font-family: 'font awesome 5 pro', sans-serif;
    content: "\f00c";
}

.btn-submit.novalidate {
    font-size: 13px !important;
    color: white !important;
    background: #cd3330 !important;
    border-color: #cd3330 !important;
}

.btn-submit.novalidate:after {
    font-family: 'font awesome 5 pro', sans-serif;
    content: "\f00d";
}

@-webkit-keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.custom-file-label::after {
    content: attr(before-text);
}

form .form-group .form-control~i {
    position: absolute;
    left: 7px;
    top: 1px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 15px;
    line-height: 50px;
    color: #a3a3a3
}

form .form-group .form-control.hasIcon {
    padding-left: 45px;
}

.form-control,
.btn {
    box-shadow: none !important;
}

div#NTModalOverlay {
    position: fixed;
    left: 0;
    bottom: -100vh;
    background: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
    transition: all 0.5s cubic-bezier(1, -0.33, 0, 1.34);
    z-index: 99998;
}

div#NTModalOverlay.show {
    bottom: 0;
}

div#NTModal {
    position: fixed;
    width: 350px;
    max-width: 100%;
    text-align: center;
    padding: 15px 0;
    left: 50%;
    top: -100%;
    transform: translateX(-50%) translateY(-50%);
    color: #1e1e1e;
    border-radius: 7px;
    background: white;
    z-index: 99999;
    transition: all 0.5s cubic-bezier(1, -0.33, 0, 1.34);
}

div#NTModal.show {
    top: 10%;
}


.NT-dropdown {
    width: 100%;
}

.NT-dropdown .dropdown-menu {
    border: 1px solid #777;
    border-radius: 0;
    width: 100%;
}

.NT-dropdown .dropdown-toggle {
    width: 100%;
    border-radius: 0;
    background: var(--theme-color);
    border: none;
    text-align: left;
    position: relative;
}

.NT-dropdown .dropdown-toggle:after {
    content: '\f0ab';
    border: none;
    font-family: 'font awesome 5 pro', sans-serif;
    font-weight: 700;
    position: absolute;
    right: 20px;
    font-size: 16px;
    top: calc(50% - 8px);
    margin: 0;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.NT-dropdown.show .dropdown-toggle,
.NT-dropdown .dropdown-toggle:hover,
.NT-dropdown .dropdown-toggle:focus,
.NT-dropdown .dropdown-toggle:active {
    background: var(--theme-color) !important;
}

.NT-dropdown .dropdown-item.active,
.NT-dropdown .dropdown-item:active {
    background: var(--theme-color);
}

.NT-dropdown .dropdown-item+.dropdown-item {
    border-top: 1px solid var(--theme-color);
}

/* -------------------- for bootstrap -------------------- */
nav[aria-label="breadcrumb"] {}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro', sans-serif;
    padding: 0 5px;
    font-weight: 600;
    color: inherit;
    line-height: 1.8;
    color: #2d404a;
}

.breadcrumb-item {
    color: white;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus,
.breadcrumb-item a:active {
    color: white;
}

.breadcrumb-item a {
    color: #2d404a !important;
    font-size: 16px;
}


.fill {
    height: 100%;
}

.bg-lightgray {
    background-color: #eee !important;
}

.bg-solightgray {
    background-color: #f5f5f5 !important;
}

.btn-outline.btn-primary {
    color: #4dbb6d;
    background-color: transparent;
    background-image: none;
    border-color: #4dbb6d;
}

.btn-outline.btn-primary:hover,
.btn-outline.btn-primary.hover {
    color: #ffffff;
    background-color: #4dbb6d;
    border-color: #4dbb6d;
}

.btn-outline.btn-primary:focus,
.btn-outline.btn-primary.focus {
    box-shadow: 0 0 0 3px rgba(77, 187, 109, 0.5);
}

.btn-outline.btn-primary.disabled,
.btn-outline.btn-primary:disabled {
    color: #4dbb6d;
    background-color: transparent;
}

.btn-outline.btn-primary:active,
.btn-outline.btn-primary.active {
    color: #ffffff !important;
    background-color: #4dbb6d !important;
    border-color: #4dbb6d !important;
    box-shadow: 0 0 0 0.2rem rgba(77, 187, 109, 0.5) !important;
}

.btn-outline.custom-border-width {
    border-width: 2px;
}


body:not(#sf_13) table {font-family: var(--theme-font);border: 1px solid #e2e2e2;}
body:not(#sf_13) td {border: 1px solid #e2e2e2 !important;font-size: 17px;padding: 9px 5px;}
body:not(#sf_13) th {border: 1px solid #e2e2e2 !important;font-size: 17px;padding: 9px 9px;}
body:not(#sf_13) tr:nth-child(even) {background: #f3f3f3;}

.custom-border-radius {
    border-radius: 35px !important;
    padding: 11px 30px !important;
}


.container {
    max-width: 100%;
    width: var(--container-width)
}

.relative {
    position: relative;
}

.rounded-25 {
    border-radius: 25px;
}

.table td,
.table th {
    padding: 2px;
    border: 0;
}

/* ------------------ social ------------------ */
.sosyal_fb:hover,
footer .sosyal_fb:hover {
    color: #003634 !important;
    background: #fff !important;
    border-color: #fff !important;
}

.sosyal_tw:hover,
footer .sosyal_tw:hover {
        color: #003634 !important;
    background: #fff !important;
    border-color: #fff !important;
}

.sosyal_ins:hover,
footer .sosyal_ins:hover {
      color: #003634 !important;
    background: #fff !important;
    border-color: #fff !important;
}

.sosyal_fs:hover,
footer .sosyal_fs:hover {
    color: #003634 !important;
    background: #fff !important;
    border-color: #fff !important;
}

.sosyal_gp:hover,
footer .sosyal_gp:hover {
    color: #003634 !important;
    background: #fff !important;
    border-color: #fff !important;
}

.sosyal_pt:hover,
footer .sosyal_pt:hover {
    color: #003634 !important;
    background: #fff !important;
    border-color: #fff !important;
}

.sosyal_lk:hover,
footer .sosyal_lk:hover {
    color: #003634 !important;
    background: #fff !important;
    border-color: #fff !important;
}

/* -------------------- Header --------------------*/

#header {
    z-index: 18;
    position: fixed;
    width: 100%;
    transition: transform 0.5s ease;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(255 255 255 / 50%);
}

body:not(#sf_49) header {
    background: white;
}

#header>*:last-child .container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12)
}

#headerTop {
    padding-top: 5px;
    padding-bottom: 5px;
}

div#top-contact {}

div#top-contact a {
    transition: all 0.5s;
}

div#top-contact a:hover {
    color: #ddd;
}

div#top-contact a i {
    margin: 0 5px 0 15px;
}

div#top-contact a span {}

#logo {
    padding: 15px;
}

#logo img {
    height: 60px;
}

#menu {}

#menu>li {
    display: inline-block;
    position: relative;
}

#menu>li>a {
    padding: 0 15px;
    line-height: 106px;
    transition: all 0.3s ease;
    font-size: 17px;
    display: block;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    color: black;
}

#menu>li>a:before {
    content: '';
    position: absolute;
    width: 0;
    left: 50%;
    top: calc(50% + 20px);
    height: 2px;
    background-color: var(--theme-color);
    transition: all 0.5s ease;
}

#menu>li>ul {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 3;
    min-width: 190px;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    transform: translateY(15px);
}

#menu>li>ul:before {
    content: "";
    position: absolute;
    left: 30px;
    top: -20px;
    transform: translateX(-50%);
    width: 0;
    border-color: transparent transparent #fff transparent;
    border-image: none;
    border-style: solid;
    border-width: 10px;
}

#menu>li>ul>li>a {
    font-size: 14px;
    color: #545557;
    display: block;
    padding: 16px 15px;
    line-height: 1em;
    position: relative;
    transition: all 0.3s ease;
    font-weight: bold;
}

#menu>li:hover>ul {
    opacity: 1;
    visibility: visible;
}

#menu.hoverType1>li:hover>a:before {
    width: calc(100% - 30px);
    left: 15px;
}

#menu.hoverType2>li:hover>a,
#menu>li>ul>li>a:hover {
    color: white;
    background-color: var(--theme-color);
    padding-left: 20px;
}

#menu.hoverType3>li:hover>a {
    color: var(--theme-color);
}

#menu.acilirType2>li>ul>li {
    position: relative;
    z-index: 2;
}

#menu.acilirType2>li>ul:before {
    content: '';
    position: absolute;
    width: 4000px;
    left: -2000px;
    height: 0;
    top: 0;
    background: white;
    z-index: 1;
    transition: 0.4s;
}

#menu.acilirType2>li:hover>ul:before {
    height: 100%;
}

#menu.acilirType2>li>ul {
    transform-origin: top center;
    padding: 15px 0 35px;
}

#menu.acilirType1>li>ul {
    background: white;
}

#menu.acilirType1>li:hover>ul {
    transform: translateY(0);
}

#menu>li>ul>li+li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


.social-container {
    display: block;
}

.social-container li {
    display: inline-block;
}

.social-container a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 0;
    color: black;
    font-size: 14px;
    text-align: center;
    display: block;
    border: 2px solid black;
    border-radius: 50%;
}

.social-container a:hover {
    color: white;
    background: var(--theme-color);
    border-color: var(--theme-color);
}

#header.active {
    border-bottom: 1px solid lightgray;
    color: black !important;
    background: white !important;
    position: fixed !important;
}

#header.active #headerTop {
    display: none
}

header#header.scrollDowning {
    /* transform: translateY(-100%); */
}

header#header.scrollUping {
    transform: translateY(0%);
}

.searchFormContent {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.searchFormContent.active {
    opacity: 1;
    visibility: visible;
}

.searchFormContent:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
}

.searchFormContent form {
    position: relative;
    z-index: 5;
    background: white;
    border-radius: 10px;
    width: calc(100% - 30px);
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.searchFormContent form .form-control {
    height: 100% !important;
    font-size: 25px !important;
    padding: 0 20px;
}

.searchFormContent form .btn {
    background: var(--theme-color);
    height: 100%;
    color: white;
    width: 70px;
    border-radius: 10px;
    font-size: 25px;
}

.searchFormContent form .btn:hover {
    color: white;
    background: var(--theme-color);
}

.searchFormContent .js-close {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
}

#header.active #menu>li>a {
    color: #000;
}

#header.active .social-container a {
    border-color: #000;
    color: #000;
}


/* -------------------- icerik --------------------*/

#content {
    padding-top: 0;
    position: relative;
}

body#sf_anasayfa.slider-fullscreen #content {
    padding-top: 0;
}


/* -------------------- Anasayfa --------------------*/

.aciklama {
  font-size: 15px;
}

.fbas {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.sliderFastMenus {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.sliderFastMenus ul li a {
    background: rgb(255 255 255 / 15%);
    display: block;
    color: #fff;
    position: relative;
    transition: .3s;
    padding: 24px 25px;
    background-size: cover;
    background-position: center center;
    display: none;
}

.sliderFastMenus ul li a.customer {
    background-image: url("../../images/customer.jpg");
}

.sliderFastMenus ul li a.fuel {
    background-image: url("../../images/fuel.jpg");
    display: none;
}

.sliderFastMenus ul li .handshake {
    background-image: url("../../images/handshake.jpg");
}

.sliderFastMenus ul li a:before {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0.6;
    transition: all .2s ease;
    display: none;
}

.sliderFastMenus ul li a:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    width: 2px;
    background: white;
    opacity: 0.4;
    display: none;
}

.sliderFastMenus ul li a i {
    font-size: 40px;
}

.sliderFastMenus ul li a:hover:before {
    background: var(--theme-color);
    opacity: 1;
}


.sliderFastMenus ul li a .title {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
}

.sliderFastMenus ul li a .text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
}


#about_us {
    padding: 150px 0;
    position: relative;
}

#about_us:before {
    height: 440px;
    background-position: right 50px;
}

#about_us:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
}

.aboutHeadContent .titleSm {
    display: block;
    color: #999;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.aboutHeadContent .home_head {
    font-size: 45px;
    font-weight: 800;
    color: #313334;
    /*! line-height: 1.25; */
    margin-top: 10px;
}

.aboutHeadContent .home_head span {
    /*! display: block; */
}

.aboutHeadContent .title3 {
    display: block;
    font-weight: 900;
    font-size: 59px;
    letter-spacing: -2px;
    color: var(--theme-color);
    line-height: 1;
    margin-bottom: 25px;
}


.home_head {}

.btn2.btn:hover {
    background: var(--theme-color);
    color: white;
    border-color: var(--theme-color);
}

.btn2.btn {
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    color: var(--theme-color);
    padding: 12px 65px;
    border-radius: 34px;
    border: 2px solid var(--theme-color);
    text-transform: uppercase;
}




#references {
    padding: 0 0 150px 0;
}

.list79 .img {
    display: block;
    border-radius: 6px;
    position: relative;
    border: 2px solid #dedede;
}

.list79 .img img {
    border-radius: 5px;
}

#products {
    padding: 0 0 150px 0;
}

.list3 .img {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 130%;
}

.list3 .text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: left;
    color: #fff;
    padding: 23px 20px;
    transition: all 0.2s linear;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%) repeat scroll 0 0;
}

.list3 .baslik {
    border-left: 2px solid #ffffff;
    color: #ffffff;
    font-size: 23px;
    margin-bottom: 10px;
    padding-left: 12px;
    line-height: 22px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.list3 h2 {
    font-size: 16px;
    font-weight: normal;
    transition: all 0.2s linear;
    position: relative;
    z-index: 2;
}

.list3 .item:hover .text {
    padding-bottom: 50px;
}

.list3 .img img {
    transition: all 10s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.list3 .item:hover .img img {
    transform: translate(-50%, -50%) scale(1.2);
}

.list3 .item:hover h2 {
    color: #ffffff;
}

.list3 .img:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    opacity: 1;
}

.list3 .item {
    display: block;
    position: relative;
}


#counter {
    margin-bottom: 100px;
    box-shadow: 0 0 20px 2px rgb(0 0 0 / 10%);
    padding: 50px 10px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

.list74 .itemCounter .img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--custom-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.list74 .itemCounter .count {
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
}

.list74 .itemCounter strong {
    font-size: 16px;
    margin-top: 5px;
    display: block;
}


#differences {
    padding: 0 0 100px 0;
}

.list65 .img {
    display: block;
    border-radius: 6px;
    position: relative;
    border: 2px solid #dedede;
}

.list65 .img img {
    border-radius: 5px;
}




.list67 .item h5 {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 5px;
}

.list67 .item p {
    max-width: 223px;
    font-size: 13px;
}


#comments {
    background: var(--custom-grey);
    padding: 100px 0;
    color: #000;
    margin-bottom: 100px;
}

#comments .container {
    background-position: center center;
    background-size: cover;
    color: white;
}

#comments .container .owl-item i {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    color: #000;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 25px;
    font-size: 48px;
}

#comments .container h3 {
    font-size: 22px;
    margin-bottom: 8px;
    text-transform: capitalize;
}

#comments .container p {
    font-size: 16px;
    margin: 0;
}

#comments .item {
    color: #000;
}

#news {
    padding: 0 0 100px 0;
}

.list73 .item .text {
    padding: 15px 0;
}

.list73 .item .text strong {
    margin-bottom: 5px;
    display: inline-block;
    font-size: 20px;
}

.list73 .item .text .desc {
    font-size: 14px;
}

.list73 .item .img .date {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: white;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 4px;
    min-width: 80px;
}

.list73 .item .img {
    position: relative;
}

.list73 .item .img .date span {
    display: block;
}

.list73 .item .img .date span:nth-child(1) {
    font-size: 40px;
    line-height: 1;
}

.list73 .item .text .fastBtn {
    font-size: 14px;
    margin-top: 5px;
    display: inline-block;
    text-decoration: underline;
    color: var(--theme-color);
    font-weight: 500;
}

#movieContent .tanitim-buton {
    cursor: pointer;
    transition: .4s;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: var(--theme-color);
}

#movieContent #movie #video {
    position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 100%;
}

#movieContent #movie:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    background: #000;
}

#movieContent #movie #video.full {
    position: fixed !important;
    width: 100vw;
    height: 100vh;
    z-index: 110;
    top: 0;
    margin: 0 auto;
    background: black;
    transform: none;
    left: 0;
}

#movieContent #movie {
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

#movieContent #movie.full {
    z-index: 99999999999999;
}

#movieContent .tanitim-buton:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--custom-bgColor);
    transition: all .2s ease;
}

#movieContent .tanitim-buton:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-75%, -50%) rotate(45deg);
    border: 1.2rem solid;
    border-color: white white transparent transparent;
}

#movieContent .tanitim-buton:hover:before {
    background: var(--theme-color);
}

#movieContent #movie .kapat {
    position: fixed;
    top: 20px;
    right: 55px;
    z-index: 111;
    color: white;
    transform: none;
    left: auto;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

#movieContent #movie .kapat:hover {
    cursor: pointer;
}

#movieContent .kapat.tanitim-buton:after {
    opacity: 0;
}

#movieContent .kapat i {
    position: relative;
    z-index: 5;
}

#movieContent .textContent {
    padding: 60px 0;
}



section#sss {}

section#sss .card .card-header a:not(.collapsed) {
    color: var(--theme-color);
    border-bottom: 1px solid #e4e4e4;
}

section#sss .card .card-header a:not(.collapsed):before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-left: 1px solid var(--theme-color);
}

section#sss .card {
    position: relative;
    margin-top: 0 !important;
    border-right: 0;
    border-bottom: 1px solid #e4e4e4;
    border-top: 0;
    box-shadow: none;
}

section#sss .card:last-child {
    border-bottom: 0 !important;
}

/* -------------------- Footer --------------------*/
@media (min-width: 992px) {
  .col-lg-55 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

#footer {
    overflow: hidden;
    position: relative;
    --tw-bg-opacity: 1;
    background-color: rgb(236 240 245/var(--tw-bg-opacity));
}

#nt {
    vertical-align: sub;
}

#footer #newsletter {
    background: #000000;
    padding: 47px 0;
}

#footer #newsletter h6 {
    margin: 0;
    font-size: 25px;
    color: white;
}

#footer #newsletter .form-control {
    border-radius: 4px;
    border: 0;
    max-width: 512px;
    width: 100vw;
}

#footer #footer-top {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #2d404a;
}

#footer #footer-top h3 {
    position: relative;
    color: #abb2b6;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 21px;
    text-transform: uppercase;
}

#footer #footer-top h3.text-end:before {
    left: auto;
    right: 0;
}

#footer #footer-top #footer-socials {}

#footer #footer-top #footer-socials a {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.6);
}

#footer #footer-top #footer-socials a+a {
    margin: 0 0 0px 5px;
}

#footer #footer-top .footerList li {
    display: block;
}

#footer #footer-top .footerList li a {
    display: inline-block;
    color: #abb2b6;
    font-size: 18px;
    padding: 5px 0;
    transition: .3s;
    font-weight: 200;
}

#footer #footer-top .footerContact .footerList li a {
    max-width: 280px;
}

#footer #footer-top .footerList.type2 li a {
    font-size: 17px;
    vertical-align: top;
    text-transform: uppercase;
    font-weight: 500;
}

#footer #footer-top .footerList.type2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#footer #footer-top .footerList.type2 li+li a {
    border-left: 1px solid #4d565b;
    padding-left: 20px;
    margin-left: 20px;
}


#footer #footer-top .footerList li a:hover {
    color: #fff !important;
    transform: translateY(-6px);
}

#footer #footer-top .footerList li a i {
    font-size: 16px;
    margin-right: 8px;
}

#footer #footer-bottom {
    background: white;
}

#footer #footer-bottom .copyright {
    font-size: 14px;
}

#footer #footer-bottom .footerBottomInner {
    padding: 28px 0;
    margin: 0;
}

footer .form-control {
    border-color: white !important;
    background-color: transparent !important;
}


/* -------------------- ic sayfalar --------------------*/
.modal-content .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px;
    background: #F7F7F7;
}

.modal-content .button-close {
    color: #9099A9;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.modal-content .head h2 {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.list81 .title {
    display: block;
    line-height: 1;
    margin: 0 0 30px 0;
    font-size: 25px;
    font-weight: 600;
}

.list81 .logoImg {
    border: 2px solid #DEE2E6;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.list81 .infoText {}

.list81 .infoText li+li {}

.contactItemWrapper {
    background: #f3f3f3;
    padding: 0;
    border-radius: 10px;
    margin-bottom: 50px;
}

.list81 .infoText li .item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
    text-align: start;
    justify-content: flex-start;
}

.list81 .btn-sm {
    display: inline-block;
    padding: 55px 32px;
    line-height: 1;
    margin: 0;
    border: 0;
    font-size: 16px;
    white-space: nowrap;
    border: 0;
    border-radius: 0 10px 10px 0;
    background: #dc0011;
    color: white !important;
}

.list81 .btn-sm i {
    font-size: 30px;
}

.list81 .btn-sm .topTitle {
    display: block;
    margin: 10px 0 0 0;
}

.list81 .infoText li .item .btn-sm i {
    display: block;
    margin: 7px 0 0 0;
}


.list81 .infoText li .item .icon {
    display: inline-block;
    margin: 0 10px 0px 0px;
    width: 20px;
    text-align: center;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
}

.list81 .map {}

.list81 .map iframe {
    width: 100%;
    display: block;
    background-color: #f7f7f7;
    padding: 5px;
    height: 300px;
    margin: 2rem 0 0 0;
}


.banner {
    position: relative;
    height: 0;
    padding-bottom: 350px;
    background: #e9f2e7 !important;
}

.banner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.banner>.content {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    top: calc(50% + 53px);
    transform: translateY(-50%);
    color: white;
}

.banner .content h1 {
    font-size: 45px;
    line-height: 1;
    color: #2d404a;
}

.banner .content .subTitle {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 15px 0;
    color: #2d404a;
}


#station-map {
    height: 600px;
}

#map {
    min-height: 800px;
}

.customIcons {
    border-radius: 50%;
    background: #f3f3f3;
    padding: 15px;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.customIcons~.title {
    font-size: 12px;
    display: block;
    margin: 10px auto 0 auto;
}

.js-stationDetail .info {
    width: 100%;
    background-color: #fff;
    margin: 30px auto 0;
    padding: 0 20px;
    border: 1px solid #e4e6ec;
}

.js-stationDetail .info .title {
    display: block;
    margin: 0;
    padding: 0px 10px 0px 0;
    font-size: 16px;
    text-transform: uppercase;
}

.js-stationDetail .info .text {
    display: block;
}

.js-stationDetail .info .text * {
    margin: 0;
}

.js-stationDetail .info>div+div {
    position: relative;
}

.js-stationDetail .info>div+div:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -12px;
    height: 50px;
    width: 1px;
    background: #dedede;
}

.icons {
    border: 1px solid #e4e6ec;
    text-align: center;
    background-color: #fbfbfc;
    margin: 0 0 0 0;
    padding: 16px 25px;
}

.js-stationDetail .info a {
    display: block;
    text-align: center;
    color: var(--theme-color);
    font-weight: bold;
}

.js-stationDetail .info a i {
    display: block;
}



.itemContactList .item {
    border-radius: 8px;
    box-shadow: 0 5px 35px rgb(0 0 0 / 10%);
    align-items: center;
    text-align: center;
    padding: 50px 15px;
    display: block;
    background: white;
}

.itemContactList .item .desc {
    font-size: 18px;
    font-weight: 400;
    color: #999;
    line-height: 1.4;
    margin: 20px 0 0 0;
    display: block;
    min-height: 78px;
}

.itemContactList .item .icon {
    position: relative;
    transition: all .35s;
}

.itemContactList .item .icon:before {
    position: absolute;
    height: 8px;
    width: 66px;
    content: "";
    bottom: 0;
    left: 50%;
    margin-left: -33px;
    background: rgba(0, 0, 0, 0.06);
    z-index: -1;
    border-radius: 100%;
    transform: scale(1);
    transition: transform .35s;
    transition-timing-function: cubic-bezier(0.12, 0.845, 0.305, 1);
}

.itemContactList .item .title {
    color: #333;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    display: block;
}

.itemContactList .item .icon i {
    font-size: 50px;
    margin: 20px 0 30px 0;
}

.itemContactList .item:hover .icon {
    transform: translateY(-6px);
}




.homeImg {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}




div.content_container {
    min-height: 700px;
    padding: 70px 0;
    position: relative;
}

.content_container:before {
    height: 440px;
    background-position: right 50px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
}

.content_container .tarih {
    padding-bottom: 5px;
}

.content_container .tarih2 {
    font-weight: normal;
}

.content_container .tarih span {
    font-size: 32px;
    font-weight: 700;
    line-height: 35px;
    display: block;
    text-align: center;
}

.content_container .tarih span:nth-child(2) {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
}

.content_container .tarih span:nth-child(3) {
    font-size: 12px;
    line-height: 23px;
}

#sf_haberler #otherProduct:before,
#sf_mesaji #otherProduct:before {
    content: '';
    width: 2000px;
    height: calc(100% + 10rem);
    left: 0;
    top: 0;
    position: absolute;
    border-left: 1px solid #eee;
}

.goruntuleme {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    margin: 10px 0;
    padding: 5px 0;
}

hr {
    margin-top: 0;
}

.at-resp-share-element .at-share-btn {
    background: transparent !important;
    border: 2px solid #444 !important;
    border-radius: 25px !important;
}

.at-resp-share-element .at-share-btn * {
    fill: #444 !important;
}

.at-resp-share-element .at-share-btn:hover {
    background: #000 !important;
    transform: none !important;
}

.at-resp-share-element .at-share-btn:hover * {
    fill: white !important;
}

.NT-list-group{color: white;z-index: 2;padding: 0;background: transparent;}
.NT-list-group div.head{background: var(--theme-color);color: white;display: none;}
.NT-list-group .list-group-item{border: 0;}
.NT-list-group .list-group-item.active,.NT-list-group .list-group-item:not(.head):hover{background: var(--theme-color) !important;color: white !important;}
.NT-list-group .list-group-item + .list-group-item {background: #e5e9ec;color: #000000;padding: 17px 25px;display: flex;align-items: center;justify-content: space-between;font-size: 14px;border-radius: 0;font-weight: 600;margin-top: 0;border-bottom: 1px solid rgba(0,0,0,0.1);}
#otherProduct .list3 .baslik {
    font-size: 19px;
}

#otherProduct .list3 .img {
    padding-bottom: 97%;
}


/* -- yorumlar -- */
.btn-yorum {}

#NT-gorusler {}

#NT-gorusler .card {}

#NT-gorusler .card .card-header {
    font-size: 17px;
    line-height: 1em;
    color: #545557;
    background-color: #f1f1f1;
    padding: 23px;
    display: block;
    position: relative;
    border-radius: 0;
    border-color: white;
    transition: all 0.3s ease;
}

#NT-gorusler .card .card-body {}

#NT-gorusler .card .card-header.opened {
    background-color: var(--theme-color);
    color: #fff;
}

#NT-gorusler .card .card-header.opened a {
    color: inherit !important;
}

#NT-gorusler .card .opened+div[role="tabpanel"] {
    background-color: #545557;
    color: #fff;
}

#NT-gorusler .card .card-header:after {
    font-size: 24px;
    content: '\f107';
    position: absolute;
    font-family: 'Font Awesome 5 Pro', sans-serif;
    top: 50%;
    right: 23px;
    transition: transform 0.3s ease;
    transform: translateY(-50%) rotate(0deg);
}

#NT-gorusler .card .card-header.opened:after {
    transform: translateY(-50%) rotate(180deg);
}

/* -- sss -- */
.collapsed .fa-minus:before {
    content: '\f067'
}

#accordion i.fa {
    width: 24px;
    height: 24px;
    line-height: 22px;
    border-radius: 50%;
    border: 2px solid;
    text-align: center;
    color: #fb9902;
    border-color: #fb9902;
}

#accordion>.card {
    overflow: hidden
}

/* -- iletisim -- */
div#sayfa_iletisim {
    min-height: 800px;
}

#contactMap {}

.card {
    overflow: hidden;
    border-radius: 10px;
    border: 0;
    box-shadow: 0 5px 35px rgb(0 0 0 / 10%);
    background: white;
}

.collapsed .fa-minus:before {
    content: '\f067'
}

#accordion i.fa {
    width: 24px;
    height: 24px;
    line-height: 22px;
    border-radius: 50%;
    border: 2px solid;
    text-align: center;
    color: #fb9902;
    border-color: #fb9902;
}

#accordion>.card {
    /* overflow: hidden; */
    border: 2px solid #e6e6e6 !important;
    border-radius: 0;
}

.collapse.show {
    box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
}

.card-header {
    border: 0;
}

.card-header a {
    border-radius: 8px;
    box-shadow: none;
    padding: 15px 15px !important;
    color: #353535;
    overflow: initial !important;
    background: rgb(255 255 255 / 0%) !important;
    font-weight: bold;
    box-shadow: 0 5px 35px rgb(0 0 0 / 10%);
}

a.rounded-25:not(.collapsed) {
    box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1) !important;
    background: transparent !important;
}

#accordion .fa-minus {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    padding: 0 0px 0 0px;
    font-size: 10px;
    color: var(--theme-color);
    margin-right: 10px;
}

.card-body tr td:nth-child(1) {
    padding: 1px;
    width: 70px;
}

.card-body {
    padding: 15px;
}


/* -- iletisim -- */
#contactMap {}

#contactMap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    margin: 50px 0 20px 0;
}

/* -- coklu resim -- */
#coklu_resim .img-thumbnail:hover {
    border-color: #dee2e6;
}

/* -- video -- */
.NT-video {
    position: relative;
    display: block;
}

.NT-video:before {
    position: absolute;
    content: '\f04b';
    font-family: 'Font Awesome 5 Pro', sans-serif;
    color: white;
    z-index: 3;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border: 1px solid white;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

a:hover .NT-video:after {
    background: rgba(0, 0, 0, 0.2);
}

.icon {
  background: #e9f2e7 !important;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  line-height: 80px;
}
.NT-video:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    content: '';
    transition: all 0.3s ease;
}

.NT-video.isCat:before {
    content: '\f03a'
}

/* -- proje -- */
.yapimyili {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 50px;
    min-width: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.35);
}

.projeBg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 470px;
}

/* -- dosya -- */

.fileList a[href$=".pdf"] .ico,
.fileList a[href$=".doc"] .ico,
.fileList a[href$=".xls"] .ico,
.fileList a[href$=".docx"] .ico,
.fileList a[href$=".xlsx"] .ico {
    text-decoration: none;
    position: relative;
    text-align: left !important;
    display: flex;
    align-items: center;
}

.fileList a[href$=".pdf"] .ico:before,
.fileList a[href$=".doc"] .ico:before,
.fileList a[href$=".xls"] .ico:before,
.fileList a[href$=".docx"] .ico:before,
.fileList a[href$=".xlsx"] .ico:before {
    content: "";
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    position: relative;
    margin-right: 12px;
    text-decoration: none !important;
    padding-top: 47px;
    text-align: center;
    width: 50px;
    min-width: 50px;
    height: 64px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 4px;
    box-shadow: inset 0 -22px 0 rgba(0, 0, 0, 0.075);
    clip-path: polygon(38px 0, 100% 18px, 100% 100%, 0 100%, 0 0);
    letter-spacing: 1px;
    white-space: pre;
    transition: box-shadow 0.32s 0.05s cubic-bezier(0.4, 0, 0.6, 1.3), padding-top 0.3s ease-in-out;
    overflow: hidden;
}

.fileList a[href$=".pdf"] .ico:after,
.fileList a[href$=".doc"] .ico:after,
.fileList a[href$=".xls"] .ico:after,
.fileList a[href$=".docx"] .ico:after,
.fileList a[href$=".xlsx"] .ico:after {
    content: "";
    position: absolute;
    border-width: 15px 0 0 15px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.65);
    border-style: solid;
    left: 37px;
    top: calc(50% - 34px);
}

.fileList a[href$=".pdf"]:hover .ico:before,
.fileList a[href$=".doc"]:hover .ico:before,
.fileList a[href$=".xls"]:hover .ico:before,
.fileList a[href$=".docx"]:hover .ico:before,
.fileList a[href$=".xlsx"]:hover .ico:before {
    transition: box-shadow 0.2s ease-in-out, padding-top 0.32s 0.05s cubic-bezier(0.4, 0, 0.5, 1.2);
    box-shadow: inset 0 -80px 0 rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.fileList a[href$=".pdf"] .ico:before {
    content: "pdf\a\25bc";
    background-color: #e03939;
}

.fileList a[href$=".xls"] .ico:before {
    content: "xls\a\25bc";
    background-color: #39ad22;
}

.fileList a[href$=".doc"] .ico:before {
    content: "doc\a\25bc";
    background-color: #4773d2;
}

.fileList a[href$=".xlsx"] .ico:before {
    content: "xlsx\a\25bc";
    background-color: #39ad22;
}

.fileList a[href$=".docx"] .ico:before {
    content: "docx\a\25bc";
    background-color: #4773d2;
}


/* -- cookie -- */

div#cookie {
    width: 340px;
    max-width: 100%;
    opacity: 0.8;
    border-radius: 4px;
    background-color: rgb(0, 0, 0);
    z-index: 9999;
    position: fixed;
    left: 20px;
    font-size: 12px;
    bottom: 18px;
    color: white;
    line-height: 1.25;
    padding: 24px 16px;
}

div#cookie>i:first-child {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
    cursor: pointer;
    font-size: 16px;
    color: white;
}

div#cookie a {
    color: white;
    text-decoration: underline !important;
}

@media(max-width:1900px) {
    #footer #footer-top .footerList.type2 li+li a {
        padding-left: 10px;
        margin-left: 10px;
    }

    #footer #footer-top .footerList.type2 li a {
        font-size: 15px;
    }
}

@media(max-width:1500px) {
    #footer #footer-top .footerList li a {
        font-size: 14px;
        max-width: 220px !important;
    }

    #footer #footer-top .footerList.type2 li a {
        font-size: 13px;
    }
}

@media(max-width: 1200px) {
    #footer #footer-top .footerList.type2 {
        justify-content: center
    }
}

@media(max-width: 992px) {
    #mobilMenu.MenuType1 {
        position: relative;
        display: block;
        vertical-align: inherit;
    }

    #mobilMenu.MenuType1 .nt_main_menu_content {
        display: none !important;
    }

    #mobilMenu.MenuType1 .mobileMenuContent {
        position: initial;
        max-height: 0;
        top: auto;
        left: auto;
        padding: 0;
        opacity: 1;
        overflow: hidden !important;
        height: 100%;
        transform: none;
        transition: max-height 0.8s ease, padding 0.8s ease !important;
    }

    #mobilMenu.MenuType1 .mobileMenuIcon {
        margin-right: 0;
        margin-left: auto;
    }

    #mobilMenu.MenuType1 .mobileMenuContent.active {
        max-height: 100vh;
        padding: 30px 0;
    }

    #header {
        /* position: static; */
    }

    #header.activing {
        position: fixed;
    }

    header#header.scrollDowning {
        transform: translateY(0%);
    }

    #content {}

    body#sf_anasayfa #content {
        padding-top: 0;
    }

    nav[aria-label="breadcrumb"] {
        display: none;
    }

    .searchFormContent form {
        height: 60px;
    }

    .searchFormContent form .form-control {
        font-size: 18px !important;
    }

    .searchFormContent form .btn {
        padding: 0;
        font-size: 18px;
    }

    .sliderFastMenus {
        position: static;
    }

    #logo img {
        height: 30px;
    }
    
    #logo {
    padding: 20px 10px;
}

    #about_us {
        padding: 60px 0;
    }

    #products,
    #references {
        padding: 0 0 50px 0;
    }

    .banner .content .subTitle {
        display: none;
    }

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

    .banner {
        padding-bottom: 200px;
    }

    .banner>.content {
        top: calc(50% + 40px);
    }

    .js-stationDetail .info {
        padding: 20px 20px;
        text-align: center;
    }

    .js-stationDetail .info .text {
        margin: 0 0 20px 0;
    }
}

@media(max-width: 768px) {
    .itemContactList .item .desc {
        min-height: initial;
    }

    #footer #footer-top .footerList.type2 {
        display: block;
        margin: 0 auto 90px auto;
    }

    #footer #footer-top .footerList li {
        padding: 0;
        margin: 0;
    }

    #footer #footer-top .footerList.type2 li {
        width: 33%;
        float: left;
    }

    #footer #footer-top .footerList.type2 li a {
        padding: 5px 0 !important;
        margin: 0 !important;
        border: 0 !important;
        display: inline-block;
    }

    .list81 .infoText li .item.address {
        display: block;
    }

    .list81 .infoText li .item .btn-sm {
        display: block;
        border: 0;
        margin: 10px 0 0 0;
    }
}

@media(max-width: 576px) {
    .btn-yorum {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 5px;
    }

    .dates2 {
        display: inline-block;
        width: 110px;
    }

    .sosyaller {
        display: inline-block;
        vertical-align: sub;
    }

    .dates2>* {
        display: inline-block;
        vertical-align: middle;
        margin-right: 15px;
        border: 0 !important;
    }

    .aboutHeadContent .home_head,
    .aboutHeadContent .title3 {
        font-size: 33px;
    }

    .list3 .baslik {
        font-size: 16px;
        border: 0;
        padding: 0;
        line-height: 1.2;
        display: block;
    }
}

/* NTbilgi sablon css sonu */