
/* Updated 3/16/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;
}

/* -- start SlideShow elements --> */

mySlides {
  display: none
}

img {
vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
max-width: 1028px;
position: relative;
margin: auto;
}

/* Next & previous arrow buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}

/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}

/* On hover, add a blackish-gray background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.4);
}

/* Caption text */
.text {
color: goldenrod;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 6px;
width: 100%;
text-align: center;
}

/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 12px;
width: 12px;
margin: 0px 3.5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.active, .dot:hover {
background-color: #964b00;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 3.2s;
  animation-name: fade;
  animation-duration: 3.2s;
}

@-webkit-keyframes fade {
  from {opacity: .3}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .3}
  to {opacity: 1}
}

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

.hero {
  background-color: #e0dbcf;
  border-top: 3px solid gold;
  border-bottom: 2px solid gold;
  font-size: 50pt;
  margin: 0px;
  padding: 10px 45px;
  display: flex;
  justify-content: center;
}

.hero1 {
  background-color: #e0dbcf;
  border-top: 3px solid gold;
  border-bottom: 2px solid gold;
  margin: 15px 0px 0px 0px;
  padding: 10px 45px;
  display: flex;
  justify-content: center;
}

.hero-inner {
  max-width: 760px;
}

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

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

.features {
  background-color: #c7bda7;
  padding: 10px 45px;
}

.features h1 {
  font-size: 1.6rem;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-column-gap: 45px;
  grid-row-gap: 25px;
}

.featured-item h3 {
  color: darkred;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
}

.featured-item p {
  margin: 0;
  line-height: 1.4;
  color: #333;
}

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

.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: 3px solid gold;
  border-bottom: 3px solid gold;
}

.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;
  /* text-decoration: underline; */
}

.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;
  }
}
