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

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body);
  color: var(--text-color);
  overflow: overlay;
}

h1,
h2,
h3,
h4 {
  color: var(--text-dark);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

.btn-rounded {
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-weight: var(--font-medium);
  letter-spacing: 1px;
}
.btn-rounded > i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn {
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--primary-500);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-weight: var(--font-medium);
  letter-spacing: 1px;
}
.btn > i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  background-color: var(--container-1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  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;
}
.nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-weight: var(--font-medium);
  font-size: 2rem;
  font-weight: var(--font-semi-bold);
}
.nav__logo-icon {
  width: 2.5rem;
}
.nav__logo-text {
  font-size: 2rem;
  line-height: 1;
  font-weight: var(--font-semi-bold);
  color: var(--text-dark);
}
.nav__logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: var(--font-semi-bold);
}
.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--dark-500);
}
.nav__toggle:hover {
  color: var(--primary-500);
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
@media screen and (min-width: 767px) {
  .nav__toggle {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    width: 100%;
    background: var(--container-3);
    top: -150%;
    left: 0;
    padding: 3.5rem 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: var(--z-fixed);
    border-radius: 0 0 1.5rem 1.5rem;
  }
}
.nav__close {
  font-size: 1.8rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  color: var(--light-100);
}
.nav__close:hover {
  color: var(--primary-100);
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
@media screen and (min-width: 767px) {
  .nav__close {
    display: none;
  }
}
.nav__list {
  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;
  row-gap: 1.5rem;
}
@media screen and (min-width: 767px) {
  .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .nav__list {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.nav__item {
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 767px) {
  .nav__item::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 2px;
    content: "";
    position: absolute;
    background-color: var(--primary-500);
    width: 0%;
    top: 1.6rem;
    border-radius: 1rem;
  }
  .nav__item:hover::before {
    width: 60%;
  }
}
.nav__link {
  font-weight: var(--font-black);
  font-size: var(--small-font-size);
  color: var(--light-900);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: var(--font-medium);
}
@media screen and (min-width: 767px) {
  .nav__link {
    opacity: 0.55;
    color: var(--dark-900);
  }
  .nav__link:hover {
    opacity: 1;
  }
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--light-100);
  -webkit-box-shadow: 0 5px 10px -5px var(--grey-900);
          box-shadow: 0 5px 10px -5px var(--grey-900);
  -webkit-transition: 1s;
  transition: 1s;
}

/* Active link */
.active-link {
  font-weight: var(--font-bold);
  color: var(--light-100);
  font-size: var(--normal-font-size);
}
@media screen and (min-width: 767px) {
  .active-link {
    opacity: 1;
    color: var(--dark-900);
    font-weight: var(--font-medium);
    font-size: var(--small-font-size);
  }
  .active-link::before {
    -webkit-transition: 300ms;
    transition: 300ms;
    height: 2px;
    content: "";
    position: absolute;
    background-color: var(--primary-500);
    width: 60%;
    top: 1.6rem;
    border-radius: 1rem;
  }
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1.2rem;
  bottom: -10rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.4rem;
  border-radius: 50%;
  z-index: var(--z-tooltip);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border: 2px solid var(--primary-900);
  background-color: var(--light-100);
  color: var(--primary-900);
  opacity: 0.6;
}
.scrollup:hover {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
  background-color: var(--light-900);
  opacity: 1;
}
.scrollup__icon {
  font-size: 1.2rem;
}
@media screen and (min-width: 576px) {
  .scrollup {
    right: 3rem;
  }
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 2rem;
}
@media screen and (min-width: 576px) {
  .show-scroll {
    right: 3rem;
  }
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-100);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-500);
}

.triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--primary-500);
}

.circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2rem;
}
@media screen and (min-width: 767px) {
  .section {
    padding: 7rem 0 4rem;
  }
}
.section__title {
  font-family: var(--title-font);
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
  text-align: center;
}
.section__subtitle {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .section__subtitle {
    width: 60%;
  }
}
@media screen and (min-width: 576px) {
  .section__subtitle {
    width: 50%;
  }
}

