 *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

.container1{
  display: grid;
  grid-template-columns: auto minmax(150px, 1500px);
  grid-template-rows: auto auto;
  justify-items: center;
  height: auto;
}
.img{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: block;
    justify-self: left;
    background: linear-gradient(to right, #FF6D0C, rgb(255, 132, 43));
}
.logo{
  box-sizing: content-box;
  width: 100%;
}

.links{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    padding-left: 10vw;
    display: inline-block;
    background: linear-gradient(to right, rgb(255, 132, 43), rgb(247, 124, 36));
}

.links div{
  display: inline-block;
}

.links a{
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: 700;
  margin-left: 2vw;
  font-size: 1.3rem;
  align-self: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

strong{
  font-size: 110%;
}

.menu{
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    background: linear-gradient(#005FAD, rgb(0, 122, 221) );
    width: 100%;

}
.menu a{
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: 600;
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
  padding: 0.1vw 0.5vw;
  font-size: 1rem;
  border-radius: 1vw;
  margin-left: 7vw;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.menu a:hover{
    background: radial-gradient(#FF6D0C, rgb(255, 136, 56));
    border-radius: 25px;

}
.active{
    background: radial-gradient(#FF6D0C, rgb(255, 136, 56));
  border-radius: 25px;
  padding: 0.1vw 0.5vw;
  }

.main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2rem 0;
  padding-bottom: 2rem;
}

.main a {
  margin: 0;
  display: block;
  width: 100%;
}

.imag{
  width: 100%;
}

.footer-sub_content{
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    grid-template-rows: auto;
    grid-gap: 0 2rem;
    background: #005FAD;
    width: 100vw;
    padding-top: 5px;
    padding-bottom: 5px;
}

.footer-company_details{
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    color: white;
    font-size: 1rem;
}

.footer-company_details1{
    grid-row: 2;
    grid-column: 2;
    align-self: center;
    justify-self: center;
    color: white;
    font-size: 1rem;
}

@media (max-width: 1081px) {
  .links{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    padding-left: 10vw;
    display: grid;
    grid-auto-flow: row;
    background: linear-gradient(to right, rgb(255, 132, 43), rgb(247, 124, 36));
}

.links div{
  display: block;
}

.links a{
  display: block;
  text-decoration: none;
  color: white;
  font-weight: 700;
  margin-left: 2vw;
  font-size: 1.5vw;
  align-self: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.links1{
  grid-column: 1 / 2; grid-row: 1 / 3;
}

.links2{
  grid-column: 2 / 3; grid-row: 1 / 3;
}

.links3{
  grid-column: 1 / 3; grid-row: 3 / 4
}

.menu a{
  font-size: 0.5rem;
  justify-content: center;
}

.footer-company_details, .footer-company_details1{
    font-size: 0.5rem;
}

.company-info h3, .company-info ul{
    font-size: 0.5rem;
}

}