/**, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}*/
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  html,
  body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
  }
  /*.stage {*/
    /*width: 100%;
    height: 100%;*/
    /*overflow: hidden;
  }*/
  
  .stage {
    position: relative;
    background-image: linear-gradient(-35deg, #111, #000);
  }
  /****************** nav bar ********************/
  /**{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
  }*/
  /*body{
    font-family: montserrat;
  }*/
  nav{
    background: #0082e600;
    height: 80px;
    width: 100%;
    position: relative;
  }
  /*label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  }*/
  .logo{
    width: 100px;
    height: 60px;
    margin: 20px 0 0 30px;
  }
  
  nav ul{
    float: right;
    margin-right: 20px;
  }
  nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
  }
  a.active,a:hover{
    background: #1b9bff;
    transition: .5s;
  }
  .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  @media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    a:hover,a.active{
      background: none;
      color: #0082e6;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }/*
  section{
    background: url(bg1.jpg) no-repeat;
    background-size: cover;
    height: calc(100vh - 80px);
  }*/
  /*************** deneme div önünde************/
  /*.dialog {
    height: 500px;
    width: 300px;;
    background-color: #f2dd722f;
    position: absolute;
    top: 1rem;
    left: 40rem;
  }*/
  /****************************** container **************************/
  /* Hero */
  .hero {
    position: absolute;
  }
  .hero .row {
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-width: 100vw;
    height: 100%;
    width: 100%;
    padding: 0 30px;
    gap: 30px;
    justify-content: space-between;
  }
  .hakimizda{
    position :relative;
    text-align: center;
    color: #ec0814;
    font-size: 30px;
  }
  /********************* footer ************************/
  .footer{
    color: #fff;
    position: absolute;
    text-align: center;
    bottom: 10px;
    width: 100%;
    left: 0px;
    font-size: 15px;
  }
  .footer p{
    text-align: center;
  }
  .footer a{
    color: #fff;
    text-decoration: none;
  }
  /************* social media list ******************/
  .fa {
    padding: 0px;
    font-size: 20px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
  }
  
  .slogan{
    color: #fff;
    position: absolute;
    text-align: center;
    top: 120px;
    width: 96.3%;
    text-decoration: solid;
    font-size: 25px;
  }
  
  .hero .row h2,
  .hero .row p {
    color: #fff;
  }
  .hero .row h2 {
    font-size: 36px;
    /*margin-bottom: 16px;*/
    width: fit-content;
  }
  .hero .column {
    width: 70%;
    margin-left: 10%;
  }
  .buttons {
    display: flex;
    margin-top: 25px;
    gap: 10px;
  }
  .btn {
    padding: 14px 26px;
    background: #fff;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn:last-child {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
  }
  .btn:last-child:hover {
    background-color: #fff;
    color: #333;
  }
  .hero_img {
    width: 100%;
    z-index: 10;
    margin: 0 0 0 0px;
    /*position: relative;*/
  }
  .img_isim{
    position :relative;
    text-align: center;
    color: #fff;
    font-size: 50px;
  }
  
  /* Reponsive */
  @media (width < 860px) {
    #menu_toggle {
      display: block;
    }
    .hero {
      margin: 60px 0 0 0;
      padding-top: 0px;
    }
  
    .menu_items {
      position: fixed;
      top: 0;
      width: 260px;
      background-color: #fff;
      height: 100%;
      left: -100%;
      padding: 50px 30px 30px;
      flex-direction: column;
      transition: all 0.5s ease;
    }
    .showMenu .menu_items {
      left: 0;
    }
    a {
      color: #333;
    }
    #menu_toggle {
      width: 20px;
      cursor: pointer;
    }
    .menu_items #menu_toggle {
      position: absolute;
      top: 20px;
      right: 20px;
    }
    .hero {
      padding-top: 130px;
    }
    .hero .row {
      flex-direction: column;
      padding: 0 20px;
      justify-content: center;
      min-height: 40vh;
      height: 100%;
      width: 100%;
    }
    .hero .row .column {
      width: 100%;
    }
  }
  
  @media (width < 600px) {
    .hero {
      margin: 60px 0 0 0;
    }
    .hero .row h2 {
      font-size: 26px;
    }
    .buttons {
      justify-content: center;
    }
    .btn {
      padding: 10px 16px;
    }
    .hero .row {
      /*display: flex;
      align-items: center;
      min-height: 100vh;
      height: 100%;
      width: 100%;*/
      padding: 30px;
      /*margin: 0 0 0 0px;*/
      /*min-height: 50vh;*/
      min-height: 73vh;
      /*height: 100%;
      width: 100%;*/
      
      /*gap : 350px;*/
      /*justify-content: space-between;*/
    }
    .hero_img {
      width: 60%;
      z-index: 10;
      margin: 0 0 0 60px;
      /*position: relative;*/
    }
  }

  /****************************** contact *******************/
  .contact_text{ 
    margin-left: 50px;
    font-size: 28px;
    color: rgb(255, 255, 255);
  }
  
  
.project p{
    color: rgb(255, 255, 255);
    text-align:justify;
  }
  
.project  a{
      color: rgb(255, 255, 255);
    }
  
    .project_content h1{
      color: #79677e;
      font-size: 40px;
    }
.contact{
        margin-top: 20px;
      }

      .contact .fa{
        padding: 5px;
        /*font-size: 60px;*/
        width: 60px;
        height: 60px;
        text-align: center;
        text-decoration: none;
        /*border-radius: 80%;*/
        color: #fff;
      }