/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

header .header-box {
  padding: 40px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
header .header-box .logo-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  text-decoration: none;
}
header .header-box .logo-box a .logo-text {
  font-family: "Roboto";
  font-size: 32px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#008140), to(#22ba6e));
  background: linear-gradient(90deg, #008140 0%, #22ba6e 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
header .header-box .header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 540px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header-box .header-actions a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  color: #000;
  font-family: "Roboto";
  font-size: 24px;
  padding: 8.5px 16px;
  font-weight: 500;
  border-radius: 20px;
}
header .header-box .header-actions a:hover {
  color: #008140;
  font-weight: 800;
}
header .header-box .header-actions a.active {
  color: #fff;
  background-color: #008140;
}
header .header-box .header-actions a.active:hover {
  border-radius: 20px;
  background: rgba(0, 129, 64, 0.8);
}
@media screen and (max-width: 760px) {
  header .header-box .header-actions a {
    display: none;
  }
}
header .header-box .header-menu-body {
  display: none;
  position: relative;
}
header .header-box .header-menu-body #header-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  position: absolute;
  top: 55px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff;
  left: -20px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
header .header-box .header-menu-body #header-menu li a {
  text-decoration: none;
  color: #000;
  font-family: "Roboto";
  font-size: 24px;
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}
header .header-box .header-menu-body #header-menu li:nth-child(4) a {
  padding: 8.5px 16px;
  border-radius: 20px;
  margin-bottom: 0px;
  background-color: #008140;
  color: #fff;
}
header .header-box .header-menu-body #header-menu.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-box .header-menu-body #header-menu-toggle {
  display: none;
  background-color: transparent;
  border: none;
}
@media screen and (max-width: 760px) {
  header .header-box .header-actions {
    display: none;
  }
  header .header-box .header-menu-body {
    display: block;
  }
  header .header-box .header-menu-body #header-menu-toggle {
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }
}

