@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #fff;
    position: relative;
}

    body:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
    }

    body.offcanvas-menu:before {
        opacity: 1;
        z-index: 1002;
        visibility: visible;
    }



a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

    a,
    a:hover {
        text-decoration: none !important;
    }

.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.site-navbar-wrap {
    position: fixed;
    z-index: 99;
    width: 100%;
    left: 0;
    transition: 0.5s;
}

    .site-navbar-wrap a {
        color: #fff;
    }

    .site-navbar-wrap .site-navbar-top {
        font-size: 0.8rem;
    }

.site-navbar {
    padding-top: 5px;
    margin-bottom: 12px;
    width: 100%;
}

    .site-navbar .site-logo {
        font-weight: 200;
        line-height: 0;
        top: -7px;
        position: relative;
    }

        .site-navbar .site-logo a {
            font-weight: 200;
            color: #fff;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
        }

    .site-navbar .site-navigation .site-menu {
        margin-bottom: 0;
    }

        .site-navbar .site-navigation .site-menu a {
            text-decoration: none !important;
            display: inline-block;
            font-weight: 500;
        }

        .site-navbar .site-navigation .site-menu > li {
            display: inline-block;
        }

            .site-navbar .site-navigation .site-menu > li > a {
                padding: 5px 10px;
                color: white;
                font-size: 14px;
                text-decoration: none !important;
                text-transform: uppercase;
            }

                .site-navbar .site-navigation .site-menu > li > a.active {
                    color: #fff;
                }

                .site-navbar .site-navigation .site-menu > li > a:hover {
                    color: #fff;
                }

            .site-navbar .site-navigation .site-menu > li:last-child {
                padding-right: 0;
            }

                .site-navbar .site-navigation .site-menu > li:last-child > a {
                    padding-right: 0;
                }

        .site-navbar .site-navigation .site-menu .has-children {
            position: relative;
        }

            .site-navbar .site-navigation .site-menu .has-children .dropdown {
                visibility: hidden;
                opacity: 0;
                top: 100%;
                position: absolute;
                text-align: left;
                -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
                box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
                padding: 0px 0;
                margin-top: 20px;
                margin-left: 0px;
                background: #fff;
                -webkit-transition: 0.2s 0s;
                -o-transition: 0.2s 0s;
                transition: 0.2s 0s;
                border-radius: 4px;
            }

                .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
                    position: absolute;
                }

                    .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
                        bottom: 100%;
                        left: 20%;
                        border: solid transparent;
                        content: " ";
                        height: 0;
                        width: 0;
                        position: absolute;
                        pointer-events: none;
                    }

                    .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
                        border-color: rgba(136, 183, 213, 0);
                        border-bottom-color: #fff;
                        border-width: 10px;
                        margin-left: -10px;
                    }

                .site-navbar .site-navigation .site-menu .has-children .dropdown a {
                    font-size: 14px;
                    text-transform: none;
                    letter-spacing: normal;
                    -webkit-transition: 0s all;
                    -o-transition: 0s all;
                    transition: 0s all;
                    color: #343a40;
                }

                    .site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
                        color: #007bff;
                    }

                .site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
                    color: #fff !important;
                }

                .site-navbar .site-navigation .site-menu .has-children .dropdown > li {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    min-width: 200px;
                }

                    .site-navbar .site-navigation .site-menu .has-children .dropdown > li:first-child > a {
                        border-top-left-radius: 4px;
                        border-top-right-radius: 4px;
                    }

                    .site-navbar .site-navigation .site-menu .has-children .dropdown > li:last-child > a {
                        border-bottom-left-radius: 4px;
                        border-bottom-right-radius: 4px;
                    }

                    .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
                        padding: 9px 20px;
                        display: block;
                    }

                        .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
                            background: #ebeef0;
                            color: #212529;
                        }


                    .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown,
                    .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
                        left: 100%;
                        top: 0;
                    }

                    .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a,
                    .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a,
                    .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
                        background: #ebeef0;
                        color: #212529;
                    }

            .site-navbar .site-navigation .site-menu .has-children:hover > a,
            .site-navbar .site-navigation .site-menu .has-children:focus > a,
            .site-navbar .site-navigation .site-menu .has-children:active > a {
                color: #fff;
            }

            .site-navbar .site-navigation .site-menu .has-children:hover,
            .site-navbar .site-navigation .site-menu .has-children:focus,
            .site-navbar .site-navigation .site-menu .has-children:active {
                cursor: pointer;
            }

                .site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
                .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
                .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
                    -webkit-transition-delay: 0s;
                    -o-transition-delay: 0s;
                    transition-delay: 0s;
                    margin-top: 0px;
                    visibility: visible;
                    opacity: 1;
                }

.site-mobile-menu {
    width: 300px;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 20px;
    background: #fff;
    height: calc(100vh);
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}

    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
        float: right;
        margin-top: 8px;
    }

        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
            font-size: 30px;
            display: inline-block;
            padding-left: 10px;
            padding-right: 0px;
            line-height: 1;
            cursor: pointer;
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease;
        }

            .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
                color: #dee2e6;
            }

    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
        float: left;
        margin-top: 10px;
        margin-left: 0px;
    }

        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
            display: inline-block;
            text-transform: uppercase;
        }

            .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
                max-width: 70px;
            }

            .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
                text-decoration: none;
            }

