@font-face {
    font-family: 'Gotham-Black';
    src: url(../fonts/Gotham-Black.otf);
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Bold';
    src: url(../fonts/Gotham-Bold.otf);
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Book';
    src: url(../fonts/Gotham-Book.otf);
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url(../fonts/Gotham-Medium.otf);
    font-style: normal;
}

@font-face {
    font-family: 'Mont-Light';
    src: url(../fonts/Mont-Light.otf);
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro-Regular';
    src: url(../fonts/MyriadPro-Regular.otf);
    font-style: normal;
}


/*:root {
    --color-white: #ffffff;
    --color-red: #d21113;
    --color-gray9b: #9b9b9b;
    --color-gray58: #585858;
    --color-gray8f: #8f8f8f;
}*/

body {
    padding: 0;
    margin: 0;
    position: relative;
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

i {
    font-family: fontawesome;
    font-style: normal;
}

p {
    margin-bottom: 0;
}


.navbar-brand img {
    height: 80px;
}

.navbar-collapse {
    flex-grow: inherit;
}

.navfixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: #02273fc2;
    transition: background-color .3s ease, box-shadow .3s ease;
}

    .navfixed.is-sticky {
        position: fixed;
        background-color: #02273f;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        z-index: 9999;
    }

body.navfixed-has-offset main {
    padding-top: var(--navfixed-offset, 0);
}


.nav-link {
    color: rgb(255 255 255 / 65%);
    font-family: 'Gotham-Black', sans-serif;
}


    .nav-link a {
        font-family: 'Gotham-Black', sans-serif;
    }

    .nav-link:focus, .nav-link:hover {
        color: rgb(28 116 188);
    }

.carousel-caption {
    position: absolute;
    right: 0;
    top: 40%;
    left: 60%;
    padding-top: initial;
    padding-bottom: initial;
    color: #fff;
    text-align: left;
    width: 30%;
}

.language-btn .language-code,
.dropdown-menu .language-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #02273f;
    font-family: 'Gotham-Bold', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.dropdown-menu .language-code {
    background-color: rgba(2, 39, 63, 0.1);
    margin-right: 0.25rem;
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #ffffff;
}

.navbar-nav {
    gap: 50px;
}

    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
        color: #fff;
    }

.slider {
}

    .slider .carousel-caption {
        color: #fff;
    }

        .slider .carousel-caption h5 {
            font-size: 45px;
            font-family: 'Gotham-Bold', sans-serif;
        }

        .slider .carousel-caption p {
            font-size: 18px;
            font-family: 'Gotham-Medium', sans-serif;
        }




.video {
    padding: 50px 0 50px 0;
}

.trade-service {
    padding: 90px 0;
    background: #ffffff;
}

    .trade-service .trade-service-intro {
        position: relative;
        max-width: 480px;
        padding-top: 18px;
    }

        .trade-service .trade-service-intro::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 72px;
            height: 4px;
            background: linear-gradient(90deg, #1c75bc, #02273f);
            border-radius: 2px;
        }

        .trade-service .trade-service-intro h2 {
            font-family: 'Gotham-Bold', sans-serif;
            font-size: 40px;
            color: #02273f;
            margin-bottom: 24px;
        }

        .trade-service .trade-service-intro p {
            font-family: 'Gotham-Book', sans-serif;
            font-size: 18px;
            color: #4c5a67;
            line-height: 1.7;
            margin-bottom: 18px;
        }

    .trade-service .trade-service-grid {
        margin-top: 0;
    }

    .trade-service .trade-service-card {
        background: #f5f8fb;
        border: 1px solid rgba(2, 39, 63, 0.08);
        border-radius: 16px;
        padding: 28px 26px;
        display: flex;
        gap: 18px;
        height: 100%;
        transition: box-shadow .3s ease, transform .3s ease, background-color .3s ease;
    }

        .trade-service .trade-service-card:hover {
            background: #ffffff;
            box-shadow: 0 18px 44px rgba(2, 39, 63, 0.15);
            transform: translateY(-6px);
        }

        .trade-service .trade-service-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: #1c75bc;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

            .trade-service .trade-service-card-icon i {
                font-size: 26px;
                color: #ffffff;
            }

        .trade-service .trade-service-card-content h3 {
            font-family: 'Gotham-Bold', sans-serif;
            font-size: 22px;
            color: #02273f;
            margin-bottom: 14px;
        }

        .trade-service .trade-service-card-content ul {
            margin: 0;
            padding-left: 1.1rem;
            color: #445260;
            font-family: 'Gotham-Book', sans-serif;
            font-size: 16px;
            line-height: 1.65;
        }

            .trade-service .trade-service-card-content ul li {
                list-style: disc;
                margin-bottom: 10px;
            }

    @media (max-width: 1199.98px) {
        .trade-service .trade-service-intro h2 {
            font-size: 36px;
        }
    }

    @media (max-width: 991.98px) {
        .trade-service {
            padding: 70px 0;
        }

            .trade-service .trade-service-intro {
                max-width: 100%;
            }

            .trade-service .trade-service-card {
                padding: 24px;
            }
    }

    @media (max-width: 767.98px) {
        .trade-service .trade-service-intro h2 {
            font-size: 32px;
        }

        .trade-service .trade-service-card {
            flex-direction: column;
            align-items: flex-start;
        }

            .trade-service .trade-service-card-icon {
                width: 52px;
                height: 52px;
            }
    }

    @media (max-width: 575.98px) {
        .trade-service {
            padding: 55px 0;
        }

            .trade-service .trade-service-intro h2 {
                font-size: 28px;
            }

            .trade-service .trade-service-intro p {
                font-size: 16px;
            }

            .trade-service .trade-service-card {
                padding: 22px;
            }
    }

