@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --clr-prin: #1E458B;
  --clr-nav: #861d2a;
  --clr-red: #861d2a;
  --clr-dark-red: #531e25;
  --clr-blue: #1d5ead;
  --clr-skyblue: #4eb5e4;
  --clr-altblue: #afe5ff;
  --clr-purple: #431f43;
  --clr-cadet: #222050;
  --clr-btn: #35aae0;
  --clr-btn-h: #64b0F9;
  --clr-btn-alt: #222050;
  --clr-btn-alt-h: #323080;
  --clr-fnt: #010337;
  --clr-bright: #e8e9e9;
  --clr-liner: #1f1f1f;
  --clr-dark: #1f1f1f;
  --clr-darkb: #1f1f2f;
  --clr-tit: #1E458B;
  --clr-footer: #010337;
  --clr-wp: #25d366;
  --clr-gray: #e8e9e9;
  --wp-ico: 3.2rem;
  --logo: 150px;
  --padx: 20%;
  --pady: 2rem;
  --pad-sec: 2rem 12%;
  --iso: 60px;
  --ff-btn: "Inter", "Roboto", Arial, sans-serif;
  --ff-title: "Inter", "Roboto", Arial, sans-serif;
  --ff-alttitle: "Inter", "Roboto", Arial, sans-serif;
  --ff-p: "Inter", "Roboto", Arial, sans-serif;
  --fnt-h1: clamp(1.4rem, 3vw, 1.8rem);
  --fnt-h2: clamp(1.0rem, 2vw, 1.6rem);
  --fnt-h3: clamp(1.0rem, 2vw, 1.6rem);
  --fnt-h4: clamp(1.0rem, 2vw, 1.2rem);
  --fnt-h5: clamp(1rem, 2.1vw, 1.6rem);
  --fnt-p: clamp(0.80rem, 2.0vw, 1.2rem);
  --fnt-btn: clamp(.9rem, 1.5vw, 1.2rem);
  --field: clamp(.9rem, 1.5vw, 1.2rem);
  --label: clamp(.9rem, 1.5vw, 1.2rem);
  --btn-pad: 1rem 2.5rem;
  --brad: 18px;
  --fz: 16px;
  --big-gap: 4rem;
  --gap: 2rem;
  --minigap: 1rem;
  --navbar: 64px;
}

::selection {
  background: var(--clr-blue);
  color: white;
}

@media (max-width: 1080px) {
  :root {
    --padx: 10%;
    --btn-pad: .72rem 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --padx: 8%;
  }
}

html, body {
  background: white;
  color: var(--clr-fnt);
  font-size: var(--fz);
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  max-width: 1920px;
  margin: 0 auto;
  box-shadow: 0 0 18px 0 #080808aa;
}

.scroll-padding-top {
  scroll-padding-top: 60px;
}

a, button {
  cursor: pointer;
}

ul, li, a {
  text-decoration: none;
  list-style-type: none;
  color: inherit;
}

h1 {
  font-size: var(--fnt-h1);
  font-weight: 600;
  font-family: var(--ff-title);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--fnt-h2);
  font-weight: 600 !important;
  /* margin-bottom: 1rem; */
  /* color: var(--clr-blue); */
}

h3 {
  font-size: var(--fnt-h3);
  margin-bottom: 1rem;
}

h4 {
  font-size: var(--fnt-h4);
  font-weight: 600;
  margin-bottom: .75rem;
  /* text-transform: uppercase; */
  letter-spacing: 1.2;
  /* color: var(--clr-blue); */
}

