/* ------- This CSS File will be used in every page ------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
html{
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Roboto", sans-serif;
  max-width: 1600px;
  margin: auto;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
a {
  color: #46505a;
  text-decoration: none;
  transition: color 100ms linear, opacity 100ms linear;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0px;
}

li {
  padding: 10px; 
  border-radius: 10px;
  transition: background-color 100ms linear;
}

li:hover {
  background-color: #f3f6f9;
}
.container {
  margin: auto;
  max-width: 1440px;
}
@media screen and (max-width: 1399px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.attribution {
  bottom: -0.125rem;
  width: auto;
  position: absolute;
  padding-left: 0.5rem;
  text-align: right;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0.5rem;
  background: rgba(28, 28, 28, 0.7);
  font-size: 0.75rem;
  color: #fff;
  z-index: 3;
}

.attribution > a {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  font-weight: 300;
  letter-spacing: 0.05rem;
}
.attribution > a:hover {
  text-decoration: underline;
  color: rgb(68, 198, 207);
}

.attributionForMobile {
   font-size: 0.4rem;
   padding: 0.15rem 0.5rem;
  }
  
  .hero{
    height: 650px;
    overflow: hidden;
    position: relative;
    background-image: url(../images/new_img.jpg);
    background-position: center;
  
    background-repeat: no-repeat;
  
    background-attachment: scroll;
  
    background-size: cover;
  }
  .hero::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 80%;
    bottom: 0;
background: linear-gradient(
90deg,rgba(0,0,0,0.2) 0%,transparent 100%),linear-gradient(
90deg,rgba(0,0,0,0.1) 0%,transparent 100%);
  z-index: 2;
  }
  .brandTagline {
    position: absolute;
    top: 25%;
    left: 2%;
    bottom: 25%;
    color: #ffffff;
    z-index: 3;
 
  }
  .brandTagline > h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    margin-bottom: 2rem;
    color: hsl(0, 0%, 100%);
  }
  
  .btn {
    width: 152px;
    height: 52px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.005em;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    background-color: #0d6efd;
    border-radius: 8px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  .btn:hover{
    background-color: #0b5ed7;;
  }
  .btnOutlined {
    margin-top: 1rem;
    max-width: 162px;
    max-height: 52px;
    color: #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.005em;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    background: transparent;
    border-radius: 6px;
    line-height: 1.75;
    padding: 5px 15px;
    border: 1px solid rgba(25, 118, 210, 0.5);
  }
  .btnOutlined:hover {
    background-color: transparent;
    text-decoration: none;
    border: 1px solid #1976d2;
  }  


  @media screen and (max-width: 768px) {
    .hero {
      height: 500px;
      overflow: hidden;
    }
    .brandTagline {
      opacity: 1;
      top: 25%;
      bottom: 10%;
    }
    .brandTagline > h1 {
      font-size: 2.475rem;
      font-weight: 700;
      font-family: "Roboto", sans-serif;
      margin-bottom: 1rem;
      color: hsl(0, 0%, 100%);
    }

    .btn {
      width: 102px;
      height: 42px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      letter-spacing: 0.005em;
      font-style: normal;
      font-weight: 300;
      font-size: 17px;
      line-height: 21px;
      border-radius: 10px;
    }
   
    .btnOutlined {
      font-size: 14px;
      max-width: 134px;
    }
  }
  @media screen and (max-width: 576px) {
    .hero {
      max-height: 550px;
    }
    .brandTagline {
      top: 25%;
      line-height: 2.5rem;
    }
    .brandTagline > h1 {
      font-size: 1.875rem;
      font-weight: 700;
      font-family: "Roboto", sans-serif;
      margin-bottom: 1rem;
      color: hsl(0, 0%, 100%);
    }

    .btn {
      width: 102px;
      height: 42px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      letter-spacing: 0.005em;
      font-style: normal;
      font-weight: 300;
      font-size: 17px;
      line-height: 21px;
      border-radius: 8px;
    }
   
    .btnOutlined {
      font-size: 14px;
      max-width: 134px;
      margin-left: auto;
      margin-right: auto;
    }
  }
