/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --t-yellow: #f0b501;
  --ty-light: #ffbf69;
  --t-green: #2ec4b6;
  --tg-light: #cbf3f0;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --tb-light: #1b263b;
  --t-black: #1c1d20;
  --the-grey: #f6f7f9;
  /* --light-white: #1c1d20; */
  --light-green: #f1faf1;
  --light-blue: #bebae8;
  --light-pink: #f9b5cd;
  --text-grey: #444950;
  --light-grey: #ebebeb;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "Inter", sans-serif;
  --sos-font: "Source Sans 3", sans-serif;
  --pop-font: "Poppins", sans-serif;
  --cor-font: "Cormorant Upright", system-ui;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
}

/* ------ >>>>>> ========== LP-MAIN ========== <<<<<< ------ */
.lp-main {
  width: 100%;
  overflow: hidden;
  /* display: none; */
}

/* >>>>> ===== HERO SECTION ===== <<<<< */
.hero {
  width: 100%;
  height: 100dvh;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.h-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-3) var(--mb-6);
  padding-top: var(--mb-6);
  justify-content: flex-start;
  background-color: rgba(250, 250, 250, 0.6);
}

.h-content {
  /* border: 1px dodgerblue solid; */
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2-5);
}

.h-content h1 {
  width: 75%;
  font-size: var(--fs-4);
  font-weight: 600;
  text-align: left;
  line-height: 1;
}

.h-content h1 strong {
  font-weight: 600;
  font-size: 5.5rem;
  color: orangered;
}

.h-content p {
  width: 55%;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
}

/* >>>>> ===== PRESENTATION SECTION ===== <<<<< */
.pe {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-8) var(--mb-4);
}

.pe-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-4);
}

.pe-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.pe-title h3 {
  flex: 0 0 30%;
  font-size: var(--fs-2-5);
  font-weight: 600;
  text-align: left;
  line-height: 1.3;
  color: var(--t-black);
}

.pet {
  flex: 0 0 50%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.pet p {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-black);
  opacity: 0.95;
}

.pet p strong {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.1;
}

.pet button {
  font-size: 0.9rem;
  font-weight: 500;
}

.pe-wrapper {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-4);
  padding-top: var(--mb-4);
  border-top: 1px #737373 solid;
}

.pe-wrapper h4 {
  width: 50%;
  font-size: var(--fs-1-5);
  font-weight: 500;
  text-align: left;
  /* line-height: 1.3; */
}

.pe-cards {
  width: 100%;
  align-items: flex-start;
  border: 1px #737373 solid;
  border-radius: 30px;
  overflow: hidden;
}

.pec {
  flex: 0 0 25%;
  height: 363px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--mb-2);
  row-gap: var(--mb-1-5);
}

.pec:first-child,
.pec:nth-child(2),
.pec:nth-child(3) {
  border-right: 1px #737373 solid;
}

.pec span {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  color: orangered;
  font-family: var(--cor-font);
}

.pec h5 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  line-height: 1.4;
}

.pec p {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-black);
  opacity: 0.9;
}

.pec:hover {
  background-color: var(--t-black);
}

/* .pec:hover span {
  color: var(--light-grey);
} */

.pec:hover h5 {
  color: var(--white);
}

.pec:hover p {
  color: var(--light-grey);
}

/* >>>>> ===== SOLUTION SECTION ===== <<<<< */
.sol {
  width: 100%;
  background-color: var(--black);
  background-image: url(/assets/img/bckg/b-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sol-container {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding: var(--mb-8) var(--mb-4);
  background-color: rgba(0, 0, 0, 0.8);
}

.sol-title {
  flex: 0 0 45%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-4);
  /* border: 1px lime solid; */
}

.sol-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
}

.sol-title h3 strong {
  font-weight: 500;
  font-size: 3rem;
  color: orangered;
}

.sol-title img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  overflow: hidden;
  padding: var(--mb-1);
  border: 1px var(--white) solid;
  border-radius: 30px;
}

