*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
}
header{
    position:sticky;
    top: 0;left: 0;right: 0;
    background:rgb(255, 250, 250); 
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    padding: 3px 15%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    text-transform:capitalize;
}
header .logo image{
    display: flex;    
    align-items: center;
}
header .navbar ul{
    list-style: none;
}
header .navbar ul li{
    position: relative;
    float: left;
}
header .navbar ul li a{
    font-size: 18px;
    font-weight: bold;
    padding: 3px 13px;
    color: #000;
    display: block;
    border-radius: 6px;
}
header .navbar ul li a:hover{
    background: #333;
    color: #fff;
    }
header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 300px;
    background: rgb(255, 250, 250);
    display: none;
    
}
header .navbar ul li ul li{
    width:100% ;
    border-top: 1px solid rgba(0,0,0,.1);
}
header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: initial;
}
#menu-bar{
    display: none;

}
header label{
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}
.hslider {
  height: 90vh;
}
.copyright{
  background: #f1f1f1;
  text-transform: capitalize;
}


@media(max-width:991px){
    header{
        padding: 5px;
    }
    header label{
        display: initial;
    }
    header .navbar{
        position: absolute;
        top: 100%;left: 0;right: 0;
        background: rgb(255, 250, 250);
        border-top: 1px solid rgba(0,0,0,.1);
        display: none;
    }
    header .navbar ul li{
        width: 100%;
        }
        header .navbar ul li ul{
            position: relative;
            width: 100%;
            
        }
        header .navbar ul li ul li{
            background: rgb(255, 250, 250);
            
        }
       #menu-bar:checked  ~ .navbar{
            display: initial;
            
        }
       
    
       
    } 
    /* footer */
    input[type=text], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        resize: vertical;
      }
      
      label {
        padding: 12px 12px 12px 0;
        display: inline-block;
      }
      
      input[type=submit] {
        background-color: #04AA6D;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        float: right;
      }
      
      input[type=submit]:hover {
        background-color: #45a049;
      }
      
      .container {
        border-radius: 5px;
        background-color: #f2f2f2;
        padding: 20px;
      }
      
      .col-25 {
        float: left;
        width: 25%;
        margin-top: 6px;
      }
      
      .col-75 {
        float: left;
        width: 75%;
        margin-top: 6px;
      }
      
      /* Clear floats after the columns */
      .row:after {
        content: "";
        display: table;
        clear: both;
      }
      
      /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
      @media screen and (max-width: 600px) {
        .col-25, .col-75, input[type=submit] {
          width: 100%;
          margin-top: 0;
        }
      }
    .submitbtn{
      display: flex;
      justify-content: center;
      align-items: center;
      
    }
    

body {
  font-size: 1.3rem;
  font-family: 'Oswald', sans-serif;
  background: #f9f9f9;
}

a {
  color: #333;
  text-decoration: none;
}

.container {
  max-width: 100%;
  margin: auto;
  overflow: auto;
  padding: 0 2rem;
}

.main-header {
  height: 55vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-header h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.main-header h1 span {
  color: #b50d10;
}

.main-header p {
  font-size: 2rem;
} 

img {
  width: 100%;
}

.card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  background: #f1f1f1;
  margin-top: 1.5rem;
  text-align:left;
}

.card h3 {
  margin-bottom: 2rem;
}

.card img {
  height: 500px;
}
.card p a img{
  height: auto;
  width: auto;
}
.card h3 a img{
height: auto;
width: 5%;
}
.card > div {
  padding: 2rem;
}

.card:nth-child(even) img {
  order: 2;
}


.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.8rem 1.8rem;
  margin-top: 2rem;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.8;
}

@media(max-width:600px) {
  .card {
    display: block;
  }
}
