/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*==================== VARIABLES CSS ====================*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
  /* Change favorite color */
  --hue-color: 250;
  /*Purple 250 - Green 142 - Blue 230 - Pink 340*/
  /* HSL color mode */
  --first-color: #1674ba;
  --first-color-second: #1367a8;
  --first-color-alt: #004d8a;
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: #ffffff93;
  --body-color: #f7f7f7;
  --container-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 25px !important;
  --h1-font-size: 25px !important;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .914rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== 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: 3rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 2rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  /* HSL color mode */
  --first-color-second: hsl(var(--hue-color), 30%, 8%);
  --title-color: hsl(var(--hue-color), 8%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 28%, 12%);
  --container-color: hsl(var(--hue-color), 29%, 16%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__btns {
  display: flex;
  align-items: center;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1);
  cursor: pointer;
}

.change-theme:hover {
  color: var(--first-color);
}

/*==================== BASE ====================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*==================== REUSABLE CSS CLASSES ====================*/
.section {
  padding: 2rem 0 4rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-3);
}

.section__title,
.section__subtitle {
  text-align: center;
}

/*==================== LAYOUT ====================*/
.container {
  max-width: 1240px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.nav.container {
  max-width: 1240px;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.header {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

.m-t-15 {
  margin-top: 15px;
}

/*==================== NAV ====================*/
.nav {
  max-width: 968px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle {
  color: var(--title-color);
  padding-top: 8px;
  max-width: 73px;
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.4rem;
  cursor: pointer;
  margin-bottom: 10px;
}

.nav__toggle:hover {
  color: var(--first-color);
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    padding: 2rem 1.5rem 4rem;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 1.5rem 1.5rem 0 0;
    transition: .3s;
  }

  .nav__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__icon {
  font-size: 1.2rem;
}

.nav__close {
  position: absolute;
  right: 1.2rem;
  bottom: .5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--first-color);
}

.nav__close:hover {
  color: var(--first-color-alt);
}

/* show menu */
.show-menu {
  bottom: 0;
  /* width: 93%;
  left: 3.5%; */
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.nav .nav__btns .button {
  font-size: 14px;
  /* border: solid 2px;
  border-color: #004d8a; */
  padding: 9px 22px;
  transition: 1s;
}

.scroll-header {
  box-shadow: 0px 6px 14px -8px rgba(0, 0, 0, 0.14);
}

.scroll-header .nav .nav__btns .button {
  /* background-color: #3d3d3d !important; */
  padding: 8px 20px;
  transition: 1s;
}

.m-l-150 {
  margin-left: 150px;
}

/*==================== HOME ====================*/
.home {
  background: url(../../assets/img/background/bg-intro.png) bottom no-repeat #F7F7F7;
  padding: 12rem 0 4rem !important;
  min-height: 665px;
}

.variable_text {
  color: #004d8a;
}

/* #home {
  background-color: #F7F7F7;
} */

.home__container {
  gap: 1rem;
}

.home__content {
  grid-template-columns: .5fr 3fr;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  align-items: center;
}

.home__social {
  display: grid;
  grid-template-columns: max-content;
  row-gap: 1rem;
  padding-bottom: 75px;
}

.home__social-icon {
  font-size: 1.25rem;
  color: var(--first-color);
}

.home__social-icon:hover {
  color: var(--first-color-alt);
}

.home__blob {
  width: 200px;
  fill: var(--first-color);
}

.img__foguete {
  width: 700px;
}

.home__data {
  grid-column: 1/3;
}

.home__title {
  font-size: var(--big-font-size);
}

.home__subtitle {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-25);
}

.home__description {
  margin-bottom: var(--mb-2);
}

.home__scroll {
  display: none;
}

.home__scroll-button {
  color: var(--first-color);
  transition: .3s;
}

.home__scroll-button:hover {
  transform: translateY(0.25rem);
}

.home__scroll-mouse {
  font-size: 2rem;
}

.home__scroll-name {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-right: var(--mb-0-25);
}

.home__scroll-arrow {
  font-size: 1.25rem;
}

/*========== BUTTONS ==========*/
.button {
  position: relative;
  padding: 13px 25px;
  background: var(--first-color);
  text-decoration: none;
  color: #fff;
  border-radius: 22px;
  font-weight: 500;
  opacity: 0.75;
  transition: 0.5s;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}

.button:hover {
  opacity: 1;
}

.button-alt {
  left: 16px;
  position: relative;
  padding: 6px 23px;
  /* background: #1674ba; */
  border: var(--first-color) solid 2px;
  text-decoration: none;
  color: var(--first-color);
  border-radius: 22px;
  font-weight: 500;
  opacity: 0.75;
  transition: 0.5s;
}

#btn-padding-add {
  padding: 10px 25px;
}

.button-alt:hover {
  opacity: 1;
  background: var(--first-color);
  color: #fff;
}

.button__icon {
  font-size: 1.25rem;
  margin-left: var(--mb-0-5);
  transition: .3s;
}

.button--white {
  background-color: #FFF;
  color: var(--first-color);
}

.button--white:hover {
  background-color: #FFF;
  color: #004d8a;
}

.button--flex {
  display: inline-flex;
  align-items: center;
}

.button--small {
  padding: .75rem 1rem;
}

.button--link {
  padding: 0;
  background-color: transparent;
  color: var(--first-color);
}

.button--link:hover {
  background-color: transparent;
  color: var(--first-color-alt);
}

/*==================== ABOUT ====================*/
.about {
  background-color: #f4f4f4;
  padding-bottom: 7rem !important;
}

.about__img {
  width: 500px;
  border-radius: .5rem;
  justify-self: center;
  align-self: center;
}

.about__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.about__info {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: var(--mb-2-5);
}

.about__info-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.about__info-name {
  font-size: var(--smaller-font-size);
}

.about__info-title,
.about__info-name {
  display: block;
  text-align: center;
}

.about__buttons {
  display: flex;
  justify-content: center;
}

/*==================== DIFFERENTIAL ====================*/
.container__drop {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0 6rem;
  gap: 40px 60px;
}

.container__drop .drop {
  position: relative;
  width: 350px;
  height: 350px;
  box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),
    25px 35px 20px rgba(0, 0, 0, 0.05),
    25px 35px 30px rgba(0, 0, 0, 0.05),
    inset -20px -20px 25px rgba(255, 255, 255, 0.9);
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container__drop .drop:nth-child(1) {
  border-radius: 57% 43% 43% 57% / 43% 43% 57% 57%;
}

.container__drop .drop:nth-child(2) {
  border-radius: 61% 39% 52% 48% / 44% 59% 41% 56%;
}

.container__drop .drop:nth-child(3) {
  border-radius: 35% 65% 31% 69% / 57% 59% 41% 43%;
}

.container__drop .drop:hover {
  border-radius: 50%;
}

.container__drop .drop::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 90px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.9;
}

.container__drop .drop::after {
  content: '';
  position: absolute;
  top: 90px;
  left: 110px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.9;
}

.container__drop .drop .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
  gap: 15px;
}

