*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: white;
    color: black;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 20px;
    padding: 20px;
}
.btn{
    display: inline-block;
    background-color: white;
    color: black;
    padding: 20px;
    margin: 20px;
    border-radius: 20px;
    transition: background 0.5s;
}
.btn:hover{
    background-color: skyblue ;
}
section{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 10px;
    padding: 5px;
}
.i16pro{
    padding: 5px;
    background-color: black;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    color: white;
    margin-bottom: 5px;
    transition: transform 0.5s;
  
}
.i16pro{
    transform:translateY(-5px);
}

.i16pro img{
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}

.i16{
    padding: 5px;
    background-color: black;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    color: white;
    margin-bottom: 5px;
    transition: transform 0.5s;
  
}
.i16:hover{
    transform:translateY(-5px);
}

.i16 img{
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}
.i15pro{
    padding: 5px;
    background-color: black;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    color: white;
    margin-bottom: 5px;
    transition: transform 0.5s;
  
}
.i15pro:hover{
    transform:translateY(-5px);
}

.i15pro img{
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}
.i15{
    padding: 5px;
    background-color: black;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    color: white;
    margin-bottom: 5px;
    transition: transform 0.5s;
  
}
.i15:hover{
    transform:translateY(-5px);
}

.i15 img{
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}
.i14pro{
    padding: 5px;
    background-color: black;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    color: white;
    margin-bottom: 5px;
    transition: transform 0.5s;
  
}
.i14pro:hover{
    transform:translateY(-5px);
}

.i14pro img{
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}
.i14{
    padding: 5px;
    background-color: black;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    color: white;
    margin-bottom: 5px;
    transition: transform 0.5s;
  
}
.i14:hover{
    transform:translateY(-5px);
}

.i14 img{
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}
.section2{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 10px;
    padding: 5px;
}
.section3{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 10px;
    padding: 5px;
}
.section4{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 10px;
    padding: 5px;
}
.i13pro{
    padding: 5px;
    background-color: black;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    color: white;
    margin-bottom: 5px;
    transition: transform 0.5s;
  
}
.i13pro:hover{
    transform:translateY(-5px);
}

.i13pro img{
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}
.i13{
    padding: 5px;
    background-color: black;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    color: white;
    margin-bottom: 5px;
    transition: transform 0.5s;
  
}
.i13:hover{
    transform:translateY(-5px);
}

.i13 img{
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}
.footer{
    background-color: black;
    font-size: 14px;
    color: white;
    padding: 20px;
    justify-content: space-between;
    display: flex;
}
.footer5{
    background-color: black;
    text-align: center;
    color: white;
}
a{
    text-decoration: none;
    color: black;
}
.Top{
    text-align: center;
    margin: 20px;
    position: relative;
    line-height: 60px;
}
.Top::after{
    content: '';
    background-color: skyblue;
    width: 150px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
