/* Google Fonts API */
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');


/* General Start */ 

body {
  font-family: 'Poppins' ,'Open Sans', sans-serif; 
  margin: auto;
  padding: auto;
}

a {
    text-decoration: none;
    color: black;
    transition: color .3s;
    font-weight: bold;
}

a:hover {
    color: #4dbebd;
}

.width-80 {
    width: 80%;
}

.width-40 {
    width: 40%;
}

.width-10 {
    width: 10%;
}

.width-20 {
    width: 20%;
}

.width-60 {
    width: 60%;
}

.width-90 {
    width: 90%;
}

.pg-3 {
    padding: 3rem;
}

.pg-bottom-3 {
    padding-bottom: 3rem;
}

.pg-top-3 {
    padding-top: 3rem;
}

.pg-6 {
    padding: 6rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-baseline {
    align-items: baseline;
}

.center {
    margin-right: auto;
    margin-left: auto;
}

.responsive {
    height: auto;
    width: 100%;
}

/* General Stop */

/* Header Start */
header {
    background-color: #ffffff;
    box-shadow: 0px 0px 13px 0px #d6d2d2;
    height: 100px;
    position: position;
    top: 0;
    z-index: 1;
}

.logo-image {
    height: 50px;
}

.general-menu {
    z-index: 1;
}

.general-menu > ul > li {
    display: inline-block;
    padding: 0px 25px;
    position: relative;
    right: -1em;
    font-weight: bold;
}

.general-menu > ul > li:nth-child(2) {
    cursor: pointer;
    font-weight: bold;
}

.general-menu > ul > li:nth-child(3) {
    cursor: pointer;
    font-weight: bold;
}

/* .general-menu > ul > li:nth-child(5)::before {
    content: 'Yak覺nda';
    background-color: #0000003b;
    color: white;
    padding: 3px;
    border-radius: 5px;
    font-weight: 100;
    font-size: 13px;
    position: absolute;
    top: -12px;
    left: 61px;
} */

.general-menu > ul > li > ul {
    display: none;
    list-style: none;
    float: left;
    position: absolute;
    line-height: 2em;
    padding: 0;
    width: 15em;
    margin-left: -2em;
    border-bottom: solid 3px black;
    z-index: 0;
}

.general-menu > ul > li:hover > ul {
    display: block;
    background: #ffffff;
    padding: 1em 2em;
} 

.navigator {
    display: none;
    font-size: 36px;
}

.navigator-menu {
    display: none;
    text-align: center;
    height: auto;
    width: 100%;
    font-weight: bold;
    line-height: 4em;
    z-index: 2;
    top: 3rem;
    position: absolute;
}

.navigator-menu > ul {
    list-style: none;
    padding: 0;
    border-bottom: solid 5px #4dbebd;
    border-radius: 5px;
    font-family: 'Poppins';
    font-size: 16px;
    text-transform: uppercase;
}

.navigator-menu > ul > li {
    background: white;
}

.navigator-menu > ul > li:nth-child(2){
    cursor: pointer;
    font-weight: bold;
}

.navigator-menu > ul > li:nth-child(3){
    cursor: pointer;
    font-weight: bold;
}

/* .navigator-menu > ul > li:nth-child(5)::after {
    content: 'Yak覺nda';
    background-color: #0000003b;
    color: white;
    border-radius: 5px;
    padding: 3px;
    font-weight: 100;
    font-size: 12px;
    margin-left: 4px;
} */

.navigator-menu > ul > li > a:hover {
    color: #4dbebd;
}

.navigator-menu > ul > li > ul {
    display: none;
    list-style: none;
    position: relative;
    line-height: 2em;
    padding: 0;
    border-bottom: solid 3px black;
    z-index: 0;
}

/* Header Stop */ 

/* Footer Start */
footer {
    background: #2d2c2d url(../images/bg.png);
    color: white;
    height: 200px;
}

.ft-item > ul {
    list-style: none;
    left: -2.5em;
    position: relative;
}

.ft-item > ul > li {
    height: 2em;
    position: relative;
    left:0;
    transition: transform 0.3s;
}

.ft-item > ul > li > a {
    color: #a5a3a4;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 100;
    line-height: 2rem;
    position: relative;
}

.ft-item > ul > li:hover {
    transform: translateX(5px);
}

/* .ft-item > ul > li > a::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 100%;
    left: -100%;
    background: #a5a3a4;
    transition: transform 0.3s;
} */

.ft-item > ul > li:hover > a::after,
.ft-item > ul > li:focus > a::after {
    transform: translateX(100%);
}

/* .ft-item > ul > li > a > span {
    position: relative;
    display: block;
}

.ft-item > ul > li > a > span::after {
    content: '';
    width: auto;
    height: 2px;
    top: 2em;
    background: black;
    left: -45%;
    position: absolute;
    font-weight: bold;
    transition: transform 0.3s;
} */

.ft-item > ul > li > a:hover > span::after,
.ft-item > ul > li > a:focus > span::after {
    transform: translateX(100%);
}


.copyright {
    background-color: #2A2829;
    color: #929090;
}

.ft-collapse {
    display: none;
}

/* Footer Stop */

/* Our - Team Page Start */

.team-members {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

/* 1rem = 16px */ 
.team-members-images {
    height: calc(16px * 22);
    width: calc(16px * 15);
}   

.great-title {
    padding: 0em 5em;
    border-bottom: 5px solid #efef56;
    margin-top: 1rem;
}

.team-members-fix {
    padding-left: 4.4rem;
}

.sponsors {
    width: 80%;
}

/* height: 68px */
.sponsors-area-images {
    height: 4rem;
}

.sponsors-area-right {
    width: 83%;
}

.sponsors-area-title {
    font-weight: bold;
    margin-bottom: 0;
    font-size: 21px; 
}

.big-banner {
    overflow: hidden;
    height: auto;
    width: 100%;
    max-height: 55rem;
}

.section-1 {
    width: 100%;
    padding: 7rem 0rem;
    background: #f9f9f9;
    color: #525252;
    margin-top: -7px;
}

.section-1-text {
    width: 45%;
}

.section-1-image {
    width: 52%;
}

.baslik {
    font-size: 52px;
    font-weight: bold;
}

.alt-baslik {
    font-size: 25px;
    padding: 0px 0px 37px 0px;
}

.aciklama {
    line-height: 26px;
    font-size: 14px;
}

.responsive-section-1-image {
    height: auto;
    width: 100%;
    max-width: 48rem;
}

.section-2 {
    width: 100%;
    padding: 3rem 0rem;
    background: #efefef;
    overflow: hidden;
}

.section-2-text {
    width: 10%;
}

/*

.section-3 {
    color: white;
    width: 100%;
    padding: 15rem 0rem;
    background: url(../images/bg.png);
}

.mystery-1 {
    background: white;
    height: 15rem;
    width: 27rem;
    color: black;
    border-right: 1px solid #f5f0f0;
    border-radius: 1rem 0rem 0rem 0rem;
}

.mystery-1::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-2 {
    background: white;
    height: 15rem;
    width: 27rem;
    color: black;
    border-right: 1px solid #f5f0f0;
}

.mystery-2::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-3 {
    background: white;
    height: 15rem;
    width: 27rem;
    color: black;
    border-radius: 0rem 1rem 0rem 0rem;
}

.mystery-3::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-4 {
    background: white;
    height: 15rem;
    width: 27rem;
    color: black;
    border-radius: 0rem 0rem 0rem 1rem;
    border-top: 1px solid #f5f0f0;
    border-right: 1px solid #f5f0f0;
}

.mystery-4::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-5 {
    background: white;
    height: 15rem;
    width: 27rem;
    color: black;
    border-top: 1px solid #f5f0f0;
    border-right: 1px solid #f5f0f0;
}

.mystery-5::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-6 {
    background: white;
    height: 15rem;
    width: 27rem;
    color: black;
    border-radius: 0rem 0rem 1rem 0rem;
    border-top: 1px solid #f5f0f0;
}

.mystery-6::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

*/

/*  Renkli Kutular */
.section-3 {
    color: white;
    width: 100%;
    padding: 15rem 0rem;
    background: white url(../images/bg.png);
}

.mystery-1 {
    background: #E6EE9C;
    height: 15rem;
    width: 27rem;
    color: black;
    border-radius: 1rem 0rem 0rem 0rem;
}

.mystery-1::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-2 {
    background: aliceblue;
    height: 15rem;
    width: 27rem;
    color: black;
}

.mystery-2::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-3 {
    background: #FFF59D;
    height: 15rem;
    width: 27rem;
    color: black;
    border-radius: 0rem 1rem 0rem 0rem;
}

.mystery-3::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-4 {
    background: #A5D6A7;
    height: 15rem;
    width: 27rem;
    color: black;
    border-radius: 0rem 0rem 0rem 1rem;
}

.mystery-4::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-5 {
    background: #BBDEFB;
    height: 15rem;
    width: 27rem;
    color: black;
}

.mystery-5::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.mystery-6 {
    background: #FFCC80;
    height: 15rem;
    width: 27rem;
    color: black;
    border-radius: 0rem 0rem 1rem 0rem;
}

.mystery-6::before {
    content: '';
    background: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: relative;
    top: -3rem;
    border: 1px solid #f7f2f2;
    box-shadow: 0px 0px 12px #0000000d;
        margin-left: auto;
    margin-right: auto;
}

.icon {
    color: red;
    position: relative;
    top: -120px;
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
}

.mystery-text {
    position: relative;
    top: -4rem;
    padding: 0rem 3rem;
    height: 98px;
    overflow: hidden;
    text-align: center;
}

.section-4 {
    width: 100%;
    padding: 15rem 0rem;
}

.brands {
    position: relative;
    animation: 40s brands infinite cubic-bezier(0.4, 0, 1, 1);
    display: flex;
}

.brands > li {
    float: left;
    list-style: none;
    padding-right: 3rem;
}

@keyframes brands{
    0%{position: relative; left: 0rem;}
    50%{position: relative; left: -139rem;}
    100%{position: relative; left: 0rem;}
}

@keyframes brands-responsive{
    0%{position: relative; left: 0rem;}
    50%{position: relative; left: -206rem;}
    100%{position: relative; left: 0rem;}
}

.slider-container {
    position: relative;
}

.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 36px;
    cursor: pointer;
    color: white;
    opacity: .5;
    width: auto;
    user-select: none;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    padding: 16px;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
    
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    opacity: 1;
}

.dots {
    height: 20px;
    top: 45rem;
    width: 20px;
    border-radius: 50%;
    background-color: #0000003b;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin: 0 2px;
}

.contact {
    width: 80%;
}

.contact-right {
    width: 40%;
}

.map {
    width: 600px;
    height: 550px;
}

.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
  }

