/*************************************** ABSTRACTS STYLES **********************************/
/*
0-600px:        phone
600-900px:      tablet portrait
900-1200px:     tablet landscape
1200-1800px:    Our base style media
1800px+:        Destop       

$breakpoint arguement choices
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px

*/
/*
COLORS:
*/
/*************************************** COMPONENTS STYLES **********************************/
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.35;
  overflow: hidden;
}
.bg-video__content {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn, .btn:link, .btn:visited {
  text-decoration: none;
  text-transform: uppercase;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  position: relative;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .btn, .btn:link, .btn:visited {
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .btn, .btn:link, .btn:visited {
    width: 100%;
  }
}
@media only screen and (min-width: 390px) and (max-width: 576px) {
  .btn, .btn:link, .btn:visited {
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 390px) and (max-width: 576px) {
  .btn, .btn:link, .btn:visited {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .btn, .btn:link, .btn:visited {
    width: 100%;
  }
}
.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  transition: all 0.2s;
  background-color: #fff;
  color: #03fa62;
  animation: moveInBottom 0.5s ease 0.75s backwards;
  font-weight: 600;
}
.btn--white::after {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .btn--white {
    width: 100%;
  }
}
@media only screen and (min-width: 390px) and (max-width: 576px) {
  .btn--white {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .btn--white {
    width: 100%;
  }
}
.btn--green {
  background-color: #03fa62;
  color: #fff;
  font-weight: 600;
}
.btn--green::after {
  background-color: #03fa62;
}
@media only screen and (max-width: 767px) {
  .btn--green {
    width: 100%;
  }
}
@media only screen and (min-width: 390px) and (max-width: 576px) {
  .btn--green {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .btn--green {
    width: 100%;
  }
}
.btn--white-2 {
  background-color: #fff;
  color: #03fa62;
  font-weight: 600;
}
.btn--white-2::after {
  background-color: #777;
}
@media only screen and (max-width: 767px) {
  .btn--white-2 {
    width: 100%;
  }
}
@media only screen and (min-width: 390px) and (max-width: 576px) {
  .btn--white-2 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .btn--white-2 {
    width: 100%;
  }
}
.btn--price {
  background-color: #00d61d;
  color: #fff;
  font-weight: 600;
}
.btn--price::after {
  background-color: #777;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn-text:link, .btn-text:visited {
  color: black;
  font-size: 1.4rem;
  display: inline-block;
  text-decoration: none;
  padding: 7px 15px;
  border-bottom: 1px solid black;
  transition: all 0.3s;
  font-weight: 800;
}
.btn-text:hover {
  background-color: #03fa62;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.btn-carousel:link, .btn-carousel:visited {
  color: white;
  font-size: 1.4rem;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 10px;
  border-bottom: 1px solid #03fa62;
  transition: all 0.3s;
  width: 12%;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .btn-carousel:link, .btn-carousel:visited {
    width: 20%;
  }
}
.btn-carousel:hover {
  background-color: #fff;
  color: #03fa62;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  border-bottom: 1px solid #fff;
  transform: translateY(-2px);
}
.btn-carousel:active {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card__side {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  transition: all 0.8s ease;
  position: relative; /* Changed from absolute */
  width: 100%;
  height: auto; /* Allow content to determine height */
  backface-visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.card__side--front {
  color: black;
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #a5e2b3, #00d61d);
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.card__img {
  width: 100%;
  height: 23rem;
  background-blend-mode: screen;
}
.card__img-1 {
  background-image: linear-gradient(to right bottom, black, rgb(49, 49, 49)), url("../../img/content/clean_desktop5.jpg");
  background-size: cover;
  background-position: top;
}
.card__img-2 {
  background-image: linear-gradient(to right bottom, black, rgb(29, 29, 29)), url("../../img/content/dev.jpg");
  background-size: cover;
  background-position: top;
  filter: blur(5px);
}
.card__img-3 {
  background-image: linear-gradient(to right bottom, black, rgb(49, 49, 49)), url("../../img/content/robo.jpg");
  background-size: cover;
  background-position: top;
}
.card__heading {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.8rem;
  color: #03fa62;
  text-align: center;
  position: absolute;
  top: 6rem;
  right: 3rem;
  width: 75%;
}
.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85));
}
.card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(165, 226, 179, 0.85), rgba(0, 214, 29, 0.85));
}
.card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(41, 152, 255, 0.85), rgba(86, 67, 250, 0.85));
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 2rem auto;
}
.card__details ul li {
  font-size: 1.5rem;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #f7f7f7;
}
.card__cta {
  position: relative; /* Change from absolute to relative */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem; /* Add padding for spacing */
  text-align: center;
  top: auto; /* Remove absolute positioning */
  left: auto;
  transform: none; /* Reset transform */
}
.card__price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 8rem;
}
.card__price-box ul li {
  list-style: none;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 3rem;
  font-weight: 100;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .card {
    height: auto;
    border-radius: 3px;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0deg);
    -webkit-clip-path: polygon();
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__details {
    padding: 1rem 3rem;
  }
  .card__cta {
    position: relative;
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }
  .card__price-box {
    margin-bottom: 3rem;
  }
  .card__price-value {
    font-size: 4rem;
  }
}