.about {
    width: 100%;
    display: flex;
}

    .about .about-img {
        position: relative;
        width: 57.5%;
    }

        .about .about-img img {
            width: 100%;
            z-index: 2;
        }

    .about .about-text-content {
        position: relative;
        width: 42.5%;
    }

.vizyon {
    width: 100%;
    display: flex;
}

    .vizyon .vizyon-text-content {
        position: relative;
        width: 42.5%;
    }

    .vizyon .vizyon-img img {
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .vizyon .vizyon-img {
        position: relative;
        width: 57.5%;
    }

.gray-box {
    top: 100px;
    position: absolute;
    height: calc(100% - 200px);
    background-color: #e9e9e9;
    width: 100%;
    z-index: -1;
}


.dd-text {
    max-width: 500px;
    padding: 40px;
}

    .dd-text h2 {
        margin-top: 40px;
        font-size: 50px;
        color: #1c75bc;
        margin-bottom: 20px;
        font-family: 'Gotham-Book', sans-serif;
    }

    .dd-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #333;
        font-family: 'Gotham-Book', sans-serif;
    }

    .dd-text .btn {
        background: #1c75bc;
        color: #fff;
        padding: 10px 25px;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        font-size: 16px;
        transition: 0.3s;
    }

        .dd-text .btn:hover {
            background: #1a4f8a;
        }