.container__drop .drop .content .icon__differential {
  position: relative;
  width: 80px;
  height: 80px;
  background: #eff0f4;
  border-radius: 50%;
  box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.1),
    inset -2px -5px 10px rgba(255, 255, 255, 1),
    15px 15px 10px rgba(0, 0, 0, 0.05),
    15px 10px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: var(--clr);
}

/* .container__drop .drop .content h2 {
  position: relative;
  width: 80px;
  height: 80px;
  background: #eff0f4;
  border-radius: 50%;
  box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.1),
  inset -2px -5px 10px rgba(255, 255, 255, 1),
  15px 15px 10px rgba(0, 0, 0, 0.05),
  15px 10px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: var(--clr);
} */

.container__drop .drop .content a {
  position: relative;
  padding: 10px 25px;
  background: var(--clr);
  text-decoration: none;
  color: #fff;
  border-radius: 22px;
  font-weight: 500;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  opacity: 0.75;
  transition: 0.5s;
}

.container__drop .drop .content a:hover {
  opacity: 1;
}

.container__drop .drop .content a::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
}

/*==================== SOLUTION ====================*/
.container__solutions {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0 65px;
  gap: 60px;
}

.container__solutions .box {
  position: relative;
  width: 300px;
  height: 350px;
  background: #2e2e2e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
}

