*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#f4f7f6;
}

/* ===== NAVBAR ===== */

.navbar{
  width:100%;
  padding:20px 50px;
  display:flex;
  align-items:center;

  background:
    linear-gradient(rgba(255,255,255,0.85),
    rgba(255,255,255,0.85)),
    url('../img/bg-navbar 4.png') repeat;

  background-size:auto;

  box-shadow:0 6px 25px rgba(0,0,0,0.06);

  position:sticky;
  top:0;

  z-index:1000;
}

.navbar-wrapper{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img{
  height:90px;
  width:auto;
  object-fit:contain;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.small-text{
  font-size:14px;
  font-weight:600;
  color:#198754;
  letter-spacing:1px;
}

.big-text{
  font-size:38px;
  font-weight:700;
  color:#198754;
}

.bottom-text{
  font-size:14px;
  color:#198754;
}

/* NAV */

.nav-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:35px;
}

.nav-center a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  font-size:15px;
  position:relative;
}

.nav-center a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-6px;
  background:#198754;
  transition:.3s;
}

.nav-center a:hover::after{
  width:100%;
}

.nav-center a:hover{
  color:#198754;
}

.btn-form{
  padding:10px 22px;
  background:#D97706;
  color:white;
  border-radius:10px;
  text-decoration:none;
  font-weight:500;
}

.btn-form:hover{
  background:#b45309;
}

/* DROPDOWN */

.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;

  top:35px;
  left:0;

  background:white;

  border-radius:10px;

  box-shadow:
  0 10px 30px rgba(0,0,0,.08);

  padding:10px 0;

  min-width:200px;

  opacity:0;
  visibility:hidden;

  transform:translateY(10px);

  transition:.3s;
}

.dropdown-menu a{
  display:block;
  padding:10px 20px;
  color:#333;
  text-decoration:none;
  font-size:14px;
}

.dropdown-menu a:hover{
  background:#f1f8f4;
  color:#198754;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-toggle{
  display:flex;
  align-items:center;
  gap:5px;
}

.arrow{
  font-size:12px;
  transition:.3s;
}

.dropdown:hover .arrow{
  transform:rotate(180deg);
}

/* FOOTER */

.footer{
  background:#87998c;
  color:white;

  padding:80px 120px 30px;
}

.footer-container{

  max-width:1400px;

  margin:auto;

  display:grid;

  grid-template-columns:
  2fr 1fr 1fr 1.5fr;

  gap:70px;
}

.footer h3{
  font-size:32px;
  margin-bottom:25px;
}

.footer-about p{

  color:#d6d6d6;

  line-height:1.8;

  max-width:350px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{

  text-decoration:none;

  color:#d6d6d6;

  margin-bottom:15px;

  transition:.3s;
}

.footer-links a:hover{
  color:#FFD166;
}

.contact-item{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.contact-item i{
  margin-top:6px;
  font-size:18px;
}

.contact-item p{

  color:#d6d6d6;

  line-height:1.8;
}

.social-icons{

  display:flex;

  gap:22px;

  margin-top:30px;
}

.social-icons a{
  color:white;
  font-size:32px;
  transition:.3s;
}

.social-icons a:hover{
  color:#FFD166;
}

.footer::after{

  content:'';

  display:block;

  height:1px;

  background:
  rgba(255,255,255,.15);

  margin-top:50px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:25px;
}

.footer-logo img{
  width:139px;
  height:auto;
}

.footer-logo-text{

  display:flex;

  flex-direction:column;

  line-height:1.1;

  position:relative;

  top:-14px;
}

.footer-small{

  font-size:14px;

  font-weight:600;

  color:#036636;
}

.footer-big{

  font-size:38px;

  font-weight:700;

  color:#036636;
}

.footer-bottom{
  font-size:14px;
  color:#036636;
}