.competition-image {
    height: 250px;
    width: 250px;
    background-color: burlywood;
    border-radius: 5px;
    flex: 0 0 250px;
    overflow: hidden;
}

.competition-image-2 {
    height: 250px;
    width: 250px;
    background-color: burlywood;
    border-radius: 5px;
    flex: 0 0 390px;
    overflow: hidden;
}

.competition-text {
    flex: 0 0 52rem;
}

.competition-text-2 {
    flex: 0 0 23rem;
}

.competition-image-shell{
    height: 170px;
    width: 250px;
    background-color: white;
    border-radius: 5px;
    flex: 0 0 361px;
    overflow: hidden;
}

.competition-text-shell {
    flex: 0 0 53rem;
}

.winner-text {
    flex: 0 0 22em;
    color: white;
    font-size: 2.6em;
}

.winner-play {
    right: 0;
    bottom: 0;
    max-width: 100%;
    min-height: 100%;
    overflow: hidden;
    filter: brightness(0.3);
    margin-bottom: -8px
}

.winner-area {
    left: 0;
    position: absolute;
    right: 0;
    top: 22em;
}

.winner-image {
    height: 250px;
    width: auto;
    border-radius: 5px;
    flex: 0 0 438px;
    overflow: hidden;
}

.tubitak-kronoloji{
    padding-bottom: 3rem;
}