.container__solutions .box::before {
  content: '';
  position: absolute;
  inset: -10px 50px;
  border-top: 4px solid var(--clr);
  border-bottom: 4px solid var(--clr);
  border-radius: 30%;
  z-index: -1;
  transform: skewY(15deg);
  transition: 0.5s ease-in-out;
  opacity: 0.5;
}

.container__solutions .box:hover::before {
  transform: skewY(0deg);
  inset: -10px 40px;
  opacity: 0.3;
}

.container__solutions .box::after {
  content: '';
  position: absolute;
  inset: 60px -10px;
  border-left: 4px solid var(--clr);
  border-right: 4px solid var(--clr);
  border-radius: 30%;
  z-index: -1;
  transform: skew(15deg);
  transition: 0.5s ease-in-out;
  opacity: 0.5;
}

.container__solutions .box:hover::after {
  transform: skew(0deg);
  inset: 40px -10px;
  opacity: 0.3;
}

.container__solutions .box .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
}

.container__solutions .box .content .icon .svg_solutions.hover {
  display: none;
}

.container__solutions .box:hover .content .icon .svg_solutions.hover {
  display: block;
}

.container__solutions .box .content .icon .svg_solutions {
  display: block;
}

.container__solutions .box:hover .content .icon .svg_solutions {
  display: none;
}

.container__solutions .box .content .icon .svg_solutions_2 {
  --cor1: #58a2df;
  --cor2: #4B95D1;
  --cor3: #5ca3dd;
  --cor4: var(--clr);
}

.container__solutions .box:hover .content .icon .svg_solutions_2 {
  --cor1: #D61016;
  --cor2: #B61917;
  --cor3: #FCBD00;
  --cor4: #EEEEF0;
}

.container__solutions .box .content .icon {
  color: var(--clr);
  border-radius: 22px;
  width: 80px;
  height: 80px;
  padding: 10px;
  box-shadow: 0 0 0 4px #2e2e2e,
    0 0 0 6px var(--clr);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
  background: #2e2e2e;
  transition: 0.5s ease-in-out;
}

.container__solutions .box:hover .content .icon {
  background: var(--clr);
  color: #2e2e2e;
  box-shadow: 0 0 0 4px #2e2e2e,
    0 0 0 300px var(--clr);
}

.container__solutions .box .content .text h3 {
  font-size: 1.5em;
  color: #fff;
  font-weight: 500;
  transition: 0.5s ease-in-out;
}

.container__solutions .box:hover .content .text h3 {
  color: #2e2e2e;
}

.container__solutions .box .content .text p {
  color: #999;
  transition: 0.5s ease-in-out;
}

.container__solutions .box:hover .content .text p {
  color: #2e2e2e;
}

.container__solutions .box .content .text a {
  position: relative;
  background: var(--clr);
  color: #2e2e2e;
  padding: 8px 15px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.5s ease-in-out;
  border-radius: 22px;
}

.container__solutions .box:hover .content .text a {
  background: #2e2e2e;
  color: var(--clr);
}

/*==================== PROJECT IN MIND ====================*/
.project {
  text-align: center;
  padding-bottom: 8rem !important;
  background-color: #f5f5f5;
}

.project__bg {
  background-color: var(--first-color-second);
  padding-top: 2rem;
}

.project__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-0-75);
}

