* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #8efd88;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  line-height: 1.7;
}

/* --------------- Header --------------- */
header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
header .header-content .logo {
  text-decoration: none;
  color: #101010;
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
header .header-content nav a {
  color: #101010;
  font-size: 14px;
  text-decoration: none;
}

/* --------------- Hero --------------- */
.hero {
  height: 650px;
  padding: 20px;
  background: url("../assets/images/vimal-s-GBg3jyGS-Ug-unsplash.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero .hero-content {
  height: 100%;
  color: white;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.hero .hero-content h1 {
  text-align: center;
  font-size: 200px;
  font-weight: 400;
}

/* --------------- Container --------------- */
.container-full.bg {
  background-color: rgba(19, 201, 12, 0.1882352941);
  color: #101010;
}
.container-full.bg2 {
  background-color: black;
  color: white;
}
.container-full.bg3 {
  background-image: url("../assets/images/karsten-wurth-ZKWgoRUYuMk-unsplash.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
  color: rgb(0, 0, 0);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.container p {
  max-width: 900px;
  font-size: 22px;
}

/* --------------- Title --------------- */
.title.centered {
  text-align: center;
}
.title h2 {
  font-size: 40px;
  font-weight: 700;
}
.title h3 {
  font-size: 30px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  font-weight: 700;
}

/* --------------- About Us --------------- */
.about-us {
  display: grid;
  grid-template-columns: 8fr 4fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.about-us .about-us-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.about-us img {
  width: 100%;
  padding: 20px;
  -webkit-animation: 2s float infinite;
          animation: 2s float infinite;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/* --------------- Strategy --------------- */
.strategy {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.strategy .strategy-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 60px auto;
}
.strategy .strategy-item i {
  font-size: 70px;
}

/* --------------- Page Buttons --------------- */
.page-btn {
  font-size: 28px;
  text-decoration: none;
  color: #101010;
  font-weight: bold;
  -webkit-animation: 1s horizontalFloat infinite;
          animation: 1s horizontalFloat infinite;
}
.page-btn i {
  margin-left: 10px;
}
.page-btn.contact {
  -webkit-animation: 1s horizontalFloat2 infinite;
          animation: 1s horizontalFloat2 infinite;
}

/* --------------- Images --------------- */
.img-wrapper {
  position: sticky;
  top: 60px;
  height: 400px;
  width: 100%;
  font-size: 0;
  z-index: 10;
}

.images {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 auto;
  z-index: 100;
  overflow: hidden;
}
.images .img-before,
.images .img-after {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.images .img-before h3,
.images .img-after h3 {
  position: relative;
  z-index: 10;
  color: white;
  font-size: 20px;
  line-height: 1;
  background-color: black;
  text-align: center;
  padding: 5px 20px;
}
.images img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

/* --------------- Proof --------------- */
.proof {
  padding: 40px 20px;
}
.proof p {
  font-size: 16px !important;
}
.proof h3 {
  font-size: 22px;
  line-height: 1.5;
}

/* --------------- Animation --------------- */
@-webkit-keyframes horizontalFloat {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
@keyframes horizontalFloat {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
@-webkit-keyframes horizontalFloat2 {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
@keyframes horizontalFloat2 {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
/* --------------- Buttons --------------- */
.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.proof p {
  max-width: 100%;
}

/* --------------- Form --------------- */
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background-color: white;
}
form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  width: 100%;
}
form label {
  font-family: inherit;
}
form input,
form textarea {
  padding: 10px;
  border: none;
  background-color: rgba(203, 203, 203, 0.3882352941);
  border-radius: 6px;
  font-family: inherit;
  width: 100%;
}
form button[type=submit] {
  background-color: #101010;
  color: white;
  cursor: pointer;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  width: auto;
  margin: 0 auto;
}

/* --------------- Swiper --------------- */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  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;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.contact-us {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}
.contact-us p,
.contact-us h2 {
  text-align: center;
  margin: 0 auto;
}
.contact-us p {
  font-size: 20px;
  margin: 10px auto;
}

/* --------------- Footer --------------- */
footer {
  background-color: #101010;
  padding: 10px 0;
  text-align: center;
  color: white;
  text-align: center;
}
footer .logo {
  font-size: 38px;
}
footer .footer-content {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto;
  padding: 0 20px;
  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: start;
      -ms-flex-align: start;
          align-items: start;
}
footer .footer-content .footer-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
footer .footer-content .footer-content-item p {
  font-weight: 300;
}
footer a {
  color: white;
  text-decoration: none;
}

/* --------------- Media Queries --------------- */
@media only screen and (max-width: 1200px) {
  .hero {
    height: 400px;
    padding: 20px;
  }
  .hero .hero-content h1 {
    text-align: center;
    font-size: 120px;
    font-weight: 400;
  }
  .title h2 {
    font-size: 32px;
  }
  .container {
    padding: 20px !important;
  }
  .container p {
    max-width: 100%;
    font-size: 18px;
  }
  .about-us {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-us .about-us-content {
    gap: 20px;
  }
  .about-us img {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
  .strategy {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .strategy .strategy-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin: 60px auto;
  }
  .strategy .strategy-item i {
    font-size: 40px;
  }
  .page-btn {
    font-size: 22px;
  }
  .img-wrapper {
    height: 320px;
  }
  .contact-us {
    padding: 0;
    padding-bottom: 20px;
  }
  footer .footer-content {
    margin: 40px auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .logo {
    font-size: 24px;
  }
  footer a,
  footer p {
    font-size: 14px;
  }
  footer .footer-content {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .hero {
    height: 320px;
    padding: 20px;
  }
  .hero .hero-content h1 {
    text-align: center;
    font-size: 80px;
    font-weight: 400;
  }
  .title h2 {
    font-size: 28px;
  }
  .strategy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .strategy .strategy-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin: 20px auto;
  }
  .strategy .strategy-item i {
    font-size: 40px;
  }
  .img-wrapper {
    height: 280px;
  }
  .page-btn {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .page-btn {
    font-size: 16px;
  }
  .img-wrapper {
    height: 250px;
  }
}
@media only screen and (max-height: 600px) {
  .img-wrapper {
    height: 250px;
  }
}
@media only screen and (max-width: 500px) {
  .hero {
    height: 280px;
    padding: 20px;
  }
  .hero .hero-content h1 {
    text-align: center;
    font-size: 60px;
    font-weight: 400;
  }
  .img-wrapper {
    height: 220px;
  }
  .img-wrapper .images h3 {
    font-size: 18px;
  }
  .title h2 {
    font-size: 24px;
  }
  .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-btn {
    font-size: 14px;
    -webkit-animation: none !important;
            animation: none !important;
  }
  .page-btn i {
    display: none;
  }
  .container p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  header .header-content nav {
    gap: 10px;
  }
  footer .footer-content .footer-content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 320px) {
  .hero .hero-content h1 {
    font-size: 50px;
  }
  header .header-content nav a {
    font-size: 12px;
  }
}/*# sourceMappingURL=styles.css.map */