.sol-cards {
  flex: 0 0 45%;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: var(--mb-0-5);
  /* border: 1px dodgerblue solid; */
}

.solc {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  /* border: 1px lime solid; */
  padding: var(--mb-1-5) 0;
  row-gap: var(--mb-1);
  border-bottom: 1px var(--white) solid;
  cursor: pointer;
}

.solc:first-child {
  padding-top: 0;
}

.solc-title {
  width: 100%;
  justify-content: space-between;
}

.solc-title h4 {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
}

.solc-title span {
  font-size: var(--fs-2);
  color: var(--light-grey);
  rotate: 45deg;
}

.solc:hover span {
  rotate: unset;
  color: orangered;
}

.solc-data {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
  animation: fadeY 0.3s ease-in-out;
  display: none;
}

.solc:hover .solc-data {
  display: flex;
}

.solc-data p {
  width: 80%;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--soft-white);
  text-align: left;
}

.solc-data button {
  font-weight: 400;
  font-size: 0.9rem;
  border: 1px orangered solid;
}

.solc-data button:hover {
  border: 1px var(--white) solid;
  font-weight: 500;
}

/* >>>>> ===== BENEFITS SECTION ===== <<<<< */
.benefits {
  width: 100%;
  padding: var(--mb-8) var(--mb-6);
  background-color: var(--white);
}

.be-container {
  width: 100%;
  height: 550px;
  background-color: var(--black);
  background-image: url(/assets/img/bckg/b-10.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 40px;
}

.be-content {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: var(--mb-4);
  justify-content: space-between;
}

.be-content h3 {
  width: 50%;
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
  align-self: flex-start;
}

.bec {
  width: 50%;
  align-self: flex-end;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  padding-bottom: var(--mb-2);
  border-bottom: 1px white solid;
}

.bec p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
}

.bec button {
  font-weight: 400;
  font-size: 0.9rem;
  border: 1px orangered solid;
}

.bec button:hover {
  border: 1px var(--white) solid;
  font-weight: 500;
}

/* >>>>> ===== WHY SECTION ===== <<<<< */
.why {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wh-container {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.6);
  padding: var(--mb-8) var(--mb-4);
  row-gap: var(--mb-6);
  justify-content: flex-start;
}

.wh-title {
  width: 100%;
}

.wh-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  color: var(--t-black);
}

.wh-title h3 strong {
  font-weight: 600;
  font-size: 3rem;
  margin-left: 0.2rem;
}

.wh-cards {
  width: 100%;
  max-width: 1116px;
  align-items: flex-start;
}

.whc {
  position: relative;
  flex: 0 0 25%;
  height: 288px;
  padding: var(--mb-2) var(--mb-3);
  border: 1px var(--t-black) solid;
  row-gap: var(--mb-1-5);
  border-radius: 50%;
  margin-left: -2%;
}

.whc:first-child {
  margin: 0;
}

.whc span {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  width: 60px;
  height: 60px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  color: var(--white);
  background-color: orangered;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.whc h4 {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.3;
}

.whc p {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  opacity: 0.8;
}

.whc:hover {
  background-color: var(--t-black);
}

.whc:hover h4 {
  color: var(--white);
}

.whc:hover p {
  color: var(--light-grey);
}

.wh-actions {
  width: 100%;
  column-gap: var(--mb-1);
}

.wh-actions button {
  font-size: 1.1rem;
}

/* >>>>> ===== PRICING SECTION ===== <<<<< */
.pricing {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.pr-container {
  width: 100%;
  row-gap: var(--mb-4);
  justify-content: flex-start;
  align-items: center;
  padding: var(--mb-8) var(--mb-6);
  background-color: rgba(250, 250, 250, 0.6);
}

.pr-title {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-2);
  /* border: 1px teal solid; */
}

.pr-title h3 {
  width: 70%;
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  line-height: 1.2;
}

.pr-title h3 span {
  font-size: 3.1rem;
  color: orangered;
  font-style: italic;
  margin-right: var(--mb-0-25);
}

.pr-title p {
  width: 60%;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-grey);
  opacity: 0.8;
}