.card-secondary {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 35rem;
}
.card-secondary__front {
  height: 35rem;
  font-size: 2rem;
  transition: all 0.8s ease;
  position: absolute;
  padding: 0 2rem;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.card-secondary__front--1 {
  background-image: linear-gradient(to left bottom, rgba(247, 177, 159, 0.4), rgba(165, 105, 90, 0.6), rgba(219, 101, 71, 0.7)), url(../../img/content/NetworkSecurity_large.jpg);
  background-size: cover;
}
.card-secondary__front--2 {
  background-image: linear-gradient(to right bottom, rgba(247, 177, 159, 0.4), rgba(165, 105, 90, 0.6), rgba(219, 101, 71, 0.7)), url(../../img/content/network-security.png);
  background-size: cover;
}
.card-secondary__front--3 {
  background-image: linear-gradient(to left bottom, rgba(247, 177, 159, 0.4), rgba(165, 105, 90, 0.6), rgba(219, 101, 71, 0.7)), url(../../img/content/net-security.png);
  background-size: cover;
}
.card-secondary__front--4 {
  background-image: linear-gradient(to right bottom, rgba(247, 177, 159, 0.4), rgba(165, 105, 90, 0.6), rgba(219, 101, 71, 0.7)), url(../../img/content/network-security.png);
  background-size: cover;
}
.card-secondary__front--5 {
  background-image: linear-gradient(to left bottom, rgba(247, 177, 159, 0.4), rgba(165, 105, 90, 0.6), rgba(219, 101, 71, 0.7)), url(../../img/content/Cybersecurity.jpg);
  background-size: cover;
}
.card-secondary__front--6 {
  background-image: linear-gradient(to left bottom, rgba(247, 177, 159, 0.4), rgba(165, 105, 90, 0.6), rgba(219, 101, 71, 0.7)), url(../../img/content/preview.png);
  background-size: cover;
}
.card-secondary__front--7 {
  background-image: linear-gradient(to left bottom, rgba(247, 177, 159, 0.4), rgba(165, 105, 90, 0.6), rgba(219, 101, 71, 0.7)), url(../../img/content/net-security.png);
  background-size: cover;
}
.card-secondary__front:hover {
  transform: translateY(-1.5rem) scale(1.03);
}
.card-secondary__heading h3 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-top: 4rem;
}
.card-secondary__text p {
  color: white;
  text-transform: capitalize;
  font-size: 1.2rem;
  font-weight: 600;
}

.composition {
  position: relative;
}
.composition__photo {
  width: 55%;
  box-shadow: 0 0.2rem 0.1rem rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.3333333%;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  }
}
.composition__photo--p1 {
  border-radius: 1rem;
  left: 0;
  top: -2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .composition__photo--p1 {
    top: 0;
    transform: scale(1.2);
  }
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .composition__photo--p2 {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
  }
}
.composition__photo--p3 {
  height: 65dvh;
  width: 80%;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 2rem;
  left: 20%;
  top: 12rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .composition__photo--p3 {
    width: 90%;
    height: auto;
    left: 20%;
    top: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  .composition__photo--p3 {
    width: 90%;
    height: auto;
    left: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .composition__photo--p3 {
    width: 90%;
    height: auto;
    left: 20%;
  }
}
.composition__photo:hover .composition__photo:not(.composition__photo--p1) {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.6);
  z-index: 20;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}
.composition__img {
  width: 100%;
  height: 30rem;
  background-size: contain;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  position: absolute;
  outline-offset: 2rem;
  transition: all 0.2s;
}
.composition__img:hover {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .feature-box {
    padding: 2rem;
  }
}
.feature-box__header {
  color: black;
  font-weight: 800;
}
.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  background-image: linear-gradient(to right, #a5e2b3, #00d61d);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .feature-box__icon {
    margin: 0;
  }
}
.feature-box__text {
  color: black;
}
.feature-box__text--read-more {
  display: none;
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.1);
  z-index: 1;
}
.feature-box:hover .feature-box__text--3-dots {
  display: none;
}
.feature-box:hover .feature-box__text--read-more {
  display: contents;
}