.car-barbaros {
    height: 250px;
    width: 250px;
    background-color: burlywood;
    border-radius: 5px;
    flex: 0 0 352px;
    overflow: hidden;
}

.car-tubitak {
    height: 250px;
    width: 250px;
    background-color: burlywood;
    border-radius: 5px;
    flex: 0 0 352px;
    overflow: hidden;
}

.car {
    width: 100%;
}

/* Responsive Settings Area (Please pay attention!) */ 

@media screen and (max-width: 427px){

    .map {
        width: 100%;
        height: 400px;
    }

    .brands {
        animation: 40s brands-responsive infinite cubic-bezier(0.4, 0, 1, 1);
    }

    .copyright {
        font-size: 12px;
    }

}

@media screen and (max-width: 615px){

    .araclarimiz-image {
        width: 100%;
    }
    
    .team-members {
        display: block;
        margin-right: 0;
    }
    
    .team-members > div {
        padding-bottom: 3rem;
    }

    .team-members-fix{
        padding-left: 0;
    } 

    .team-members > div > div {
        padding-top: 0;
    }
    
}

@media screen and (max-width: 835px){

    .winner-area {
        position: absolute;
        top: 7em;
        left: 0;
        right: 0;
        flex-direction: column;
    }

    .winner-text {
        flex: 0 0 22em;
        color: white;
        font-size: 13px;
    }

    .winner-image {
        display: none;
    }

    .home-icons {
        display: none;
    }
    
    .sponsors {
        width: 100%;
    }

    .responsive-section-3 {
        flex-direction: column;
    }

    .section-2 {
        margin-top: -3rem;
    }

    .section-3 {
        overflow: hidden;
        padding: 5rem 0rem;
    }

    .mystery-1 {
        border-radius: 1rem 1rem 0rem 0rem; 
        width: 21rem;
        height: 16rem;
    }

    .mystery-2 {
        width: 21rem;
        height: 16rem;
    }

    .mystery-3 {
        border-radius: 0rem 0rem 0rem 0rem; 
        width: 21rem;
        height: 16rem;
    }

    .mystery-4 {
        border-radius: 0rem 0rem 0rem 0rem; 
        width: 21rem;
        height: 16rem;
    }

    .mystery-5 {
        width: 21rem;
        height: 16rem;
    }

    .mystery-6 {
        border-radius: 0rem 0rem 1rem 1rem; 
        width: 21rem;
        height: 16rem;
    }

    header {
        height: 80px;
    }

    .logo-image {
        height: 3rem;
    }

    .navigator {
        font-size: 26px;
    }

    .mystery-text {
        position: relative;
        top: -4rem;
        padding: 0rem 1rem;
        height: auto;
        text-align: center;
    }
}

