@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;1,400&display=swap");

* {
  font-family: "Poppins", sans-serif;
  outline: none;
  border: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --main-color: #339a6d;
  --secondary-color: #717171;
  --third-color: #1f2738;
  --section-bg: #f8f8f8;
  --section-padding: 2rem;
  --section-mobile-padding: 1rem 0;
}

html,
body {
  scroll-behavior: smooth;
}

.section {
  padding-bottom: var(--section-padding);
}

@media screen and (max-width: 800px) {
  .section {
    padding: var(--section-mobile-padding);
  }
}

.is-primary {
  color: var(--main-color) !important;
}

.column.image {
  position: relative;
}

.xcontainer {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* Small */
@media (min-width: 768px) {
  .xcontainer {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .xcontainer {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .xcontainer {
    width: 1170px;
  }
}

/* =====================

Nav

===================== */

nav {
    padding-left: 100px;
    padding-right: 100px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 5rem;
}

@media screen and (max-width: 780px) {
  nav {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: auto;
  }
}

nav .navbar-item {
    font-size: 1.05rem;
    font-weight: 600;
    color: #717171;
}

/* =====================

Home

===================== */

.hero-section {
  width: 100%;
  height: 100vh;
}

.hero-section-title {
  color: var(--third-color);
  font-size: 53px;
  font-weight: 900;
  line-height: normal;
}

.hero-section-description {
  color: #717171;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.hero-section .image {
  width: 100%;
}

.hero-section img.design-1 {
  position: absolute;
  top: 83%;
  left: 82%;
  width: 200px;
  box-shadow: 2px 2px 1rem #dcdcdc;
}

.hero-section img.design-2 {
  position: absolute;
  top: 63%;
  left: -13%;
  width: 250px;
  box-shadow: 2px 2px 1rem #dcdcdc;
}

.button {
  display: flex;
  width: 185px;
  height: 47px;
  justify-content: center;
  align-items: center;
}

.button.is-green {
  gap: 10px;
  background-color: var(--main-color);
  color: #fff;
}

.button.is-green:hover {
  background-color: #027744;
  color: #fff;
}

@media screen and (max-width: 1328px) {
  .hero-section-title {
    font-size: 45px;
  }

  .hero-section-description {
    font-size: 18px;
  }
}

@media screen and (max-width: 1179px) {
  .hero-section-title {
    font-size: 35px;
  }

  .hero-section-description {
    font-size: 15px;
  }
}

@media screen and (max-width: 780px) {
  .columns {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
  }

  .hero-section .image {
    width: 300px;
  }

  .hero-section .column {
    text-align: center;
  }

  .hero-section-title {
    font-size: 40px;
  }

  .hero-section-description {
    font-size: 20px;
  }

  .button {
    width: 100%;
  }

  .column {
    margin: 20px;
  }
}

.cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.box {
  width: 360.081px;
  height: 460px;
  border-radius: 150px 0px !important;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
}

.box.colored {
  background: var(--main-color) !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
  color: #fff !important;
}

.box header .image {
  width: 116px;
  height: 116px;
  padding: 2rem;
  border-radius: 50%;
  background-color: rgba(58, 152, 109, 0.1);
}

.box.colored header > figure.image {
  background-color: #fff !important;
}

.box header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2rem;
  gap: 1rem;
}

.box h1 {
  font-size: 25px;
  font-weight: 700;
  color: var(--main-color);
}

.box.colored h1 {
  color: #fff !important;
}

.box p {
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}

.box.colored p {
  color: #fff !important;
}

@media screen and (max-width: 780px) {
  .box {
    width: 100%;
    padding: 4rem 3rem;
  }
}

/* =====================

Features

===================== */

.features .columns .column .image {
  position: relative;
  height: 500px;
}

.features .columns .column .image .img-1 {
  position: absolute;
  top: -15px;
  left: 0;
  transform: translate(0, 0);
  width: 300px;
  z-index: 0;
}

.features .columns .column .image .img-2 {
  position: absolute;
  top: 27%;
  left: 51%;
  transform: translate(0, 0);
  width: 278px;
  z-index: 1;
}

.features .columns .column .image .img-3 {
  position: absolute;
  top: 52%;
  left: 0;
  transform: translate(0, 0);
  width: 313px;
  z-index: 0;
}

.xcontent .section-title {
  color: var(--third-color);
  font-size: 37.6px;
  font-weight: 700;
  line-height: 50px;
}

.xcontent p {
  color: #767a84;
  font-size: 20px;
  line-height: 30px;
}

.xcontent ul {
  margin-top: 20px;
}

.xcontent ul li {
  color: var(--third-color);
  font-size: 21px;
  position: relative;
  padding-left: 5rem;
  line-height: 39px;
  color: var(--third-color);
}

.xcontent ul li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/features/list.png");
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 1192px) {
  .features .columns .column .image .img-1 {
    width: 300px;
  }

  .features .columns .column .image .img-2 {
    left: 40%;
  }

  .features .columns .column .image .img-3 {
    width: 300px;
  }
}

@media screen and (max-width: 986px) {
  .features .columns .column .image .img-2 {
    left: 17%;
  }
}

@media screen and (max-width: 780px) {
  .column.hidden-mobile {
    display: none !important;
  }
}

/* =====================

Services

===================== */

.services .service-card {
  padding: 20px;
  border-radius: 20px;
  height: 100%;
  width: 100%;
}

.services .service-card h3 {
  color: #1f2738;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  height: fit-content;
}

.services .card-image {
  width: fit-content !important;
  background: transparent !important;
  margin: 0 auto;
}

.services .service-card p {
  color: #767a84;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  margin: 20px 0;
}

.services .card-icon.image {
  width: 116px;
  height: 116px;
  margin: 24px auto;
}

/* =====================

Footer

===================== */

footer {
  border-radius: 0px 155px 0px 0px;
  background: #fafafa;
  padding-top: 40px;
}

footer .xcontainer .columns:nth-child(1) {
  border-bottom: 1px solid #C7C9CD;
}

footer p {
  color: #767a84;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}

footer ul li {
  color: #767a84;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}

footer .social span {
  padding: 10px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  margin-left: 7px;
  cursor: pointer;
}

footer .social span i {
  color: var(--main-color);
}

footer .columns:nth-child(2) .column {    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer .title {
    font-size: 20px !important;
}

footer a{
    color: #000 !important;
}