@media only screen and (max-width: 767px) {
  .form {
    padding: 0 !important;
  }
}
.form__group {
  margin-bottom: 2rem;
  position: relative;
  height: auto;
}
.form__group--button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -2rem;
}
.form__group--button:hover {
  transform: translateX(-50%);
}
.form__input {
  font-size: 1.5rem;
  padding: 1.5rem 2rem;
  font-family: inherit;
  border: 1px solid lightgrey;
  background-color: white;
  border-bottom: 3px solid grey;
  border-radius: 10px;
  width: 100%;
  display: block;
  transition: all 0.3s ease-out;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .form__input {
    width: 100%;
  }
}
.form__input::-webkit-input-placeholder {
  color: #999;
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #03fa62;
}
.form__input:focus:valid {
  border-bottom: 3px solid #55c57a;
}
.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s ease;
}
.form__input:-moz-placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__radio-group {
  width: 49%;
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .form__radio-group {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.form__radio-input {
  display: none;
}
.form__radio-label {
  font-size: 1.4rem;
  cursor: pointer;
  padding-left: 4.5rem;
}
.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid #03fa62;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.form__radio-button::after {
  height: 1.3rem;
  width: 1.3rem;
  content: "";
  display: block;
  background-color: #03fa62;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}
.form__newsletter {
  display: flex;
  flex-direction: row;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .form__newsletter {
    margin: 2rem;
  }
}
.form__newsletter--input {
  background-color: transparent;
  padding: 2rem;
  width: 100%;
  border-radius: 30px;
  color: white;
  font-size: 1.6rem;
}
.form__newsletter--button {
  background-color: white;
  width: 20%;
  border-radius: 30px;
  height: 4rem;
  margin-top: 1rem;
  margin-left: -12rem;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .form__newsletter--button {
    margin-left: -15rem;
  }
}
@media only screen and (max-width: 767px) {
  .form__newsletter--button {
    margin-left: -8rem;
  }
}
.form__newsletter--button:hover {
  cursor: pointer;
  background-color: #03fa62;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 75%;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.4s 0.2s;
}
.popup__top {
  display: flex;
  width: 100%;
  padding: 10rem 0 12rem 0;
  background-image: linear-gradient(to left bottom, rgba(56, 48, 48, 0.9), rgba(102, 68, 68, 0.9), rgba(22, 19, 19, 0.9));
}
.popup__bottom {
  padding: 3rem 5rem;
  width: 100%;
  display: inline-block;
  background-color: #f7f7f7;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .popup__bottom {
    display: inline-block;
    width: 100%;
  }
  .popup__bottom #book-btn {
    left: 50%;
    transform: translateX(-50%);
  }
}
.popup__img {
  display: block;
  width: 30rem;
  background-size: cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  -moz-column-rule: 1px solid #eee;
       column-rule: 1px solid #eee;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.popup__close:link, .popup__close:visited {
  color: #777;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}
.popup__close:hover {
  color: #03fa62;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__form-background {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../../img/bg-1.jpg);
  background-size: cover;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  .popup__form-background {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(../../img/nat-10.jpg);
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .popup__form-background {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%, transparent 100%), url(../../img/nat-10.jpg);
  }
}
.popup__form {
  width: 50%;
  padding: 6rem;
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  .popup__form {
    width: 65%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .popup__form {
    width: 100%;
  }
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  padding: 6rem;
  font-size: 1.4rem;
  transform: skewX(-12deg);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .story {
    width: 100%;
    padding: 4rem;
    transform: skewX(0);
  }
}
@media only screen and (max-width: 767px) {
  .story {
    transform: skewX(0);
  }
}
.story__shape {
  width: 15rem;
  height: 15rem;
  float: left;
  shape-outside: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transform: translateX(-3rem) skewX(12deg);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .story__shape {
    transform: translateX(-3rem) skewX(0);
  }
}
.story__img {
  height: 100%;
  background-size: 100%;
  transform: translateX(-4rem) scale(1.4);
  backface-visibility: hidden;
  transition: all 0.3s ease;
}
.story__text {
  transform: skewX(12deg);
  color: black;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .story__text {
    transform: skewX(0);
  }
}
.story__author {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.7rem;
  opacity: 0;
  transition: all 0.3s ease;
  backface-visibility: hidden;
}
.story:hover .story__author {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story:hover .story__img {
  transform: translateX(-4rem) scale(1);
  filter: blur(3px) brightness(80%);
}

.img-gallery {
  height: 20rem;
  width: 20rem;
  margin-left: 0.2rem;
  cursor: pointer;
}
.img-gallery:hover {
  scale: 1.3;
}

.marquee {
  position: relative;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 0.5rem;
}
.marquee__content {
  float: left;
  overflow: hidden;
}

.track {
  position: absolute;
  display: block;
  min-width: 100%;
}
.track--left {
  animation: marquee-left 32s linear infinite;
}
.track--right {
  animation: marquee-right 32s linear infinite;
}

.img-slider {
  width: 100%;
  position: relative;
  background-color: transparent;
}
.img-slider__slide {
  position: absolute;
  width: 100%;
  -webkit-clip-path: circle(0% at 0 50%);
          clip-path: circle(0% at 0 50%);
}
.img-slider__slide.active {
  -webkit-clip-path: circle(155% at 0 50%);
          clip-path: circle(155% at 0 50%);
  transition: 0.8s ease-in;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  .img-slider__slide.active {
    -webkit-clip-path: circle(255% at 0 50%);
            clip-path: circle(255% at 0 50%);
  }
}
.img-slider__filler {
  width: 100%;
  padding: 28rem 0;
  position: absolute;
}
.img-slider__filler--1 {
  background-image: linear-gradient(to right bottom, rgb(60, 95, 134), rgb(107, 159, 218), rgb(27, 62, 102));
}
.img-slider__filler--2 {
  background-image: linear-gradient(to right bottom, rgb(61, 54, 102), rgb(106, 95, 173), rgb(43, 35, 94));
}
.img-slider__filler--3 {
  background-image: linear-gradient(to right bottom, rgb(156, 77, 46), rgb(184, 108, 79), rgb(158, 54, 12));
}
.img-slider__filler--4 {
  background-image: linear-gradient(to right bottom, rgb(154, 78, 197), rgb(185, 27, 172), rgb(83, 13, 148));
}
.img-slider__info {
  position: absolute;
  padding: 2rem;
}
@media only screen and (max-width: 767px) {
  .img-slider__info {
    padding: 5rem 5rem;
  }
}
.img-slider__info p {
  color: white;
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.562), rgba(0, 0, 0, 0.1));
  font-size: 1.4rem;
  width: 50%;
  padding: 1rem;
  border-radius: 0.4rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .img-slider__info p {
    width: 100%;
  }
}
.img-slider__btn {
  z-index: 11;
  margin-top: 5%;
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  .img-slider__btn {
    margin-top: 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .img-slider__btn {
    margin-top: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .img-slider__btn {
    margin-top: 25%;
  }
}
.img-slider__nav {
  position: absolute;
  z-index: 2;
  display: flex;
  bottom: 20px;
  left: 49.5%;
  transform: translateX(-49.5%);
}
.img-slider__radio-btn {
  background-color: rgba(161, 161, 161, 0.5);
  width: 12px;
  height: 12px;
  margin-left: 20px;
  border-radius: 40px;
  cursor: pointer;
}
.img-slider__radio-btn.active {
  background-color: #03fa62;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.img-slider2 {
  width: 100%;
  background-color: transparent;
}
.img-slider2__slide {
  width: 100%;
  -webkit-clip-path: circle(0% at 0 50%);
          clip-path: circle(0% at 0 50%);
}
.img-slider2__slide.active2 {
  -webkit-clip-path: circle(155% at 0 50%);
          clip-path: circle(155% at 0 50%);
  transition: 0.8s ease-in;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  .img-slider2__slide.active2 {
    -webkit-clip-path: circle(255% at 0 50%);
            clip-path: circle(255% at 0 50%);
  }
}
.img-slider2__filler {
  width: 100%;
  padding: 28rem 0;
  position: absolute;
}
.img-slider2__filler--1 {
  background-image: linear-gradient(to right bottom, rgba(60, 94, 134, 0.514), rgba(107, 159, 218, 0.452), rgba(27, 62, 102, 0.432)), url("../../img/products/Banners/Asus-banner-4.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
}
.img-slider2__filler--2 {
  background-image: linear-gradient(to right bottom, rgba(61, 54, 102, 0.514), rgba(105, 95, 173, 0.452), rgba(43, 35, 94, 0.384)), url("../../img/products/Banners/cyber-banner2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.img-slider2__filler--3 {
  background-image: linear-gradient(to right bottom, rgba(156, 77, 46, 0.527), rgba(184, 109, 79, 0.425), rgba(158, 53, 12, 0.514)), url("../../img/products/Banners/cyber-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.img-slider2__filler--4 {
  background-image: linear-gradient(to right bottom, rgba(153, 78, 197, 0.521), rgba(185, 27, 172, 0.411), rgba(83, 13, 148, 0.308)), url("../../img/products/Banners/Asus-Gpu-2 ad.jpeg");
  background-size: cover;
}
.img-slider2__info {
  position: absolute;
  padding: 10rem 6rem;
}
@media only screen and (max-width: 767px) {
  .img-slider2__info {
    padding: 5rem 5rem;
  }
}
.img-slider2__info p {
  color: white;
  background-image: linear-gradient(to right bottom, rgba(86, 67, 250, 0.815), rgba(3, 250, 98, 0.705));
  font-size: 1.4rem;
  font-weight: 600;
  width: 70%;
  padding: 1rem;
  border-radius: 0.4rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .img-slider2__info p {
    width: 100%;
  }
}
.img-slider2__btn {
  z-index: 11;
  margin-top: 5%;
  position: absolute;
  display: flex;
  left: 30%;
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  .img-slider2__btn {
    margin-top: 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .img-slider2__btn {
    margin-top: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .img-slider2__btn {
    margin-top: 15%;
  }
}
.img-slider2__nav {
  position: absolute;
  z-index: 2;
  display: flex;
  bottom: 90px;
  left: 46%;
}
@media only screen and (max-width: 767px) {
  .img-slider2__nav {
    left: 35%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .img-slider2__nav {
    left: 35%;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1900px) {
  .img-slider2__nav {
    bottom: 150px;
    top: 500px;
  }
}
.img-slider2__radio-btn {
  background-color: rgba(255, 246, 246, 0.89);
  width: 12px;
  height: 12px;
  margin-left: 20px;
  border-radius: 40px;
  cursor: pointer;
}
.img-slider2__radio-btn.active2 {
  background-color: #03fa62;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.review-box {
  font-size: 1.5rem;
  padding: 5rem 0;
  border-radius: 20px;
  box-shadow: 0.1rem 0.5rem 1.3rem 0.1rem #03fa62;
  transition: all 0.3s ease;
  width: 100%;
}
.review-box__stars {
  list-style: none;
  display: flex;
}
.review-box__stars--items:not(:first-child) {
  margin-left: 0.3rem;
}
.review-box__stars--items-icon {
  color: orange;
}
.review-box__img-cont {
  background-color: #03fa62;
  width: 30%;
  padding: 0.3rem;
  border-radius: 100px;
}
.review-box__info {
  display: flex;
  width: 100%;
  padding: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .review-box__info {
    padding: 2rem 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .review-box__info {
    padding: 2rem 4rem;
  }
}
.review-box__info--img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  backface-visibility: hidden;
  transition: all 0.3s ease;
  border: 1px black;
}
.review-box__info--list {
  list-style: none;
  margin-left: 3rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .review-box__info--list {
    margin-left: 10rem;
  }
}
.review-box__info--name {
  color: black;
  font-weight: 600;
}
.review-box__icon {
  font-size: 6rem;
  margin-bottom: 1rem;
  display: inline-block;
  background-image: linear-gradient(to right, #777, black);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .review-box__icon {
    margin: 0;
  }
}
.review-box__text {
  margin: 2rem;
  font-style: italic;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .review-box__text {
    margin: 2rem 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .review-box__text {
    margin: 2rem 4rem;
  }
}
.review-box__text-icon {
  color: #a5e2b3;
  font-size: 1.6rem;
}
.review-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}
.review-box:hover .review-box__text--3-dots {
  display: none;
}
.review-box:hover .review-box__text--read-more {
  display: contents;
}

/*************************************** BASE STYLES **********************************/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    transform: translateY(3rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 1900px) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
body .container {
  margin: 0 auto;
  width: 90%;
  max-width: 1080px;
}
@media only screen and (min-width: 1900px) {
  body .container {
    max-width: 1400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body {
    padding: 0;
  }
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #777;
  overflow-x: hidden;
  overflow-y: auto;
  
}

.intro-text {
  color: black;
  font-weight: 400;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .intro-text {
    text-align: center !important;
    float: none !important;
    width: 100%;
    margin: 0 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .intro-text {
    text-align: center !important;
    float: none !important;
    width: 100%;
    margin: 0 !important;
  }
}

.number-title {
  width: 100%;
  font-size: 20rem;
  color: black;
  text-align: center;
}
.number-title__1 {
  background-image: linear-gradient(to right bottom, #00f148, #3b9764, #055536);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}
.number-title__2 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730, rgb(107, 70, 0));
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}
.number-title__3 {
  background-image: linear-gradient(to right bottom, #0486ff, #4136a5, rgb(13, 13, 102));
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}
.number-title__4 {
  background-image: linear-gradient(to right bottom, #eeff04, #9aa536, rgb(101, 102, 13));
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem;
}
.heading-primary--main {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1.5rem;
  animation: moveInLeft 1s ease-out;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .heading-primary--main {
    letter-spacing: 0;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 390px) and (max-width: 576px) {
  .heading-primary--main {
    letter-spacing: 0;
    font-size: 2.5rem;
  }
}
.heading-primary--sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  animation: moveInRight 1s ease-out;
  color: white;
}
@media only screen and (max-width: 767px) {
  .heading-primary--sub {
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 390px) and (max-width: 576px) {
  .heading-primary--sub {
    letter-spacing: 0;
  }
}

.heading-secondary {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: black;
  letter-spacing: 2px;
  transition: all 0.2s;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .heading-secondary {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .heading-secondary {
    font-size: 2.3rem;
  }
}
.heading-secondary:hover {
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-tertiary {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: black;
}
@media only screen and (max-width: 767px) {
  .heading-tertiary {
    text-align: center !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .heading-tertiary {
    text-align: center !important;
  }
}

.heading-4th {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  background-image: linear-gradient(to right, #fff, #f7f7f7);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  transition: all 0.2s;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .heading-4th {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .heading-4th {
    font-size: 2.3rem;
  }
}
.heading-4th:hover {
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-5th {
  color: white;
  letter-spacing: 0.2rem;
  font-size: 3.5rem;
  font: 700;
  text-transform: uppercase;
}

.paragraph {
  font-size: 1.4rem;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

.u-center-text {
  text-align: center !important;
}

.u-text-align-left {
  text-align: left !important;
}

.u-text-align-right {
  text-align: right !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-large {
  margin-bottom: 8rem !important;
}

.u-margin-top-small {
  margin-top: 1.5rem !important;
}

.u-margin-top-medium {
  margin-top: 8rem !important;
}

.u-margin-top-large {
  margin-top: 10rem !important;
}

/*************************************** PAGES STYLES **********************************/
.nav {
  position: fixed;
  z-index: 1;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .nav {
    display: none;
  }
}

.hero {
  background-image: linear-gradient(to right bottom, rgba(3, 250, 98, 0.2), rgba(0, 214, 29, 0.9)), url(../../img/tractor\ 1.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  height: 90vh;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hero {
    height: 70vh;
  }
}

@media only screen and (max-width: 767px) {
  .hero {
    height: 75vh;
  }
}

@media only screen and (min-width: 390px) and (max-width: 576px) {
  .hero {
    height: 80vh;
  }
}

.hero__text-box-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero__buttons {
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.hero__logo-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .hero__logo-mobile {
    display: block;
    width: 40rem;
    height: 20rem;
    margin-top: -10rem;
    margin-right: 10rem;
    margin-left: -3rem;
    margin-bottom: -10rem;
  }
}
@media only screen and (min-width: 390px) and (max-width: 576px) {
  .hero__logo-mobile {
    display: block;
    width: 40rem;
    height: 20rem;
    margin-top: -10rem;
    margin-left: -3rem;
    margin-bottom: -10rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hero__logo-mobile {
    display: block;
    width: 40rem;
    height: 20rem;
    margin-top: -10rem;
    margin-bottom: -10rem;
  }
}
.hero__img {
  border-radius: 50px;
  mix-blend-mode: darken;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hero__mobile {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero__mobile {
    display: none;
  }
}

.hero-2 {
  background-image: linear-gradient(to right bottom, rgba(3, 250, 98, 0.2), rgba(0, 214, 29, 0.9)), url(../../img/tractor\ 1.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  height: 65vh;
}
.hero-2__text-box-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.about {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 20rem 0;
  }
}
.about__header {
  color: black;
  font-size: 1.8rem;
  font-weight: 800;
}
.about__header:hover {
  color: #03fa62;
  font-size: 2rem;
  transition: all ease-in 0.2s;
}
.about__paragraph {
  color: black;
  font-weight: 600;
}
.about__paragraph:hover {
  scale: 1.02;
  transition: all ease-in 0.2s;
}
.about__logo {
  margin-bottom: -4rem;
  width: 100%;
}
.about__logo-text {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
  color: black;
}
.about__accred-img {
  width: 100%;
}
.about__card {
  border-radius: 5rem;
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.623);
  background-color: white;
  padding: 4rem 3rem;
  border-top: 4px solid #03fa62;
}
.about__card--header {
  margin-bottom: 1rem;
}
.about__card--paragraph:hover {
  scale: 1.1;
  color: black;
  font-weight: 600;
  transition: all 0.3s ease-in;
}
.about__card--icon {
  font-size: 5rem;
  color: #03fa62;
}
.about__card--values-header {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #03fa62;
  font-weight: 800;
}
.about__card-2 {
  padding: 3rem;
  background-color: transparent;
}
.about__card-2:hover {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 2rem grey;
  scale: 1.1;
  transition: all 0.3s ease-in-out;
}

.pricing {
  background-color: white;
  padding: 2.5rem 0;
}
.pricing__card {
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.233);
  color: black;
}
.pricing__card--icon {
  font-size: 5rem;
  font-weight: 600;
}
.pricing__card--icon-1 {
  font-size: 4rem;
  font-weight: 600;
}
.pricing__card--heading-1 {
  padding: 1rem 0;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 2.5rem;
}
.pricing__card--text {
  font-weight: 400;
  padding: 1rem 0;
}
.pricing__card--heading-2 {
  font-size: 2rem;
  font-weight: 600;
  padding: 1.5rem 0;
}
.pricing__card--line {
  border-top: 1px solid rgba(0, 0, 0, 0.26);
  margin: 3rem 0;
}
.pricing__card--list {
  list-style: none;
}
.pricing__card--items {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.pricing__card--items-icon {
  color: #03fa62;
  font-size: 2rem;
}

.newsletter {
  background-color: white;
  padding: 7rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .newsletter .row {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter {
    padding: 10rem 0;
  }
}
.newsletter__row {
  background-color: black;
  border-radius: 30px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  padding: 3rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .newsletter__row {
    padding: 3rem 6rem;
  }
}
.newsletter__form {
  width: 100%;
  padding: 2rem 0;
}
.newsletter__heading {
  font-size: 3rem;
  font-weight: 600;
  color: white;
}
@media only screen and (max-width: 767px) {
  .newsletter__heading {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .newsletter__heading {
    margin: 2rem;
  }
}
.newsletter__icon {
  font-size: 30rem;
  display: inline-block;
  -webkit-background-clip: text;
          background-clip: text;
  color: white;
  font-weight: 600;
}
.newsletter__text {
  color: white;
  font-weight: 400;
  padding: 2rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .newsletter__text {
    margin: 2rem;
  }
}

.policy {
  padding: 3rem 0;
}
.policy__heading {
  padding: 1.5rem 0;
}
.policy__text {
  color: black;
  justify-content: end;
}
.policy__list {
  list-style: none;
}
.policy__items {
  color: black;
  margin-top: 1rem;
}
.policy__icon {
  color: #03fa62;
  margin-right: 1rem;
}

.services__card {
  margin-top: -15rem;
  border-top: 2px solid rgba(41, 41, 41, 0.062);
  background-color: white;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.219);
  padding: 3rem 2rem;
}
.services__card--heading {
  color: black;
  text-transform: uppercase;
  font-weight: 600;
}
.services__card--text {
  margin-top: 3rem;
  color: black;
  margin-bottom: 3rem;
}
.services__card--icon {
  font-size: 4rem;
  color: black;
}
.services__card--icon-1 {
  font-size: 3.5rem;
  color: black;
}

.about {
  padding: 2.5rem 0;
}
@media only screen and (max-width: 767px) {
  .about__mobile-col {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .about__mobile-col {
    display: none;
  }
}
.about__img {
  width: 100%;
  aspect-ratio: 3/2;
  background-size: contain;
  border-radius: 30px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.151);
}
.about__heading-primary {
  text-transform: capitalize;
  font-size: 3rem;
  color: black;
}
.about__list {
  margin-top: 4rem;
  list-style: none;
}
.about__items {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-top: 3rem;
}
.about__items--icon {
  font-size: 3rem;
  color: #03fa62;
}
.about__items--2 {
  margin-top: -0.5rem;
  color: black;
}
.about__card {
  border-radius: 15px;
  box-sizing: 0 1rem 1rem rgba(0, 0, 0, 0.603);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.151);
}
.about__buttons {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.underline {
  position: absolute;
  width: 5%;
  background-color: black;
  height: 0.5vh;
  left: 62%;
  transform: translateY(-50%);
  margin-top: -5rem;
}

.values {
  background-color: #f7f7f7;
  padding: 5rem 0;
}

.call-to-action {
  padding: 10rem 0;
}
.call-to-action__container {
  background-image: url("../../img/bodybg/bg1.png");
  padding: 10rem;
  border-radius: 50px;
}
.call-to-action__icon {
  font-size: 7.5rem;
  color: black;
}
.call-to-action__paragraph {
  color: black;
  font-size: 1.6rem;
}

.contact {
  background-color: #f7f7f7;
  padding: 2.5rem 0;
}
.contact__card {
  background-color: white;
  padding: 4rem 2rem;
  border-radius: 25px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.329);
  width: 100%;
}
.contact__card address {
  color: black;
  font-weight: 400;
  font-style: normal;
  margin-top: 1rem;
}
.contact__row {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.253);
  border-top: 3px solid #03fa62;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .contact__row {
    width: 100%;
    padding: 0 !important;
  }
}
.contact__col-1 {
  padding: 6rem 3rem !important;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .contact__col-1 {
    background-color: transparent;
    width: 100%;
    padding: 6rem 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .contact__col-1 {
    background-color: transparent;
    width: 100%;
    padding: 6rem 0 !important;
  }
}
.contact__col-2 {
  background-color: rgba(236, 236, 236, 0.568627451);
  padding: 7rem 3rem !important;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .contact__col-2 {
    background-color: transparent;
    margin-top: -10rem;
    width: 100%;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .contact__col-2 {
    background-color: transparent;
    margin-top: -10rem;
    width: 100%;
    padding: 0 !important;
  }
}
.contact__form-con {
  display: flex;
  margin-bottom: 2rem;
}
.contact__form-con--icon {
  font-size: 2.5rem;
  color: #03fa62;
}
.contact__head-text {
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 1rem;
}
.contact__header {
  background-image: linear-gradient(to right bottom, #eeff04, #9aa536, rgb(101, 102, 13));
}
.contact__icon {
  font-size: 5rem;
  background-image: linear-gradient(to right bottom, #00f148, #3b9764, #055536);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.contact__list {
  list-style: none;
  margin-bottom: 2rem;
}
.contact__list--items {
  color: black;
  font-weight: 600;
}
.contact__map {
  width: 100%;
}
.contact__tel {
  margin-top: 1rem;
}
.contact__tel--icon {
  color: black;
}
.contact__tel--text {
  text-decoration: none;
  color: black;
  cursor: pointer;
  margin-left: 0.5rem;
}
.contact__tel--text:hover {
  color: rgba(0, 0, 255, 0.671);
  font-size: 1.5rem;
}
.contact__text {
  text-decoration: none;
  color: black;
  font-weight: 600;
  cursor: pointer;
}
.contact__text:hover {
  color: #03fa62;
}
.contact__email {
  margin-bottom: 7rem;
}
.contact__email--icon {
  color: black;
}
.contact__email--text {
  text-decoration: none;
  color: black;
  cursor: pointer;
  margin-left: 0.5rem;
}
.contact__email--text:hover {
  color: rgba(0, 0, 255, 0.671);
  font-size: 1.5rem;
}

/*************************************** LAYOUT STYLES **********************************/
.footer {
  background-color: white;
  color: black;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    padding: 8rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 8rem 0;
  }
}
.footer__logo {
  width: 20rem;
  height: auto;
}
.footer__text {
  text-transform: uppercase;
  font-size: 1.4rem !important;
  font-weight: 600;
  letter-spacing: 0.4rem;
}
.footer__navigation {
  border-top: 1px solid #777;
  padding-top: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__navigation {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .footer__navigation {
    width: 100%;
    text-align: center;
  }
}
.footer__line {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.151);
}
.footer__socials-list {
  list-style: none;
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.footer__socials-items {
  margin-top: 2rem;
}
.footer__socials-icons {
  font-size: 4rem;
  color: black;
  font-weight: 800;
}
.footer__socials-link {
  text-decoration: none;
}
.footer__socials-link:hover {
  scale: 1.1;
  color: #03fa62;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.footer__list {
  list-style: none;
  color: black;
}
.footer__items {
  margin-top: 1rem;
}
.footer__link:link, .footer__link:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
  text-transform: capitalize;
}
.footer__link:hover, .footer__link:active {
  color: #03fa62;
  padding: 0.5rem 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  transform: rotate(5deg) scale(1.3);
  transition: all 0.3s ease-in-out;
}
.footer__link-2:link, .footer__link-2:visited {
  font-size: 1.6rem;
  color: #f7f7f7;
  background-color: transparent;
  text-decoration: none;
}
.footer__link-2:hover, .footer__link-2:active {
  color: #03fa62;
  padding: 1rem;
  font-weight: 600;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  transform: rotate(5deg) scale(1.3);
  transition: all 0.3s ease-in-out;
}
.footer__copyright {
  border-top: 1px solid #777;
  padding-top: 2rem;
  width: 100%;
  float: right;
  margin-right: -15%;
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  .footer__copyright {
    width: 90%;
    margin-right: -10%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__copyright {
    width: 100%;
    float: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer__copyright {
    width: 100%;
    float: none;
  }
}

.credits {
  padding: 2rem 0;
}
.credits__con {
  display: flex;
  float: right;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .credits__con {
    float: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .credits__con {
    float: none;
  }
}
.credits__text {
  color: black;
}
.credits__link {
  text-decoration: none;
  color: black;
}
.credits__link:hover {
  cursor: pointer;
  border-radius: 30px;
  padding: 0 2rem;
  color: white;
  background-color: #03fa62;
  transition: all 0.3s ease-in-out;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .row {
    max-width: 75rem;
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .row {
    max-width: 50rem;
    padding: 0 1rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  padding: 0.5em;
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 1rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2rem) / 3);
}
.row .col-2-of-3 {
  width: calc((100% - 2rem) / 3 * 2 + 1rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3rem) / 4);
}
.row .col-2-of-4 {
  width: calc((100% - 3rem) / 4 * 2 + 1rem);
}
.row .col-3-of-4 {
  width: calc((100% - 3rem) / 4 * 3 + 2rem);
}

.navigation {
  position: relative;
}
.navigation__list {
  display: flex;
  float: right;
  margin-top: -3.45rem;
  margin-right: 0;
}
.navigation__item {
  list-style: none;
  margin-left: 2.5rem;
}
.navigation__link {
  text-decoration: none;
  color: transparent;
  font-weight: 600;
}
.navigation__link:hover {
  padding-bottom: 2.8rem;
  border-bottom: 2px solid #03fa62;
  color: #a5e2b3;
}
.navigation__dropdown {
  list-style: none;
  position: relative;
  margin-left: 2.5rem;
}
.navigation__dropdown-list {
  padding: 2rem;
  position: absolute;
  display: none;
  left: 0;
  top: calc(100% + 2.2rem);
  background-color: #fff;
  margin-left: -65rem;
  border-radius: 5px;
  width: 100rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.navigation__dropdown-item {
  list-style: none;
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
.navigation__dropdown-item:hover {
  background-color: #03fa62;
  padding: 1.5rem;
  color: #fff;
  cursor: pointer;
}
.navigation__dropdown-item:hover:not(:last-child) {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.navigation__dropdown-item:hover:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.navigation__dropdown-item:hover:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.navigation__dropdown-item:hover a {
  color: #fff;
}
.navigation__dropdown-link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
  color: black;
}
.navigation__dropdown:hover .navigation__dropdown-list {
  display: block;
}
.navigation span {
  margin-right: -4rem;
  margin-top: -0.3rem;
}
.navigation span a {
  width: 20rem;
  height: 3rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.navigation span a p {
  margin-top: -1.2rem;
}

.navigation-2 {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .navigation-2 {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .navigation-2 {
    display: block;
  }
}
.navigation-2__checkbox {
  display: none;
}
.navigation-2__button {
  height: 7.2rem;
  width: 7.2rem;
  border-radius: 50%;
  top: 4.5rem;
  right: 4.5rem;
  z-index: 2000;
  background-color: white;
  position: fixed;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .navigation-2__button {
    top: 2rem;
    right: 2rem;
  }
}
.navigation-2__background {
  height: 4.5rem;
  width: 4.5rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#a5e2b3, #00d61d);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
}
@media only screen and (max-width: 767px) {
  .navigation-2__background {
    top: 2.5rem;
    right: 2.5rem;
  }
}
.navigation-2__nav {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.navigation-2__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}
.navigation-2__item {
  margin: 1rem;
}
.navigation-2__dropdown {
  list-style: none;
  position: relative;
}
.navigation-2__dropdown-list {
  position: absolute;
  display: none;
  left: 0;
  top: calc(100% + 2.95rem);
  background-color: #fff;
  border-radius: 5px;
  width: 47.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.navigation-2__dropdown-item {
  list-style: none;
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.navigation-2__dropdown-item:hover {
  background-color: #03fa62;
  padding: 1.5rem;
  color: #fff;
  cursor: pointer;
}
.navigation-2__dropdown-item:hover:not(:last-child) {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.navigation-2__dropdown-item:hover:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.navigation-2__dropdown-item:hover:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.navigation-2__dropdown-item:hover a {
  color: #fff;
}
.navigation-2__link:link, .navigation-2__link:visited {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  padding: 1rem 2rem;
  font-size: 3rem;
  background-size: 231%;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent, transparent 0%, transparent 50%, #fff 50%);
  transition: all 0.4s;
}
.navigation-2__link:link span, .navigation-2__link:visited span {
  margin-right: 1.5rem;
}
.navigation-2__link:hover, .navigation-2__link:active {
  background-position: 100%;
  color: #03fa62;
  transform: translateX(1rem);
}
.navigation-2__checkbox:checked ~ .navigation-2__background {
  transform: scale(100);
}
.navigation-2__checkbox:checked ~ .navigation-2__nav {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.navigation-2__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation-2__icon, .navigation-2__icon::before, .navigation-2__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}
.navigation-2__icon::before, .navigation-2__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation-2__icon::before {
  top: -0.8rem;
}
.navigation-2__icon::after {
  top: 0.8rem;
}
.navigation-2__button:hover .navigation-2__icon::before {
  top: -1rem;
}
.navigation-2__button:hover .navigation-2__icon::after {
  top: 1rem;
}
.navigation-2__checkbox:checked + .navigation-2__button .navigation-2__icon {
  background-color: transparent;
}
.navigation-2__checkbox:checked + .navigation-2__button .navigation-2__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation-2__checkbox:checked + .navigation-2__button .navigation-2__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

header {
  width: 100%;
  position: relative;
  background-color: transparent;
  z-index: 1;
}
header .header {
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 0 2rem;
}
header .header__center {
  margin-top: 2.5rem;
}
header .header__link {
  text-decoration: none;
  background-color: transparent;
  font-size: 1.8rem;
  text-transform: uppercase;
}
header .header__logo {
  width: 100%;
  height: 10rem;
  mix-blend-mode: darken;
  border-radius: 30px;
  margin-top: -1rem;
}
header .header__logo:hover {
  scale: 1.1;
}
header .header__list {
  list-style: none;
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
header .header__items {
  font-size: 1.6rem;
  padding: 0.5rem 2rem;
  border-radius: 20px;
}
header .header__items--link {
  text-decoration: none;
  color: white;
}
header .header__items--link:hover {
  padding-bottom: 4.6rem;
  border-bottom: 4px solid #00d61d;
  color: transparent;
  background-image: linear-gradient(to right bottom, #eeff04, #9aa536, rgb(101, 102, 13));
  -webkit-background-clip: text;
          background-clip: text;
  font-weight: 600;
  transition: all 0.2s ease-in;
}
header .header__right {
  margin-top: 3rem;
}
header .header__btn {
  background-color: #03fa62;
  padding: 1rem 3rem;
  text-decoration: none;
  border-radius: 20px;
  color: white;
}
header .header__btn:hover {
  background-color: white;
  color: #03fa62;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.116);
  font-size: 1.6rem;
  transition: all 0.3s ease-in;
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
  header .header__logo-box {
    margin-left: 5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  header {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header {
    display: none;
  }
}

.header-scrolled {
  background-color: #fff;
  /* Color when scrolled */
  transition: all 0.2s ease-in-out;
}
.header-scrolled .header__logo-box a {
  color: #777;
}
.header-scrolled .header__items--link {
  color: black !important;
}/*# sourceMappingURL=style.css.map */