.site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

    .site-mobile-menu .site-nav-wrap a {
        padding: 10px 20px;
        display: block;
        position: relative;
        color: #212529;
    }

        .site-mobile-menu .site-nav-wrap a.active,
        .site-mobile-menu .site-nav-wrap a:hover {
            color: #007bff;
        }

    .site-mobile-menu .site-nav-wrap li {
        position: relative;
        display: block;
    }

        .site-mobile-menu .site-nav-wrap li.active > a {
            color: #007bff;
        }

    .site-mobile-menu .site-nav-wrap .arrow-collapse {
        position: absolute;
        right: 0px;
        top: 10px;
        z-index: 20;
        width: 36px;
        height: 36px;
        text-align: center;
        cursor: pointer;
        border-radius: 50%;
    }

        .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
            background: #f8f9fa;
        }

        .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
            font-size: 12px;
            z-index: 20;
            content: "\f078";
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%) rotate(-180deg);
            -ms-transform: translate(-50%, -50%) rotate(-180deg);
            transform: translate(-50%, -50%) rotate(-180deg);
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease;
        }

        .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .site-mobile-menu .site-nav-wrap > li {
        display: block;
        position: relative;
        float: left;
        width: 100%;
    }

        .site-mobile-menu .site-nav-wrap > li > a {
            padding-left: 20px;
            font-size: 20px;
        }

        .site-mobile-menu .site-nav-wrap > li > ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

            .site-mobile-menu .site-nav-wrap > li > ul > li {
                display: block;
            }

                .site-mobile-menu .site-nav-wrap > li > ul > li > a {
                    padding-left: 40px;
                    font-size: 16px;
                }

                .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
                    padding: 0;
                    margin: 0;
                }

                    .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
                        display: block;
                    }

                        .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
                            font-size: 16px;
                            padding-left: 60px;
                        }

.sticky-wrapper {
    position: absolute;
    z-index: 100;
    width: 100%;
}

    .sticky-wrapper + .site-blocks-cover {
        margin-top: 96px;
    }

    .sticky-wrapper .site-navbar {
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease;
    }

        .sticky-wrapper .site-navbar ul li.active a {
            color: #fff;
        }

    .sticky-wrapper.is-sticky .site-navbar {
        background-color: #007bff;
    }

        .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li {
            display: inline-block;
            padding: 10px 5px;
        }

            .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li:last-child {
                padding-right: 0;
            }

                .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li:last-child > a {
                    padding-right: 0;
                }

            .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li.has-children > a {
                padding-right: 20px;
            }

            .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a {
                padding: 10px 10px;
                color: rgba(255, 255, 255, 0.6);
                font-size: 15px;
            }

                .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a:hover {
                    color: #fff !important;
                }

                .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a.active {
                    color: #fff !important;
                }

            .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li.active a {
                color: #fff;
            }

.socialust a {
    padding-left: 9px;
    color: #AFAFAF;
    font-size: 15px;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

.anaproje {
    padding-bottom: 50px;
}

    .anaproje h3 {
        font-size: 24px;
        font-weight: 300;
        color: #9A9A9A;
    }

    .anaproje h1 {
        font-size: 45px;
        font-weight: bold;
    }

.tumproje {
    border: 1px solid #2E367A;
    padding: 10px 25px;
    color: #2E367A;
    transition: 0.5s;
}

    .tumproje:hover {
        transition: 0.5s;
        margin-top: -5px;
        color: white;
        background: #2E367A;
    }

.projeler {
    position: relative;
}

    .projeler .projelericerik {
        transition: 0.4s ease-out;
        opacity: 0;
        background: rgb(46, 56, 121, 0.8);
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        transform: scaleY(0);
    }

    .projeler:hover .projelericerik {
        opacity: 1;
        transform-origin: 0 top 0;
        transform: scaleY(1);
    }

    .projeler .icerik {
        margin: 0;
        margin-top: 25%;
       
    }

        .projeler .icerik h3 {
            color: white;
            font-size: 24px;
            font-weight: 500;
        }

        .projeler .icerik p {
            color: white;
            font-size: 18px;
            font-weight: 400;
        }

        .projeler .icerik a {
            color: white;
            border: 1px solid white;
            padding: 5px 22px;
            position: absolute;
            right: 40%;
            transition: 0.5s;
        }

            .projeler .icerik a:hover {
                transition: 0.5s;
                transform: scale(1.1);
            }

.tanitim {
    background-size: cover;
    position: relative;
    padding: 150px 0px;
}

.golge {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
}

.tanitimicerik {
    z-index: 9;
    height: 100%;
}

    .tanitimicerik h3,
    .tanitimicerik p {
        color: white;
    }

    .tanitimicerik h3 {
        font-size: 45px;
        font-weight: 700;
    }

    .tanitimicerik p {
        font-size: 18px;
        margin-top: 30px;
    }

.film {
    background: rgb(46, 56, 121, 0.8);
    height: 40vh;
    padding: 30px;
}

    .film h3 {
        color: white;
        font-size: 36px;
    }

.tanitimicerik a {
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
}

.akaryakit {
    height: 80vh;
    position: relative;
}

    .akaryakit h3 {
        color: white;
        font-size: 45px;
        font-weight: bold;
    }

    .akaryakit p {
        color: white;
        font-size: 18px;
        margin: 0;
        top: 45%;
        left: 50%;
    }


.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}



    .video-play-button:hover:after {
        background-color: darken(#fa183d, 10%);
    }

    .video-play-button img {
        position: relative;
        z-index: 3;
        max-width: 100%;
        width: auto;
        height: auto;
    }

    .video-play-button span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 32px solid #fff;
        border-top: 22px solid transparent;
        border-bottom: 22px solid transparent;
    }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}



