@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --dark-grey-color: #404040;
    --white-color: #fff;
    --black-color: #000;
    --bej-color: #F8EED8;
}

body{
    background-color: var(--dark-grey-color);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    background: rgb(182, 180, 180);
    width: 8px;
    border-radius: 30px;
}

::-webkit-scrollbar-thumb {
    background: var(--white-color);
    border-radius: 30px;
}

audio{
    position:absolute;
    z-index:-999;
    opacity:0;
    display:none;
}

/* ! ---------------------------------------  header ------------------------------------------ */

header .mail{
    position: absolute;
    top: 5%;
    right: 2%;
    color: var(--white-color);
}

header .mail a{
    color: var(--white-color);
    text-decoration: none;
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
}

header .navbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6rem;
}

header .navbar .nav_logo{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

header .navbar .nav_logo h2{
    font-size: 3rem;
    font-family: "Tangerine", cursive;
}

header .navbar .nav_logo a{
    color: var(--white-color);
    text-decoration: none;
}

.turk_flag{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    margin-top: 120px;
    margin-bottom:80px;
    left: 0;
    z-index: 50000;
}

.turk_flag .row{
    display: flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap: 1rem;
}

.turk_flag .item{
    width: 100px;
    position: relative;
    margin-bottom:40px;
}
.home-flag-item-image{
    height: 60px !important;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:15px;
}
.turk_flag .item img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.turk_flag .item p{
    text-align: center;
    color: var(--white-color);
}


header .navbar .nav_menu{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4rem;
}

header .navbar .nav_menu a{
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.2rem;
}

/* ! -------------------------------------------------------------  banner ----------------------------------------------- */

.banner{
    width: 100%;
    background-color: var(--dark-grey-color);
    display: flex;
    position: relative;
    padding: 0 3rem;
}

.banner .text{
    width: 66%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.banner .text h1{
    font-size: 6rem;
    color: var(--bej-color);
    text-align: center;
    width: 90%;
    text-shadow: 0 0 5px var(--white-color);
}

/* .banner .text .main_sign{
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: var(--white-color);
    width: 100%;
} */

.sign{
    position: relative;
    width: 200px;
    height: 70px;
}

.sign img{
    width: 100%;
}

.banner .banner_image{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.banner .banner_image img{
    width: 60%;
    transition: all ease-in-out .5s;
    animation-name: animation1;
    animation-iteration-count: infinite;
}

@keyframes animation1 {
    from{
        margin-top: 0;
    }

    to{
        margin-top: -50px;
    }
}

.mouse{
    margin: 50px auto;
    width: 100px;
    position: absolute;
    bottom: 0%;
    left: 50%;
  }
  
  .mouse-icon{
     width: 25px;
     height: 45px;
     border: 2px solid white;
     border-radius: 15px;
     cursor: pointer;
     position: relative;
     text-align: center;
  }
  
  .mouse-wheel{
    height: 6px;
    margin: 2px auto 0;
    display: block;
    width: 3px;
    background-color: white;
    border-radius: 50%;
    -webkit-animation: 1.6s ease infinite wheel-up-down;
   -moz-animation: 1.6s ease infinite wheel-up-down;
    animation: 1.6s ease infinite wheel-up-down;
  }


  @-webkit-keyframes wheel-up-down {
      0% {
          margin-top: 2px;
          opacity: 0;
      }
      30% {
          opacity: 1;
      }
      100% {
          margin-top: 20px;
          opacity: 0;
      }
  }@-moz-keyframes wheel-up-down {
      0% {
          margin-top: 2px;
          opacity: 0;
      }
      30% {
          opacity: 1;
      }
      100% {
          margin-top: 20px;
          opacity: 0;
      }
  }@keyframes wheel-up-down {
      0% {
          margin-top: 2px;
          opacity: 0;
      }
      30% {
          opacity: 1;
      }
      100% {
          margin-top: 20px;
          opacity: 0;
      }
  }




/* ! ------------------------------------------  home  --------------------------------------- */

.home{
    background-color: var(--dark-grey-color);
    display: flex;
    padding: 200px 50px;
}

.home .flag_image{
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .flag_image .image{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all .5s;
}

.home .flag_image .image:hover{
    filter: drop-shadow(0 0 20px var(--white-color));
}

.home .flag_image .image img{
    border-radius: 10px;
    height: 800px;
}

.home .hitabe{
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    color: var(--white-color);
    font-size: 1.1rem;
    line-height: 30px;
}

.home .ataturk_image{
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .ataturk_image .image{
    position: relative;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .ataturk_image .image img{
    width: 75%;
    height: 800px;
    border-radius: 15px;
    transition: all 0.5s;
}

.home .ataturk_image .image img:hover{
    box-shadow: 0 0 10px var(--white-color);
    transform: translateY(-7px);
    
}

/* ! --------------------------------------  page top ------------------------------- */

.page_top{
    margin-top: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    padding: 0 20rem;
    background-color: #5d5d5d;
}

.page_top h2{
    color: var(--white-color);
    font-size: 2rem;
}




/*  ! -------------------------------------------------------------------------  blog --------------------------------------------- */

.blog{
    margin: 100px 0;
    padding: 100px 300px;
    display: flex;
    align-items: center;
}

.blog .blog_main_box{
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.blog .blog_main_box .blog_box{
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all .5s;
    padding: 1rem;
    border-radius: 5px;
}

.blog .blog_main_box .blog_box a{
    color: var(--white-color);
    text-decoration: none;
}

.blog .blog_box .image{
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog_box img{
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.blog .blog_box h5{
    font-size: 1.3rem;
    margin-top: 30px;
}

.blog .blog_box p{
    margin-top: 5px;
    opacity: 0.8;
    font-weight: 500;
}

.blog .blog_box h6{
    margin-top: 30px;
    color: red;
    font-weight: 500;
}

.blog .blog_box:hover{
    box-shadow: 0 0 10px var(--white-color);
}


/* ! -------------------------------------------  blog details  ------------------------------------------- */

.blog_details{
    padding: 100px 300px;
}

.blog_details .big_image{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.blog_details .big_image img{
    width: 100%;
    border-radius: 10px;
}

.blog_details_text{
    margin: 0 300px;
    margin-bottom: 100px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog_details_text h5{
    color: red;
}

.blog_details_text p{
    line-height: 30px;
}





/* ! ----------------------------------------------------- responsive  ------------------------------------------- */

@media(max-width: 1680px){

    /* ! turk flag */

    .turk_flag{
        flex-direction: column;
        gap: 3rem;
    }

    .banner .text{
        width: 70%;
    }

    /* ! home */

    .banner .banner_image{
        align-items: center;
    }

    /* ! blog */

    .blog{
        margin: 0;
        padding: 100px 200px;
    }

    /* ! blog details */

    .blog_details{
        padding: 100px 200px;
    }

    .blog_details_text{
        margin: 0 200px;
        margin-bottom: 100px;
    }



}

@media(max-width: 1440px){


    /* ! home */

    header .navbar .owl-carousel .item img{
        height: 80px;
    }

    .banner .text h1{
        font-size: 5rem;
    }

     /* ! blog */

     .blog{
        margin: 0;
        padding: 100px 150px;
    }

    .page_top {
        padding: 0 150px;
    }


    /* ! blog details */

    .blog_details{
        padding: 100px 150px;
    }

    .blog_details_text{
        margin: 0 150px;
        margin-bottom: 100px;
    }
}

@media(max-width: 992px){
    /* ! home */

    .turk_flag .row{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    header .navbar{
        padding: 1rem 3rem;
    }

    header .navbar .turk_flag .owl-carousel .item{
        height: 100px;
    }

    header .navbar .turk_flag .owl-carousel .item img{
        height: 70px;
    }

    .banner{
        padding: 0;
    }

    .banner .text h1{
        font-size: 3rem;
    }

    .home{
        flex-direction: column;
        align-items: center;
        padding: 100px;
        margin-top: 0;
    }

    .home .flag_image .image img{
        transform: rotate(-90deg);
    }

    .home .ataturk_image .image img{
        width: 100%;
    }

    .home .hitabe{
        width: 100%;
    }

    .home .flag_image{
        width: 50%;
        height: 600px;
    }

    .home .ataturk_image{
        width: 50%;
        margin-top: 100px;
    }

    .home .flag_image .image{
        transform: rotate(90deg);
    }

    /* ! blog */

    .blog .blog_main_box{
        grid-template-columns: 1fr 1fr;
    }

    .page_top {
        padding: 0 100px;
    }


    .blog{
        padding: 100px;
    }

    /* ! blog details */

    .blog_details{
        padding: 100px;
    }

    .blog_details_text{
        margin: 0 100px;
        margin-bottom: 100px;
    }
}


@media(max-width: 768px){

    /* ! turk flag */

    .turk_flag .row{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .turk_flag .item{
        width: 80px !important;
        height: 50px !important;
    }

    .turk_flag .item p{
        font-size: 0.8rem;
    }


    /* ! home */

    header .navbar{
        padding: 1rem 3rem;
    }

    header .navbar .nav_logo h2{
        font-size: 2rem;
    }

    header .navbar .nav_menu{
        gap: 2rem;
    }

    .banner{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .banner .text{
        width: 100%;
    }

    .home .flag_image .image img{
        height: 700px;
    }

    .home .flag_image{
        width: 75%;
    }

    .home .ataturk_image{
        width: 85%;
    }

     /* ! blog */

     .blog .blog_main_box{
        grid-template-columns: 1fr 1fr;
    }

    .page_top {
        padding: 0 50px;
    }


    .blog{
        padding: 50px;
    }

    /* ! blog details */

    .blog_details{
        padding: 50px;
    }

    .blog_details_text{
        margin: 0 50px;
        margin-bottom: 100px;
    }

}

@media(max-width: 500px){

    /* ! home */

    header .navbar{
        padding: 1rem;
    }

    header .navbar .nav_menu a{
        font-size: 1rem;
    }

    header .navbar .nav_logo h2{
        font-size: 1.5rem;
    }

    header .navbar .nav_menu a{
        font-size: 0.8rem;
    }

    header .navbar .turk_flag{
        width: 45%;
    }

    .banner{
        gap: 3rem;
    }

    .banner .text h1{
        font-size: 2rem;
    }

    .banner .banner_image img{
        width: 100%;
    }

    .home{
        padding: 50px 30px;
    }

    .home .hitabe p{
        text-align: center;
    }

    .home .ataturk_image .image{
        height: 550px;
    }

    header .navbar .nav_menu{
        gap: 2rem;
    }

    .home .flag_image .image img{
        height: 430px;
    }

    .home .ataturk_image .image{
        margin: 100px 0;
    }

    .home .ataturk_image .image img{
        height: 500px;
    }


     /* ! blog */

     .blog .blog_main_box{
        grid-template-columns: 1fr;
    }

    .page_top {
        padding: 0 30px;
    }


    .blog{
        padding: 30px;
    }

    .blog_details .big_image{
        height: 300px;
    }

    .page_top h2{
        font-size: 1.5rem;
    }

    /* ! blog details */

    .blog_details{
        padding: 30px;
    }

    .blog_details_text{
        margin: 0 30px;
        margin-bottom: 100px;
    }

    .blog_details_text h2{
        text-align: center;
    }

    .blog_details_text p{
        text-align: center;
    }

    .blog_details_text h5{
        text-align: center;
    }

    .page_top{
        margin-top: 130px;
        justify-content: center;
    }

}


@media(max-width: 450px){

    /* ! turk flag */

    .turk_flag .item{
        width: 60px !important;
        height: 40px !important;
    }


    header .navbar .nav_menu{
        gap: 1rem;
    }

    header .navbar{
        gap: 1rem;
    }

    header .navbar .turk_flag{
        margin-top: 0;
    }

    .banner .text{
        margin-top: 50px;
    }

    .home .flag_image .image img{
        height: 380px;
    }
}

