*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0; 
}
.container-xxl{
    height: auto;
    margin-top: 30px;
    overflow: hidden;
    border-top: 6px solid  #00AEFF;
    box-shadow: 0px 20px 10px #00AEFF;
}
/* navbar start */
header{
    width: 100%;
    max-width: 1320px;
    height: 250px;
}
header .header-logo{
    background-color: #aabe36;
    position: relative;
}
:root{
    --pseudo-text: "just some text";
}
header .header-logo::before{
    content: "";
    position: absolute;
    bottom: -237px;
    left: 70px;
    width: 170px;
    height: 350px;
    background-color: #f5eeee;
    opacity: 1;
    visibility: visible;
    transform: rotate(45deg);
    transition: ease opacity 300ms, ease transform 300ms;
}
header .header-logo::before .active{
    display: none;
    visibility: hidden;
}
.header-logo img{
    position: absolute;
    width: 150px;
    margin-top: 90px;
    margin-left: 30px;
    z-index: 99;
    cursor: pointer;
}
.nav{
    display: flex;
    justify-content: end;
}
.navbar{
    position: relative;
    text-align: end;
}
.navbar ul{
    display: flex;
    list-style-type: none;
    margin: 10px;
    margin-top: 100px;
    margin-left: 100px;
}
.navbar ul li {
    position: relative;
    text-decoration: none;
    visibility: inherit;
    color: black;
    font-weight: 600;
    margin-left: 20px;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
}
#mobile{
    display: none;
}
.navbar .active{
    color: #00AEFF; 
}
.navbar ul li::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #00AEFF;
    transform-origin: right;
    border-radius: 5px;
    transform: scale(0);
    transition: transform 0.5s;
}
.navbar ul li:hover::after{
    transform: scale(1);
    transform-origin: left;
}
.navbarbaslik{
    position: relative;
}
.navbarbaslik.active{
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(40px);
    position: fixed;
    width: 100% !important;
    max-width: inherit !important;
    overflow: hidden !important;
    top: -95px;
    z-index: 999;
}
.carousell img{
    object-fit: scale-down  ;
    height: 500px;
}

.carousel-caption {
    top: 20%; /* daha yukarıya taşır */
    margin-left: 40%; /* soldan boşluk bırakır */
    color: black;
    text-shadow: 1px 1px 5px black;
}

/* Referans Start */
.container-referans {
    max-width: 3000px;
    width: 100%;
}
.slider-wrapper{
    position: relative;
}
.slider-wrapper .slide-button{
    position: absolute;
    top: 40%;
    height: 30px;
    width: 30px;
    color: #fff;
    border: none;
    outline: none;
    background: #000;
    font-size: 1.7rem;
    cursor: pointer;
    border-radius: 50%;
    transform: translate(-50%);
}
.slider-wrapper .slide-button:hover{
    background: #444;
}
.slider-wrapper .slide-button#prev-slide{
    left: 10px;
    display: none;
}
.slider-wrapper .slide-button#next-slide{
    right: -20px;

}
.slider-wrapper .image-list{
    display: grid;
    gap: 18px;
    font-size: 0;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(17, 1fr);
}
.slider-wrapper .image-list::-webkit-scrollbar{
    display: none;
}
.slider-wrapper .image-list .image-item{
    width: 245px;
    height: 150px;
    object-fit: cover;
}
.container-referans .slider-scrollbar{
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}
.container-referans .slider-scrollbar  .scrollbar-track{
    height: 2px;
    width: 100%;
    background: #ccc;
    position: relative;
    border-radius: 4px;
}
.container-referans .slider-scrollbar:hover  .scrollbar-track{
    height: 4px;
}
.container-referans .slider-scrollbar  .scrollbar-thumb{
    position: absolute;
    height: 100%;
    width: 50%;
    background: #000;
    border-radius: inherit;
    cursor: grab;
}
.container-referans .slider-scrollbar  .scrollbar-thumb:active{
    cursor: grabbing;
    height: 8px;
    top: -2px;
}
.container-referans .slider-scrollbar  .scrollbar-thumb::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}

@media (max-width: 830px){
    .slider-wrapper .slide-button{
        display: none !important;
    }
    .slider-wrapper .image-list{
        gap: 10px;
        margin-bottom: 15px;
    }
    .slider-scrollbar .scrollbar-thumb{
        width: 20%;
    }
    .container-referans .slider-scrollbar{
        margin-top: -10px;
    }
}
/* Referans End */