.ourvalues {
    min-width: 100%;
    padding: 150px 0 200px 0;
    position: relative;
    background-image: url(../images/degerlerimiz.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    margin-top: -100px;
}

    .ourvalues h6 {
        margin-bottom: 50px;
        color: #1c75bc;
        font-size: 45px;
    }

    .ourvalues .box {
        justify-self: center;
        margin-bottom: 40px;
        text-align: center;
    }

        .ourvalues .box img {
            height: 130px;
        }

        .ourvalues .box .tt {
            margin-top: 15px;
            color: #1c75bc;
            font-size: 23px;
            font-family: 'Gotham-Medium', sans-serif;
        }


.maps {
    min-width: 100%;
    height: 1000px;
    position: relative;
    background-image: url(../images/konum.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    color: #1c75bc;
    font-family: 'Gotham-Book', sans-serif;
}

    .maps .line {
        line-height: 100px;
    }


    .maps .minute {
        font-size: 140px;
    }

    .maps .text1 {
        font-size: 80px;
    }

    .maps .text2 {
        font-size: 65px;
    }

.location {
    min-width: 100%;
    padding: 150px 0 200px 0;
    position: relative;
    background-image: url(../images/mukemmel.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

    .location .btn {
        background: #fff;
        color: #1c75bc;
        padding: 10px 25px;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        font-size: 16px;
        transition: 0.3s;
        margin-top: 100px;
        margin-left: 30px;
    }

    .location h6 {
        margin-left: 30px;
        color: #fff;
        font-family: 'Gotham-Book', sans-serif;
        font-size: 60px;
        margin-top: 25%;
    }

    .location .box {
        justify-self: center;
        margin-bottom: 40px;
        text-align: center;
    }

        .location .box img {
        }

        .location .box .location-title {
            font-size: 22px;
            color: #fff;
            width: 100%;
            min-height: 80px;
            margin-top: 5px;
        }

        .location .box .location-km {
            color: #fff;
            font-size: 22px;
        }

.facility {
    min-width: 100%;
    padding: 150px 0 200px 0;
    position: relative;
    background-image: url(../images/tesis.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    color: #fff;
    margin-top: -50px;
}

    .facility .text1 {
        font-size: 60px;
        font-family: 'Gotham-Book', sans-serif;
        margin-left: 30px;
    }

    .facility .text2 {
        font-size: 90px;
        font-family: 'Gotham-Bold', sans-serif;
        margin-left: 30px;
    }

    .facility .p1 {
        font-size: 20px;
        font-family: 'Gotham-Book', sans-serif;
        margin-left: 30px;
    }


    .facility .box {
        position: relative;
        margin-top: 50px;
    }

        .facility .box .seperator::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 45px;
            height: 4px;
            background-color: #fff;
        }

    .facility .text3 {
        margin-top: 10px;
        font-size: 40px;
        font-family: 'Gotham-Book', sans-serif;
    }

    .facility .text4 {
        font-size: 25px;
        font-family: 'Gotham-Bold', sans-serif;
    }

.service {
    min-width: 100%;
    padding: 150px 0 200px 0;
    position: relative;
    background-image: url(../images/hizmetlerimiz.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    z-index: 9;
    margin-top: -150px;
    color: #1c75bc;
}

    .service .service-title {
        font-size: 50px;
    }

    .service .service-text {
        font-size: 30px;
    }

    .service .p1 {
        font-size: 20px;
    }

    .service .sponsors-slide2 {
        margin-top: 30px;
    }

        .service .sponsors-slide2 .box {
            padding: 30px;
            background-color: #1c75bc33;
        }

            .service .sponsors-slide2 .box .service-link {
                display: block;
                color: inherit;
                text-decoration: none;
            }

                .service .sponsors-slide2 .box .service-link img {
                    width: 100%;
                    height: auto;
                    display: block;
                    margin-bottom: 20px;
                }

                .service .sponsors-slide2 .box .service-link h4 {
                    font-size: 24px;
                    margin-bottom: 0;
                }

            .service .sponsors-slide2 .box h4 {
            }

            .service .sponsors-slide2 .box .p2 {
                color: #858586;
            }

            .service .sponsors-slide2 .box .btnslar {
                border-radius: 15px;
                background-color: #7e8387;
                width: 150px;
                text-align: center;
                margin-top: 20px;
                padding: 5px 0;
                color: #fff;
            }


.gallery {
    background-color: #1d75bd;
    min-width: 100%;
    padding: 150px 0 200px 0;
    position: relative;
    background-image: url(../images/galeri.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.service-detail {
    padding: 180px 0 120px 0;
    background-color: #f5f7fb;
}

    .service-detail .container {
        max-width: 1100px;
    }

    .service-detail .service-detail-header {
        text-align: center;
        margin-bottom: 60px;
        color: #1c75bc;
    }

        .service-detail .service-detail-section-title {
            font-size: 20px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #7e8387;
        }

        .service-detail .service-detail-title {
            font-size: 48px;
            font-family: 'Gotham-Bold', sans-serif;
        }

    .service-detail .service-detail-image {
        margin: 0 auto 40px auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(18, 38, 63, 0.12);
    }

        .service-detail .service-detail-image img {
            width: 100%;
            height: auto;
            display: block;
        }

    .service-detail .service-detail-content {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
    }

        .service-detail .service-detail-content img {
            max-width: 100%;
            height: auto;
        }

        .service-detail .service-detail-content p {
            margin-bottom: 1.5rem;
        }

    .service-detail .service-detail-back {
        margin-top: 60px;
        text-align: center;
    }

    .gallery .owl-carousel .item {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 10px;
    }

    .gallery .owl-carousel .gallery-link {
        display: block;
        width: 100%;
        max-width: 400px;
    }

    .gallery .owl-carousel .gallery-image-wrapper {
        width: 100%;
        max-width: 400px;
        aspect-ratio: 2 / 1;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .gallery .owl-carousel .gallery-image-wrapper .gallery-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@supports not (aspect-ratio: 2 / 1) {
    .gallery .owl-carousel .gallery-image-wrapper {
        position: relative;
        padding-top: 50%;
        height: 0;
    }

    .gallery .owl-carousel .gallery-image-wrapper .gallery-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

    .gallery .gallery-title {
        font-size: 50px;
        font-family: 'Gotham-Book', sans-serif;
        color: #fff;
        margin-bottom: 30px;
    }

.offer {
    padding: 50px;
    background-color: #1d75bd;
    color: #fff;
}

    .offer .offet-title {
        font-size: 50px;
        font-family: 'Gotham-Book', sans-serif;
    }

    .offer .offet-text {
        font-size: 20px;
        font-family: 'Gotham-Book', sans-serif;
    }

    .offer input {
        height: 50px;
        background-color: #bae0ff;
        color: #fff;
    }

    .offer textarea {
        background-color: #bae0ff;
        color: #fff;
    }

    .offer .btn {
        background: #fff;
        color: #1c75bc;
        padding: 10px 25px;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        font-size: 16px;
        transition: 0.3s;
        margin-top: 100px;
        width: 100%;
    }


footer {
    padding: 50px;
    background-color: #000;
    color: #fff;
}

    footer .logo {
        width: 60%
    }

    footer h6 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    footer p {
        font-size: 15px;
        font-family: 'Gotham-Medium', sans-serif;
        color: #737373;
    }

    footer ol li {
        list-style-type: square;
        color: #fff;
    }

        footer ol li a {
            color: #737373;
        }

    footer .mapbox {
        color: #737373;
    }

        footer .mapbox a {
            color: #fff !important;
            display: flex;
            margin-top: 10px;
            gap: 10px;
            color: #737373;
        }


            footer .mapbox a div {
                color: #737373;
            }


.owl-nav {
    display: block !important;
}

.owl-prev {
    position: absolute;
    top: calc(50% - 25px);
    left: -5%;
}

.owl-next {
    position: absolute;
    top: calc(50% - 25px);
    right: -5%;
}



@media (min-width: 768px) {
}


@media (max-width: 992px) {
    .navbar-collapse {
        left: 0;
        position: fixed;
        width: 100%;
        top: 80px;
        z-index: 99;
        background-color: #022b46;
        padding: 20px;
    }
    .facility .box {
        position: relative;
        margin-top: 50px;
        margin-left: 31px;
    }
    footer ol {
        padding-left: 1rem;
    }

    .navbar-nav {
        gap: 10px;
    }

    .slider .carousel-caption h5 {
        font-size: 20px;
    }

    .carousel-caption {
        top: 30px;
        left: 10px;
        width: calc(100% - 10px);
    }

    .slider .carousel-caption p {
        font-size: 14px;
        font-family: 'Gotham-Medium', sans-serif;
    }

    .navfixed {
        position: initial;
        background-color: #02273f;
    }

    .navbar-brand img {
        height: 60px;
    }

    .navbar-toggler {
        border-width: 1px;
        border-style: solid;
        border-color: rgb(255, 255, 255);
        border-image: initial;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    .video {
        padding: 0;
    }

        .video iframe {
            background-color: #fff;
            padding: 25px !important;
            height: 215px;
        }

    .about {
        display: grid;
    }

        .about .about-img {
            position: relative;
            width: 100%;
        }

        .about .about-text-content {
            position: relative;
            width: 100%;
        }

    .gray-box {
        position: relative;
        top: 0;
        height: 100%;
    }

    .vizyon {
        display: grid;
    }

        .vizyon .vizyon-img {
            position: relative;
            width: 100%;
        }

        .vizyon .vizyon-text-content {
            position: relative;
            width: 100%;
        }



    .dd-text h2 {
        margin-top: 0;
    }

    .ourvalues {
        padding: 40px 0 170px 0;
        margin-top: 0px;
    }

        .ourvalues .box img {
            width: auto;
            height: auto;
        }

        .ourvalues .box .tt {
            margin-top: 16px;
        }

    .maps {
        height: auto;
    }

        .maps .line {
            line-height: 77px;
        }

        .maps .minute {
            font-size: 90px;
        }

        .maps .text1 {
            font-size: 57px;
        }

        .maps .text2 {
            font-size: 50px;
        }


    .location {
        padding: 200px 0 200px 0;
        text-align: center;
    }

        .location h6 {
            font-size: 54px;
        }

        .location .btn {
            margin-top: 10px;
            margin-bottom: 55px;
        }

    .facility {
        padding: 275px 0 200px 0;
        margin-top: -268px;
    }

        .facility .text1 {
            font-size: 30px;
        }

        .facility .text2 {
            font-size: 30px;
        }

        .facility .p1 {
            font-size: 15px;
        }

        .facility .text3 {
            font-size: 30px;
        }

        .facility .text4 {
            font-size: 25px;
        }

    .service {
        margin-top: -200px;
    }

    .owl-prev {
        position: absolute;
        top: auto;
        left: 25%;
        bottom: -105px;
    }

    .owl-next {
        position: absolute;
        top: auto;
        right: 25%;
        bottom: -105px;
    }

    .location .box .location-title {
        width: auto;
        min-height: auto;
    }
}