h5 {
  font-weight: 600;
  font-size: var(--fnt-h5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

p, li, div {
  font-size: var(--fnt-p);
}

h2, h3, h4, h5 {
  font-family: var(--ff-alttitle);
}

p, li, ul, a, div {
  font-family: var(--ff-p);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}

.uppercase { text-transform: uppercase; }

.fs-h2 {
  font-size: var(--fnt-h2);
}

.fs-h3 {
  font-size: var(--fnt-h3);
}

.fs-h4 {
  font-size: var(--fnt-h4);
}

.fs-h5 {
  font-size: var(--fnt-h5);
}

.txtc {
  text-align: center;
}

.txtr {
  text-align: right;
}

.txt-shadow {
  text-shadow: 0 0 12px #000000aa;
}

.list-style li {
  list-style-type: disc;
  margin-left: 1.2rem;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-800 {
  font-weight: 800;
}

.resp {
  max-width: 100%;
  height: auto;
}

.resph {
  width: auto;
  max-height: 100%;
}

.flex {
  display: flex;
}

.unouno > * {
  flex: 1;
}

.big-gap {
  gap: var(--big-gap);
}

.gap {
  gap: var(--gap);
}

.minigap {
  gap: var(--minigap);
}

.spacer {
  height: 2rem;
}

.minispacer {
  height: 1rem;
}

.jccenter {
  justify-content: center;
}

.jcstart {
  justify-content: flex-start;
}

.jcend {
  justify-content: flex-end;
}

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

.aicenter {
  align-items: center;
}

.aistart {
  align-items: flex-start;
}

.aiend {
  align-items: flex-end;
}

.aisb {
  align-items: space-between;
}

.liner {
  width: 100%;
  height: 2px;
  background-color: var(--clr-liner);
  margin: 1rem 0;
}

.relative {
  position: relative;
}

.underhover {
  position: relative;
  display: inline-block;
}

.underhover::after {
  content: '';
  /* position: absolute; */
  display: block;
  background: transparent;
  margin: auto;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  transform-origin: center;
  transition: width 150ms ease-out, background 150ms ease-in-out;
}

.underhover:hover::after {
  width: 100%;
  background: white;
}

.underline {
  position: relative;
  /* margin-bottom: 2rem; */
}

.underline::after {
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--clr-bright);
}

.underline.unctr::after {
  left: 50%;
  transform: translateX(-50%);
}

.underh1 {
  position: relative;
}

.hide {
  display: none !important;
}

.pady {
  padding-top: var(--pady);
  padding-bottom: var(--pady);
}

.padx {
  padding-left: var(--padx);
  padding-right: var(--padx);
}

.pad-1 {
  padding: 1rem;
}

.pad-2 {
  padding: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.fade-in {
  transition: opacity ease-in .6s, transform ease-out .6s, filter ease-out .6s;
}

.fopa {
  opacity: 0;
}

.fadeUp {
  transform: translate(0, 80px);
}

.left {
  transform: translate(80px, 0);
}

.right {
  transform: translate(-80px, 0);
}

.fblur {
  filter: blur(18px);
}

.inView {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0px);
}

.fade-in1b {
  animation: fadeInB 1200ms;
}

.delay1 {
  animation: delay 1s;
}

.delay2 {
  animation: delay 2s;
}

.delay3 {
  animation: delay 3s;
}

.delay4 {
  animation: delay 4s;
}

.boxhover:hover, .boxhover:focus {
  box-shadow: 0 0 24px var(--clr-sec);
  transition: box-shadow 350ms ease-out;
}

@keyframes fadeInB {
  0% { opacity: 0; transform: translate(0, 150px); }
  /* 36% { opacity: 0; transform: translate(0, 150px); } */
  100% { opacity: 1; transform: translate(0, 0); }
}

@keyframes delay {
  0% { opacity: 0; }
  66% { opacity: 0; }
  100% { opacity: 1; }
}

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

@keyframes fadeInBg {
  0% { opacity: 0; }
  100% { opacity: .8; }
}

.wesolve {
  height: 1.2rem;
  transition: opacity 150ms;
}
.mow:hover {
  opacity: .8;
}

.column {
  flex-direction: column;
}

.button {
  font-family: var(--ff-btn);
  font-size: var(--fnt-btn);
  color: var(--clr-bright);
  font-weight: 700;
  padding: var(--btn-pad);
  border-radius: var(--brad) 0 var(--brad) 0;
  background-color: var(--clr-btn);
  transition: background-color ease-out 100ms, box-shadow 100ms ease-out;
  letter-spacing: 1.2px;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.button.alt {
  background-color: #121242;
  background-color: var(--clr-btn-alt);
  color: white;
  transition: outline ease-out 100ms, background-color ease-out 100ms;
}

.button:hover, .button:focus {
  background-color: var(--clr-btn-h);
}

.button.alt:hover, .button.alt:focus {
  background-color: var(--clr-btn-alt-h);
}

.brad {
  border-radius: var(--brad);
}

.overflow-hidden {
  overflow: hidden;
}

.hf {
  height: 100%;
}

.opacity-hover {
  transition: opacity 100ms ease-out;
}

.opacity-hover:hover {
  opacity: .7;
}

.outline {
  outline: solid 2px var(--clr-btn);
  outline-offset: -2px;
}

.outline-glow {
  box-shadow: 0 0 18px var(--clr-btn-h);
}

.hover-glow {
  transition: box-shadow 100ms;
}

.hover-glow:hover {
  box-shadow: 0 0 18px var(--clr-btn);
}

.pointer {
  cursor: pointer;
}

.bg-blue {
  background-color: var(--clr-blue);
}

.bg-skyblue {
  background-color: var(--clr-skyblue);
}

.bg-altblue {
  background-color: var(--clr-altblue);
}

.bg-white {
  background-color: white;
}

.bg-gray {
  background-color: var(--clr-gray);
}

.label {
  font-family: var(--ff-p);
  font-weight: 600;
  font-size: var(--label);
}

.field {
  /* background: var(--clr-dark); */
  /* outline: solid 2px var(--clr-blue); */
  /* outline-offset: -2px; */
  border: 0;
  padding: .81rem;
  color: var(--clr-fnt);
  border-radius: var(--brad);
  width: 100%;
  margin-top: .5rem;
  font-size: var(--field);
}

.clr-red {
  color: var(--clr-tit);
}

.clr-blue {
  color: var(--clr-blue);
}

.clr-skyblue {
  color: var(--clr-skyblue);
}

.clr-prin {
  color: var(--clr-prin);
}

.clr-white {
  color: white;
}

.cards-cont {
  display: flex;
  /* flex-wrap: nowrap; */
  justify-content: center;
}

.cards-cont.color a {
  flex: 0 0 180px;
  border-radius: 48px 0 0 0;
  overflow: hidden;
  text-align: center;
  color: white;
  font-weight: 800;
  text-shadow: 0 0 8px #00000088;
}

.cards-cont.color .img {
  width: 100%;
  height: 200px;
  border-radius: 48px 0 48px 0;
  border: 4px solid #ffffff33;
  overflow: hidden;
}

.cards-cont.color .img img {
  max-height: 100%;
  width: auto;
  min-width: unset;
  max-width: unset;
}

.cards-cont.color a div:last-child {
  font-size: clamp(0.8rem, 0.81vw, 1.0rem) !important;
  margin-bottom: 1rem;
}

.cards-cont.color a:nth-of-type(1) {
  background-color: #02a3dc;
}

.cards-cont.color a:nth-of-type(2) {
  background-color: #f05847;
}

.cards-cont.color a:nth-of-type(3) {
  background-color: #faa946;
}

.cards-cont.color a:nth-of-type(4) {
  background-color: #825ec0;
}

.cards-cont.color a:nth-of-type(5) {
  background-color: #2caf53;
}





.card-cont {
  flex-wrap: wrap;
  justify-content: center;
}

.card-cont a {
  flex: 0 0 200px;
  font-weight: 800;
  text-align: center;
  /* height: 240px; */
  border-radius: 48px 0 48px 0;
  border: solid 2px #28282833;
  background: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 100ms ease-out;
  font-size: clamp(1.0rem, 0.91vw, 1.2rem) !important;
}

.card-cont a:hover {
  box-shadow: inset 0 0 12px 2px var(--clr-skyblue);
  border: solid 2px var(--clr-skyblue);
}

.cards-cont > div:empty {
  height: 0;
  padding: 0;
  margin: 0;
}

.card .button {
  align-self: center;
}

.card-cont .img {
  width: 100%;
  max-height: 140px;
  /* border-radius: 48px 0 48px 0; */
  border: 4px solid #ffffff33;
  overflow: hidden;
}

.card-cont .img img {
  max-height: 100%;
  width: auto;
  min-width: unset;
  max-width: unset;
}

/* .card img { */
/*   border-radius: 28px; */
/* } */

.p-spacer p {
  margin-bottom: 1.2rem;
}

.mayus {
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .column-680 { flex-direction: column; }
  .column-680-r { flex-direction: column-reverse; }
}

@media (max-width: 480px) {
  .column-480 { flex-direction: column; }
  .column-reverse-480 { flex-direction: column-reverse; }
  .to-column-480 { flex-direction: column; }
  .to-column-reverse-480 { flex-direction: column-reverse; }
}

.box-shadow { box-shadow: 0 0 16px var(--clr-dark); }

#wp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  height: 68px;
  width: 68px;
  cursor: pointer;
  background-color: var(--clr-wp);
  border-radius: 100px;
  transition: box-shadow 250ms;
  z-index: 998;
}

#wp:hover {
  box-shadow: 0 0 12px black;
}

#wp:hover .wp-button {
  transform: scale(.8);
}