/* İletişim Start */

.iletisimForm nav ul{
    list-style-type: none;
    padding: 0;
}
.iletisimForm nav ul span i{
    color: #00AEFF;
    font-size: 14px;
}
.iletisimForm nav ul li{
    display: flex;
    align-items: center;
    margin-top: 20px
}
.iletisimForm nav ul li a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin-left: 10px;
    transition: 0.2s;
    font-size: 14px;
}
.iletisimForm nav ul li a:hover{
    color: #00AEFF;
}   
.iletisimForm span{
    display: block;
    color: #00AEFF;
}
.iletisimForm input{
    width: 90%;
    height: 40px;
    margin-bottom: 10px;
    outline: none;
    padding: 0px 10px ;
}
.iletisimForm textarea{
    width: 90%;
    outline: none;
    min-height: 100px;
    margin-bottom: 10px;
    padding: 10px;
}
.iletisimForm .buttonbtn{
    width: 100px;
    height: 40px;
    border-radius: 5px;
    color: white;
    background-color: #00AEFF;
    font-weight: 600;
    border: none;
    margin-bottom: 40px;
}
.internet img{
    text-align: start;
    width: 200px;
    background-size: cover;
    background: none;
    max-width: 100%;
}
.map iframe{
    width: 100%;
    height: 350px;
}

form input, textarea {
    display: block;
    width: 100%;
    border: 1px solid #00ccff;
    border-radius: 5px;
    padding: 10px;
}
.iletisimForm, input, optgroup, select, textarea {
    margin: 0;
}
/* İletişim End */

/* footer */
.footer{
    background-color: rgb(246, 246, 246);
    padding: 50px 20px;
    min-height: 650px;
    position: relative;
}
.footer .footer-end::before{
    content: '';
    position: absolute;
    bottom: 0px !important;
    overflow: hidden;
    margin-right: 10px;
    right: 0px !important;
    margin-right: -200px;
    width: 526px;
    height: 526px;
    transform: rotate(180deg);
    transform-origin: 25% 100%;
    background-color: #302b2b;
    opacity: 1;
    visibility: visible;
    transform: rotate(45deg);
    transition: ease opacity 300ms, ease transform 300ms;
}
.footer-logo {
    max-width: 100%;
    width: 300px !important;
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-end{
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-end img{
    width: 32px !important;
    margin-right: 10px;
}
.footer-end a{
    color: rgb(53, 51, 51);
    text-decoration: none;
}
.nav-end{
    text-align: center;
}
.nav-end li {
    list-style-type: none;
    margin-top: 20px;
    
}
.footer-links{
    margin-top: 20px;
    margin-right: 20px;
    text-align: center;
    line-height: 2;
    color: white;
}
.footer-links a i{
    margin-left: 20px;
    transition: 0.3s;
    font-size: 20px;
}
.footer-links.fa-brands{
    margin-inline: 20px;;
    color: white;
    transition: 0.4s;
}
.footer-links .fa-brands:hover{
    color: #08c6ff;
    transform: scale(1.3);
}
.animeta{
    animation: neos 2s infinite;
}
@keyframes neos{
    0%{color:white;}
    50%{color: #0c192c;}
    100%{color:white;}
}
.nav-end li a i{
    font-size: 20px;
    color: rgb(53, 51, 51);
    transition: 0.3s;
}
.nav-end li a i:hover{
    color: #00AEFF;
}
.nav-end li a{
    padding: 10px 13px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
}
.yukaricik{
    display: none;
    width: 60px;
    height: 60px;
    background-color: #8a8887;
    color: white;
    font-weight: 600;   
    text-decoration: none;
    transition: 0.5s;
    line-height: 80px;
    position: fixed;
    bottom: 10px;
    right: 10px;
}
.yukaricik i{
    font-size: 20px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 19px; 
}
.yukaricik i:hover{
    color: #00AEFF;
}
.yukaricik:hover{
    color: white;
    font-weight: 600;
    cursor: pointer;
}
.goster{
    display: block;
}

.slogan span{
    position: absolute;
    width: 250px;
    margin-top: 125px;
    margin-left: 32px;
    z-index: 99;
	font-size:13px;
    cursor: pointer;
}