*,html{
  scroll-behavior: smooth;
  }
  
  *, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }
  :root{
  scrollbar-color: rgb(224, 22, 22) rgb(46,54,69) !important;
  scrollbar-width: thin !important;
  --white:#fff;
  --black:#1e1e1e;
  --pink:#ffffff;
  --secondary:#202124;
  --gray:#b8bca7;
  --blue:#061221;
  }
  ::-webkit-scrollbar {
  height: 12px;
  width: 20px;
  }
  ::-webkit-scrollbar-thumb {
    
  background:  repeating-linear-gradient( 135deg, rgb(236, 236, 236), rgb(221, 221, 221) 5px, rgb(201, 201, 201) 5px, rgb(228, 228, 228) 1px, rgb(224, 224, 224) 10px, rgb(53, 103, 126) 15px, rgb(214, 214, 214) 15px, rgb(224, 224, 224) 10px );
  -webkit-border-radius:  5px;
  }
  ::-webkit-scrollbar-corner {
  background: #000;
  }
  
        
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  * {
    box-sizing: border-box;
  }
  :root{
    --main-clr: rgb(235, 236, 240);
    --font-clr: 108, 122, 146;
    --bright-clr: 255, 255, 255;
    --dark-clr: 0, 0, 0;
  }
body{
    background-color: var(--main-clr); 
    font-family: "Public Sans", sans-serif;
}

img{
  border-radius: 4px;
}

header {
 display: flex;
}
.menu-wrap {
  
  --gray: rgb(131, 131, 131);
  height: 59px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}
.logo-img {
  height: 50px;
}
.menu-icon {
  font-size: 2.4em;
  color: black;
  line-height: 50px;
}
nav {
  position: absolute;
  background-color: white;
  top:70px;
  left:0;
  width: 100%;
}
nav ul {
  list-style-type: none;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s;
}
nav ul li {
  padding: 0 15px;
}
nav ul li a {
  display: inline-block;
  color:black ;
  text-decoration: none;
  letter-spacing: 0.05em;
}
#checkbox {
  display: none;
}
#checkbox:checked ~ nav ul {
  max-height: 200px;
  padding: 15px 0;
  transition: all 0.5s;
}

@media (min-width: 768px) { 
  .menu-icon {
      display: none !Important;
  }
  nav {
      position: relative;
      top: -10px;
      background-color: transparent;
  }
  nav ul {
      max-height: 70px;
      padding: 15px 0;
  }
  nav ul li {
      display: inline-flex;
      padding-left:20px;
  }
}




  ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  
  article {
    --gray: rgb(128, 128, 128);
    padding: 1rem;
    border-radius: 10px;
    text-align: left;
    line-height: 6px;
    color: var(--gray);
    box-shadow: 8px 8px 38px rgba(var(--dark-clr), 0.1),
  -8px -8px 10px rgba(var(--bright-clr), 0.8);   
  }
  
  article:hover{
  box-shadow: 8px 8px 38px rgba(0, 0, 0, 0.247);
  }
  
  
  
  h2{
      color: rgb(92, 91, 91);
  }
  
  .row::after {
    content: "";
    clear: both;
    
    display: table;
  }
  
  [class*="col-"] {
    float: left;
    padding: 15px;
  }
  
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {
    width: 25%;
  }
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}


/* 
  row */
  .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  [class*="col-"] {
    float: left;
    padding: 15px;
  }

  html {
    font-family: "Lucida Sans", sans-serif;
  }
  

  
  .menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .menu li {
    font-size: 15px;
    cursor: pointer;
    padding: 5px;
    background-color: var(--main-clr); 
    color: #5e5e5e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0), 0 1px 2px rgba(131, 131, 131, 0.007);
  }
  
  .menu li:hover {
    background-color: #f0efef;
    box-shadow: 8px 8px 38px rgba(var(--dark-clr), 0.1),
    -8px -8px 10px rgba(var(--bright-clr), 0.8);
    border-radius: 10px;
  }

  
  /* button  */
#inox{
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--main-clr);
  border-radius: 50%;
  font-size: 0.8rem;
  box-shadow: 5px 2px 10px rgba(var(--dark-clr), 0.2),
              -5px -5px 10px rgba(var(--bright-clr), 0.8);
  transition: box-shadow 200ms;
   background-color: #32309202;
  color: rgb(167, 167, 167);
  -webkit-appearance: none;
  justify-content: center;
  outline: none;
  cursor: pointer;
  width: 90px;
  height: 30px;
  margin: 10px;
  border-radius: 30px;
  transition: all .2s ease;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  font-weight: 300;
}

/* serchingbar */
form.example input[type=text] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid rgb(226, 226, 226);
  float: left;
  border-radius: 60px;
  width: 80%;
  background: #f1f1f1;
}

form.example button {
  float: left;
  width: 14%;
  padding: 10px;
  background: #e2e2ff;
  border-radius: 50px;
  color: white;
  font-size: 17px;
  border: 1px solid rgb(235, 235, 235);
  border-left: none;
  cursor: pointer;
}

form.example button:hover {
 
  background: #0b7dda;
}

form.example::after {
  content: "";
  clear: both;
  display: table;
}

main {
  border-bottom: 0.3px solid rgba(0, 0, 0, 0.123);
  position: relative;
  padding: 10px 4px;
  height: 90px;
  display: grid; 
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 20px;
}
div {
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .5s;
}


div:first-child {
  grid-column: span 1;
}
div:nth-child(2) {
  grid-column: span 3;
}


.logo {
  font-size: 30px; 
}

/* .logo>div>li {
  
} */