.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.80);
    opacity: 0;
    transition: all ease 500ms;
}

    .video-overlay.open {
        position: fixed;
        z-index: 1000;
        opacity: 1;
    }

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

    .video-overlay-close:hover {
        color: #fa183d;
    }

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
}









.video-play-button2 {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

    .video-play-button2:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 80px;
        height: 80px;
        background: #ba1f24;
        border-radius: 50%;
        animation: pulse-border2 1500ms ease-out infinite;
    }

    .video-play-button2:after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 80px;
        height: 80px;
        background: #fa183d;
        border-radius: 50%;
        transition: all 200ms;
    }

    .video-play-button2:hover:after {
        background-color: darken(#fa183d, 10%);
    }

    .video-play-button2 img {
        position: relative;
        z-index: 3;
        max-width: 100%;
        width: auto;
        height: auto;
    }

    .video-play-button2 span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 32px solid #fff;
        border-top: 22px solid transparent;
        border-bottom: 22px solid transparent;
    }

@keyframes pulse-border2 {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}



.video-overlay2 {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.80);
    opacity: 0;
    transition: all ease 500ms;
}

    .video-overlay2.open2 {
        position: fixed;
        z-index: 1000;
        opacity: 1;
    }

.video-overlay-close2 {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

    .video-overlay-close2:hover {
        color: #fa183d;
    }

.video-overlay2 iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
}



















footer {
    background: #2E367A;
    padding: 50px 0px 0px;
    margin-top: 100px;
}

    footer ul li {
        color: white;
        padding-bottom: 15px;
    }

    footer .social li {
        display: inline-block;
    }

        footer .social li a {
            padding: 15px;
        }



.effect {
    width: 100%;
    padding: 15px 0;
}

    .effect .buttons {
        display: flex;
    }

    .effect a {
        text-decoration: none !important;
        color: #fff;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        margin-right: 10px;
        font-size: 25px;
        overflow: hidden;
        position: relative;
        border: 1px solid #8086B6;
    }

        .effect a i {
            position: relative;
            z-index: 3;
        }


    .effect.egeon a {
        transition: transform 0.2s linear 0s, border-radius 0.2s linear 0.2s;
    }

        .effect.egeon a i {
            transition: transform 0.2s linear 0s;
            font-size: 13px;
        }

        .effect.egeon a:hover {
            transform: rotate(-90deg);
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
            border-bottom-left-radius: 50%;
        }

            .effect.egeon a:hover i {
                transform: rotate(90deg);
            }

@media only screen and (max-width: 1440px) {
    .video-play-button2 {
        top: 72%;
    }
}

@media only screen and (max-width: 800px) {
    .effect .buttons {
        justify-content: center;
        float: inherit;
    }

    .footerlogo {
        text-align: center;
    }
}





/* Search Overlay */

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform input[type=submit] {
    position: absolute;
    width: 100px;
    height: 100%;
    background-color: transparent;
    border: 0;
    right: 0;
    top: 0;
}

#mk-fullscreen-searchform:focus {
    outline: none;
    border: none;
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform .fullscreen-search-icon {
    font-size: 25px;
    position: absolute;
    right: 15px;
    width: 25px;
    top: 30px;
    color: #fff;
    color: rgba(255, 255, 255, .2);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.fullscreen-search-icon:hover,
.fullscreen-search-icon:focus {
    border: none;
    outline: none;
    color: #fff !important;
    -webkit-transition: transform ease-out .2s;
    -moz-transition: transform ease-out .2s;
    -ms-transition: transform ease-out .2s;
    -o-transition: transform ease-out .2s;
    transition: transform ease-out .2s;
    transform: rotate(180deg);
}

#mk-fullscreen-searchform {
    position: relative;
    verticle-align: middle;
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform #mk-fullscreen-search-input {
    width: 800px;
    background-color: transparent;
    -webkit-box-shadow: 0 3px 0 0 rgba(255, 255, 255, .1);
    -moz-box-shadow: 0 3px 0 0 rgba(255, 255, 255, .1);
    box-shadow: 0 3px 0 0 rgba(255, 255, 255, .1);
    border: 0;
    text-align: center;
    font-size: 35px;
    padding: 20px;
    color: #fff;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

    .mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform #mk-fullscreen-search-input:focus {
        boder: none;
        outline: none;
    }

.mk-fullscreen-search-overlay.mk-fullscreen-search-overlay-show {
    visibility: visible;
    opacity: 1;
}

.mk-fullscreen-search-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, .94);
    text-align: center;
    -webkit-transition: all ease-in-out .25s;
    -moz-transition: all ease-in-out .25s;
    -ms-transition: all ease-in-out .25s;
    -o-transition: all ease-in-out .25s;
    transition: all ease-in-out .25s;
}

