@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap');

:root{
    --yellow:#f9ca24;
    --blue: #21376a;
    --green: #639026;
    --darkblue: #142d35;
    --bej: #9f9a6e;
}

*{
    font-family: 'Nunito', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none; 
    border:none;
    transition: all .2s linear;
}

*::selection{
    background:var(--green);
    color:#333;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

html::-webkit-scrollbar{
    width:1.4rem;
}

html::-webkit-scrollbar-track{
    background:#222;
}

html::-webkit-scrollbar-thumb{
    background:var(--green);
}

body{
    background:#111;
    overflow-x: hidden;
    padding-left: 35rem;
}

section{
    min-height: 100vh;
    padding:1rem;
}

.btn{
    padding:.7rem 3rem;
    background:#333;
    color:#fff;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 2rem;
    border-radius: 5rem;
}

.btn i{
    padding:0 .5rem;
    font-size: 1.8rem;
}

.btn:hover{
    background:var(--green);
}

.heading{
    text-align: center;
    margin:0 6rem;
    font-size: 4rem;
    padding:1rem;
    border-bottom: .1rem solid #fff4;
    color:#fff;
}

.heading span{
    color:var(--green);
}

header{
    position: fixed;
    top:0; left:0;
    z-index: 1000;
    height:100%;
    width:35rem;
    background:#1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
}

header .user .heramer{
    height:19rem;
    width:19rem;
    object-fit: cover;
    margin-bottom: 1rem;
}

header .user .name{
    font-size: 3.5rem;
    color:#fff;
}

header .user .post{
    font-size: 2rem;
    color:#eee;
}

header .navbar{
    width:100%;
}

header .navbar ul{
    list-style: none;
    padding:1rem 3rem;
}


header .navbar ul li a{
    display: block;
    padding:1rem;
    margin:1.5rem 0;
    background:#333;
    color:#fff;
    font-size: 2rem;
    border-radius: 5rem;
}

header .navbar ul li a:hover{
    background:var(--green);
}

#menu{
    position: fixed;
    top:2rem; right:2rem;
    background:#333;
    color:#fff;
    cursor: pointer;
    font-size: 2.5rem;
    padding:1rem 1.5rem;
    z-index: 1000;
    display: none;
    border-radius: 10px;
}

.home{
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding:0 15rem;
    background: url(/images/urunbg.jpg);
    background-repeat: none;
    background-size: cover;
}

/* media queries  */

@media (max-width:1200px){

    html{
        font-size: 55%;
    }

    .home{
        padding:1rem 4rem;
    }

}

@media (max-width:991px){

   header{
       left:-120%;
   }

   #menu{
       display: block;
   }

   header.toggle{
    left:0%;
   }

   body{
       padding:0;
   }


}

@media (max-width:768px){

    html{
        font-size: 50%;
    }
    .harita
    {
        width: 400px;
        height: 300px;
    }
 
 }

@media (max-width:400px){

    header{
        width: 100vw;
    }

    .heading{
        margin:0 3rem;
    }

    .about .row .counter .box{
        width: 100%;
    }
 
    .urunler .box-container .box{
        width:100%;
    }

    .portfolio .box-container .box{
        width:100%;
    }

    .contact .row form{
        margin:3rem 0;
    }
    .aciklama{
        width: 100%;
    }

 }
 .sosyal{
    display: flex;
  }
  .sosyal li{
    position: relative;
    display: block;
    color: #666;
    font-size: 30px;
    height: 60px;
    width: 60px;
    background: #171515;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 15px;
    cursor: pointer;
    transition: .5s;
  }
  a
  {
    color: inherit;  
    }

  .sosyal li:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: inherit;
    width: inherit;
    border-radius: 50%;
    transform: scale(.9);
    z-index: -1;
    transition: .5s;
  }
  .sosyal li:nth-child(1):before{
    background: #4267B2;
  }
  .sosyal li:nth-child(2):before{
    background: #E1306C;
  }
  .sosyal li:nth-child(3):before{
    background: #ff0000;
  }
  .sosyal li:nth-child(4):before{
    background: #25D366;
  }
  .sosyal li:hover:before{
    filter: blur(3px);
    transform: scale(1.2);
  }
  .sosyal li:nth-child(1):hover:before{
    box-shadow: 0 0 15px #4267B2;
  }
  .sosyal li:nth-child(2):hover:before{
    box-shadow: 0 0 15px #E1306C;
  }
  .sosyal li:nth-child(3):hover:before{
    box-shadow: 0 0 15px #ff0000;
  }
  .sosyal li:nth-child(4):hover:before{
    box-shadow: 0 0 15px #25D366;
  }
  .sosyal li:nth-child(1):hover{
    color: #456cba;
    box-shadow: 0 0 15px #4267B2;
    text-shadow: 0 0 15px #4267B2;
  }
  .sosyal li:nth-child(2):hover{
    color: #e23670;
    box-shadow: 0 0 15px #E1306C;
    text-shadow: 0 0 15px #E1306C;
  }

  .sosyal li:nth-child(3):hover{
    color: #ff1a1a;
    box-shadow: 0 0 15px #ff0000;
    text-shadow: 0 0 15px #ff0000;
  }
  .sosyal li:nth-child(4):hover{
    color: #44c774;
    box-shadow: 0 0 15px #25D366;
    text-shadow: 0 0 15px #25D366;
  }
  .haklar
  {
      color: #fff;
      margin-top: 80px;
      font-size: 12px;
  }
  .arka
  {
    background: #333;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 20px;
  }
  .card-wrapper
{
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
}
img{
    width: 100%;
}
.img-display{
    overflow: hidden;
}
.img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
    border-radius: 5px;
}
.img-showcase img{
    min-width: 100%;
    border-radius: 5px;
}
.img-select{
    display: flex;
}
.img-item{
    margin: 0.3rem;
}
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}
.img-item:hover{
    opacity: 0.8;
}
.product-content{
    padding: 2rem 1rem;
}
.product-title{
    font-size: 5rem;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    color: var(--green);
    margin: 1rem 0;
}
.product-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #fff;
}
.product-detail h2{
    text-transform: capitalize;
    color: var(--green);
    padding-bottom: 0.6rem;
    font-size: 23px;
}
.product-detail p{
    font-size: 16px;
    padding: 0.3rem;
    opacity: 0.8;
    color: #fff;
    margin: 20px 0;
}
.product-detail ul{
    margin: 50px 0;
    font-size: 0.9em;
}
.product-detail ul li{
    margin: 0;
    list-style: none;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
    font-size: 16px;
    color: var(--green);
}
.product-detail ul li span{
    font-weight: 400;
    color: #fff;
}
.card
{
    margin: 0;
    width: 100%;
    display: flex;
}


@media screen and (min-width: 992px){
    .card{
        display: grid;
        grid-template-columns: repeat(2, 11fr);
        grid-gap: 1.5rem;
    }
    .card-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .product-content{
        padding-top: 0;
    }
}
.geri
{
    width: 200px;
    height: 30px;
    background-color: transparent;
    border-radius: 5px;
    color: #fff;
    margin: 20px;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    left: 0;
    top: 0;
    display: flex;
}
.aciklama {
    float: left;
    width: 50%;
    padding: 10px;
    height: 300px;
  }
  .urunaciklama:after {
    content: "";
    display: table;
    clear: both;
  }