
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-box{
    width:420px;
    max-width:90%;
    background:linear-gradient(135deg,#B9D0AE,#0a3e17);
    border-radius:20px;
    padding:30px;
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
    position:relative;
    animation:popup 0.4s ease;
}

@keyframes popup{
    from{
        opacity:0;
        transform:translateY(-40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.close-btn{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
    color:#fff;
}

.popup-box h2{
    margin-bottom:10px;
    font-size:28px;
    text-align:center;
}

.popup-box p{
    text-align:center;
    margin-bottom:20px;
    opacity:0.9;
}

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px 15px;
    border:fff;
    border-radius:0px;
    outline:none;
    font-size:14px;
}

.form-group textarea{
    height:50px;
    resize:none;
}

.submit-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#ffffff;
    color:#0f9d58;
    font-weight:700;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.submit-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:480px){
    .popup-box{
        padding:20px;
    }

    .popup-box h2{
        font-size:22px;
    }
}

.contents {
  position: relative;
  width: 100%;
  height: 100%;
}

/* =========================
   TITLE
========================= */

.hero-title {
  position: absolute;
  bottom: 60%;
  left: -13%;

  margin: 0;
  padding: 0;

  text-align: left;

  color: #08590e;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);

  font-size: 24px;
  line-height: 1.1;
}

.hero-light {
  font-weight: 400;
  font-size: 24px;
}

.hero-bold {
  font-size: 150%;
  font-weight: bolder;
  color: #0a3e17;
}


/* =========================
   DESCRIPTION
========================= */

.hero-description {
  position: absolute;
  bottom: 25%;
  left: -13%;

  margin: 0;
  padding: 0;

  text-align: left;

  color: #08590e;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);

  font-size: 16px;
  font-weight: 325;
  line-height: 1.5;
}

.hero-description span {
  font-size: 200%;
  line-height: 150%;
}


/* =========================
   1200px+
========================= */

@media (min-width: 1200px) {
  .hero-title {
    left: -13%;
    bottom: 60%;
  }

  .hero-description {
    left: -13%;
    bottom: 25%;
  }
}

/* =========================
   992px - 1199px
========================= */

@media (min-width: 992px) and (max-width: 1199px) {

  .hero-title {
    left: -5%;
    bottom: 58%;
    font-size: 22px;
  }

  .hero-light {
    font-size: 22px;
  }

  .hero-description {
    left: -5%;
    bottom: 23%;
    font-size: 15px;
  }
}


/* =========================
   768px - 991px
========================= */

@media (min-width: 768px) and (max-width: 991px) {

  .hero-title {
    left: 0;
    bottom: 55%;
    font-size: 20px;
  }

  .hero-light {
    font-size: 20px;
  }

  .hero-description {
    left: 0;
    bottom: 15%;
    font-size: 14px;
  }
}


/* =========================
   481px - 767px
========================= */

@media (min-width: 481px) and (max-width: 767px) {

  .hero-title {
    left: 0;
    bottom: 30%;
    font-size: 18px;
  }

  .hero-light {
    font-size: 18px;
  }

  .hero-description {
    left: 0;
    bottom: -90%;
    font-size: 12px;
  }
}


/* =========================
   0px - 480px
========================= */

@media (max-width: 480px) {

  .hero-title {
    left: 0;
    bottom: 20%;
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-light {
    font-size: 16px;
  }

  .hero-description {
    left: 0;
    bottom: -120%;
    font-size: 10px;
  }
}

.team-slider .owl-item {
    padding: 0 12.5px;
}

.team-slider {
    margin-left: -12.5px;
    margin-right: -12.5px;
}

@media (max-width: 767px) {

  footer .row {
    text-align: center;
  }

  footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  footer .footer-links li {
    margin: 0 8px;
  }

  /* Copyright */
  footer .copyright {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 15px;
  }

  footer .copyright p {
    width: 100%;
    text-align: center;
    margin: 0;
  }
}