.project__description {
  margin-bottom: var(--mb-1-5);
  max-width: 700px;
}

.project__title,
.project__description {
  color: #FFF;
}

.project__img {
  width: 232px;
  justify-self: center;
}

/*==================== CONTACT ====================*/
.contact {
  background-color: #f7f7f7;
  padding-bottom: 7rem !important;
}

.contact__container {
  row-gap: 3rem;
}

.contact__information {
  display: flex;
  margin-bottom: var(--mb-2);
}

.contact__icon {
  font-size: 2rem;
  color: var(--first-color);
  margin-right: var(--mb-0-75);
}

.contact__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

.contact__subtitle {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.contact__content {
  background-color: var(--input-color);
  border-radius: .5rem;
  padding: 0.5rem 1rem 1rem 1rem
}

.contact__label {
  font-size: var(--smaller-font-size);
  color: var(--title-color);
}

.contact__input {
  width: 100%;
  background-color: var(--input-color);
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  border: none;
  outline: none;
  padding: .25rem .5rem .5rem 0;
}

.solutions.casa {
  padding: 6.5rem 0 3.5rem;
}

/*==================== FOOTER ====================*/
.footer {
  padding-top: 30px;
  background-color: #FAFCFE;
}

.btn-footer:nth-child(1) {
  background: none;
  color: #52636b;
  border: 1px solid #d5e2e8;
  border-radius: 22px;
  padding: 7px 16px;
  font-size: 15px;
  line-height: 22px;
}

.btn-footer:nth-child(2) {
  background: none;
  color: #52636b;
  border: 1px solid #d5e2e8;
  border-radius: 22px;
  padding: 7px 19px;
  font-size: 15px;
  line-height: 22px;
}

.btn-footer:hover {
  background: #d5e2e8;
}

.img_footer {
  width: 73px;
}

.footer__container {
  row-gap: 3.5rem;
  max-width: 1200px;
}

.row-footer {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #efefef;
  padding-bottom: 40px;
}

.footer-col {
  width: 16.6%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 15px;
  color: #52636b;
  margin-bottom: 13px;
  font-weight: 500;
  position: relative;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 3px 0;
}

.footer-col ul li a {
  font-size: 15px;
  text-transform: capitalize;
  color: #52636b;
  text-decoration: none;
  font-weight: 400;
  display: block;
  transition: all .5s ease;
}

.footer-col ul li a:hover {
  color: #1674ba;
}

.footer-col .medias-socias {
  margin-top: 1.25rem;
}

.footer-col .medias-socias a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 8px;
  height: 40px;
  width: 40px;
  margin: 0 10px 10px 0;
  text-decoration: none;
  background: #e0e0e02e;
  border-radius: 50%;
  color: var(--first-color);
  transition: all 0.5s ease;
}

.footer-col .medias-socias a i {
  font-size: 20px;
}

.footer-col .medias-socias a:hover {
  color: var(--first-color-alt);
  background: #e0e0e051;
}

.footer-col .form-sub input {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  outline: none;
  border: 1px solid #ababab;
  color: #ababab;
  background-color: #415aca;
}

.footer-col .form-sub input::placeholder {
  color: #ababab;
}

.footer-col .form-sub button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-size: 17px;
  outline: none;
  border: none;
  cursor: pointer;
  color: #415aca;
  border-radius: 3px;
  font-weight: bold;
  background-color: #ababab;
}

.somobile {
  display: none;
}

/* Responsivo */
@media (max-width: 991px) {
  .home.casa {
    background: url(../../assets/img/background/bg-intro-mobile2.svg) bottom no-repeat #F7F7F7 !important;
    overflow: hidden !important;
    padding: 2rem 0 16rem !important;
  }

  .home__title.casa {
    min-height: 120px !important;
    font-size: 28px !important;
    line-height: 35px !important;
  }

  .home__social.casa {
    display: none !important;
  }

  .home__description.casa {
    margin-bottom: 15px !important;
    margin-top: -20px !important;
  }
}