.mk-animate-element,
.mk-effect-bg-layer,
.mk-fullscreen-search-overlay {
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.mk-fullscreen-search-overlay {
    z-index: 999;
}

    .mk-fullscreen-search-overlay .mk-fullscreen-close:link,
    .mk-fullscreen-search-overlay .mk-fullscreen-close:visited {
        color: #fff;
    }

    .mk-fullscreen-search-overlay .mk-fullscreen-close {
        position: absolute;
        right: 50px;
        top: 70px;
        font-size: 26px;
        -webkit-transition: transform ease-out .2s;
        -moz-transition: transform ease-out .2s;
        -ms-transition: transform ease-out .2s;
        -o-transition: transform ease-out .2s;
        transition: transform ease-out .2s;
        transform: rotate(0deg);
    }

    .mk-fullscreen-search-overlay.mk-fullscreen-search-overlay-show #mk-fullscreen-search-wrapper {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        ms-transform: scale(1);
    }

    .mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper {
        display: inline-block;
        max-width: 1000px;
        vertical-align: middle;
        text-align: center;
        font-size: 18px;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
        ms-transform: scale(0.9);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all ease-in-out .3s;
        -moz-transition: all ease-in-out .3s;
        -ms-transition: all ease-in-out .3s;
        -o-transition: all ease-in-out .3s;
        transition: all ease-in-out .3s;
    }

.mk-search-trigger {
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out
}

/* Search Button */


#search-button:hover,
.mk-fullscreen-close:hover {
    opacity: 0.6;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
}

#mk-fullscreen-search-input:focus {
    box-shadow: 0px 3px 0px 0px rgba(255, 255, 255, 0.54) !important;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    background-color: #1f1f1f;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 30px;
}

.sidebar_active {
    width: 450px;
}

.mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(1) {
    animation-delay: .5s;
}

.mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(2) {
    animation-delay: .7s;
}

.mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(3) {
    animation-delay: .9s;
}

.mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(4) {
    animation-delay: 1.1s;
}

.mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(5) {
    animation-delay: 1.2s;
}

.mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(6) {
    animation-delay: 1.3s;
}

.mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(7) {
    animation-delay: 1.4s;
}

.mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(8) {
    animation-delay: 1.5s;
}

#dismiss_mobil {
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 25px;
    color: #ffffff;
    cursor: pointer;
}

.accordion-menu {
    width: 100%;
    border-radius: 4px;
}

.mobil_dropdown_content .dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: transparent;
}

.dropdownlink {
    cursor: pointer;
    display: block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    padding: 5px;
}

    .dropdownlink i {
        position: absolute;
        top: 6px;
        left: 16px;
    }

    .dropdownlink .fa-chevron-down {
        right: 10px;
        left: auto;
    }

.submenuItems {
    display: none;
}

    .submenuItems a {
        display: block;
        color: #727272;
        padding: 12px 12px 12px 45px;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }

.mobil_dropdown_content {
    padding-top: 20px;
}

.submenuItems a:hover {
    color: #fff;
}

.sidenav_ul ul {
    margin-bottom: 0px;
}

    .sidenav_ul ul li {
        padding: 5px 5px;
    }

        .sidenav_ul ul li a {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            padding: 5px;
            white-space: nowrap
        }

            .sidenav_ul ul li a:hover {
                font-size: 18px;
                font-weight: 700;
                color: #ef7b02;
                padding: 5px;
                white-space: nowrap
            }


ul.submenuItems {
    margin-top: 15px;
}

.nav_mobil_bg .accordion-menu {
    background: transparent;
}

.sidenav_ul ul li .mobil_link {
    white-space: nowrap
}

.sidenav_ul ul li a::after {
    display: none;
}

.sidenav_ul .dropdown-menu {
    width: 100%;
    box-shadow: none;
    border: none;
}

.accordion-menu ul li {
    padding: 5px;
}

.mobil_social li {
    display: inline-block;
    padding: 5px !important;
    border-bottom: none !important;
}

.sidenav_ul ul li .mobil_link span {
    font-size: 18px;
    font-weight: 500;
    padding-left: 5px;
}

.overlay_mobil_bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: none;
    transition: all 0.5s ease-in-out;
    top: 0;
}

.overlay_mobil_bg_active {
    display: block;
    opacity: 1;
}

.wrapper-menu {
    width: 30px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
}

    .wrapper-menu.open {
        transform: rotate(-45deg);
    }

.line-menu {
    background-color: #ef7b02;
    border-radius: 5px;
    width: 100%;
    height: 4px;
}

    .line-menu.half {
        width: 50%;
    }

    .line-menu.start {
        transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
        transform-origin: right;
    }

.open .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
}

.line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}

.menubg .navbar.header .line-menu {
    background-color: #ef7b02;
    border-radius: 5px;
    width: 100%;
    height: 4px;
}

    .menubg .navbar.header .line-menu.half {
        width: 50%;
    }

    .menubg .navbar.header .line-menu.start {
        transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
        transform-origin: right;
    }

.menubg .navbar.header .open .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
}

.menubg .navbar.header .line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}

.mobil_menu .menu_lang {
    animation-delay: .5s;
    display: inline-block;
    margin-bottom: 0;
}

.mobil_social {
    animation-delay: 1.5s;
}

    .mobil_social li,
    .mobil_menu .menu_lang li {
        display: inline-block;
        padding: 5px;
    }

.navbar_mobil_bg {
    display: none;
}

#mobil_btn {
    display: none
}

@media(max-width:991px) {
    #mobil_btn {
        display: block;
    }

    .deskop_menu .navbar .navbar-brand img {
        max-height: 60px;
    }
}

@media(max-width:565px) {
    .sidebar_active {
        width: 50%;
    }

    .deskop_menu .navbar .navbar-brand img {
        max-height: 60px;
        position: absolute;
        left: 10px;
        top: 10px;
    }
}

