* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 12px;
    width: 100%;
    /* background-color: black; */
  }
  
  
  
  .logo {
    padding-left: 11%;
    padding-top: 1%;
  }
  
  .logo img{
    width: 25%;
  }
  
  
  
  /* banner */
  
  
  @keyframes fade{
    from{
      opacity:0.4;
    }
    to{
      opacity:1;
    }
  }
  
  
  
  #slider{
    margin:0 auto;
    width:80%;
    overflow:hidden;
  }
  
  .slides{
    overflow:hidden;
    animation-name:fade;
    animation-duration:1s;
    display:none;
    padding-top: 2%;
  }
  
  img{
    width:100%;
  }
  
  #dot{
    margin:0 auto;
    text-align:center;
  }
  /* .dot{
    display:inline-block;
    border-radius:50%;
    background:#d3d3d3;
    padding:8px;
    margin:10px 5px;
  } */
  
  .active{
    background:black;
  }
  
  @media (max-width:567px){
    #slider{
      width:100%;
  
    }
  }
  
  #heading{
    display:block;
    text-align:center;
    font-size:2em;
    margin:10px 0px;
  
  }
  
  
  
  
  
  
  
  /* navigation */
  
  a {
    text-decoration: none;
    color: #000;
  }
  
  a:hover {
    color: #000;
  }
  
  .navigation {
    position: fixed;
    width: 80px;
    height: 100vh;
    background: #2980b9;
    display: flex;
    flex-direction: column;
    padding-top: 2%;
  }
  
  .navigation .item {
    flex: 1;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.5s;
  }
  
  .navigation i {
    font-size: 30px;
  }
  
  .navigation .item:hover {
    background: #dcdde1
  }
  
  .navigation .label {
    position: relative;
    left: -120px;
    font-size: 15px;
    color: #000;
    transition: 0.5s ease;
  }
  
  .navigation .item:hover .label {
    left: 0
  }
  
  
  
  .item i {
    color: white;
  }
  
  .item label {
    text-decoration: none;
    color: #000;
  }
  
  
  
  
  /* search */
  
  .container-4 {
    overflow: hidden;
    width: 300px;
    vertical-align: middle;
    white-space: nowrap;
    margin-left: 70%;
    margin-top: -3%;
  }
  
  .container-4 input#search {
    width: 300px;
    height: 40px;
    background: white;
    border: 2px solid black;
    font-size: 10pt;
    float: left;
    color: #fff;
    padding-left: 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  
  .container-4 input#search::-webkit-input-placeholder {
    color: #65737e;
  }
  
  .container-4 input#search:-moz-placeholder {
    color: #65737e;
  }
  
  .container-4 input#search::-moz-placeholder {
    color: #65737e;
  }
  
  .container-4 input#search:-ms-input-placeholder {
    color: #65737e;
  }
  
  .container-4 button.icon {
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  
    border: none;
    /* background: #232833; */
    height: 40px;
    width: 50px;
    /* color: #4f5b66; */
    opacity: 0;
    font-size: 10pt;
  
    -webkit-transition: all .55s ease;
    -moz-transition: all .55s ease;
    -ms-transition: all .55s ease;
    -o-transition: all .55s ease;
    transition: all .55s ease;
  }
  
  .container-4:hover button.icon,
  .container-4:active button.icon,
  .container-4:focus button.icon {
    outline: none;
    opacity: 1;
    margin-left: -50px;
  }
  
  .container-4:hover button.icon:hover {
    background: #2980b9;
  }
  
  
  
  
  
  

  














  .retros h2{
    margin-left: 16%;
    padding-top: 6%;
  }
  
  
  
  
  /* recom */
  
  .retro1{
    width: 100%;
    padding-left: 10%;
    padding-top: 1%;
    height: 40vh;
  }
  
  
  .retrorap1{
    display: flex;
    grid-template-columns: auto auto auto auto auto auto;
    grid-column-gap: 20px;
    overflow: auto;
    padding-left: 6%;
  }
  
  .retroimg1{
    height: 33vh;
    width: 30vh;
  }
  
  .retroimg1 img{
    border-radius: 10px;
  }
  
  
  .retroimg1 h3{
    text-align: center;
    font-size: 16px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-left: -10px;
    /* border: 2px solid black; */
    width: 110%;
  }
  
  


  .retroimg1 a{
    text-decoration: none;
    color: black;
  }