/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

body {
  font-family: "Quicksand", sans-serif;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
}
@media (min-width: 767px) {
  h2 {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  h2 {
    margin-bottom: 80px;
  }
}

h3 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 35px;
}
@media (min-width: 767px) {
  h3 {
    font-size: 32px;
  }
}

p {
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: justify;
}
@media (min-width: 767px) {
  p {
    text-align: justify;
  }
}

@media (min-width: 767px) {
  body {
    font-size: 18px;
  }
}

strong {
  font-weight: 600;
}

a {
  color: #1cd159;
  text-decoration: none;
}
a:hover {
  color: #3be574;
}

.Button {
  color: red;
}

.Title {
  position: relative;
  display: inline-block;
}
.Title::after {
  content: "";
  display: block;
  width: 65px;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 4px;
  background: #1cd159;
}
.Title.bold {
  font-weight: 600;
}

h3.Title::after {
  display: none;
}

.Dots {
  display: block;
  margin-top: 40px;
}
@media (min-width: 767px) {
  .Dots {
    margin-top: 60px;
  }
}
.Dots > span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #cccccc;
  margin-right: 5px;
}
.Dots > span:last-child {
  margin-right: 0;
}
@media (min-width: 767px) {
  .Dots > span {
    width: 20px;
    height: 20px;
  }
}

.Header {
  height: 100vh;
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover !important;
}
@media (min-width: 767px) {
  .Header {
    position: relative;
  }
}
@media (min-width: 992px) {
  .Header {
    margin-bottom: 40px;
  }
}
.Header__title {
  text-align: center;
  fill: #fff;
  width: 280px;
}
@media (min-width: 767px) {
  .Header__title {
    width: 600px;
  }
}