.pr-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-2);
  /* border: 1px teal solid; */
  overflow: hidden;
}

.prc {
  flex: 0 0 31%;
  border: 2px #a3a3a3 solid;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--white);
  overflow: hidden;
}

.prc-head,
.prc-body {
  width: 100%;
  padding: var(--mb-1-5);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
  border-bottom: 2px #e5e5e5 solid;
  background: transparent;
}

.prc-head {
  position: relative;
  row-gap: var(--mb-0-5);
}

.prc-head strong {
  position: absolute;
  top: var(--mb-1-5);
  right: var(--mb-1-5);
  padding: var(--mb-0-25) var(--mb-0-5);
  border-radius: 5px;
  background-color: var(--t-black);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  opacity: 0.9;
}

.prc-head label {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  color: var(--t-black);
  opacity: 0.9;
  padding: var(--mb-0-25) var(--mb-0-5);
  border: 2px orangered solid;
  border-radius: 5px;
  margin-bottom: var(--mb-1);
}

.prch {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  column-gap: var(--mb-0-25);
}

.prch h4 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  color: var(--t-black);
  line-height: 1.2;
}

.prch span {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
  transform: translateY(-3px);
}

.prc-head p {
  font-size: 0.85rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
  line-height: 1.3;
  margin-top: var(--mb-0-5);
}

.prc-head button {
  width: 100%;
  margin-top: var(--mb-0-5);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
}

.prc-body {
  row-gap: unset;
  border: none;
}

.pb-ul {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
}

.pb-li {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: var(--mb-0-5);
}

.pb-li span {
  font-size: 0.9rem;
  color: orangered;
  transform: translateY(1px);
}

.pb-li p {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
  line-height: 1.2;
}

.prc.active .prc-head {
  background-color: var(--the-grey);
}

/* >>>>> ===== CASE-STUDIES SECTION ===== <<<<< */
.case-studies {
  width: 100%;
  background-color: var(--white);
}

.cs-container {
  width: 100%;
  justify-content: flex-start;
  padding: var(--mb-8) var(--mb-4);
  row-gap: var(--mb-6);
}

.cs-title {
  justify-content: flex-start;
  row-gap: var(--mb-1-5);
}

.cs-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  line-height: 1.1;
}

.cs-title h3 span {
  font-size: 3.2rem;
  color: orangered;
  font-style: italic;
  font-weight: 600;
  margin-right: 0.15rem;
}

.cs-title p {
  width: 70%;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  color: var(--text-grey);
}

.cs-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-4);
}

.csc {
  flex: 0 0 31%;
  padding: var(--mb-2);
  background-color: var(--the-grey);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  border-radius: 20px;
}

.csc span {
  padding: var(--mb-0-5) var(--mb-1);
  border: 1px orangered solid;
  border-radius: 30px;
  color: var(--t-black);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.csc h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--t-black);
  opacity: 0.9;
}

.csc-ul {
  width: 100%;
  padding-top: var(--mb-1-5);
  border-top: 1px #d4d4d4 solid;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-75);
}

.csc-ul li {
  font-size: 0.9rem;
  text-align: left;
  color: var(--t-black);
}

/* >>>>> ===== FAQ SECTION ===== <<<<< */
.faq {
  width: 100%;
  background-color: var(--white);
  padding: var(--mb-8);
}

.fq-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-4);
}

.fq-title {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-1-5);
}

.fq-title span {
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 30px;
  border: 1px orangered solid;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-grey);
}

.fq-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  line-height: 1.3;
}

.fq-title h3 strong {
  font-weight: 500;
  color: orangered;
  font-size: 3.2rem;
}

.fq-title p {
  width: 50%;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  /* line-height: 1.3; */
  opacity: 0.8;
  margin-top: -0.5rem;
}

.fq-cards {
  width: 80%;
  /* border: 1px teal solid; */
  padding: var(--mb-0-5) var(--mb-2);
  border-radius: 20px;
  justify-content: flex-start;
  background-color: #fafafa;
}

