
/* Updated 3/12/2022 */

* {
    box-sizing: border-box;
  }

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif; margin 0;
  max-width: 1440px;
}

.header {
  padding: 10px 80px 10px 50px;
  background-color: #255D83;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  color: #FFF;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}

.nav a:hover {
  color: #ff687e;
}

.nav {
  font-size: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav li {
  margin-right: 20px;
}


/* On smaller screens, decrease text size */
@media only screen and (max-width: 600px) {
.text {font-size: 1rem}
}


.hero {
  background-color: #e0dbcf;
  border-top: 2px solid orangered;
  /* border-bottom: 2px solid orangered; */
  font-size: 1.18rem;
  margin: 0px;
  padding: 10px 45px;
  display: flex;
  justify-content: center;
}

.hero1 {
  background-color: #e0dbcf;
  /*border-top: 2px solid orangered; */
  /* border-bottom: 2px solid yellow; */
  margin: 0px 0px 0px 0px;
  padding: 10px 45px 20px 45px;
  display: flex;
  justify-content: left;
}

.responsive {
  display: block;
  border-top: 2px solid orangered;
  border-bottom: 2px solid orangered;
  width: 100%;
  height: auto;
}

.hero-inner {
  font-size: 1.18rem;
  line-height: 1.4;
  /* max-width: 760px; */
}

.hero h1 {
  font-weight: normalbold;
  font-size: 1.5rem;
  margin: 0;
}

.responsive {
  width: 100%;
  height: auto;
}

.hero p {
  justify-content: left;
  font-size: 1.18rem;
  line-height: 1.4;
}

.footer {
  display: grid;
  align-content: end;
  border-bottom: 2px solid orangered;
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 0.7fr 1fr;
  grid-gap: 25px;
  padding: 20px 80px;
  background-color: #735983;
  color: #fff;
  font-size: 14px;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
}

.footer .sec h3 {
  position: relative;
  margin-bottom: 34px;
}

.footer .sec h3:after {
  content: '';
  position: absolute;
  top: 35px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #ffffff;
}

.footer .sec ul {
  list-style: none;
  padding-left: 0;
}

.footer .sec a {
  text-decoration: none;
  color: #ffffff;
}

.footer .sec a:hover {
  color: #ff687e;
}

.footer .sec .social {
  display: grid;
  grid-template-columns: repeat(4, 50px);
  margin-top: 15px;
}

.footer .sec .info li {
  display: grid;
  grid-template-columns: 30px 1fr;
  margin-bottom: 15px;
}

.footer .copyright-text {
  text-align: center;
  padding: 10px 0;
  background-color: #255D83;
  color: #ffffff;
  font-size: 14px;
}

/*Let's make it responsive*/
@media (max-width: 991px) {
  .footer .container {
      grid-template-columns: repeat(2, 1fr);
      padding: 50px;
  }
}

@media (max-width: 568px) {
  .footer .container {
      grid-template-columns: repeat(1, 1fr);
      padding: 30px;
  }
}