.sticky {
    background: #2e387a;
    transition: 0.5s;
}

#logo {
    transition: 0.5s;
}

#logo2 {
    display: none;
    transition: 0.5s;
}







.ana-hakkimizda {
    padding: 100px 0px;
}

.ah-txt p {
    font-size: 22px;
}

.ah-txt .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #dd1d21;
}

.ah-card {
    margin-top: 50px;
}

    .ah-card ul {
        display: flex;
        padding: 0;
    }

        .ah-card ul li {
            border: 1px solid #ccc;
            margin-right: 25px;
            padding: 10px 25px;
        }

/* faaliyetler */

.ana-faaliyetler {
    padding: 100px 75px;
}

    .ana-faaliyetler .title {
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        color: #dd1d21;
        margin-bottom: 50px;
    }

.faal-zoom {
    overflow: hidden;
}

    .faal-zoom img {
        transition: 0.5s;
    }

    .faal-zoom:hover img {
        transform: scale(1.2);
    }

.faal-petrol {
    position: relative;
}

.faal-zoom::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(000, 000, 000, 0.5);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
}

.faal-zoom:hover::after {
    opacity: 1;
}

.faal-txt {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    border: 1px solid #f7f7f7;
    padding: 20px;
    display: none;
}

    .faal-txt p:first-child {
        font-size: 45px;
        font-weight: 600;
    }

.faal-zoom:hover .faal-txt {
    display: block;
}

/* Haberler */

.haberler-banner .banner {
    background-image: url(../images/img/haber-banner.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

.haberler-banner {
    position: relative;
}

    .haberler-banner .banner::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(000, 000, 000, 0.5);
    }

.haberler {
    padding: 100px 75px;
}

    .haberler .title {
        font-size: 20px;
        color: #dd1d21;
        font-weight: 600;
    }

    .haberler p:first-child {
        font-weight: 600;
    }

.haberpad {
    padding: 50px 0;
}

.buttonfx {
    color: black;
    /* button text color */
    outline: none;
    background: transparent;
    border: none;
    border-bottom: 4px solid #eee;
    letter-spacing: 0.0625em;
    padding: 8px 10px;
    line-height: 2;
    position: relative;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    text-decoration: none;
    /* remove underline if using A instead of BUTTON tag */
    overflow: hidden;
    transition: all 0.5s;
}

    /* //// Default effect: Slide from Top  //// */

    .buttonfx:before,
    .buttonfx:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        background: #dd1d21;
        z-index: -1;
        transform: translate3D(0, -100%, 0);
        /* move elements above button so they don't appear initially */
        transition: all 0.5s;
    }

    .buttonfx:before {
        background: #fafcd6;
        /* button default background color */
        z-index: -2;
        transform: translate3D(0, 0, 0);
    }

    .buttonfx:hover {
        color: white;
    }

        .buttonfx:hover:after {
            transform: translate3D(0, 0, 0);
            transition: all 0.5s;
        }

/* //// Double Take  //// */

.doubletake:before,
.doubletake:after {
    width: 200%;
    background: #dd1d21;
    transform-origin: 0 bottom;
    transform: translate3D(-50%, 0, 0) rotate(-50deg);
}

.doubletake:before {
    opacity: 0.4;
}

.doubletake:hover:before,
.doubletake:hover:after {
    transform: rotate(0deg);
    transition: all 0.25s;
}

.doubletake:hover:after {
    transition-delay: 0.25s;
}

.hbr-btn {
    text-align: right;
    margin-top: 30px;
}

.haber-txt p a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

    .haber-txt p a:hover {
        color: #dd1d21;
    }

/* Kariyer */

.ana-kariyer {
    background-color: black;
    padding: 50px 75px;
    color: #fff;
}

.anakariyer-txt p {
    font-size: 24px;
}

.anakariyer-txt .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #dd1d21;
}

.anakariyer-txt .buttonfx {
    color: #fff;
    z-index: 2;
}

.hr {
    width: 100%;
    background: #636BB3;
    height: 3px;
}
/* Footer */

.footer {
    background-color: black;
    padding: 10px 75px;
    color: #ccc;
    font-size: 15px;
    background-image: url(../images/img/footerbg.jpg);
    background-position: right;
    background-repeat: no-repeat;
}

    .footer ol,
    ul {
        padding: 0;
    }

.footer-kurumsal .title {
    color: #fdd204;
    margin-bottom: 15px;
}

.footer-kurumsal .fbtn {
    text-decoration: none;
    color: #ccc;
    transition: 0.5s;
}

    .footer-kurumsal .fbtn:hover {
        padding-left: 5px;
    }

.footer-adres .title {
    color: #fdd204;
    margin-bottom: 15px;
}

.footer-sosyal {
    padding: 30px 0px;
}

    .footer-sosyal ul {
        display: flex;
    }

        .footer-sosyal ul li {
            margin: 5px;
        }

            .footer-sosyal ul li a {
                color: #fdd204;
                background: #dd1d21;
                padding: 10px;
            }

                .footer-sosyal ul li a:hover {
                    color: #fff;
                    background: #dd1d21;
                    padding: 10px;
                }

            .footer-sosyal ul li i {
                font-size: 20px;
                width: 20px;
                text-align: center;
            }

.footer hr {
    margin-bottom: 50px;
}

/* //////// PETROL //////// */