.fqc {
  width: 100%;
  padding: 1.25rem 0;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
  border-top: 1px #e5e5e5 solid;
  cursor: pointer;
}

.fqc:first-child {
  border-top: unset;
}

/* .fqc:last-child {
  border-bottom: unset;
} */

.fqc-que {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  /* border: 1px dodgerblue solid; */
}

.fqc-que h5 {
  flex: 0 0 80%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-black);
  /* font-family: var(--sos-font); */
  /* opacity: 0.8; */
}

.fqc-que span {
  font-size: 1.3rem;
  color: var(--t-black);
  font-weight: 600;
  opacity: 0.8;
}

.fqc:hover .fqc-que span {
  rotate: 45deg;
  color: orangered;
  opacity: 1;
}

.fqc-ans {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
  animation: fadeY 0.3s ease-in-out;
  display: none;
}

.fqc-ans p {
  width: 85%;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-grey);
  opacity: 0.8;
}

.fqc:hover .fqc-ans {
  display: flex;
}

.fq-info {
  width: 50%;
  row-gap: var(--mb-0-75);
  /* border: 1px dodgerblue solid; */
}

.fq-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
  line-height: 1.1;
}

.fq-info p {
  width: 60%;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  color: var(--text-grey);
  opacity: 0.8;
}

.fqi {
  width: 60%;
  justify-content: space-between;
  background-color: var(--the-grey);
  border-radius: 8px;
  padding: var(--mb-0-5) var(--mb-0-75);
  cursor: pointer;
}

.fqi span {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
}

.fqi-copy {
  flex: 0 0 auto;
  padding: var(--mb-0-5);
  background-color: var(--white);
  column-gap: var(--mb-0-5);
  border-radius: 8px;
}

.fqi-copy p {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--t-black);
}

.fqi-copy span {
  font-size: 0.8rem;
  color: var(--t-black);
}

.fqi-copy:hover {
  background-color: orangered;
}

.fqi-copy:active {
  background-color: var(--t-black);
}

.fqi-copy:active p {
  color: var(--white);
}

