#fdik-carousel {
    padding-top: 80px;
    background: rgba(0, 0, 0, 0.99);
}

#fdik-carousel h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
    color: #fff;
}


#fdik-carousel h2 {
    color: #eee;
    margin-bottom: 30px;
    font-size: 24px;
}

#fdik-carousel p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 21px;
}

@media (min-width: 1024px) {
    #fdik-carousel {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #fdik-carousel .carousel-caption {
        text-align: center !important;
    }

    #fdik-carousel .container {
        padding-top: 40px;
    }

    #fdik-carousel h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #fdik-carousel h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #fdik-carousel p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 30px;
    }
}

/* Parallax animation effects */
.fdik-carousel .carousel-item .carousel-image {
    transform: scale(1) translateX(0);
    transition: all 0.6s;
}

.fdik-carousel .carousel-item .carousel-image:before {
    content: "";
    background: rgba(0, 0, 0, 0.98);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.fdik-carousel .carousel-item.carousel-item-next .carousel-image,
.fdik-carousel .carousel-item.active.carousel-item-right .carousel-image {
    transform: scale(1.3) translateX(-50%);
}

.fdik-carousel .carousel-item.carousel-item-prev .carousel-image,
.fdik-carousel .carousel-item.active.carousel-item-left .carousel-image {
    transform: scale(1.3) translateX(50%);
}

.fdik-carousel .carousel-item.carousel-item-next.carousel-item-left .carousel-image,
.fdik-carousel .carousel-item.carousel-item-prev.carousel-item-right .carousel-image {
    /*transform: scale(1);*/
    transform: scale(1) translateX(0);
}

/* Makes carousel full screen */
.fdik-carousel .carousel-item {
    min-height: 680px;
    overflow: hidden;
}

.fdik-carousel .carousel-item .carousel-image {
    height: 620px;
    /*   background-position: center right; */
    background-repeat: no-repeat;
    background-size: cover;
}

.img1 {
    background-position: center -230px;
}

.img2 {
    background-position: center;
}

.fdik-carousel .carousel-caption {
    transform: translateY(-50%);
    bottom: auto;
    top: 50%;
}

.fdik-carousel:hover .carousel-control-next,
.fdik-carousel:hover .carousel-control-prev {
    opacity: 1;
}

.fdik-carousel:focus .carousel-control-next,
.fdik-carousel:focus .carousel-control-prev,
.carousel-control-next,
.carousel-control-prev {
    opacity: 0;
    border: 0;
    
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /* background-image: none; */
    /* width: 54px; */
    /* height: 55px; */
    font-family: "bootstrap-icons";
    /* font-size: 55px; */
    color: #fff;
    border: 0;
}

/* .carousel-control-next-icon:after {
    content: '\f285';
}

.carousel-control-prev-icon:after {
    content: '\f284';
} */

/* Animation delays */
.carousel-caption h1 {
    animation-delay: 1s;
}

.carousel-caption p {
    animation-delay: 2s;
}

.carousel-caption .btn {
    animation-delay: 3s;
}

.sliderSolGetir,
.sliderSagGetir {
    position: relative;
    display: inline-block;
    -webkit-animation-name: appear;
    animation-name: appear;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 500ms;
    animation-delay: 500ms;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.sliderSolGetir:after,
.sliderSagGetir:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.sliderSolGetir:after,
.sliderSagGetir:after {
    -webkit-animation-name: sliderSolGetir;
    animation-name: sliderSolGetir;
    -webkit-animation-duration: inherit;
    animation-duration: inherit;
    -webkit-animation-fill-mode: inherit;
    animation-fill-mode: inherit;
    -webkit-animation-delay: inherit;
    animation-delay: inherit;
    -webkit-animation-timing-function: inherit;
    animation-timing-function: inherit;
}

.sliderSagGetir:after {
    -webkit-animation-name: sliderSagGetir;
    animation-name: sliderSagGetir;
    -webkit-animation-duration: inherit;
    animation-duration: inherit;
    -webkit-animation-fill-mode: inherit;
    animation-fill-mode: inherit;
    -webkit-animation-delay: inherit;
    animation-delay: inherit;
    -webkit-animation-timing-function: inherit;
    animation-timing-function: inherit;
}

.carousel-caption {
    right: 10% !important;
    bottom: 20px;
    left: 10% !important;
}


@-webkit-keyframes sliderSolGetir {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    40% {
        transform: scaleX(1);
        transform-origin: left;
    }

    60% {
        transform: scaleX(1);
        transform-origin: right;
    }

    to {
        transform: scaleX(0);
        transform-origin: right;
    }
}

@keyframes sliderSolGetir {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    40% {
        transform: scaleX(1);
        transform-origin: left;
    }

    60% {
        transform: scaleX(1);
        transform-origin: right;
    }

    to {
        transform: scaleX(0);
        transform-origin: right;
    }
}

@-webkit-keyframes sliderSagGetir {
    from {
        transform: scaleX(0);
        transform-origin: right;
    }

    40% {
        transform: scaleX(1);
        transform-origin: right;
    }

    60% {
        transform: scaleX(1);
        transform-origin: left;
    }

    to {
        transform: scaleX(0);
        transform-origin: left;
    }
}

@keyframes sliderSagGetir {
    from {
        transform: scaleX(0);
        transform-origin: right;
    }

    40% {
        transform: scaleX(1);
        transform-origin: right;
    }

    60% {
        transform: scaleX(1);
        transform-origin: left;
    }

    to {
        transform: scaleX(0);
        transform-origin: left;
    }
}

@-webkit-keyframes appear {
    from {
        color: transparent;
    }

    40% {
        color: transparent;
    }

    60% {
        color: inherit;
    }

    to {
        color: inherit;
    }
}

@keyframes appear {
    from {
        color: transparent;
    }

    40% {
        color: transparent;
    }

    60% {
        color: inherit;
    }

    to {
        color: inherit;
    }
}

.btn {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 28px;
    transition: 0.5s;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 0;
    color: #323232;
    box-shadow: inset 0px 0px 0px 30px transparent;
    -webkit-box-shadow: inset 0px 0px 0px 30px transparent;
    transition: box-shadow .3s ease, color .3s ease, background .3s ease, width .3s ease, border-color .3s ease;
    -webkit-transition: box-shadow .3s ease, color .3s ease, background .3s ease, width .3s ease, border-color .3s ease;
    -moz-transition: box-shadow .3s ease, color .3s ease, background .3s ease, width .3s ease, border-color .3s ease;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.btn-green {
    background-color: #539D62;
    border-color: #539D62;
    color: #fff;
}
.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-green:hover,
.btn-green:focus {
    background-color: transparent;
    border-color: #539D62;
    color: #539D62;
}
.btn-info:hover,
.btn-info:focus {
    background-color: transparent;
    border-color: #17a2b8;
    color: #17a2b8;
}
.ik-bnr {
    padding: 135px 0 100px 0px;
}

.ik-bnr h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    color: #363636;
}

.ik-bnr h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: tomato;
}

.ik-bnr P {
    text-align: center;
    font-size: 19px;
    color: #686868;
    line-height: 1.8;
}
.ik-acik-pozisyonlar {
    padding: 130px 0 95px 0;
}

.ik-acik-pozisyonlar .ik-bs {
    font-size: 20px;
    font-weight: 600;
    color: #d9d9d9;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 0px 0px #a2a2a2;
}

.ik-acik-pozisyonlar .is-listesi {
    padding: 25px;
}

.ik-acik-pozisyonlar .white-bg {
    background: #ffffff;
}

.ik-acik-pozisyonlar .boxed-btn3 {
    background: #00D363;
    color: #fff;
    display: inline-block;
    padding: 13px 29px 13px 29px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: 0;
    border: 1px solid transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff !important;
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.ik-acik-pozisyonlar .boxed-btn3:hover {
    color: #00D363 !important;
    border: 1px solid #00D363;
    background: transparent;
}

.ik-acik-pozisyonlar .boxed-btn3:focus {
    outline: none;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas {
    padding: 30px;
    margin-bottom: 12px;
    border: 1px solid transparent;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol {
        display: block !important;
        overflow: hidden;
    }
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .thumb {
    float: left;
    width: 82px;
    height: 82px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 5px;
    background: #F5F7FA;
    margin-right: 25px;
    border: 1px solid #F0F0F0;
    border-radius: 100%;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni {
    float: left;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni h4 {
        margin-top: 15px;
    }
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni h4:hover {
    color: #00D363;
}

@media (max-width: 767px) {
    .ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni .links_locat {
        display: block !important;
    }
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni .links_locat .location {
    margin-right: 50px;
}

@media (max-width: 767px) {
    .ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni .links_locat .location {
        margin-right: 10px;
    }
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni .links_locat .location p {
    margin-bottom: 0;
    font-size: 16px;
    color: #AAB1B7;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sol .is-basvuru-aciklama-metni .links_locat .location p i {
    margin-right: 7px;
}

@media (max-width: 767px) {
    .ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sag .is-basvuru-buton-box {
        margin: 10px 0;
        text-align: right;
    }
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sag .is-basvuru-buton-box {
    text-align: right;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sag .is-basvuru-buton-box a.heart_mark {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #00D363;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    background: #EFFDF5;
    margin-right: 15px;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sag .is-basvuru-buton-box a.heart_mark:hover {
    background: #00D363;
    color: #fff;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sag .is-basvuru-buton-box a.boxed-btn3 {
    padding: 9px 27px 9px 27px;
    font-size: 14px;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sag .date {
    text-align: right;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sag .date {
        text-align: left;
    }
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas .isler-basvuru-sag .date p {
    margin-bottom: 0;
    font-size: 14px;
    font-style: italic;
    color: #7A838B;
}

.ik-acik-pozisyonlar .is-basvuru-list-box .is-listesi .is-bas:hover {
    border-color: #B2F2D0;
}

.ik-acik-pozisyonlar h4 {
    font-size: 18px;
}

.ik-acik-pozisyonlar h4 {
    line-height: 1.2em;
}
.ik-form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.ik-formu-header {
    display: block;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;

}

.ik-formu-header h2 {
    font-size: 23px;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ik-formu-header h3 {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin-bottom: 5px;
}

.ik-formu-header p {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.ik-resim-box {
    width: 190px;
    max-height: 250px;
    border: 1px solid #ccc;
    padding: 2px;
    display: block;
}

.ik-resim-box img {
    width: 100%;
    height: 100%;
}

.ik-resim-box input {
    display: none;
}


.ik-resim-box {
    position: relative;
    width: 140px;
    height: 185px;
    border: 2px dashed #ccc;
    overflow: hidden;
}

#default-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#overlay-icon {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
}

#overlay-icon i {
    font-size: 45px;
    color: rgba(255, 255, 255, 0.45);
}

#file-input {
    display: none;
}

.ik-card-tab {
    border-top: 0 !important;
}



.ik-nav-tabs .nav-link {
    font-size: 12px;
    color: steelblue;
}

label {
    font-size: 12px;
    margin-bottom: 0;
}

.ik-col-form select {
    padding: 5px 8px;
    font-size: 12px;
    height: 30px !important;
}

.ik-col-form option {
    padding: 15px 15px !important;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    height: 55px !important;
    margin-bottom: 2px;
}

.ik-col-form .form-group {
    margin-bottom: 5px !important;
}

.ik-col-form input {
    padding: 5px 5px;
    font-size: 12px;
    height: 30px !important;
}

.ik-col-form .card-header h4 {
    font-size: 14px;
}

.ik-col-form .ik-form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: unset;
    border: 1px solid !important;
}

.ik-btn-ekle {
    font-size: 13px;
    border: 1px solid #539D62;
    background-color: #00D363;
    color: white;
    padding: 0px 8px;
    float: right;
    margin: 10px 15px 15px 0px;
}

.is-deneyim-girdisi,
.egitim-girdisi,
.sertifika-girdisi,
.yabanci-dil-girdisi,
.referans-girdisi {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
    margin-bottom: 5px !important;
    position: relative;
}

.is-deneyim-girdisi:nth-child(even) {
    background-color: #f2f2f2;
}

.egitim-girdisi:nth-child(even) {
    background-color: #f2f2f2;
}

.sertifika-girdisi:nth-child(even) {
    background-color: #f2f2f2;
}

.yabanci-dil-girdisi:nth-child(even) {
    background-color: #f2f2f2;
}

.referans-girdisi:nth-child(even) {
    background-color: #f2f2f2;
}

.ik-btn-sil {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 13px;
    border: 1px solid #740909;
    background-color: #d12d2d;
    color: white;
    padding: 0px 4px;
    line-height: 1;
}

.ik-h-100 {
    min-height: 100% !important;
    height: auto;
}

input[type="text"]:disabled {
    background: #f0f0f0;
}

.fdik-isbasvuru-feedback {
    background-color: #31B0D5;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    border-color: #46b8da;
}

#fdik-isbasvuru-btn {
    position: fixed;
    bottom: 25px;
    left: calc((100% - 164px)/2);
    z-index: 99;
}
.scroll-durdur {
    height: 100%;
    overflow: hidden;
}

.ik-overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 1);
    overflow-y: hidden;
    transition: 0.5s;
}

.ik-overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.ik-overlay a.closebtn {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.ik-overlay a.closebtn:hover,
.overlay a:focus {
    color: #f1f1f1;
}

.ik-overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .ik-overlay {
        overflow-y: auto;
    }

    .ik-overlay a.closebtn {
        font-size: 20px
    }

    .ik-overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

.ik-formu {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
}

.ik-formu::-webkit-scrollbar {
    width: 5px;
}

.ik-formu::-webkit-scrollbar-track {
    background: #000;
}

.ik-formu::-webkit-scrollbar-thumb {
    background: #EA904F;
}

.ik-formu::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.durum-bk .durum-icon span {
    background: red;
    color: white;
    padding: 14px 0;
    font-size: 45px;
}

.durum-by .durum-icon span {
    background: orange;
    color: white;
    padding: 17px 0;
    font-size: 55px;
}

.durum-bg .durum-icon span {
    background: green;
    color: white;
    padding: 18px 0;
    font-size: 55px;
}

.durum-icon {
    text-align: center;
    margin-top: 10vh;
}

.durum-icon span {
    width: 60px;
    height: 60px;
    display: block;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
}

h1.durum {
    text-align: center;
    font-size: 22px;
    margin: 16px 0px 11px 0;
    font-weight: 600;
    color: black;
}

h2.durum {
    font-size: 18px;
    text-align: center;
    color: #999;
    font-weight: 400;
    margin: 0 0 8px 0;
}

p.durum {
    font-size: 14px;
    text-align: center;
    color: #a2a2a2;
    font-weight: 400;
}