.welcome-section {
  border-radius: 50px;
  padding-right: 0 !important;
  padding-left: 32px;
  height: 600px;
}
.welcome-section .welcome-section-box {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 70px;
  height: 100%;
  width: 100%;
}
.welcome-section .welcome-section-box .welcome-section-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  max-width: 500px;
  width: 100%;
}
.welcome-section .welcome-section-box .welcome-section-info-box h1 {
  color: #000;
  font-family: "Roboto";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.welcome-section .welcome-section-box .welcome-section-info-box h4 {
  font-family: "Roboto";
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin-top: 17px;
}
.welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  margin-top: 50px;
}
.welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns .welcome-section-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  border-radius: 50px;
  border: 2px solid #008140;
  padding: 11px 24.5px;
  text-decoration: none;
}
.welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns .welcome-section-btn span {
  font-family: "Roboto";
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
.welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns .welcome-section-btn.get-started-btn {
  background-color: #008140;
}
.welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns .welcome-section-btn.get-started-btn span {
  color: #fff;
}
.welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns .welcome-section-btn.how-it-works-btn {
  padding-left: 37px;
  padding-right: 37px;
}
.welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns .welcome-section-btn:hover {
  scale: 1.05;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.welcome-section .welcome-section-box .welcome-section-image-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  border-radius: 42px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .welcome-section .welcome-section-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .welcome-section .welcome-section-box .welcome-section-info-box h1 {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 600px) {
  .welcome-section .welcome-section-box .welcome-section-info-box h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1200px) {
  .welcome-section .welcome-section-box .welcome-section-info-box h4 {
    text-align: center;
  }
  .welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns .welcome-section-btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .welcome-section .welcome-section-box .welcome-section-info-box .welcome-section-btns .welcome-section-btn.how-it-works-btn {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .welcome-section .welcome-section-box .welcome-section-image-box {
    display: none;
  }
}

.our-services-section {
  padding-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.our-services-section h2 {
  color: #000;
  font-family: "Roboto";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 14px;
}
.our-services-section h4 {
  color: #4b5563;
  text-align: center;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 109px;
}
.our-services-section .our-services-section-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 64px;
  padding: 30px 0px;
}
.our-services-section .our-services-section-cards .our-services-section-card {
  margin-bottom: 20px;
  margin-top: 20px;
  min-width: 400px;
  max-width: 500px;
  border-radius: 16px;
  border: 0px solid #e5e7eb;
  background: #f9fafb;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 59px 32px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.our-services-section .our-services-section-cards .our-services-section-card .icon-box {
  border-radius: 12px;
  border: 0px solid #e5e7eb;
  background: rgba(99, 102, 241, 0.1);
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.our-services-section .our-services-section-cards .our-services-section-card .icon-box img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-services-section .our-services-section-cards .our-services-section-card h3 {
  font-family: "Roboto";
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 17px;
}
.our-services-section .our-services-section-cards .our-services-section-card .our-services-section-futures p {
  font-family: "Roboto";
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px; /* 131.25% */
  position: relative;
  margin-bottom: 9px;
  margin-left: 14px;
}
.our-services-section .our-services-section-cards .our-services-section-card .our-services-section-futures p::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  width: 14px;
  height: 16px;
  background: url("../../../images/svg/check-icon.svg");
  background-size: cover;
}
.our-services-section .our-services-section-cards .our-services-section-card:hover {
  -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 129, 64, 0.25);
          box-shadow: 0px 8px 8px 0px rgba(0, 129, 64, 0.25);
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 800px) {
  .our-services-section .our-services-section-cards .our-services-section-card {
    margin: 20px auto !important;
  }
}
.our-services-section .our-services-section-cards .our-services-section-card:nth-child(1) .icon-box {
  background-color: rgba(99, 102, 241, 0.1019607843);
}
.our-services-section .our-services-section-cards .our-services-section-card:nth-child(1) .icon-box img {
  -webkit-transform: rotate(11.918deg);
      -ms-transform: rotate(11.918deg);
          transform: rotate(11.918deg);
}
.our-services-section .our-services-section-cards .our-services-section-card:nth-child(2) .icon-box {
  background-color: rgba(139, 92, 246, 0.1019607843);
}
.our-services-section .our-services-section-cards .our-services-section-card:nth-child(3) .icon-box {
  background-color: rgba(6, 182, 212, 0.1019607843);
}
.our-services-section .our-services-section-cards .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.our-services-section .our-services-section-cards .owl-dots .owl-dot span {
  background: #d1d5db;
}
.our-services-section .our-services-section-cards .owl-dots .owl-dot.active span {
  background: #008140;
}

.pricing-packages-section {
  padding: 20px !important;
  padding-top: 109px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pricing-packages-section h2 {
  color: #111827;
  font-family: "Roboto";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
  text-align: center;
}
.pricing-packages-section h4 {
  font-family: "Roboto";
  color: #4b5563;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px; /* 116.667% */
  margin-bottom: 152px;
  text-align: center;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card {
  margin-top: 60px;
  margin-bottom: 20px;
  min-width: 390px;
  border-radius: 16px;
  width: 100%;
  padding: 50px 32px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 129, 64, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 129, 64, 0.25);
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card .pricing-packages-section-card-title {
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card h5 {
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 39px;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card .price {
  color: #008140;
  font-family: "Roboto";
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card .pricing-packages-section-futures {
  margin-bottom: 46px;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card .pricing-packages-section-futures li {
  color: #000;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card .pricing-packages-section-futures li::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 16px;
  left: 0px;
  background-image: url("../../../images/svg/check-icon.svg");
  background-size: cover;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card .pricing-packages-section-card-btn {
  display: inline-block;
  width: 100%;
  border-radius: 20px;
  background-color: #20b76b;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 600;
  padding: 18px;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card.pricing-packages-section-card-main {
  border-radius: 16px;
  border: 0px solid #e5e7eb;
  background: -webkit-gradient(linear, left top, left bottom, from(#008140), to(#22ba6e));
  background: linear-gradient(180deg, #008140 0%, #22ba6e 100%);
  -webkit-transform: translateY(-34px);
      -ms-transform: translateY(-34px);
          transform: translateY(-34px);
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card.pricing-packages-section-card-main * {
  color: #fff;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card.pricing-packages-section-card-main li {
  color: #fff;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card.pricing-packages-section-card-main .pricing-packages-section-card-btn {
  background-color: #fff;
  color: #008140;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card.pricing-packages-section-card-main:hover {
  -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 129, 64, 0.25);
          box-shadow: 0px 8px 8px 0px rgba(0, 129, 64, 0.25);
  -webkit-transform: translateY(-44px);
      -ms-transform: translateY(-44px);
          transform: translateY(-44px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card:hover {
  -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 129, 64, 0.25);
          box-shadow: 0px 8px 8px 0px rgba(0, 129, 64, 0.25);
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .pricing-packages-section .pricing-packages-section-cards .pricing-packages-section-card.pricing-packages-section-card-main {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.pricing-packages-section .pricing-packages-section-cards .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.pricing-packages-section .pricing-packages-section-cards .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #d1d5db;
  border-radius: 50%;
}
.pricing-packages-section .pricing-packages-section-cards .owl-dots .owl-dot.active {
  background: #008140;
}

.team-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.team-section h1 {
  color: #000;
  font-family: "Roboto";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-top: 66px;
  margin-bottom: 33px;
}
.team-section .team-section-members-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.team-section .team-section-members-infos .team-section-member-info {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-section .team-section-members-infos .team-section-member-info .team-section-member-img {
  border-radius: 50%;
  border: 0px solid #e5e7eb;
  background: lightgray 50%;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 27px;
}
.team-section .team-section-members-infos .team-section-member-info h3 {
  color: #000;
  text-align: center;
  font-family: "Roboto";
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.team-section .team-section-members-infos .team-section-member-info p {
  color: #008140;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 13px;
}
.team-section .team-section-members-infos .team-section-member-info .social-media-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.team-section .team-section-members-infos .team-section-member-info .social-media-links a img {
  width: 32px;
  height: 32px;
}

.how-we-work-section h2 {
  color: #000;
  font-family: "Roboto";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 16px;
}
.how-we-work-section h4 {
  color: #4b5563;
  text-align: center;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
  line-height: 28px; /* 140% */
  margin-bottom: 56px;
}
.how-we-work-section .work-steps-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;
}
.how-we-work-section .work-steps-box .one-step-box {
  border-radius: 50px;
  border: 3px solid #008140;
  background: #fff;
  padding: 16px 50px;
  width: 75%;
}
.how-we-work-section .work-steps-box .one-step-box .step-number {
  color: #008140;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.how-we-work-section .work-steps-box .one-step-box .step-title {
  color: #4b5563;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
}
.how-we-work-section .work-steps-box .one-step-box.right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 500px) {
  .how-we-work-section .work-steps-box .one-step-box {
    width: 100%;
    padding: 16px 20px;
  }
}

.lets-work-together-section {
  padding-top: 115px;
  padding: 0 40px !important;
}
.lets-work-together-section h1 {
  color: #111827;
  text-align: center;
  font-family: "Roboto";
  font-size: 48px;
  font-weight: 700;
  line-height: 40px; /* 83.333% */
  margin-bottom: 15px;
}
.lets-work-together-section h4 {
  color: #4b5563;
  text-align: center;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
  line-height: 28px; /* 140% */
  margin-bottom: 30px;
}
.lets-work-together-section button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  outline: none;
  border: none;
  border-radius: 50px;
  background: #008140;
  color: #fff;
  text-align: center;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 190px;
}
.lets-work-together-section button:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 3px solid #008140;
  padding: 13px 57px;
  background-color: #fff;
  color: #008140;
}
.lets-work-together-section button:hover path {
  -webkit-transition: fill 0.5s;
  transition: fill 0.5s;
  fill: #008140;
}
@media screen and (max-width: 600px) {
  .lets-work-together-section button {
    padding: 16px 20px;
  }
}

footer {
  background: #008140;
  padding: 48px 80px;
}
footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
footer .footer-box .footer-logo-box a {
  text-decoration: none;
}
footer .footer-box .footer-logo-box a img {
  width: 30px;
  height: 20px;
}
footer .footer-box .footer-logo-box a .logo-text {
  color: #fff;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 700;
}
footer .footer-box .footer-logo-box p {
  color: #d9d9d9;
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 15px;
}
footer .footer-box .services-list h5 {
  color: #fff;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px; /* 150% */
  margin-bottom: 16px;
}
footer .footer-box .services-list li {
  margin-bottom: 8px;
}
footer .footer-box .services-list li a {
  color: #d9d9d9;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
footer .footer-box .contact-info-box h5 {
  color: #fff;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 21px;
}
footer .footer-box .contact-info-box .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
footer .footer-box .contact-info-box .contact-info img {
  width: 16px;
  height: 16px;
}
footer .footer-box .contact-info-box .contact-info a {
  color: #d9d9d9;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (max-width: 620px) {
  footer .footer-box .footer-logo-box {
    width: 100%;
    text-align: center;
  }
  footer .footer-box .services-list {
    width: 100%;
    text-align: center;
  }
  footer .footer-box .services-list li {
    margin-bottom: 8px;
  }
  footer .footer-box .services-list li a {
    color: #d9d9d9;
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
  }
  footer .footer-box .contact-info-box {
    width: 100%;
    text-align: center;
  }
  footer .footer-box .contact-info-box .contact-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 16px;
  }
}
footer .footer-text {
  color: #fff;
  text-align: center;
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding-top: 30px;
  border-top: 1px solid #d9d9d9;
  width: 70%;
  margin: 0 auto;
  margin-top: 30px;
}

.arrow-up-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius: 50px;
  background: #008140;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.arrow-up-box.change-color {
  background-color: white;
}
.arrow-up-box.change-color svg path {
  fill: #008140;
}
.arrow-up-box svg {
  width: 30px;
  height: 30px;
}
.arrow-up-box:hover {
  -webkit-animation: arrow-up-box-hover 0.5s ease-in-out forwards;
          animation: arrow-up-box-hover 0.5s ease-in-out forwards;
}

@-webkit-keyframes arrow-up-box-hover {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes arrow-up-box-hover {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}/*# sourceMappingURL=global.css.map */