.petrol-page {
    position: relative;
}

    .petrol-page .banner {
        background-image: url(../images/img/600.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 400px;
    }

        .petrol-page .banner::after {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(000, 000, 000, 0.5);
        }

        .petrol-page .banner .banner-txt {
            margin: 0;
            position: absolute;
            top: 60%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            z-index: 2;
        }

            .petrol-page .banner .banner-txt p {
                font-size: 18px;
                font-weight: 200;
                font-style: italic;
                color: #bfbfbf;
            }

.sticky {
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
}

    .sticky + .content {
        padding-top: 60px;
    }


.main {
    transition: all 0.3s;
    z-index: 9;
    position: relative;
}

.sidemain {
    position: absolute;
    right: 30px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}

.petrol-nav .bg-light {
    width: 94%;
}

.drotate {
    margin-top: 85px;
    margin-bottom: 85px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.sbuild {
    margin-top: 30px;
    position: relative;
}

.sbuild-txt {
    position: absolute;
    top: 36%;
    font-size: 24px;
    font-weight: 200;
    padding-bottom: 10px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.sidenav a {
    color: #fff;
}

.sidenav .deactive img {
    filter: grayscale(100%);
}

.sidenav img {
    width: 90%;
}

.spetrol::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    background-color: #dd1d21;
    opacity: 0;
    transition: all 0.5s;
}

.spetrol:hover::after {
    opacity: 1;
}

.spetrol:hover .sbuild-txt {
    z-index: 3;
}

.sbuild::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    background-color: #dd1d21;
    opacity: 0;
    transition: all 0.5s;
}

.sbuild:hover::after {
    opacity: 1;
}

.sbuild:hover .sbuild-txt {
    z-index: 3;
}

.carousel-item img {
    object-fit: cover;
}

.main_active {
    transform: translateX(-10px);
    height: 100%;
}

.sidenav_active {
    width: 130px;
    padding-left: 10px;
}

.spetrol {
    position: relative;
}

.page-content .nav {
    background-color: #e3e3e3;
    padding: 30px 75px;
    position: sticky;
}

    .page-content .nav a {
        color: #333;
        font-size: 14px;
        font-weight: 600;
    }

.petrol-hak {
    padding: 100px 75px;
}

.page-content .nav-item {
    margin-right: 30px;
}

.nav-link {
    padding: 0;
}

.petrol-hak-txt .title {
    font-size: 20px;
    color: #dd1d21;
    margin-bottom: 30px;
    font-weight: 600;
}

.phead {
    font-size: 24px;
}

.petrol-hak-txt p:first-child {
    font-size: 24px;
}

.petrol-li {
    padding-top: 20px;
}

    .petrol-li ul {
        display: flex;
    }

    .petrol-li .txt {
        border-left: 1px solid gray;
        padding-left: 25px;
        font-weight: 200;
        margin-right: 25px;
        font-size: 20px;
    }

.projelokasyon {
    padding: 100px 0;
}

.proje-iletisim {
    padding: 100px 0 !important;
}

.istasyonlar {
    margin: 100px 75px;
    padding: 25px;
    background-image: url(../images/img/istbbg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .istasyonlar .title {
        font-size: 20px;
        color: black;
        margin-bottom: 30px;
        font-weight: 600;
    }

.ist-adres {
    font-size: 16px;
}

.ist-title {
    font-weight: 600;
    font-size: 16px;
    padding: 25px 0px;
}

.effect-one > a {
    position: relative;
}

    .effect-one > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: 0;
        margin: -5px 0;
        background-color: #333;
        visibility: hidden;
        transform: scaleX(0);
        transition: all 0.3s ease-in-out 0s;
    }

    .effect-one > a:hover:before {
        visibility: visible;
        transform: scaleX(1);
    }

.haberler {
    padding: 50px 75px;
}

    .haberler .title {
        font-size: 20px;
        color: #dd1d21;
        margin-bottom: 50px;
        font-weight: 600;
    }

.page-haber-txt a {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: black;
}

    .page-haber-txt a:hover {
        color: #dd1d21;
    }

.page-haber-txt {
    height: 100%;
    transition: 0.5s;
}

    .page-haber-txt:hover {
        transition: 0.5s;
        transform: scale(0.9);
    }

    .page-haber-txt h3 {
        font-size: 23px;
        font-weight: 700;
        color: #ef7f1a;
        padding: 15px 15px 0px;
    }

    .page-haber-txt p {
        padding: 0px 15px;
    }

/* //// KURUMSAL //// */

.kurumsal-page .banner {
    background-image: url(../images/img/kurumsalbanner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

.kurumsal-page {
    position: relative;
}

    .kurumsal-page .banner::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(000, 000, 000, 0.5);
    }

.kurumsal-main {
    margin: 0 75px;
}

.page-txt .title {
    font-size: 20px;
    color: #dd1d21;
    margin-bottom: 50px;
    font-weight: 600;
}

.page-txt ul li {
    font-size: 16px;
}

.kurumsal-txt .title {
    font-size: 20px;
    color: #dd1d21;
    margin-bottom: 50px;
    font-weight: 600;
}

.page-kurumsal {
    padding: 50px 0;
}

.insaat {
    padding: 100px 0;
}

.nakliye {
    padding: 100px 0;
}

.madencilik {
    padding: 100px 0;
}

.madencilik-txt .title {
    font-size: 20px;
    color: #dd1d21;
    margin-bottom: 50px;
    font-weight: 600;
}

.nakliye-txt .title {
    font-size: 20px;
    color: #dd1d21;
    margin-bottom: 50px;
    font-weight: 600;
}

.sektor-txt .title {
    font-size: 20px;
    color: #dd1d21;
    margin-bottom: 50px;
    font-weight: 600;
}

.ozelsektor {
    margin: 200px 0;
}

.sektor-btn {
    padding-top: 30px;
    font-size: 18px;
}

/* //// İNŞAAT //// */

.build-page .banner {
    background-image: url(../images/img/i600.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

    .build-page .banner::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(000, 000, 000, 0.5);
    }

    .build-page .banner .banner-txt {
        margin: 0;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        z-index: 2;
    }

        .build-page .banner .banner-txt p {
            font-size: 18px;
            font-weight: 200;
            font-style: italic;
            color: #bfbfbf;
        }

.projeler-page .banner {
    background-image: url(../images/img/projebanner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

.projeler-detay-page .banner {
    background-image: url(../images/img/detaybanner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    position: relative;
}

    .projeler-detay-page .banner .banner-txt {
        margin: 0;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 44px;
        color: #fff;
        font-weight: 600;
        text-align: center;
    }

        .projeler-detay-page .banner .banner-txt p {
            font-size: 24px;
            font-family: "Inter", sans-serif;
            font-weight: 200;
        }

.p-detay {
    padding: 100px 0;
}

.proje {
    padding: 100px 75px;
}

.projed {
    padding: 0px 75px;
}

    .projed .title {
        font-size: 24px;
        color: #dd1d21;
        margin-bottom: 20px;
        font-weight: 600;
    }

.projeimg {
    position: relative;
    font-size: 24px;
}
.projeimg2 {
    position: relative;
    font-size: 24px;
}
.projeimg2::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.projeimg::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(000, 000, 000, 0.3);
    transition: 0.5s;
}
.proje-ismi2 {
    margin: 0;
    position: absolute;
    width: 100%;
    bottom: 0%;
    color: #fff;
    z-index: 1;
    color: black;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

    .projeimg:hover::after {
        background-color: rgba(000, 000, 000, 0.5);
    }

.proje-ismi {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    border: 1px solid rgb(153, 153, 153);
    padding: 25px;
}

.proje .title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #dd1d21;
}

.proje .heads {
    font-size: 24px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.kat-planlari {
    padding: 100px 0px;
}

    .kat-planlari img {
        border: 1px solid #ebe9e9;
    }

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.proje-gorsel {
    padding: 100px 0;
}

.prozelllikleri .title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #dd1d21;
}

.prozelllikleri ul li {
    font-size: 18px;
    margin-bottom: 10px;
    list-style-type: circle;
    margin-left: 20px;
}

.proje-btn {
    margin-top: 50px;
    font-size: 18px;
}

/* ARROW */

.chevron {
    position: absolute;
    width: 2.1rem;
    height: 0.48rem;
    opacity: 0;
    transform: scale(0.3);
    -webkit-animation: move-chevron 3s ease-out infinite;
    animation: move-chevron 3s ease-out infinite;
}

    .chevron:first-child {
        -webkit-animation: move-chevron 3s ease-out 1s infinite;
        animation: move-chevron 3s ease-out 1s infinite;
    }

    .chevron:nth-child(2) {
        -webkit-animation: move-chevron 3s ease-out 2s infinite;
        animation: move-chevron 3s ease-out 2s infinite;
    }

    .chevron:before,
    .chevron:after {
        content: "";
        position: absolute;
        top: 0;
        height: 100%;
        width: 50%;
        background: #fdd204;
    }

    .chevron:before {
        left: 0;
        transform: skewY(30deg);
    }

    .chevron:after {
        right: 0;
        width: 50%;
        transform: skewY(-30deg);
    }

@-webkit-keyframes move-chevron {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }

    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }

    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }

    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }

    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}

.page-arrow {
    position: absolute;
    top: 75%;
    z-index: 3;
    left: 49%;
}

/* //// İLETİŞİM //// */

.iletisim-banner .banner {
    background-image: url(../images/img/iletisim-banner.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

.iletisim {
    padding: 50px 75px;
}

    .iletisim .form-control {
        display: block;
        width: 100%;
        padding: 0.675rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        background-color: #efefef;
        background-clip: padding-box;
        border: 1px solid #efefef;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    color: #212529;
    background-color: #efefef;
    border-color: #efefef;
    outline: 0;
    box-shadow: none;
}

.adrespan {
    margin-top: 15px;
}

.adres .title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.adres ul li span {
    font-size: 14px;
    font-weight: 200;
}

.adres ul li {
    padding: 8px 0;
}

    .adres ul li i {
        color: rgb(187, 187, 187);
        padding-right: 5px;
    }

.i-form .title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

/* loader */

.loader {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 0;
    height: 100vh;
    transition: width 0s 1.4s ease;
}

    .loader .loader__icon {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

        .loader .loader__icon svg {
            transform-origin: 0 0;
        }

    .loader .loader__tile {
        position: absolute;
        left: 0;
        width: 0;
        height: 20%;
        background-color: #dd1d21;
        transition: width 0.7s ease;
    }

        .loader .loader__tile:nth-child(0) {
            top: calc(-1 * 20%);
            transition-delay: -0.2s;
        }

        .loader .loader__tile:nth-child(1) {
            top: calc(0 * 20%);
            transition-delay: 0s;
        }

        .loader .loader__tile:nth-child(2) {
            top: calc(1 * 20%);
            transition-delay: 0.2s;
        }

        .loader .loader__tile:nth-child(3) {
            top: calc(2 * 20%);
            transition-delay: 0.4s;
        }

        .loader .loader__tile:nth-child(4) {
            top: calc(3 * 20%);
            transition-delay: 0.6s;
        }

        .loader .loader__tile:nth-child(5) {
            top: calc(4 * 20%);
            transition-delay: 0.8s;
        }

.loader--active {
    width: 100%;
    transition-delay: 0s;
}

    .loader--active .loader__icon {
        opacity: 1;
        transition: opacity 0.5s 1.4s ease;
    }

    .loader--active .loader__tile {
        width: 100%;
    }

        .loader--active .loader__tile:nth-child(0) {
            transition-delay: -0.2s;
        }

        .loader--active .loader__tile:nth-child(1) {
            transition-delay: 0s;
        }

        .loader--active .loader__tile:nth-child(2) {
            transition-delay: 0.2s;
        }

        .loader--active .loader__tile:nth-child(3) {
            transition-delay: 0.4s;
        }

        .loader--active .loader__tile:nth-child(4) {
            transition-delay: 0.6s;
        }

        .loader--active .loader__tile:nth-child(5) {
            transition-delay: 0.8s;
        }

.open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-color: pink;
    z-index: 12;
    transform-origin: bottom;
    animation: open 6s ease-in-out forwards;
    font-family: "Libre Baskerville", serif;
}

.open2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 999;
}

.open .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .open .layer:nth-child(1) {
        background-color: #dd1d21;
        z-index: 11;
        transform-origin: left;
        animation: fadeOut 6s ease-in-out forwards;
    }

.ozan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

    .ozan .ozan_bg {
        overflow: hidden;
        animation: fadeOut 6s ease-in-out forwards;
    }

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.ozan_bg span {
    transform: translateY(70%);
    display: inline-block;
    animation: timeIn 1s ease-in-out forwards;
}

@keyframes timeIn {
    from {
        transform: translateY(70%);
    }

    to {
        transform: translateY(0%);
    }
}

.ozan span {
    font-size: 12.5rem;
    color: #fdd204;
}

@keyframes open {
    0% {
        transform: translateY(0%);
    }

    25% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(0%);
    }

    75% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(100%);
    }
}

.copyright {
    border-top: 1px solid #636BB3;
}

footer ul li a {
    color: white;
}

    footer ul li a:hover {
        color: white;
    }

.iletisim-banner .banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

.iletisim {
    padding: 50px 75px;
}

.iletisimbg {
    border: 1px solid #e9e9e9;
    margin-bottom: 30px;
}

.iletisim .i-adres {
    height: 100%;
    padding: 20px;
    background: #f7f7f7;
}


.iletisimbg-ust {
    border: 1px solid #c5c5c5;
    margin-bottom: 30px;
    background-color: #e6e6e6;
}

.iletisim .i-adres-ust {
    height: 100%;
    padding: 20px;
    background: #e6e6e6;
}

.i-adres-ust ul li {
    padding: 10px 0px;
    border-bottom: 1px solid #e2e2e2;
    max-width: 650px;
}

.i-adres ul li {
    padding: 10px 0px;
    border-bottom: 1px solid #e2e2e2;
    max-width: 600px;
}

.iletisimbg ul li span {
    font-weight: 600;
    color: #dd1d21;
}

.iletisimbg-ust ul li span {
    font-weight: 600;
    color: #dd1d21;
}

.iletisim .imaps {
    padding: 25px;
}

.iletisim .form-control {
    display: block;
    width: 100%;
    padding: 0.675rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #efefef;
    background-clip: padding-box;
    border: 1px solid #efefef;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    color: #212529;
    background-color: #efefef;
    border-color: #efefef;
    outline: 0;
    box-shadow: none;
}

.adrespan {
    margin-top: 15px;
}

.adres .title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.adres ul li span {
    font-size: 14px;
    font-weight: 200;
}

.adres ul li {
    padding: 8px 0;
}

    .adres ul li i {
        color: rgb(187, 187, 187);
        padding-right: 5px;
    }

.i-form .title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.linkbtn {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
}

    .linkbtn i {
        font-size: 45px;
    }

    .linkbtn a {
        color: #f7f7f7;
        font-size: 18px;
    }

.video i {
    background: white;
    /* padding: 30px; */
    width: 70px;
    margin-top: 60px;
    position: relative;
    z-index: 999;
    border-radius: 50%;
    height: 70px;
    font-size: 28px;
    line-height: 2.5;
    text-align: center;
    color: black;
}

.video {
    position: relative;
}

    .video:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 6px;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 80px;
        height: 80px;
        background: #ffffff;
        border-radius: 50%;
        animation: pulse-border 1500ms ease-out infinite;
    }

    .video2 i {
        background: white;
        /* padding: 30px; */
        width: 70px;
        margin-top: 60px;
        position: relative;
        z-index: 999;
        border-radius: 50%;
        height: 70px;
        font-size: 28px;
        line-height: 2.5;
        text-align: center;
        color: black;
    }

.video2 {
    position: relative;
}

    .video2:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 47px;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 80px;
        height: 80px;
        background: #ffffff;
        border-radius: 50%;
        animation: pulse-border 1500ms ease-out infinite;
    }