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

body {
  background-color: rgb(31, 113, 33);
}

/* text colors */
.text-primary {
  color: #28a745;
}

.text-secondary {
  color: #0284d0;
}

/* Button */

.btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  background-color: #1877f2;
  border: none;
  border-radius: 5px;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background-color: #28a745;
  color: #fff;
}

.btn-secondary {
  background-color: #0284d0;
  color: #fff;
}

.btn-dark {
  background-color: #333;
  color: #fff;
}

.btn-light {
  background-color: #f4f4f4f4;
  color: #333;
}

/* navbar */

.navbar {
  display: none;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #333;
  /* opacity: 0.8; */
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0px;
  padding: 0 30px;
  border-bottom: 1px solid #eee;
}

.navbar a:hover {
  border-bottom: 2px solid red;
}

.navbar a {
  color: #333;
  padding: 10px 20px;
  margin: 0 5px;
}

.navbar ul {
  display: flex;
}

.navbar img {
  padding: 10px;
  height: 100%;
}

/* Header */

.header {
  background: url(../images/home/sabin_pt.jpg) no-repeat center center/cover;
  height: 85vh;
  position: relative;
  color: #fff;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header * {
  z-index: 10;
}

.header .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 20px;
}

.header .content h1 {
  font-size: 55px;
  font-weight: 300;
}

.header .content p {
  font-size: 23px;
  max-width: 600px;
  margin: 20px 0 30px;
  line-height: 1.6;
}

.header .content p a.btn {
  text-decoration: none !important;
}

.main {
  background-color: rgb(31, 113, 33);
}

/* Info */

.info-container {
  width: 100%;
  color: white;
  height: 15vh;
  background-color: rgb(31, 113, 33);
}

.info-item-1 {
  padding: 25px;
  text-align: center;
  background-color: rgb(31, 113, 33);
  font-size: 1.3rem;
  line-height: 2rem;
}

@media (max-width: 768px) {
  
  body {
    max-height: 100%;

  .info-container {
   /* height: 100%; */
  }

  .info-item-1 {
    font-size: 1rem;
    padding: 15px;
    height: 100%;
    line-height: 1.6rem;
  }

.fb-link
 {
  color: white !important;
  text-decoration: none !important;
}
}