.wp-button {
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 100px;
  background-position: center;
  background-size: cover;
  z-index: 990;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 100ms ease-out;
}

.wp-button img {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  transition: opacity 150ms;
}

.wp-button span {
  opacity: 0;
  position: absolute;
  height: 6px;
  width: 2rem;
  background-color: white;
  transform: rotate(-45deg);
  border-radius: 8px;
  transition: opacity 150ms;
}

.wp-button span:last-child {
  transform: rotate(45deg);
}
#wp.active {
  background-color: #11aa94;
  box-shadow: 0 0 12px black;
}

#wp.active .wp-button {
  transform: scale(.8);
}

#wp.active .wp-button img {
  opacity: 0;
}

#wp.active .wp-button span {
  opacity: 1;
}

body {
  margin-top: var(--navbar);
}

.whatsapp {
  width: var(--wp-ico);
  height: var(--wp-ico);
  background: #25D366;
  border-radius: 50px;
  padding: 10px;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  box-shadow: 0 0 12px rgba(0,0,0,24%);
  transition: all ease-out 200ms;
  z-index: 9;
}

.whatsapp:hover {
  background: #10b133;
  transform: scale(110%);
}

.tablet {
  display: none;
}

.mobile {
  display: none;
}

@media ( max-width: 1080px ) {
  .desktop {
    display: none !important;
  }
  .tablet {
    display: block;
  }
}

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