@media (max-width: 800px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width:550px) {
  .contact.section {
    padding: 5rem 0 0rem;
  }

  .aolado {
    display: flex;
    width: 100%;
  }

  .show-menu {
    bottom: 0;
    width: 93%;
    left: 3.5%;
  }

  .differential.section {
    padding: 5rem 0 1.5rem;
  }

  .about.section.casa {
    padding: 5rem 0 1rem;
  }

  .button.button--flex.circulo {
    margin-left: 30px !important;
  }

  .nav .nav__btns .button {
    display: none;
  }

  .contact {
    padding-bottom: 5.5rem !important;
  }

  .project {
    background: var(--first-color-second);
    padding-bottom: 0rem !important;
    padding-top: 3rem;
  }

  .testimonial__content {
    max-width: 100% !important;
  }

  .testimonial__content {
    width: 100% !important;
  }

  .section__subtitle {
    margin-left: 20px;
    margin-right: 20px;
  }

  .project__title {
    font-size: 22px;
    margin-left: 30px;
    line-height: 29px;
    margin-right: 30px;
    margin-bottom: 10px;
  }

  .project__description {
    font-size: 15px;
  }

  .m-l-150 {
    margin-left: 0;
  }

  .footer-col:nth-child(1) {
    width: 100%;
  }

  .footer-col:nth-child(6) {
    width: 100%;
  }

  .form-sub {
    gap: 20px;
  }

  .footer-col:nth-child(6) h4 {
    text-align: center;
    font-size: 20px;
  }

  .row-footer {
    padding-bottom: 10px;
  }

  /* .nav__link.active-link {
    font-size: 13px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.1);
    color: var(--first-color);
    margin-top: -6px;
  }

  .nav__link {
    font-size: 12px;
    background: #477a8d12;
    border-radius: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 9px;
    padding-right: 9px;
    box-shadow: inset 2px 5px 10px rgba(94, 94, 94, 0.1);
  } */

  .solutions.casa {
    padding: 5rem 0 2rem !important;
  }

  .nav__link {
    font-size: 11px;
    text-align: center;
  }

  .nav__link i {
    font-size: 22px;
  }

  .nav__toggle {
    font-size: 2rem !important;
  }

  .scrollup {
    right: 25px !important;
    bottom: 6rem !important;
  }

  .somobile {
    display: block;
  }

  .footer__copy {
    margin-top: 30px;
  }

  .nav {
    max-height: 65px !important;
    min-height: 65px !important;
  }

  .footer__copy a {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .medias-socias,
  .form-sub {
    align-items: center;
    display: flex;
    justify-content: center
  }

  .m-t-15 {
    margin-top: 0;
  }
}

.footer__bg {
  padding: 2rem 0 3rem;
}

.footer__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-0-25);
}

.footer__subtitle {
  font-size: var(--small-font-size);
}

.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.footer__link:hover {
  color: var(--first-color-lighter);
}

.footer__social {
  font-size: 1.25rem;
  margin-right: var(--mb-1-5);
}

.footer__social:hover {
  color: var(--first-color-lighter);
}

.footer__copy {
  font-size: var(--smaller-font-size);
  text-align: center;
  color: var(--text-color-light);
}

.footer__title,
.footer__subtitle,
.footer__link,
.footer__social {
  color: #FFF;
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 40px;
  margin-bottom: -2%;
  background-color: var(--first-color);
  opacity: .9;
  padding: 0 .3rem;
  border-radius: .4rem;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
}

