@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
*,
::after,
::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
}

:root {
  --color-yellow: #FFF200;
  --color-green: #00d771;
}

html {
  line-height: 1.5;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

/*
Setting default font family
*/
body {
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

ol,
ul,
menu {
  list-style: none;
}

.container {
  max-width: 1150px;
  margin: auto;
  padding: 0 25px;
}

.arrowNext, .arrowPrev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.arrowNext {
  right: -50px;
}

.arrowPrev {
  left: -50px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text-base {
  font-size: 1.6rem;
}

@media (max-width: 700px) {
  .text-base {
    font-size: 1.4rem;
  }
}

.text-2xl {
  font-size: 2rem;
}

@media (max-width: 700px) {
  .text-2xl {
    font-size: 1.8rem;
  }
}

.text-3xl {
  font-size: 3.2rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .text-3xl {
    font-size: 2.8rem;
  }
}

.text-7xl {
  font-size: 7rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 700px) {
  .text-7xl {
    font-size: 4.8rem;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header {
  background-color: black;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 20;
}

.header .container {
  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;
  color: white;
}

.header .container ul {
  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: 4rem;
  font-weight: bold;
}

.header .container ul li {
  border-bottom: 2px solid transparent;
  -webkit-transition: 0.15s all;
  transition: 0.15s all;
}

.header .container ul li:hover {
  border-bottom: 2px solid var(--color-yellow);
}

@media (max-width: 800px) {
  .header .container ul {
    display: none;
  }
}

.header-links-mobile {
  display: none;
  position: fixed;
  top: 80px;
  opacity: 0;
  left: -100%;
  z-index: 15;
  background-color: black;
  width: 100vw;
  color: white;
  -webkit-transition: .5s all;
  transition: .5s all;
  overflow: hidden;
}

.header-links-mobile ol {
  padding: 20px 10px;
}

.header-links-mobile li {
  padding: 5px 10px;
  margin-bottom: 5px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .header-links-mobile {
    display: block;
  }
}

.header #menu-btn {
  display: none;
}

@media (max-width: 800px) {
  .header #menu-btn {
    display: block;
  }
}

.section-hero {
  padding-top: 130px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7))), url(../img/hero-img.png);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7)), url(../img/hero-img.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-hero .container {
  -webkit-perspective: 2000px;
          perspective: 2000px;
}

.section-hero .hero-title {
  -webkit-animation: fadeIn 0.7s ease-in-out;
          animation: fadeIn 0.7s ease-in-out;
}

.section-hero .hero-subtitle {
  color: white;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  -webkit-animation: fadeIn 0.7s 0.7s ease-in-out forwards;
          animation: fadeIn 0.7s 0.7s ease-in-out forwards;
}

@media (max-width: 800px) {
  .section-hero .hero-subtitle {
    font-size: 3rem;
  }
}

.section-hero .hero-text {
  padding: 20px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  margin: auto;
  opacity: 0;
  margin-top: 50px;
  max-width: 700px;
  -webkit-animation: fadeIn 0.7s 1.4s ease-in-out forwards;
          animation: fadeIn 0.7s 1.4s ease-in-out forwards;
}

.section-hero .hero-icons {
  text-align: center;
  margin-top: 50px;
}

.section-hero .hero-icons .flex {
  gap: 30px;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 0;
  -webkit-animation: fadeIn 0.7s 1.4s ease-in-out forwards;
          animation: fadeIn 0.7s 1.4s ease-in-out forwards;
}

.section-aim {
  padding-top: 100px;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 700px) {
  .section-aim {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-aim .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.section-aim .slick-slide {
  height: auto;
  padding-bottom: 40px;
  padding-top: 10px;
}

.section-aim .slide {
  background-color: var(--color-green);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 50px;
  color: white;
  padding: 20px;
  text-align: justify;
  border-radius: 5px;
  height: 100%;
}

.section-aim .slide .text-2xl {
  margin-top: 20px;
}

@media (max-width: 800px) {
  .section-aim .slide .text-2xl {
    margin-top: 0;
  }
}

@media (max-width: 1000px) {
  .section-aim .slide {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.section-aim .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-services {
  padding-top: 100px;
}

.section-services .services-subheading {
  font-size: 25px;
  text-align: center;
}

.section-services .services-grid {
  padding-top: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-auto-rows: 350px;
  -webkit-column-gap: 100px;
          column-gap: 100px;
  position: relative;
}

@media (max-width: 700px) {
  .section-services .services-grid {
    -webkit-column-gap: 50px;
            column-gap: 50px;
  }
}

.section-services .services-grid .grid-item h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .section-services .services-grid .grid-item h2 {
    font-size: 2rem;
  }
}

.section-services .services-grid .grid-item .grid-item-content {
  height: 100%;
  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;
}

.section-services .services-grid .grid-center-line {
  position: absolute;
  width: 2px;
  background-color: black;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-services .services-grid .grid-counter {
  background-color: white;
  height: 40px;
  width: 40px;
  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;
  border: 1px solid black;
  border-radius: 100%;
  font-weight: bold;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}

.section-how {
  padding-top: 100px;
}

.section-how ol {
  max-width: 800px;
  padding: 50px 100px;
  margin: auto;
  counter-reset: counter;
  list-style: none;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 700px) {
  .section-how ol {
    padding: 10px 50px;
  }
}

.section-how ol li {
  margin: 0 0 0.5rem 0;
  counter-increment: counter;
  position: relative;
  color: #707070;
  margin-bottom: 20px;
}

.section-how ol li::before {
  content: counter(counter);
  color: inherit;
  font-size: inherit;
  font-weight: bold;
  position: absolute;
  --size: 32px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  border-radius: 100%;
  border: 1px solid #707070;
  text-align: center;
}

.section-news {
  padding-top: 100px;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 700px) {
  .section-news {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-news .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.section-news .slick-slide {
  height: auto;
  padding-bottom: 40px;
  padding-top: 10px;
}

.section-news .news-card {
  padding: 30px 10px;
  border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 30px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  height: 100%;
}

.section-news .news-card:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1), 0 6px 8px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1), 0 6px 8px -4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 700px) {
  .section-news .news-card {
    margin: 10px;
  }
}

.section-news .news-card-img {
  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;
  height: 220px;
}

.section-news .news-card-img img {
  max-height: 100%;
  max-width: 100%;
}

.section-news .news-card-body {
  font-weight: 600;
  margin: 30px 10px;
  max-height: 73px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-news .news-card-btn {
  text-align: center;
}

.section-news .news-card-btn a {
  display: inline-block;
  border-radius: 100px;
  background-color: var(--color-green);
  color: white;
  font-weight: 600;
  padding: 5px 15px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-news .news-card-btn a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 5px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 5px -3px rgba(0, 0, 0, 0.1);
}

.testimonials {
  padding-top: 100px;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 700px) {
  .testimonials {
    padding-left: 0;
    padding-right: 0;
  }
}

.testimonials .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.testimonials .slick-slide {
  height: auto;
  padding-bottom: 40px;
  padding-top: 10px;
}

.testimonials .testimonial-slider {
  max-width: 550px;
  margin: auto;
}

.testimonials .testimonial-card {
  margin: 20px;
  padding: 20px;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(var(--color-yellow), 0.5)));
  background: linear-gradient(to bottom, white, rgba(var(--color-yellow), 0.5));
  height: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.testimonials .testimonial-img {
  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;
  height: 150px;
}

.testimonials .testimonial-img img {
  max-width: 100%;
  max-height: 100%;
}

.testimonials .testimonial-body {
  text-align: center;
  margin: 10px;
  font-weight: 600;
  max-height: 73px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonials .testimonial-btn {
  text-align: center;
}

.testimonials .testimonial-btn a {
  display: inline-block;
  border-radius: 100px;
  background-color: var(--color-green);
  color: white;
  font-weight: 600;
  padding: 5px 15px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.testimonials .testimonial-btn a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 5px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 5px -3px rgba(0, 0, 0, 0.1);
}

.footer {
  padding: 70px 0;
  background-color: black;
}

.footer-grid {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 50px;
  color: white;
}

@media (max-width: 800px) {
  .footer-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.footer-grid h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-grid-right ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .footer-grid-right ul {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.footer-grid li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}

.footer-grid li:hover {
  text-decoration: underline;
}

.footer-grid li span {
  color: var(--color-yellow);
}
/*# sourceMappingURL=style.css.map */