@font-face {
  font-family: apercu-pro;
  src: url("../fonts/apercu-pro-cufonfonts/ApercuLight.ttf");
}
@font-face {
  font-family: apercu-pro-regular;
  src: url("../fonts/apercu-pro-cufonfonts/apercu_regular_pro.otf");
}
@font-face {
  font-family: apercu-pro-medium;
  src: url("../fonts/apercu-pro-cufonfonts/apercu_medium_pro.otf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "apercu-pro", sans-serif;
}

:root {
  --color-primary: #20483b;
  --color-secondary: #fdf9f9;
  --color-secondary-darker: #F5EFE8;
  --third-color: #a54657;
  --third-color-highlited: #812f3e;
  --text-color: #0B132A;
  --color-black: #000;
  --color-bg-secondary: #95CDD6;
  --color-bg-secondary-darker: #0043ad;
  --color-bg-third: #fefefe;
  --text-color-primary: #f8f8f8;
  --text-color-secondary: #4F5665;
  --br-sm-2: 14px;
  --box-shadow-1: 0 1px 15px rgba(0,0,0,.3);
  --box-shadow-2: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --main-transition: all .4s ease-in-out;
  --text-xs: 14px;
  --text-sm: 16px;
  --text-md: 24px;
  --text-lg: 48px;
  --text-xl: 64px;
}

a, button {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-secondary);
  overflow-x: hidden;
}

section {
  width: 100%;
}

.bg-secondary {
  background-color: var(--color-bg-secondary);
}

.bg-secondary-darker {
  background-color: var(--color-secondary-darker);
}

.bg-third {
  background-color: var(--color-bg-third);
}

.bg-blue-darker {
  background-color: var(--color-bg-secondary-darker);
}

.section-title-xl {
  font-size: var(--text-xl);
  color: #262627;
}

.section-title, .title-lg {
  font-size: var(--text-lg);
}

.title-xs {
  font-size: var(--text-xs);
}

.title-sm {
  font-size: var(--text-sm);
}

.title-md {
  font-size: var(--text-md);
}

.title-regular {
  font-family: "apercu-pro-regular", sans-serif !important;
}

.title-medium {
  font-family: "apercu-pro-meduim", sans-serif !important;
}

.main-button, .submit-button {
  overflow: hidden;
  background-color: var(--color-black) !important;
  color: #FFF;
  padding: 10px 30px;
  border-radius: 4px;
  transition: var(--main-transition);
}
.main-button .btn-text, .submit-button .btn-text {
  width: 100%;
  height: 100%;
  transition: 0.4s all ease-in-out;
  font-size: var(--text-sm);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}
.main-button:hover, .submit-button:hover {
  background-color: var(--text-color) !important;
}

.hero {
  background-image: url("../img/svg/animated-wave.svg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-color);
}
.hero .hero-content {
  margin-bottom: 50px;
}
.hero .arrow-icon {
  bottom: 2px;
  cursor: pointer;
}
.hero .arrow-icon img {
  width: 50px;
  height: auto;
  -webkit-animation: bonceUpDown 2.5s infinite;
          animation: bonceUpDown 2.5s infinite;
}

.features .feature-item {
  position: relative;
  height: 320px;
  padding: 80px 20px;
  transition: var(--main-transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  cursor: default;
  background-color: #FFF;
  border-radius: 10px;
  margin: 10px;
}
.features .feature-item:hover {
  box-shadow: var(--box-shadow-1);
}
.features .feature-item .feature-title {
  text-align: center;
}
.features .feature-item .feature-icon {
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  padding: 10px;
  margin: 10px;
}
.features .feature-item .feature-icon img {
  width: 100%;
  height: auto;
}

.customers-problems-items .customers-problems-item {
  transition: var(--main-transition);
  cursor: default;
}
.customers-problems-items .customers-problems-item:hover {
  background-color: #85ac9a;
  color: #FFF;
}
.customers-problems-items .customers-problems-item:hover p {
  color: #f7f0e8;
}
.customers-problems-items .customers-problems-item .icon {
  width: 60px;
  height: 60px;
}
.customers-problems-items .customers-problems-item .icon img {
  width: 100%;
  height: auto;
}

.steps-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  min-height: 270px;
}
.steps-item .step-icon {
  width: 60px;
  height: 60px;
  padding: 10px;
  margin: 10px;
}
.steps-item p {
  text-align: center;
  font-size: var(--text-md);
}

.promise-icon {
  width: 60px;
  height: 60px;
  padding: 10px;
  margin: 10px;
}

.what-you-get ul li {
  margin: 10px 0;
  font-size: var(--text-md);
}

footer {
  background-color: var(--color-black);
}

.footer-wrapper {
  padding: 80px 0;
}
.footer-wrapper .footer-col {
  margin: 20px 0;
}
.footer-wrapper .footer-col h5 {
  font-size: 15px;
  color: var(--text-color-primary);
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-wrapper .footer-col ul li {
  margin-bottom: 15px;
  transition: var(--main-transition);
}
.footer-wrapper .footer-col ul li:hover {
  transform: translateY(-3px);
}
.footer-wrapper .footer-col ul li a {
  font-size: 1rem;
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-wrapper .footer-col p {
  color: var(--text-color-primary);
}

@media only screen and (max-width: 600px) {
  .main-button, .submit-button {
    width: 100%;
    text-align: center;
  }
  .section-title, .title-lg {
    font-size: 30px !important;
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .section-title-xl {
    font-size: 36px;
    text-align: center;
  }
  .title-md {
    font-size: 20px !important;
    text-align: center;
  }
}
@media only screen and (max-width: 1280px) {
  .section-title-xl {
    font-size: 48px;
  }
}
@media only screen and (min-width: 1280px) {
  .hero {
    height: 100vh !important;
  }
}
@-webkit-keyframes bonceUpDown {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bonceUpDown {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */