body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  height: 100%;
  max-width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 10;
  padding: 0;
  color: white;
}
.container .left-container{
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 5%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5% 5%;
}
.container .right-container{
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 10% 0;
}
.container .card{
  border: 1px solid white;
  width: 70%;
  padding: 3%;
}
.container .card .logo img{
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 25%;
}

.sec-container{
  color: white;
  width: 90%;
  height: 100%;
  margin: 5%;
}
.sec-container .mission-vision-container{
  display: flex;
  justify-content: space-evenly;
  margin-top: 5%;
}
.v-card{
  text-align: center;
  padding: 1%;
  width: 30%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.call-to-action-card{
  width: 40%;
  padding: 3%;
  margin: 5% 30%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
}
.buttons-container{
  display: flex;
  justify-content: space-around;
  margin: 1% 0;
  width: 100%;
  margin-bottom: 5%;
}
.buttons-container a{
  border: 1px solid white;
  padding: 2%;
  width: 30%;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: black;
  background-color: white;
  font-weight: bold;
  transition: 0.3s;
}
.buttons-container a:hover{
  scale: 1.1;
}

/*mobile devices*/
@media (max-width: 767px){
  body{
    margin: 0;
    padding: 0;
  }
  .container{
    flex-direction: column-reverse;
    justify-content:start;
    height: 100%;
  }
  .container .left-container{
    width: 100%;
    height: fit-content;
    border-radius: 10px;
  }
  .container .left-container .heading{
    margin-bottom: 0;
  }
  .container .left-container .description{
    margin-top: 0;
  }
  .container .right-container{
    width: 100%;
    height: fit-content;
    padding: 0 0 10% 0;
  }
  .container .right-container .card{
    width: 100%;
    border-radius: 10px;
    margin: 10% 0 0 0;
  }

  .sec-container .heading{
    text-align: center;
  }
  .sec-container .mission-vision-container{
    flex-direction: column;
  }
  .v-card{
    width: 80%;
    margin: 0 10% 10% 10%;
  }
  .sec-container .h5{
    text-align: center;
  }
  .sec-container .logo-container{
    text-align: center;
  }
  .call-to-action-card{
    width: 100%;
    margin: 0;
  }
  .buttons-container{
    flex-direction: column;
  }
  .buttons-container a{
    width: 100%;
    margin: 5% 0 0 0;
    scale: 1;
  }
  .buttons-container a:hover{
    scale: 1;
  }
}

@media (min-width: 600px) and (max-width: 1024px){
  body{
    margin: 0;
    padding: 0;
  }
  .container{
    flex-direction: column-reverse;
    justify-content:start;
    height: fit-content;
  }
  .container .left-container{
    width: 100%;
    height: fit-content;
    border-radius: 10px;
  }
  .container .left-container .heading{
    margin-bottom: 0;
  }
  .container .left-container .description{
    margin-top: 0;
  }
  .container .right-container{
    width: 100%;
    height: fit-content;
    padding: 0 0 10% 0;
  }
  .container .right-container .card{
    width: 100%;
    border-radius: 10px;
    margin: 10% 0 0 0;
  }

  .sec-container .heading{
    text-align: center;
  }
  .sec-container .mission-vision-container{
    flex-direction: column;
  }
  .v-card{
    width: 80%;
    margin: 0 10% 10% 10%;
  }
  .sec-container .h5{
    text-align: center;
  }
  .sec-container .logo-container{
    text-align: center;
  }
  .call-to-action-card{
    width: 100%;
    margin: 0;
  }
  .buttons-container{
    flex-direction: column;
  }
  .buttons-container a{
    width: 100%;
    margin: 5% 0 0 0;
    scale: 1;
  }
  .buttons-container a:hover{
    scale: 1;
  }
}











/* Small Tablets (Portrait)
@media (min-width: 600px) and (max-width: 767px) 

Medium Tablets (Portrait & Landscape)
@media (min-width: 768px) and (max-width: 1024px) */