@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.logo_section{
    padding: 30px 0;
    border-bottom: 2px solid rgba(32, 27, 27, 0.699);
}
.logo{
    width:17%;
}
.banner_section{
    padding:30px 0;
}
.main_banner {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.banner{
    width: 100%;
}
.main_heading{
    padding: 30px 0;
}
.heading_h4{
    font-weight: 600;
    font-size:35px;
    color:#04456d;
}
.para{
    font-size:17px;
    word-spacing: 2px;
}

.button_link {
    padding: 10px 20px;
    background-color:#f1c40f;
    color: #1f1b1b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size:17px;
} 
.line_bottom{
    border-bottom: 2px solid #1f1b1b;
}
.col-md-6 {
    display: flex;
}
.button_drive {
    padding: 10px 20px;
    background-color:#1374b4;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size:17px;
}
.summer_image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}
.row{
    padding: 30px 0;
}
a{
    text-decoration: none;
    color:#ffffff;
}
a:hover{
    text-decoration: none;
    color:#e6e3e3;
}
.app_section{
    padding: 30px 0;
    background-color:#e5e7e9;
}
.app_heading{
    text-align:center;
}
.app_h4{
    font-weight: 400;
    font-size:28px;
    color:#4e5963;
}
.App_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
  }

  .App_icons img {
    width: 215px;
    height: auto;
  }
.covid_section{
    padding: 30px 0;
    padding-bottom:0px;
}
.link{
    text-decoration: underline;
    color: #000;
}
.link:hover{
    text-decoration: underline;
    color: #221e1e;
}

#mobile_view {
    display: none;
  }


/*****Responsive Queries*****/
@media (max-width: 599px) {
    #mobile_view {
      display: block; 
    }
    #desktop_view {
      display: none;
    }
  }
  
@media (max-width: 600px) {
    .logo_section{
        padding: 25px 0;
    }
    .logo{
        width:40%;
        align-items: center;
        display: block;
        margin: 0 auto;
    }
    .heading_h4{
        font-size:23px;
        word-spacing: 2px;
    }
    .app_h4{
        font-weight: 400;
        font-size:23px;
        color:#4e5963;
    }
    .row{
        padding: 25px 0;
    }
    .main_heading{
        padding: 25px 0;
    }
    .App_icons img {
        width: 155px;
        height: auto;
    }
    .covid_section{
        padding: 0px 0;
    }   
    .desktop_view{
        display: none;
    } 
    
}

