.header {
  background-color: var(--primary-color);
  z-index: 1000;
  position: relative;
}
.header .container nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.header .container nav ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.header .container nav ul li {
  margin: 0 1rem;
}
.header .container nav ul li a {
  color: black;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.header .container nav ul li a:hover {
  border-bottom: 1px solid black;
}

.footer {
  position: relative;
  margin-top: 40px;
}
.footer .container nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.footer .container nav ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.footer .container nav ul li {
  margin: 0 1rem;
}
.footer .container nav ul li a {
  color: black;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.footer .container nav ul li a:hover {
  border-bottom: 1px solid black;
}

.container .boxes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 100px;
}
@media (min-width: 576px) {
  .container .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .container .boxes {
    grid-template-columns: repeat(4, 1fr);
  }
}
.container .boxes .box {
  display: flex;
  flex-direction: column;
  border: 1px solid #f5f5f5;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.container .boxes .box:hover {
  border: 1px solid var(--primary-color);
}
.container .boxes .box img {
  width: 32px;
  height: 32px;
}
.container .boxes .box h2 {
  font-size: 24px;
  margin-top: 20px;
}
.container .boxes .box p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.435);
}
.container .section_01 {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .container .section_01 {
    flex-direction: row;
    gap: 0;
  }
}
.container .section_01 .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.container .section_01 .left h2 {
  font-size: 48px;
}
.container .section_01 .left h2 span {
  font-weight: bold;
}
.container .section_01 .left ul li {
  display: flex;
  align-items: center;
}
.container .section_01 .left ul li:before {
  content: "";
  background-image: url("/assets/images/icons/check-fill.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 24px;
  width: 24px;
  margin-right: 10px;
}
.container .section_01 .right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.container .section_01 .right img {
  width: 100%;
}
.container .section_02 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 100px;
  gap: 20px;
}
@media (min-width: 768px) {
  .container .section_02 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .container .section_02 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.container .section_02 .box_02 {
  width: 100%;
  height: 100%;
  position: relative;
}
.container .section_02 .box_02 .background {
  width: 100%;
  height: 245px;
  left: 8px;
  top: 0px;
  background: #ffd957;
  position: relative;
}
.container .section_02 .box_02 .content {
  width: 100%;
  height: 226px;
  padding: 20px;
  left: 0px;
  top: 8px;
  position: absolute;
  background: white;
  border: 2px black solid;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.container .section_02 .box_02 .content:hover {
  scale: 1.02;
}
.container .section_02 .box_02 .content .icon {
  width: 64px;
  height: 64px;
}
.container .section_02 .box_02 .content .text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.container .section_02 .box_02 .content .text .title .bold {
  color: black;
  font-size: 24px;
  font-family: Inter;
  font-weight: 700;
  text-transform: capitalize;
  word-wrap: break-word;
}
.container .section_02 .box_02 .content .text .title span {
  color: black;
  font-size: 24px;
  font-family: Inter;
  font-weight: 400;
  text-transform: capitalize;
  word-wrap: break-word;
}
.container .section_02 .box_02 .content .text .description {
  width: 315px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-family: Inter;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 21px;
  word-wrap: break-word;
}
.container .section_03 {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color);
}
@media (min-width: 768px) {
  .container .section_03 {
    flex-direction: row;
  }
}
.container .section_03 .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container .section_03 .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.container .section_03 .right h2 {
  font-size: 48px;
  font-weight: bold;
}
.container .section_03 .right ul {
  margin-top: 20px;
}
.container .section_03 .right ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.container .section_03 .right ul li:before {
  content: "";
  background-image: url("/assets/images/icons/check-fill.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  min-height: 24px;
  min-width: 24px;
  margin-right: 10px;
  filter: brightness(0) invert(0);
}
.container .faq_area {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.container .faq_area h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.container .faq_area h3 {
  font-size: 18px;
}
@media (min-width: 768px) {
  .container .faq_area h2 {
    font-size: 40px;
  }
  .container .faq_area h3 {
    font-size: 32px;
  }
  .container .faq_area .accordion {
    font-size: 24px;
  }
}
.container .faq_area .faqs {
  width: 100%;
}
.container .faq_area .faqs .accordion {
  background-color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  border-bottom: 1px solid #000;
}
.container .faq_area .faqs .accordion:after {
  content: "";
  background-image: url("/assets/images/icons/chevron.svg");
  float: right;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.container .faq_area .faqs .accordion.active::after {
  filter: brightness(0) invert(1);
}
.container .faq_area .faqs .accordion:hover::after {
  filter: brightness(0) invert(1);
}
.container .faq_area .faqs .accordion.active:after {
  transform: rotate(-90deg);
}
.container .faq_area .faqs .accordion.active, .container .faq_area .faqs .accordion:hover {
  background-color: black;
  color: white;
}
.container .faq_area .faqs .panel {
  padding: 20px;
  display: none;
  background-color: white;
  overflow: hidden;
}
.container .tags {
  margin-top: 100px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 576px) {
  .container .tags {
    justify-content: center;
  }
}
.container .tags .tag {
  background-color: rgba(255, 216, 87, 0.4901960784);
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  min-width: max-content;
  max-width: max-content;
}
.container .section_04 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--primary-color);
  margin: 100px 0;
}
@media (min-width: 768px) {
  .container .section_04 {
    flex-direction: row;
  }
}
.container .section_04 .left {
  flex: 1;
  min-height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .container .section_04 .left {
    flex-direction: column;
  }
}
.container .section_04 .left .wrapper {
  display: flex;
  gap: 20px;
}
.container .section_04 .left .wrapper .content {
  text-transform: capitalize;
}
.container .section_04 .left .wrapper .content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.container .section_04 .left .wrapper .content h3 {
  font-size: 18px;
  margin-top: 20px;
}
.container .section_04 .left .wrapper .content h4 {
  font-size: 14px;
  margin-top: 20px;
}
.container .section_04 .right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.container .service_areas {
  margin: 100px 0;
}
.container .service_areas h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.container .service_areas .areas {
  display: flex;
  justify-content: center;
  align-self: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 576px) {
  .container .service_areas .areas {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .container .service_areas .areas {
    justify-content: center;
  }
}
.container .service_areas .areas .area {
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  min-width: max-content;
  max-width: max-content;
}

.blog .page-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.blog .blog-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.blog .blog-items .blog-item {
  background-color: rgba(255, 217, 87, 0.3);
  padding: 20px;
}
.blog .blog-items .blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  background-color: var(--primary-color);
}
.blog .blog-items .blog-item h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.blog .blog-items .blog-item p {
  font-size: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog_detail .info_header {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .blog_detail .info_header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.blog_detail .info_header h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.blog_detail .info_header .info {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
}
@media (min-width: 992px) {
  .blog_detail .info_header .info {
    align-items: flex-end;
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.blog_detail .info_header .info .date {
  font-size: 16px;
}
.blog_detail .info_header .info .author {
  font-size: 16px;
}
.blog_detail .content {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .blog_detail .content {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .blog_detail .content .left {
    flex: 3;
    padding-right: 20px;
    border-right: 1px solid #e0e0e0;
  }
}
.blog_detail .content .left img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 20px;
}
.blog_detail .content .left .inner_content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog_detail .content .right .card h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.blog_detail .content .right .card .latest_posts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog_detail .content .right .card .latest_posts .post {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
}
.blog_detail .content .right .card .latest_posts .post img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}
.blog_detail .content .right .card .latest_posts .post .content {
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  gap: 5px;
}
.blog_detail .content .right .card .latest_posts .post .content .post_title {
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.blog_detail .content .right .card .latest_posts .post .content .post_date {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.402);
}
@media (min-width: 576px) {
  .blog_detail .content .right {
    flex: 1;
  }
}

.hero {
  background-color: var(--primary-color);
  height: calc(100vh - 150px);
  position: relative;
  display: flex;
}
@media (min-width: 992px) {
  .hero {
    height: 800px;
  }
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .container h1 {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .hero .container h1 {
    font-size: 64px !important;
  }
}
.hero .container h1 .mark {
  color: white;
  background-color: black;
}
.hero .container p {
  text-align: center;
  margin-top: 40px;
  font-size: 1.25rem;
  color: black;
}
.hero .container button {
  margin-top: 40px;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
}
.hero .container .paper_images {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero .container .paper_images img {
  height: 100%;
  object-fit: cover;
  display: none;
}
@media (min-width: 768px) {
  .hero .container .paper_images img {
    display: flex;
  }
}

:root {
  --primary-color: #ffd957;
  --secondary-color: #f7f7f7;
  --max-width: 1170px;
  --fixed-width: 620px;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Inter", sans-serif !important;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90vw;
  margin: 0 auto;
  max-width: var(--max-width);
}/*# sourceMappingURL=style.css.map */