@media screen and (max-width: 1287px){

    .winner-area {
        position: absolute;
        top: 19em;
        left: 0;
        right: 0;
        flex-direction: column;
    }

    .winner-image {
        display: none;
    }

    .responsive-section-1 {
        flex-direction: column;
    }

    .section-1-text {
        width: auto;
    }

    .section-1-image {
        width: auto;
    }

    .responsive-section-2 {
        flex-direction: column;
    }

    .section-2-text {
        width: auto;
        text-align: center;
        padding-bottom: 3rem;
    }
}

/* Responsive Settings {Footer} */ 

@media screen and (max-width: 1312px){
    footer{
        display: none;
    }

    .ft-collapse {
        display: flex;
        background: #F9F9F9;

    }

    .ft-collapse-title {
        text-transform: uppercase;
        color: #929090;
        font-weight: bold;
        background-color: #2A2829;
        padding: 1em 0em;
        width: 100%;
        text-align: center;
    }

    .ft-collapse > div > p > a {
        font-weight: 500;
    }

}

@media screen and (max-width: 835px){

    .winner-area {
        position: absolute;
        top: 3em;
        left: 0;
        right: 0;
        flex-direction: column;
    }
}
/* Responsive Settings {Header} */ 

@media screen and (max-width: 1452px){

    .general-menu {
        display: none;
    }

    .navigator {
        display: block;
    }

    .car {
        flex-direction: column;
        width: auto;
    }

    .car-barbaros {
        height: 250px;
        width: 356px;
        background-color: burlywood;
        border-radius: 5px;
        flex: 0 0 250px;
        overflow: hidden;
    }

    .car-tubitak {
        height: 230px;
        width: 356px;
        background-color: burlywood;
        border-radius: 5px;
        flex: 0 0 250px;
        margin-top: 3rem;
        overflow: hidden;
    }
}

@media screen and (max-width: 1571px){

    .contact {
        flex-direction: column;
        width: 100%;
    }

    .contact-right {
        width: 100%;
    }

}

@media screen and (max-width: 1737px){

    .sponsors-area {
        flex-direction: column;
    }

    .competition {
        flex-direction: column;
        padding-bottom: 5px;
    }

    .competition-text {
        flex: 0 0 34rem;
    }

    .competition-text-2 {
        flex: 0 0 12rem;
    }

    .competition-text-shell {
        flex: 0 0 16rem;
    }

    .competition-image-2 {
        flex: 0 0 247px;
    }

    .competition-image-shell {
        height: 250px;
        width: 179px;
        background-color: white;
        border-radius: 5px;
        flex: 0 0 10rem;
        left: -3rem;
        position: relative;
        overflow: visible;
    }

    .shell-kronoloji {
        width: 100%;
        position: relative;
        padding: 3rem 0;
    }

    .great-title {
        text-align: center;
    }

    .tubitak-kronoloji{
        width: 100%;
        position: relative;
        left: -7px;
        padding: 3rem 0;
    }
    
    

}

/* Sağ altta küçük, dairesel logo */
.umakit-fixed-logo {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50%;
  background: #fff;                 /* gerekirse arka plan */
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  opacity: .9;
  transition: transform .15s ease, opacity .15s ease;
  overflow: hidden;                  /* taşmaları gizle */
}

/* Görselin taşmadan sığması için */
.umakit-fixed-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;               /* “geniş” görünümü önler */
}

/* Hover (isteğe bağlı) */
@media (hover:hover) {
  .umakit-fixed-logo:hover {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* Tablet ve mobilde tamamen gizle */
@media (max-width: 992px) {
  .umakit-fixed-logo { display: none; }
}

