@font-face {
    font-family: "Roboto";
    src: url(./fonts/Roboto-Regular.ttf) format("truetype");
}
*{
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
.i1, .i2, .i3, .i4{
   margin: 0px 15px;
}
.navbar {
    background-color: #EAF0FF;
    color: black;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 70px;
}
.nav-left a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    padding-left: 10px;
}
.nav-left a:hover {
    color: #3B82F6;
}

.nav-right{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 100px;
}
.nav-right a {
    color: black;
    padding-right: 10px;
}
.nav-right a:hover {
    text-decoration: none;
}
.nav-butt{
    background-color: wheat;
    border: 4px solid green;
    color: black;
    font-weight: bolder;
    width: 100px;
    height: 50px;
    border-radius: 50px;
    font-size: medium;
    cursor: pointer;

}
.Selectors{
 margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.select1{
    border: 1px solid black;
    border-radius: 5px;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}
#location{
    width: 300px;
    border: none;
    padding: 12px 20px;
    font-size: medium;
    align-items: center;

}
.select2{
    border: 1px solid black;
    border-radius: 5px;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}
.search-box{
    width: 400px;
    height: 40px;
    border: none;
    padding: 10px;
    font-size: medium;
}
.search-button{
    background-color: #002f34;
    color: white;
    border: none;
    padding: 11px 20px;
    cursor: pointer;
    font-size: medium;
}
.Categories{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    margin-left: 100px;
    font-weight: lighter;
}
.Categories>a{
    text-decoration: none;
    color: black;
}
.Categories>a:hover{
    color: #3B82F6;
}
#categories{
    border: none;
    font-weight: bolder;
    font-size: medium;
}
.ads{
    margin-left: 20px;
    
}
.categories2 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 30px auto;
  padding: 50px;
  text-align: center;
}

.categories2 div {
  display: flex;
  flex-direction: column;
  align-items: center;
 margin-bottom: 20px;

}
h2{
    color: #002f34;
}
.link{
    text-decoration: none;
    color: #3A77FF;
    margin-right: 20px;
    font-weight: bold;

}
.labels{
    display: flex;
    justify-content: space-between;
}

.card{
    border: 1px solid rgba(0, 0, 0, 0.263);
    border-radius: 5px;
    width: 300px;
    height: auto;
}
.card-img{
    width: 100%;
    height: 50%;
}
.card-img img{
    width: 100%;
    height: 100%;
}

.card-content{
    padding: 20px;
}
.card-content>span{
    font-weight: bold;
    font-size: large;
    color: #002f34;
}
.card-content>p{
    font-size: medium;
    font-weight: lighter;
}
.caption{
    font-size: small;
    color: gray;

}
.time{
    font-size: x-small;
    color: gray;
    margin-top: 10px;
}
.i-cards{
    margin: 10px;
    display: flex;
    gap: 10px;
}

.download{
    background-color: #F7F8F9;
    width: 100%;
    height: auto;
margin-top: 100px;
    display: flex;
    gap: 100px;
}

.footer{
    background-color: #F7F8F9;
    width: 100%;
    height: auto;
    padding: 60px 40px;
    display: flex;
    gap: 100px;


}
.f-links{
    text-decoration: none;
    color: black;
    font-size: small;
    display: flex;
    flex-direction: column;
}
.f-links:hover{
    color: #577679;
}

.social>img{
    width: 50px;
    height: 50px;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, 0.263);
    border-radius: 50%;
}
.copyright{
    background-color: #002F34;
    color: white;
    height: 50px;
    text-align: right;
    padding-top: 15px;
}