.fqi-copy:active span {
  color: orangered;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 480px */
@media screen and (max-width: 480px) {
  /* ------ >>>>>> ========== LP-MAIN ========== <<<<<< ------ */
  .lp-main {
    width: 100%;
    overflow: hidden;
    /* display: none; */
  }

  /* >>>>> ===== HERO SECTION ===== <<<<< */
  .hero {
    width: 100%;
    height: auto;
  }

  .h-container {
    width: 100%;
    height: auto;
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: var(--mb-6);
  }

  .h-content {
    row-gap: var(--mb-2);
    align-items: center;
  }

  .h-content h1 {
    width: 100%;
    font-size: var(--fs-2-5);
    line-height: 1.2;
    text-align: center;
  }

  .h-content h1 strong {
    font-weight: 600;
    font-size: 2.8rem;
    color: orangered;
    line-height: 0.3;
  }

  .h-content p {
    width: 90%;
    font-size: 1rem;
    text-align: center;
    color: var(--text-grey);
  }

  .h-content button {
    font-size: 0.85rem;
  }

  /* >>>>> ===== PRESENTATION SECTION ===== <<<<< */
  .pe {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-4) var(--mb-1-5);
  }

  .pe-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-3);
  }

  .pe-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .pe-title h3 {
    flex: 0 0 auto;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
  }

  .pet {
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .pet p {
    font-size: 1rem;
    text-align: center;
    opacity: 0.95;
  }

  .pet p strong {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
  }

  .pet button {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .pe-wrapper {
    align-items: center;
    row-gap: var(--mb-2);
    padding-top: var(--mb-2);
  }

  .pe-wrapper h4 {
    width: 90%;
    text-align: center;
    font-size: 1.3rem;
  }

  .pe-cards {
    width: 95%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border: 1px #737373 solid;
    border-radius: 30px;
    overflow: hidden;
  }

  .pec {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    padding: var(--mb-2);
    row-gap: var(--mb-1-5);
  }

  .pec:first-child,
  .pec:nth-child(2),
  .pec:nth-child(3) {
    border-right: unset;
  }

  .pec:first-child,
  .pec:nth-child(2),
  .pec:nth-child(3) {
    border-bottom: 1px #737373 solid;
  }

  .pec span {
    font-size: 1.1rem;
    text-align: center;
  }

  .pec h5 {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
  }

  .pec p {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
  }

  /* >>>>> ===== SOLUTION SECTION ===== <<<<< */

  .sol-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
    padding: var(--mb-4) var(--mb-2);
  }

  .sol-title {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-3);
    /* border: 1px lime solid; */
  }

  .sol-title h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  .sol-title h3 strong {
    font-weight: 600;
    font-size: 2.2rem;
    color: orangered;
  }

  .sol-title img {
    width: 100%;
    height: 330px;
    border-radius: 30px;
  }

  .sol-cards {
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    padding-bottom: var(--mb-0-5);
    /* border: 1px dodgerblue solid; */
  }

  .solc {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    /* border: 1px lime solid; */
    padding: var(--mb-1) 0;
    row-gap: var(--mb-0-75);
  }

  .solc:first-child {
    padding-top: 0;
  }

  .solc-title {
    width: 100%;
    justify-content: space-between;
  }

  .solc-title h4 {
    font-size: 1.05rem;
    line-height: 1.1;
  }

  .solc-title span {
    font-size: var(--fs-1-5);
  }

  .solc-data {
    row-gap: var(--mb-1);
    padding-bottom: var(--mb-0-5);
  }

  .solc:hover .solc-data {
    display: flex;
  }

  .solc-data p {
    width: 100%;
    font-size: 0.8rem;
  }

  .solc-data button {
    font-weight: 400;
    font-size: 0.8rem;
    border: 1px orangered solid;
  }

  /* >>>>> ===== BENEFITS SECTION ===== <<<<< */
  .benefits {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    background-color: var(--white);
  }

  .be-container {
    width: 100%;
    height: 550px;
    border-radius: 30px;
  }

  .be-content {
    width: 100%;
    height: 100%;
    padding: var(--mb-2);
    justify-content: space-between;
  }

  .be-content h3 {
    width: 100%;
    font-size: 1.8rem;
    align-self: flex-start;
  }

  .bec {
    width: 100%;
    row-gap: var(--mb-1-5);
    padding-bottom: var(--mb-2);
    border-bottom: 1px white solid;
  }

  .bec p {
    font-size: 0.9rem;
  }

  .bec button {
    font-weight: 400;
    font-size: 0.9rem;
    border: 1px orangered solid;
  }

  .bec button:hover {
    border: 1px var(--white) solid;
    font-weight: 500;
  }

  /* >>>>> ===== WHY SECTION ===== <<<<< */
  .why {
    width: 100%;
  }

  .wh-container {
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-4);
    justify-content: flex-start;
  }

  .wh-title {
    width: 100%;
  }

  .wh-title h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    color: var(--t-black);
  }

  .wh-title h3 strong {
    font-weight: 700;
    font-size: 2.1rem;
    margin-left: 0.2rem;
  }

  .wh-cards {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-3);
    padding-top: var(--mb-1);
  }

  .whc {
    position: relative;
    flex: 0 0 auto;
    width: 230px;
    height: 230px;
    padding: var(--mb-2);
    border: 1px var(--t-black) solid;
    row-gap: var(--mb-1);
    border-radius: 50%;
    margin-left: -2%;
  }

  .whc:first-child {
    margin: 0;
  }

  .whc span {
    position: absolute;
    top: -1.5rem;
    left: unset;
    width: 50px;
    height: 50px;
    font-size: 1rem;
    font-weight: 600;
  }

  .whc h4 {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .whc p {
    font-size: 0.9rem;
  }

  .whc:hover {
    background-color: var(--t-black);
  }

  .whc:hover h4 {
    color: var(--white);
  }

  .whc:hover p {
    color: var(--light-grey);
  }

  .wh-actions {
    width: 100%;
    column-gap: unset;
    justify-content: flex-start;
    row-gap: var(--mb-1);
    flex-direction: column;
  }

  .wh-actions button {
    font-size: 0.95rem;
  }

  /* >>>>> ===== PRICING SECTION ===== <<<<< */
  .pricing {
    width: 100%;
    overflow: hidden;
  }

  .pr-container {
    width: 100%;
    row-gap: var(--mb-4);
    padding: var(--mb-4) var(--mb-1-5);
  }

  .pr-title {
    width: 100%;
    row-gap: var(--mb-1-5);
    /* border: 1px teal solid; */
  }

  .pr-title h3 {
    width: 80%;
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .pr-title h3 span {
    font-size: 2.1rem;
    font-weight: 600;
    margin-right: 0.15rem;
  }

  .pr-title p {
    width: 90%;
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .pr-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-3);
  }

  .prc {
    flex: 0 0 auto;
    width: 85%;
    border: 2px #a3a3a3 solid;
    border-radius: 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .prc-head,
  .prc-body {
    align-items: center;
  }

  .prc:nth-child(2) .prc-head {
    padding-top: var(--mb-4-5);
  }

  .prc-head {
    position: relative;
    row-gap: var(--mb-0-5);
  }

  .prc-head strong {
    position: absolute;
    top: var(--mb-1-5);
    right: unset;
    font-size: 0.65rem;
    opacity: 0.9;
  }

  .prc-head label {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: var(--mb-0-25);
  }

  .prch {
    width: 100%;
    justify-content: center;
  }

  .prch h4 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }

  .prch span {
    font-size: 0.8rem;
    text-align: center;
    transform: translateY(-3px);
  }

  .prc-head p {
    display: none;
  }

  .prc-head button {
    width: 100%;
    margin-top: var(--mb-0-5);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    padding: var(--mb-0-75) var(--mb-1);
  }

  .prc-body {
    row-gap: unset;
    border: none;
  }

  .pb-ul {
    align-items: center;
    row-gap: var(--mb-0-5);
  }

  .pb-li {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-0-25);
  }

  .pb-li span {
    font-size: 0.8rem;
    transform: translateY(1px);
  }

  .pb-li p {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }

  .prc.active .prc-head {
    background-color: var(--the-grey);
  }

  /* >>>>> ===== CASE-STUDIES SECTION ===== <<<<< */
  .case-studies {
    width: 100%;
  }

  .cs-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-3);
    padding: var(--mb-4) var(--mb-1-5);
  }

  .cs-title {
    justify-content: flex-start;
    row-gap: var(--mb-1-5);
  }

  .cs-title h3 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .cs-title h3 span {
    font-size: 2.2rem;
    font-weight: 600;
    margin-right: 0.2rem;
  }

  .cs-title p {
    width: 90%;
    font-size: 0.9rem;
  }

  .cs-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-3);
  }

  .csc {
    flex: 0 0 auto;
    width: 90%;
    padding: var(--mb-2);
    align-items: center;
    row-gap: var(--mb-1-5);
    border-radius: 20px;
  }

  .csc span {
    padding: var(--mb-0-5) var(--mb-1);
    border: 1px gold solid;
    border-radius: 30px;
    color: var(--t-black);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
  }

  .csc h4 {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--t-black);
  }

  .csc-ul {
    width: 100%;
    padding-top: var(--mb-1-5);
    border-top: 1px #d4d4d4 solid;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-0-75);
  }

  .csc-ul li {
    font-size: 0.9rem;
    text-align: center;
    color: var(--t-black);
  }

  /* ------ >>>>>> ========== FAQ SECTION ========== <<<<<< ------ */
  .faq {
    padding: var(--mb-4) var(--mb-1-5);
  }

  .fq-container {
    row-gap: var(--mb-3);
  }

  .fq-title {
    width: 100%;
    row-gap: var(--mb-1-5);
  }

  .fq-title span {
    padding: var(--mb-0-5) var(--mb-1);
    font-size: 0.8rem;
  }

  .fq-title h3 {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .fq-title h3 strong {
    font-weight: 500;
    font-size: var(--fs-2);
  }

  .fq-title p {
    width: 90%;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: -0.25rem;
  }

  .fq-cards {
    width: 100%;
    padding: var(--mb-0-5) var(--mb-1-5);
    border-radius: 20px;
  }

  .fqc {
    padding: 1.25rem 0;
    row-gap: var(--mb-0-5);
    cursor: pointer;
  }

  .fqc:first-child {
    border-top: unset;
  }

  /* .fqc:last-child {
  border-bottom: unset;
} */

  .fqc-que {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .fqc-que h5 {
    flex: 0 0 85%;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .fqc-que span {
    font-size: 1.1rem;
    transform: translateY(2px);
  }

  .fqc:hover .fqc-que span {
    rotate: 45deg;
    color: gold;
    opacity: 1;
  }

  .fqc-ans {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-0-5);
    animation: fadeY 0.3s ease-in-out;
    display: none;
  }

  .fqc-ans p {
    width: 95%;
    font-size: 0.8rem;
    font-weight: 400;
  }

  .fq-info {
    width: 100%;
    row-gap: var(--mb-0-75);
    /* border: 1px dodgerblue solid; */
  }

  .fq-info h4 {
    font-size: 0.9rem;
    line-height: 1;
  }

  .fq-info p {
    width: 75%;
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.3;
    margin-top: -0.15rem;
  }

  .fqi {
    width: 80%;
    justify-content: space-between;
    border-radius: 8px;
    padding: var(--mb-0-5) var(--mb-0-75);
  }

  .fqi span {
    font-size: 0.75rem;
    text-align: left;
  }

  .fqi-copy {
    flex: 0 0 auto;
  }

  .fqi-copy p {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    color: var(--t-black);
  }

  .fqi-copy span {
    font-size: 0.7rem;
    color: var(--t-black);
  }
}

/* Media query for screens with a minimum width of 1400px and a maximum width of 1600px */
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  /* ------ >>>>>> ========== LP-MAIN ========== <<<<<< ------ */
  .lp-main {
    width: 100%;
    overflow: hidden;
    /* display: none; */
  }

  /* >>>>> ===== HERO SECTION ===== <<<<< */
  .h-container {
    width: 100%;
    height: 100%;
    padding: var(--mb-3) 10rem;
    padding-top: var(--mb-6);
  }

  .h-content h1 {
    width: 85%;
    font-size: var(--fs-5);
    font-weight: 600;
    text-align: left;
    line-height: 1;
  }

  .h-content p {
    width: 60%;
    font-size: 1.35rem;
  }

  /* >>>>> ===== PRESENTATION SECTION ===== <<<<< */
  .pe {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-8) 12rem;
  }

  /* >>>>> ===== SOLUTION SECTION ===== <<<<< */
  .sol-container {
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    padding: var(--mb-8) 12rem;
    background-color: rgba(0, 0, 0, 0.8);
  }

  /* >>>>> ===== BENEFITS SECTION ===== <<<<< */
  .benefits {
    width: 100%;
    padding: var(--mb-8) 12rem;
  }

  /* >>>>> ===== WHY SECTION ===== <<<<< */
  .wh-container {
    padding: var(--mb-8) 12rem;
    row-gap: var(--mb-6);
  }

  /* >>>>> ===== PRICING SECTION ===== <<<<< */
  .pricing {
    width: 100%;
  }

  .pr-container {
    padding: var(--mb-8) 12rem;
  }

  /* >>>>> ===== CASE-STUDIES SECTION ===== <<<<< */
  .cs-container {
    padding: var(--mb-8) 12rem;
    row-gap: var(--mb-6);
  }

  /* >>>>> ===== FAQ SECTION ===== <<<<< */
  .faq {
    width: 100%;
    background-color: var(--white);
    padding: var(--mb-8) 16rem;
  }
}