.Navigation {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  z-index: 3;
}
@media (min-width: 767px) {
  .Navigation {
    position: absolute;
    bottom: 20px;
    top: auto;
    width: auto;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .Navigation--sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
}
.Navigation__links {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  text-align: right;
  box-sizing: border-box;
  background: #2d3032;
  overflow-x: hidden;
  transition: width 0.3s;
  padding: 30px 0;
}
.Navigation__links--open {
  width: 100vw;
}
@media (min-width: 767px) {
  .Navigation__links {
    height: 100%;
    position: static;
    display: flex;
    margin: 0;
    background: none;
    width: auto;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 20px;
  }
}
@media (min-width: 767px) {
  .Navigation--sticky .Navigation__links {
    width: 100%;
    border-radius: 0;
    border: none;
    background: #fff;
    color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .Navigation--sticky .Navigation__links li a {
    color: #000;
  }
  .Navigation--sticky .Navigation__links li a:hover {
    color: #000;
  }
}
.Navigation__mobile-button {
  height: 50px;
  width: 50px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 20px;
}
@media (min-width: 767px) {
  .Navigation__mobile-button {
    display: none;
  }
}
.Navigation li {
  display: block;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 767px) {
  .Navigation li {
    display: inline-block;
  }
}
.Navigation li a {
  cursor: pointer;
  display: block;
  text-align: center;
  box-sizing: border-box;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.Navigation li a:hover {
  color: #fff;
}
@media (min-width: 767px) {
  .Navigation li a {
    display: inline-flex;
    min-width: 0;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
    width: auto;
    align-items: center;
    text-transform: none;
    border: none;
    padding: 10px 0;
    margin: 0 20px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
  }
  .Navigation li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    transform: translateY(5px);
    left: 0;
    opacity: 0;
    width: 100%;
    height: 4px;
    background: #1cd159;
    transition: transform 0.3s, opacity 0.3s;
  }
}
@media (min-width: 992px) {
  .Navigation li a {
    font-size: 18px;
    margin: 0 25px;
  }
}
@media (min-width: 1200px) {
  .Navigation li a {
    font-size: 20px;
    margin: 0 30px;
  }
}
.Navigation li.active a {
  font-weight: 600;
}
@media (min-width: 767px) {
  .Navigation li.active a {
    font-weight: normal;
  }
}
@media (min-width: 767px) {
  .Navigation li:hover,
  .Navigation li.active {
    background: none;
    color: white;
  }
  .Navigation li:hover a::after,
  .Navigation li.active a::after {
    opacity: 1;
    transform: translateY(0);
  }
}
.Navigation li:last-child a {
  border-bottom: none;
}
.Navigation__title {
  min-width: 320px;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  font-size: 32px;
  font-weight: bold;
  position: relative;
}
@media (min-width: 767px) {
  .Navigation__title {
    display: none;
  }
}
.Navigation__logo {
  width: 220px;
  height: 40px;
  fill: #fff;
}
.Navigation__close {
  position: absolute;
  top: -30px;
  right: 15px;
  opacity: 0.5;
  font-weight: 300;
  font-size: 50px;
}

.Welcome {
  padding: 30px 20px 30px;
  max-width: 540px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 767px) {
  .Welcome {
    max-width: 980px;
    padding: 50px 40px 40px;
  }
}

.Welcome p {
  margin-bottom: 20px;
  line-height: 1.2;
}

.Welcome__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.Welcome__list ul {
  text-align: left;
  padding-left: 25px;
  line-height: 1.2;
}
.Welcome__list ul li {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.2;
}
.Welcome__list ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: -30px;
  top: 2px;
  margin-left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #1cd159;
}

.Service {
  padding: 30px 20px 30px;
  max-width: 540px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .Service {
    max-width: 980px;
    padding: 50px 40px 40px;
  }
}
.Service ul {
  text-align: left;
  padding-left: 35px;
}
.Service ul li {
  margin-bottom: 10px;
  position: relative;
}
.Service ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: -30px;
  top: 2px;
  margin-left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #1cd159;
}
.Service__image {
  display: none;
}
@media (min-width: 992px) {
  .Service__image {
    width: 30%;
    display: block;
    margin-right: 50px;
    height: 310px;
    background-size: cover;
  }
}
@media (min-width: 992px) {
  .Service__content {
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .Service__text {
    width: 70%;
  }
}

.Motto {
  width: 100%;
  background: linear-gradient(to right, #42b573 0%, #83c450 100%);
  text-align: center;
  color: #fff;
  padding: 30px 20px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 22px;
}
.Motto h2 {
  margin-bottom: 20px;
}
.Motto::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  width: 30px;
  height: 30px;
  background: #62bc61;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
  z-index: -1;
}
@media (min-width: 767px) {
  .Motto p {
    text-align: center;
    line-height: 1.4;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .Motto {
    padding: 40px;
  }
  .Motto p {
    text-align: center;
    line-height: 1.4;
    font-size: 20px;
  }
}
@media (min-width: 767px) {
  .Motto__content {
    padding: 30px 20px 30px;
    max-width: 540px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
@media (min-width: 767px) and (min-width: 767px) {
  .Motto__content {
    max-width: 980px;
    padding: 50px 40px 40px;
  }
}

.Features {
  padding: 30px 20px 30px;
  max-width: 540px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 767px) {
  .Features {
    max-width: 980px;
    padding: 50px 40px 40px;
  }
}
.Features__item {
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .Features__item {
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .Features__item {
    margin-bottom: 60px;
  }
}
.Features__image {
  width: 120px;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .Features__image {
    margin-bottom: 0;
    margin-right: 40px;
  }
}
@media (min-width: 992px) {
  .Features__image {
    width: 160px;
    margin-right: 80px;
  }
}
.Features__text p {
  text-align: justify;
}

.Testimonials {
  padding: 30px 20px 30px;
  max-width: 540px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .Testimonials {
    max-width: 980px;
    padding: 50px 40px 40px;
  }
}
.Testimonials__carousel {
  position: relative;
}
.Testimonials__dot {
  margin-top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #aaa;
  transition: background 0.1s, width 0.1s, transform 0.1s;
}
.Testimonials__dot:hover {
  background: grey;
}
.slick-active .Testimonials__dot {
  width: 22px;
  transform: translateX(-5px);
  background: #1cd159;
}
.slick-list {
  transition: height 0.15s;
}
.Testimonials__text {
  margin-bottom: 15px;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
  color: #6c6c6c;
}
.Testimonials__text:before,
.Testimonials__text:after {
  content: '"';
}
.Testimonials__name {
  font-weight: bold;
  text-align: right;
  padding-bottom: 5px;
}
.Testimonials__controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Testimonials__controls > div {
  cursor: pointer;
  font-size: 32px;
  font-weight: 300;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  transition: color 0.15s;
}
.Testimonials__controls > div:hover {
  color: #1cd159;
}

.Contact {
  background: #333333;
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}
@media (min-width: 992px) {
  .Contact {
    margin-top: 40px;
    font-size: 18px;
    padding: 80px 50px;
  }
}
.Contact__logo {
  text-align: center;
}
.Contact__logo svg {
  width: 220px;
  display: inline-block;
  fill: #fff;
  height: 50px;
  margin-bottom: 20px;
}
.Contact__phone {
  margin-bottom: 15px;
}
.Contact__phone a {
  color: #fff;
}
.Contact__email {
  font-weight: 600;
  margin-bottom: 10px;
}
.Contact__email a {
  color: #fff;
}
.Contact__address {
  line-height: 2;
}

.Footer {
  padding: 20px;
  background: #1a1a1a;
  color: #868686;
  font-size: 12px;
}
.Footer a {
  color: #16a446;
}
@media (min-width: 992px) {
  .Footer {
    padding: 40px;
  }
}
.Footer__content div:first-child {
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .Footer__content {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .Footer__content {
    text-align: left;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
  }
  .Footer__content div:first-child {
    margin: 0;
  }
}

.Gallery {
  padding: 30px 20px 30px;
  max-width: 540px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.Gallery_image-container {
  margin: 5px;
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(0,0,0, 0.2);
  transition: box-shadow 0.1s, transform 0.1s;
}

.Gallery_image-container:hover {
  box-shadow: 0 0 12px rgba(0,0,0, 0.3);
  transform: scale(1.02);
}

.Gallery_image {
  width: 100%;
  height: 300px;
  cursor: pointer;
  background-position: center;
  background-size: cover;
}

@media (min-width: 767px) {
  .Gallery {
    max-width: 980px;
    padding: 50px 40px 40px;
  }
}
.Gallery h3 {
  font-weight: 600;
}
.Gallery__content h3 {
  margin-top: -30px;
}
.Gallery video {
  cursor: pointer;
  width: 100%;
}
.Gallery video.played {
  cursor: default;
}

.Error {
  padding: 30px 20px 30px;
  max-width: 540px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 767px) {
  .Error {
    max-width: 980px;
    padding: 50px 40px 40px;
  }
}
.Error div p {
  padding: 50px;
  text-align: center;
}
.Error a {
  font-size: 22px;
  font-weight: 600;
}
.Error h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (min-width: 767px) {
  .Error h1 {
    font-size: 48px;
  }
}

/*# sourceMappingURL=template_2025.css.map */
