/* Layout Styles
======================================= */
.doro-header-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 10px 0;
}

.doro-logo {
  width: 200px;
}

.doro-navigation {
  flex-grow: 1;
}

.doro-navigation ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

.doro-features-inner {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.doro-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 0 40px;
}

.doro-categories-inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4%;
  row-gap: 40px;
  padding: 0 20px;
}

.doro-category {
  width: 48%;
}

.doro-category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doro-btn-container {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.doro-category > a {
  display: block !important;
}

/* Font Styles
======================================= */
.doro-navigation ul a {
  text-decoration: none;
  color: #373737;
  padding: 10px 20px 11px;
  font-size: 1.286em;
  line-height: 1em;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 24px;
}

.doro-navigation ul a:hover {
  color: #fff;
  background-color: #008545;
}

.doro-blurb p {
  line-height: 1.2em;
}

.doro-category-content h3 {
  font-size: 2.5em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.doro-btn a,
.doro-btn p {
  text-decoration: none;
  background-color: #008545;
  color: #fff;
  border-radius: 24px;
  padding: 12px 30px;
  display: inline-block;
  box-shadow: 0 8px 0 #014c28;
  transition: all 0.3s ease;
}

.doro-btn a:hover,
.doro-btn p:hover {
  box-shadow: 0 12px 0 #014c28;
}

/* Media Queries
======================================= */
@media screen and (max-width: 992px) {
  .doro-header-inner {
    flex-direction: column;
    gap: 20px;
  }

  .doro-features-inner {
    flex-wrap: wrap;
    padding: 60px 0;
  }

  .doro-feature {
    width: 48%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .doro-feature {
    padding: 0 20px;
  }

  .doro-features-inner {
    flex-wrap: wrap;
    padding: 40px 0;
  }

  .doro-icon {
    width: 80px;
  }

  .doro-navigation ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .doro-category-content {
    padding: 25px;
  }
}

@media screen and (max-width: 768px) {
  .doro-categories-inner {
    flex-direction: column;
    align-items: center;
  }

  .doro-category {
    width: 100%;
  }

  .doro-feature {
    padding: 0 0;
  }

  .doro-features-inner {
    flex-direction: column;
    align-items: center;
  }

  .doro-feature {
    width: 100%;
    margin-bottom: 30px;
  }

  .doro-icon {
    width: 60px;
  }
}