.scrollup__icon {
  font-size: 1.5rem;
  color: #FFF;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*========== SCROLL BAR ==========*/
::-webkit-scrollbar {
  width: .60rem;
  border-radius: .5rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*==================== MEDIA QUERIES ====================*/
/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .nav__menu {
    padding: 2rem .25rem 4rem;
  }

  .nav__list {
    column-gap: 0;
  }

  .home__content {
    grid-template-columns: .25fr 3fr;
  }

  .home__blob {
    width: 180px;
  }

  .skills__title {
    font-size: var(--normal-font-size);
  }

  .qualification__data {
    gap: .5rem;
  }

  .services__container {
    grid-template-columns: max-content;
    justify-content: center;
  }

  .services__content {
    padding-right: 3.5rem;
  }

  .services__modal {
    padding: 0 .5rem;
  }

  .project__img {
    width: 200px;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .home__content {
    grid-template-columns: max-content 1fr 1fr;
  }

  .home__data {
    grid-column: initial;
    padding-right: 170px;
    margin-left: -20px;
  }

  .home__img {
    order: 1;
    justify-self: center;
  }

  .about__container,
  .skills__container,
  .portfolio__content,
  .project__container,
  .contact__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .qualification__sections {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  body {
    margin: 0;
  }

  .section {
    padding: 6rem 0 4rem;
  }

  .section__subtitle {
    margin-bottom: 4rem;
  }

  .header {
    top: 0;
    bottom: initial;
  }

  .header,
  .main,
  .footer__container {
    padding: 0 1rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 2rem;
  }

  .nav__icon,
  .nav__close,
  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    column-gap: 2rem;
  }

  .nav__menu {
    margin-left: auto;
  }

  .change-theme {
    margin: 0;
  }

  .home__container {
    row-gap: 5rem;
  }

  .home__content {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    column-gap: 2rem;
  }

  .home__blob {
    width: 270px;
  }

  .home__scroll {
    display: block;
  }

  .home__scroll-button {
    margin-left: 3rem;
  }

  .about__container {
    column-gap: 5rem;
  }

  .about__img {
    margin-top: -50px;
    width: 600px;
  }

  .about__description {
    text-align: initial;
  }

  .about__info {
    justify-content: space-between;
  }

  .about__buttons {
    justify-content: initial;
  }

  .qualification__tabs {
    justify-content: center;
  }

  .qualification__button {
    margin: 0 var(--mb-1);
  }

  .qualification__sections {
    grid-template-columns: .5fr;
  }

  .services__container {
    grid-template-columns: repeat(3, 218px);
    justify-content: center;
  }

  .services__icon {
    font-size: 2rem;
  }

  .services__content {
    padding: 6rem 0 2rem 2.5rem;
  }

  .services__modal-content {
    width: 450px;
  }

  .portfolio__img {
    width: 320px;
  }

  .portfolio__content {
    align-items: center;
  }

  .project {
    text-align: initial;
  }

  .project__bg {
    background: none;
  }

  .project__container {
    background-color: var(--first-color-second);
    border-radius: 2.5rem;
    padding: 3rem 2.5rem 0;
    grid-template-columns: 1fr max-content;
    column-gap: 3rem;
  }

  .project__data {
    padding-top: .8rem;
  }

  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__bg {
    padding: 3rem 0 1rem;
  }

  .footer__links {
    flex-direction: row;
    column-gap: 2rem;
  }

  .footer__socials {
    justify-self: flex-end;
  }

  .footer__copy {
    margin-top: 2.5rem;
    padding-bottom: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {

  .header,
  .main,
  .footer__container {
    padding: 0;
  }

  .home__blob {
    width: 320px;
  }

  .home__social {
    transform: translateX(-6rem);
  }

  .services__container {
    grid-template-columns: repeat(3, 238px);
  }

  .portfolio__content {
    column-gap: 5rem;
  }

  .swiper-portfolio-icon {
    font-size: 3.5rem;
  }

  .swiper-button-prev {
    left: -3.5rem;
  }

  .swiper-button-next {
    right: -3.5rem;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: -4.5rem;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    bottom: 0;
  }

  .contact__form {
    width: 690px;
  }

  .contact__inputs {
    grid-template-columns: repeat(2, 1fr);
  }
}