/*=============== LAYOUT ===============*/
.container {
  max-width: 1200px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
}
@media screen and (min-width: 1224px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

.grid {
  display: grid;
}

.main {
  overflow: hidden;
}

.hero {
  padding: 0;
  position: relative;
  background-color: var(--container-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.hero__img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgba(153, 38, 38, 0)), to(var(--primary-100)));
  -webkit-mask-image: linear-gradient(180deg, rgba(153, 38, 38, 0) 33%, var(--primary-100) 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgba(153, 38, 38, 0)), to(var(--primary-100)));
          mask-image: linear-gradient(180deg, rgba(153, 38, 38, 0) 33%, var(--primary-100) 100%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 576px) {
  .hero__container {
    width: 80%;
    margin: 0 auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media screen and (min-width: 767px) {
  .hero__container {
    width: 65%;
    margin: 0 auto;
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
}
@media screen and (min-width: 992px) {
  .hero__container {
    width: 50%;
    margin: 0 auto;
  }
}
.hero__title {
  font-family: var(--title-font);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  padding: var(--mb-1) 0;
}
.hero__title span {
  color: var(--primary-500);
}
.hero__subtitle {
  padding-bottom: var(--mb-2-5);
}
.hero__button {
  color: var(--text-light);
  background-color: var(--primary-500);
}
.hero__button svg {
  width: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hero__button:hover > svg {
  -webkit-transform: translateX(0.4rem);
          transform: translateX(0.4rem);
}

.insight {
  position: relative;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: var(--z-tooltip);
}
@media screen and (min-width: 767px) {
  .insight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.insight__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: var(--text-light);
  background-color: var(--container-3);
  border-radius: 1rem;
  gap: 1.5rem;
  justify-items: center;
  padding: 1.5rem;
  margin: 4rem 1rem;
  min-width: 80%;
}
@media screen and (max-width: 320px) {
  .insight__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 767px) {
  .insight__container {
    grid-template-columns: repeat(4, 1fr);
    min-width: 60vw;
    margin: 0 1rem;
  }
}
.insight__elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.insight__elem:hover > .insight__elem-icon {
  -webkit-transform: translateY(0.8rem);
          transform: translateY(0.8rem);
}
.insight__elem-icon {
  font-size: 2rem;
  -webkit-transform: translateY(1.4rem);
          transform: translateY(1.4rem);
  padding-right: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.insight__elem-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.insight__elem-key {
  font-size: 0.7rem;
}
.insight__elem-value {
  font-size: 2rem;
  font-weight: var(--font-semi-bold);
}

.blog {
  position: relative;
  padding: 4.5rem 0 2rem;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .blog {
    padding: 1rem 0 4rem;
  }
}
.blog__svg {
  display: none;
  z-index: -1;
}
@media screen and (min-width: 767px) {
  .blog__svg {
    position: absolute;
    display: block;
    width: 200px;
  }
  .blog__svg-1 {
    top: -150px;
    left: -80px;
  }
  .blog__svg-2 {
    bottom: -90px;
    right: -90px;
  }
}
.blog__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin: 4rem 0 2rem;
}
@media screen and (min-width: 576px) {
  .blog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .blog__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog__elem {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: left;
  height: 25rem;
  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;
  background-size: cover;
  cursor: pointer;
  color: var(--light-100);
}
.blog__elem-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-5%, rgba(25, 139, 210, 0)), color-stop(50%, rgba(6, 40, 61, 0.9))), url("/assets/img/blog-image-1.webp");
  background-image: linear-gradient(to bottom, rgba(25, 139, 210, 0) -5%, rgba(6, 40, 61, 0.9) 50%), url("/assets/img/blog-image-1.webp");
}
.blog__elem-1:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, rgba(25, 139, 210, 0)), color-stop(40%, var(--primary-900))), url("/assets/img/blog-image-1.webp");
  background-image: linear-gradient(to bottom, rgba(25, 139, 210, 0) -50%, var(--primary-900) 40%), url("/assets/img/blog-image-1.webp");
}
.blog__elem-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-5%, rgba(25, 139, 210, 0)), color-stop(50%, rgba(6, 40, 61, 0.9))), url("/assets/img/blog-image-2.webp");
  background-image: linear-gradient(to bottom, rgba(25, 139, 210, 0) -5%, rgba(6, 40, 61, 0.9) 50%), url("/assets/img/blog-image-2.webp");
}
.blog__elem-2:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, rgba(25, 139, 210, 0)), color-stop(40%, var(--primary-900))), url("/assets/img/blog-image-2.webp");
  background-image: linear-gradient(to bottom, rgba(25, 139, 210, 0) -50%, var(--primary-900) 40%), url("/assets/img/blog-image-2.webp");
}
.blog__elem-3 {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-5%, rgba(25, 139, 210, 0)), color-stop(50%, rgba(6, 40, 61, 0.9))), url("/assets/img/blog-image-3.webp");
  background-image: linear-gradient(to bottom, rgba(25, 139, 210, 0) -5%, rgba(6, 40, 61, 0.9) 50%), url("/assets/img/blog-image-3.webp");
}
.blog__elem-3:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, rgba(25, 139, 210, 0)), color-stop(40%, var(--primary-900))), url("/assets/img/blog-image-3.webp");
  background-image: linear-gradient(to bottom, rgba(25, 139, 210, 0) -50%, var(--primary-900) 40%), url("/assets/img/blog-image-3.webp");
}
.blog__elem:hover .blog__elem-date {
  margin-bottom: 3rem;
}
.blog__elem:hover .blog__elem-tags {
  background-color: transparent;
}
.blog__elem:hover .blog__elem-readmore {
  opacity: 1;
}
.blog__elem-tags {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 1rem;
  border: 1px solid var(--light-100);
  padding: 0.5rem 1rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog__elem-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--light-100);
  line-height: 1;
  margin-bottom: 1rem;
}
.blog__elem-date {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog__elem-readmore {
  opacity: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--small-font-size);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog__elem-readmore i {
  margin-left: 0.5rem;
}
.blog__button {
  margin-top: 2rem;
  color: var(--primary-500);
  font-weight: var(--font-semi-bold);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog__button:hover {
  background-color: var(--primary-500);
  color: var(--text-light);
}

.discover {
  position: relative;
  background-color: var(--light-900);
}
.discover__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}
@media screen and (min-width: 576px) {
  .discover__list {
    grid-template-columns: repeat(2, 1fr);
    margin: 6rem 0;
    gap: 4rem;
  }
}
.discover__item {
  position: relative;
  width: 100%;
  height: 100%;
}
.discover__item:hover .discover__elem {
  background-color: rgba(9, 99, 223, 0.9);
}
.discover__item:hover .discover__elem-readmore i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.discover__img {
  display: none;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 767px) {
  .discover__img {
    display: block;
  }
}
.discover__elem {
  padding: 2rem;
  color: var(--text-light);
  z-index: 1;
  background-color: rgba(6, 40, 61, 0.9);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 767px) {
  .discover__elem {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 992px) {
  .discover__elem {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 50%;
  }
}
.discover__elem-title {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.discover__elem-subtitle {
  margin-bottom: 2rem;
}
.discover__elem-readmore {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.discover__elem-readmore i {
  margin-left: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.discover__triangle {
  display: none;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
@media screen and (min-width: 576px) {
  .discover__triangle {
    display: block;
  }
  .discover__triangle-1 {
    top: -3%;
    left: 5%;
    scale: 0.7;
    -webkit-transform: rotate(145deg);
            transform: rotate(145deg);
    border-bottom: 100px solid white;
  }
  .discover__triangle-2 {
    top: -3%;
    left: 7%;
    scale: 0.3;
    -webkit-transform: rotate(9deg);
            transform: rotate(9deg);
    border-bottom: 100px solid var(--secondary-500);
  }
  .discover__triangle-3 {
    bottom: -7%;
    right: 5%;
    scale: 0.7;
    -webkit-transform: rotate(117deg);
            transform: rotate(117deg);
    border-bottom: 100px solid white;
    z-index: 1;
  }
  .discover__triangle-4 {
    bottom: -5%;
    right: 4%;
    scale: 0.4;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    border-bottom: 100px solid var(--secondary-500);
    z-index: 2;
  }
}

.whyus {
  background-color: var(--container-3);
  position: relative;
  overflow: hidden;
}
.whyus__container {
  color: var(--text-light);
}
.whyus__circle-1 {
  top: 5%;
  left: -15%;
  width: 30rem;
  height: 30rem;
  background-color: rgba(19, 101, 223, 0.6235294118);
  -webkit-filter: blur(10rem);
          filter: blur(10rem);
}
.whyus__circle-2 {
  top: 35%;
  left: 50%;
  width: 30rem;
  height: 30rem;
  background-color: rgba(19, 101, 223, 0.6235294118);
  -webkit-filter: blur(10rem);
          filter: blur(10rem);
}
@media screen and (min-width: 576px) {
  .whyus__circle-2 {
    display: none;
  }
}
.whyus__circle-3 {
  bottom: 0%;
  left: -15%;
  width: 30rem;
  height: 30rem;
  background-color: rgba(19, 101, 223, 0.6235294118);
  -webkit-filter: blur(10rem);
          filter: blur(10rem);
}
@media screen and (min-width: 576px) {
  .whyus__circle-3 {
    bottom: -5%;
    right: -5%;
    left: auto;
  }
}
.whyus__title {
  position: relative;
  color: var(--text-light);
}
.whyus__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .whyus__list {
    grid-template-columns: repeat(2, 1fr);
    margin: 4rem 0;
  }
}
@media screen and (min-width: 992px) {
  .whyus__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.whyus__items {
  padding: 2rem;
  z-index: 10;
}
.whyus__items:hover .whyus__items-icon {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  scale: 1.3;
}
.whyus__items-title {
  color: var(--text-light);
  padding-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}
.whyus__items-description {
  font-size: var(--small-font-size);
}
.whyus__items-icon {
  font-size: 3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.newsletter {
  margin: 5rem 0;
}
@media screen and (min-width: 767px) {
  .newsletter {
    margin: 6rem 0;
  }
}
.newsletter__container {
  background-color: var(--light-900);
  padding: 2rem 2rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 576px) {
  .newsletter__container {
    text-align: left;
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 767px) {
  .newsletter__container {
    padding: 4rem 5rem;
  }
}
.newsletter__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}
.newsletter__title span {
  color: var(--primary-500);
}
.newsletter__description {
  margin-bottom: 2rem;
  font-size: var(--small-font-size);
}
@media screen and (min-width: 576px) {
  .newsletter__description {
    width: 80%;
  }
}
@media screen and (min-width: 767px) {
  .newsletter__description {
    width: 50%;
  }
}
.newsletter__form {
  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;
}
@media screen and (min-width: 576px) {
  .newsletter__form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.newsletter__input {
  display: block;
  padding: 0 1rem;
  height: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  border: 1px solid var(--primary-500);
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.newsletter__input:focus {
  border: 1px solid black;
  border-bottom: 3px solid black;
}
@media screen and (min-width: 576px) {
  .newsletter__input {
    padding-right: 5rem;
    margin-right: 3rem;
    margin-bottom: 0rem;
    margin-top: 2rem;
    text-align: left;
  }
}
.newsletter__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1.25rem;
  height: 2.5rem;
  color: var(--text-light);
  font-size: var(--small-font-size);
  background-color: var(--primary-900);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsletter__submit:hover {
  background-color: black;
}
.newsletter__submit:hover i {
  -webkit-transform: translateX(0.3rem);
          transform: translateX(0.3rem);
}
.newsletter__submit i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.newsletter__style {
  position: absolute;
  color: var(--light-100);
}
.newsletter__style-1 {
  display: none;
}
@media screen and (min-width: 992px) {
  .newsletter__style-1 {
    display: block;
    bottom: 3rem;
    right: 35%;
    font-size: 5rem;
  }
}
.newsletter__style-2 {
  display: none;
}
@media screen and (min-width: 767px) {
  .newsletter__style-2 {
    display: block;
    bottom: 15%;
    right: 10%;
    font-size: min(20vw, 15rem);
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
.newsletter__style-3 {
  display: none;
}
@media screen and (min-width: 576px) {
  .newsletter__style-3 {
    display: block;
    top: 30%;
    right: 5%;
    font-size: 5rem;
  }
}
@media screen and (min-width: 767px) {
  .newsletter__style-3 {
    top: 10%;
  }
}

.footer {
  background-color: var(--container-3);
  color: var(--text-light);
  padding-top: 4rem;
  font-size: var(--small-font-size);
}
.footer a {
  color: var(--text-light);
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-bottom: 4rem;
}
@media screen and (min-width: 576px) {
  .footer__top {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .footer__top {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__company {
  margin-bottom: 2.5rem;
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  font-weight: var(--font-medium);
  font-size: 2rem;
  font-weight: var(--font-semi-bold);
  color: var(--text-light);
  margin-bottom: 2rem;
}
.footer__logo-icon {
  font-size: 2.5rem;
  color: var(--text-light);
}
.footer__logo-text {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: var(--font-semi-bold);
  color: var(--text-light);
}
.footer__logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: var(--font-semi-bold);
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.65rem;
}
.footer__socials a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__socials a i {
  font-size: 1.25rem;
}
.footer__socials a:hover {
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer__links-items {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__links-items:hover {
  -webkit-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}
.footer__links-items:hover a {
  font-weight: var(--font-semi-bold);
}
.footer__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 576px) {
  .footer__details {
    margin-top: 0rem;
  }
}
.footer__details-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__details-items:hover i {
  padding-right: 1.2rem;
}
.footer__details-items span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.footer__details-items i {
  font-size: 1.25rem;
  padding-right: 0.75rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-900);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  max-width: 767px;
  margin: 0 auto;
}
.footer__terms-items {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__terms-items:hover {
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  font-weight: var(--font-semi-bold);
}
@media screen and (min-width: 576px) {
  .footer__terms {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.footer__copyright {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  font-weight: var(--font-semi-bold);
}

/*=============== GOOGLE FONTS ===============*/
/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v20-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins-v20-latin-regular.woff2") format("woff2"), url("../fonts/poppins-v20-latin-regular.woff") format("woff"), url("../fonts/poppins-v20-latin-regular.ttf") format("truetype"), url("../fonts/poppins-v20-latin-regular.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* poppins-500 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins-v20-latin-500.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins-v20-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins-v20-latin-500.woff2") format("woff2"), url("../fonts/poppins-v20-latin-500.woff") format("woff"), url("../fonts/poppins-v20-latin-500.ttf") format("truetype"), url("../fonts/poppins-v20-latin-500.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* poppins-600 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins-v20-latin-600.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/poppins-v20-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins-v20-latin-600.woff2") format("woff2"), url("../fonts/poppins-v20-latin-600.woff") format("woff"), url("../fonts/poppins-v20-latin-600.ttf") format("truetype"), url("../fonts/poppins-v20-latin-600.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* outfit-700 - latin */
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/outfit-v6-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/outfit-v6-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/outfit-v6-latin-700.woff2") format("woff2"), url("../fonts/outfit-v6-latin-700.woff") format("woff"), url("../fonts/outfit-v6-latin-700.ttf") format("truetype"), url("../fonts/outfit-v6-latin-700.svg#Outfit") format("svg");
  /* Legacy iOS */
}
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4.5rem;
  /*========== Colors ==========*/
  --primary-100: #2facff;
  --primary-500: #1363DF;
  --primary-900: rgb(6, 40, 61);
  --secondary-100: #ffa87a;
  --secondary-500: #F85900;
  --secondary-900: #bb4500;
  --tertiary-100: #FFFFFF;
  --tertiary-500: #FFFFFF;
  --tertiary-900: #FFFFFF;
  --light-100: #FFFFFF;
  --light-500: #e3ecf0;
  --light-900: #DFF6FF;
  --grey-100: #eeeeee;
  --grey-500: #E7E7E7;
  --grey-900: #afafaf;
  --dark-100: #082d44;
  --dark-500: #06283D;
  --dark-900: #000000;
  --body: var(--light-100);
  --text-light: var(--light-100);
  --text-dark: var(--dark-500);
  --container-1: var(--light-900);
  --container-2: var(--light-100);
  --container-3: var(--dark-500);
  --footer: var(--dark-500);
  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3-5: 3.5rem;
  --mb-5-5: 5.5rem;
  --mb-7-5: 7.5rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  /*========== Font and typography ==========*/
  --body-font: "Poppins",
  sans-serif;
  --title-font: "Outfit",
  serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 2rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
}
@media screen and (min-width: 767px) {
  :root {
    --header-height: 5.5rem;
  }
}
@media screen and (min-width: 576px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 3rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}