/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,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&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --theme-dark: #1c1d20;
  --t-black: #1c1d20;
  --t-brown: #993232;
  --tl-brown: #a64c4c;
  --t-blue: rgb(2, 48, 71);
  --t-green: #008000;
  --tb-dark: #1b263b;
  --tb-light: #1b263b;
  --bg-grey: #f7f7f7;
  --bg-black: #1f242e;
  --text-grey: #444950;
  --light-grey: #ebebeb;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "DM Sans", sans-serif;
  --int-font: "Inter", sans-serif;
  --pop-font: "Poppins", sans-serif;
  --cor-font: "Cormorant Infant", serif;
  --bod-font: "Bodoni Moda", serif;

  /* .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;
}

/* ++++++++++++ ========== [LANDING PAGE] ========== ++++++++++++*/
.lp-main {
  width: 100%;
  overflow: hidden;
}

/* >>>>>>>> ========== HERO SECTION ========== <<<<<<<< */
.hero {
  width: 100%;
  height: 100dvh;
  background-color: var(--white);
}

.he-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.he-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.he-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: 50% 65%; */
}

.he-content {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.75);
  /* border: 1px dodgerblue solid; */
  z-index: 3;
  padding: var(--mb-3) var(--mb-4);
  padding-top: var(--mb-6);
}

.hec {
  width: 100%;
  height: 80%;
  /* border: 1px red solid; */
  row-gap: var(--mb-1);
  /* justify-content: space-between; */
}

.hec h1 {
  font-size: var(--fs-6);
  font-weight: 300;
  text-align: center;
  color: var(--white);
  /* font-family: var(--bod-font); */
  line-height: 1.1;
  /* text-transform: uppercase; */
}

.hec p {
  width: 45%;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  color: var(--white);
}

.hec-footer {
  width: 100%;
  justify-content: space-between;
  padding-top: var(--mb-2-5);
  border-top: 1px var(--white) solid;
}

.hec-footer p {
  font-size: var(--fs-1);
  font-weight: 300;
  text-align: center;
  color: var(--white);
  color: var(--white);
  padding: var(--mb-0-5) var(--mb-1);
  border: 2px var(--t-brown) solid;
  border-radius: 30px;
}

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

.ab-container {
  position: relative;
  width: 100%;
  padding: var(--mb-6);
  row-gap: var(--mb-4);
  background-color: rgba(250, 250, 250, 0.9);
  overflow: hidden;
  justify-content: flex-start;
  /* border: 1px lime solid; */
}

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

.abt-span {
  flex: 0 0 100%;
  justify-content: flex-start;
}

.abt-span > span {
  flex: 0 0 auto;
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: left;
  color: maroon;
  /* font-family: var(--bod-font); */
  /* padding: var(--mb-0-5) var(--mb-1);
  border: 1px var(--t-blue) solid;
  border-radius: 30px; */
}

.at-circle {
  position: relative;
  width: 200px;
  height: 22vh;
  margin-left: -1rem;
  /* border: 1px hotpink solid; */
}

.at-circle .atc {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  /* border: 1px dodgerblue solid; */
}

@-webkit-keyframes rotate-btn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-btn {
  to {
    transform: rotate(360deg);
  }
}

#cir-text {
  font-size: 1rem;
  font-family: var(--pri-font);
  font-weight: 400;
  color: var(--t-blue);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  transition: unset !important;
  -webkit-animation: rotate-btn 10s linear infinite;
  animation: rotate-btn 10s linear infinite;
}

#cir-text i {
  font-size: 0.8rem;
  color: var(--text-grey);
}

.atc img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: maroon;
  padding: var(--mb-1);
}

.abt {
  flex: 0 0 68%;
  /* border: 1px tomato solid; */
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.abt h2 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
  line-height: 1.3;
}

.abt h2 strong {
  font-weight: 500;
  color: maroon;
}

.abt p {
  font-size: 1.2rem;
  font-weight: 300;
  text-align: left;
  color: var(--t-blue);
  /* opacity: 0.8; */
}

.abt-media {
  width: 100%;
  height: 550px;
  background-color: #8c1919;
  background-image: url(/assets/img/gallery/gl-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 40px;
}

.abtm {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  padding: var(--mb-3);
  justify-content: flex-end;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.abtm i {
  font-size: var(--fs-3);
  color: var(--t-brown);
}

.abtm h3 {
  width: 90%;
  font-size: var(--fs-2-5);
  font-weight: 300;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
}

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

.abtm p span {
  font-style: italic;
}

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

.se-container {
  position: relative;
  width: 100%;
  /* padding: var(--mb-4); */
  /* background-color: rgba(250, 250, 250, 0.9); */
}

.se-wrapper {
  width: 100%;
  overflow: hidden;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-4);
  /* border: 1px lime solid; */
  background-color: rgb(2, 48, 71, 0.98);
  /* border-radius: 40px; */
  padding: var(--mb-6);
}

.se-title {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  /* padding-bottom: var(--mb-3);
  border-bottom: 1px var(--white) solid; */
}

.set-span {
  flex: 0 0 100%;
  justify-content: flex-start;
}

.set-span > span {
  flex: 0 0 auto;
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: left;
  color: var(--white);
}

.se-title h3 {
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
}

.se-title h3 strong {
  font-weight: 500;
  color: var(--t-brown);
}

.se-title p {
  width: 60%;
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
  /* opacity: 0.8; */
}

.ase-cards {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  /* border: 1px teal solid solid; */
}

.asec {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--mb-2) 0;
  border-bottom: 1px #ccc solid;
  cursor: pointer;
}

.asec-head {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  /* border: 1px teal solid; */
}

.asec-head h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-4);
  font-size: var(--fs-2-5);
  font-weight: 400;
  text-align: left;
  color: var(--white);
  font-family: var(--pop-font);
  line-height: 1;
}

.asec-head h3 sub {
  font-size: 1.2rem;
  color: var(--light-grey);
  font-weight: 400;
  opacity: 0.9;
  line-height: 1;
}

.asec-head span {
  font-size: 1.8rem;
  color: var(--light-grey);
  padding: var(--mb-0-75);
  border: 2px var(--t-brown) solid;
  border-radius: 50%;
  margin-bottom: var(--mb-0-25);
}

.asec-body {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 5.8rem;
  padding-top: var(--mb-3);
  animation: fadeY 0.3s ease-in-out;
  display: none;
}

.asecb-text {
  flex: 0 0 44%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  animation: fadeY 0.8s ease-in-out;
  display: none;
}

.asecb-text p {
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  color: var(--light-grey);
}
.asecb-img {
  flex: 0 0 42.5%;
  height: 280px;
  border-radius: 20px;
  /* border: 1px teal solid; */
  overflow: hidden;
  animation: fadeY 1s ease-in-out;
  display: none;
}

.asecb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asec:hover {
  padding: var(--mb-2-5) 0;
}

.asec:hover .asec-body,
.asec:hover .asecb-text {
  display: flex;
}

.asec:hover .asecb-img {
  display: flex;
}

.asec:hover .asec-head > span {
  rotate: 45deg;
  background-color: var(--tl-brown);
  color: var(--white);
  border: 2px var(--tl-brown) solid;
}

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

.ga-container {
  position: relative;
  width: 100%;
  padding: var(--mb-6);
  row-gap: var(--mb-4);
  background-color: rgba(250, 250, 250, 0.9);
  /* background-color: rgb(2, 48, 71, 0.98); */
  overflow: hidden;
  justify-content: flex-start;
  align-items: flex-start;
  /* border: 1px lime solid; */
}

.ga-title {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  padding-bottom: var(--mb-3);
  border-bottom: 2px var(--t-blue) solid;
}

.gat-span {
  flex: 0 0 100%;
  justify-content: flex-start;
}

.gat-span > span {
  flex: 0 0 auto;
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

.ga-title h3 {
  width: 80%;
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
  line-height: 1.3;
}

.ga-title h3 strong {
  font-weight: 500;
  color: #993232;
}

.ga-title > p {
  width: 70%;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
  /* opacity: 0.8; */
}

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

.gac {
  flex: 0 0 32%;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px;
}

.gac img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s all ease;
}

.gac:hover img {
  scale: 1.1;
}

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

.te-container {
  position: relative;
  width: 100%;
  padding: var(--mb-6);
  row-gap: var(--mb-4);
  /* background-color: rgba(250, 250, 250, 0.9); */
  background-color: rgb(2, 48, 71, 0.95);
  overflow: hidden;
  justify-content: flex-start;
  align-items: flex-start;
  /* border: 1px lime solid; */
}

.te-title {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1.25rem;
  /* padding: var(--mb-3);
    background-color: var(--t-blue);
    border: 1px var(--tb-dark) solid;
    border-radius: 30px; */
  padding-bottom: var(--mb-4);
  border-bottom: 2px var(--white) solid;
}

.tet-span {
  flex: 0 0 100%;
  justify-content: flex-start;
}

.tet-span > span {
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
}

.te-title h3 {
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
}

.te-title h3 strong {
  font-weight: 500;
  color: var(--t-brown);
}

.te-title p {
  width: 70%;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  /* opacity: 0.8; */
}

.te-wrapper {
  width: 90%;
  height: 420px;
  /* border: 1px red solid; */
}

.te-cards {
  width: 100%;
  height: 100%;
  position: relative;
}

.tec {
  position: absolute;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active rec (visible) */
.tec.active {
  opacity: 1;
}

.tec i {
  /* position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0); */
  font-size: var(--fs-3);
  color: var(--t-brown);
}

.tec h5 {
  width: 100%;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
  line-height: 1.2;
  /* opacity: 0.8; */
}

.tec p {
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: left;
  color: var(--white);
  font-family: var(--pop-font);
  padding: var(--mb-0-5) var(--mb-1);
  border: 2px var(--t-brown) solid;
  border-radius: 20px;
  margin-top: var(--mb-0-5);
}

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

.fq-container {
  position: relative;
  width: 100%;
  padding: var(--mb-6);
  row-gap: var(--mb-4);
  background-color: rgba(250, 250, 250, 0.9);
  /* background-color: rgb(2, 48, 71, 0.98); */
  overflow: hidden;
  justify-content: flex-start;
  align-items: flex-start;
  /* border: 1px lime solid; */
}

.fq-title {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  padding-bottom: var(--mb-6);
  border-bottom: 1px var(--t-brown) solid;
}

.fqt-span {
  flex: 0 0 100%;
  justify-content: flex-start;
}

.fqt-span > span {
  flex: 0 0 auto;
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: left;
  color: var(--t-brown);
}

.fq-title h3 {
  width: 80%;
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
  line-height: 1.3;
}

.fq-title h3 strong {
  font-weight: 500;
  color: #993232;
}

.fq-title > p {
  width: 40%;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: left;
  color: var(--t-blue);
  /* opacity: 0.8; */
  margin-bottom: var(--mb-0-5);
}

.fq-cards {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  /* display: none; */
}

.fqc {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--mb-2) 0;
  border-bottom: 1px var(--t-blue) solid;
  cursor: pointer;
}

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

.fqc-questions {
  width: 100%;
  justify-content: space-between;
}

.fqc-questions h4 {
  flex: 0 0 70%;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

.fqc-questions span {
  font-size: 2.5rem;
  color: var(--t-brown);
}

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

.fqc-answers p {
  width: 80%;
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

.fqc:hover .fqc-questions span {
  rotate: -90deg;
}

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

/* ++++++++++++ ========== [ABOUT PAGE] ========== ++++++++++++*/
.ab-main {
  width: 100%;
  overflow: hidden;
}

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

.ae-container {
  width: 100%;
  /* background-color: rgb(2, 48, 71, 0.9); */
  background-color: rgba(250, 250, 250, 0.85);
}

.ae-title {
  width: 100%;
  padding: var(--mb-6);
  padding-top: 10rem;
  /* border: 1px teal solid solid; */
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.ae-title span {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: maroon;
  display: none;
}

.ae-title h3 {
  font-size: var(--fs-3-5);
  font-weight: 600;
  text-align: left;
  color: var(--t-blue);
  font-family: var(--pop-font);
  line-height: 1.3;
}

.ae-title h3 strong {
  font-weight: 500;
  color: var(--t-blue);
  opacity: 0.7;
}

.ae-img {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: maroon;
  justify-content: flex-start;
  overflow: hidden;
}

.ae-img img {
  width: 80%;
  height: 100%;
  background-color: var(--white);
  object-fit: cover;
}

.aei {
  position: absolute;
  right: var(--mb-6);
  width: 350px;
  padding: var(--mb-2);
  background-color: var(--white);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
}

.aei h4 {
  font-size: var(--fs-1-5);
  font-weight: 500;
  text-align: left;
  color: var(--t-blue);
  font-family: var(--pop-font);
}

.aei p {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

/*========== A-STORY SECTION ==========*/
.astory {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.as-container {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.9);
  overflow: hidden;
  padding: var(--mb-6);
  align-items: flex-start;
  justify-content: space-between;
}

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

.as-title h3 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: left;
  color: var(--t-blue);
  font-family: var(--pop-font);
  line-height: 1.2;
}

.as-title h3 strong {
  font-weight: 600;
  color: maroon;
  opacity: 0.8;
}

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

.as-content p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

.asc {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-1);
}

.asc img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* border: 1px teal solid solid; */
  object-fit: cover;
}

.asc p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
  line-height: 1.2;
}

.asc p strong {
  font-size: var(--fs-1);
  color: var(--t-blue);
}

/*========== A-TEAM SECTION ==========*/
.ateam {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.at-container {
  width: 100%;
  padding: var(--mb-6);
  background-color: rgba(250, 250, 250, 0.9);
  row-gap: var(--mb-4);
}

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

.at-title > span {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: maroon;
}

.at-title h3 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: left;
  color: var(--t-blue);
  font-family: var(--pop-font);
  line-height: 1.3;
  margin-top: var(--mb-0-5);
}

.at-title h3 strong {
  font-weight: 600;
  color: var(--t-blue);
  opacity: 0.8;
}

.at-title p {
  width: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

.ate-cards {
  width: 100%;
  height: 400px;
  justify-content: space-between;
  align-items: flex-start;
  display: none;
}

.atec {
  flex: 0 0 23%;
  padding: var(--mb-1);
  border: 1px #bbb solid;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
}

.atec-img {
  width: 100%;
  height: 220px;
  background-color: var(--white);
  overflow: hidden;
}

.atec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atc-text {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}

.atc-text p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: var(--soft-black);
  font-family: var(--pop-font);
}

.atc-text span {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--text-grey);
}

.at-group {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 40px;
}

.at-group img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ++++++++++++ ========== [SERVICES PAGE] ========== ++++++++++++*/
.ser-main {
  width: 100%;
  overflow: hidden;
}

/*========== SERO SECTION ==========*/
.sero {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sero-container {
  width: 100%;
  background-color: rgb(2, 48, 71, 0.9);
}

.sr-title {
  width: 100%;
  padding: var(--mb-6);
  padding-top: 10rem;
  /* border: 1px teal solid solid; */
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.sr-title span {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  display: none;
}

.sr-title h1 {
  font-size: var(--fs-3-5);
  font-weight: 500;
  text-align: left;
  color: var(--white);
  font-family: var(--pop-font);
  line-height: 1.3;
}

.sr-title h1 strong {
  font-weight: 600;
  color: var(--light-grey);
  opacity: 0.8;
}

.sr-img {
  width: 100%;
  height: 600px;
  background-color: var(--white);
  background-image: url(/assets/img/gallery/gl-3.webp);
  background-repeat: repeat;
  background-size: cover;
  background-position: 50% 100%;
  /* background-attachment: fixed; */
  overflow: hidden;
}

/*========== S-SERVICES SECTION ==========*/
.sservices {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-9.jfif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ss-container {
  width: 100%;
  padding: var(--mb-6);
  background-color: rgba(250, 250, 250, 0.8);
  row-gap: var(--mb-4);
}

.ss-title {
  position: relative;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  /* border: 1px gold solid solid; */
}

#sst-span {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: maroon;
}

.ss-title h3 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: left;
  color: var(--t-blue);
  font-family: var(--pop-font);
  line-height: 1.3;
  margin-top: var(--mb-0-5);
}

.ss-title h3 strong {
  font-weight: 600;
  color: var(--t-blue);
  opacity: 0.8;
}

.ss-title p {
  width: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

#sst-arrow {
  position: absolute;
  right: 0;
  bottom: var(--mb-1);
  background-color: maroon;
  color: var(--white);
  padding: var(--mb-2);
  font-size: var(--fs-4);
  border-radius: 50%;
}

.ss-cards {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px var(--t-blue) solid;
}

.ssc {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--mb-5) 0;
  border-bottom: 1px var(--t-blue) solid;
}

.ssc-img {
  flex: 0 0 47%;
  height: 380px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--mb-1);
  border: 1px var(--t-brown) solid;
}

.ssc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.ssc-text h3 {
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: left;
  color: var(--t-blue);
  font-family: var(--pop-font);
  line-height: 1.1;
}

.ssc-text > p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

/* ++++++++++++ ========== [CONTACT PAGE] ========== ++++++++++++*/
.con-main {
  width: 100%;
  overflow: hidden;
}

/*========== CERO SECTION ==========*/
.cero {
  width: 100%;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
}

.cero-container {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.9);
  padding: var(--mb-8) var(--mb-4);
  row-gap: var(--mb-4);
}

.ce-title {
  width: 100%;
  justify-content: flex-start;
  row-gap: 1rem;
}

.ce-title img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: fill;
  background-color: var(--t-blue);
  padding: var(--mb-1);
}

.ce-title h1 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: center;
  font-family: var(--pop-font);
  color: var(--t-blue);
  margin-top: var(--mb-0-5);
}

.ce-title h1 strong {
  color: maroon;
  font-weight: 600;
  opacity: 0.8;
}

.ce-title p {
  width: 45%;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  font-family: var(--pop-font);
  color: var(--t-blue);
}

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

.ccd {
  flex: 0 0 23%;
  padding: var(--mb-1-5);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-25);
  border: 1px var(--t-blue) solid;
  cursor: pointer;
}

.ccd i {
  padding: var(--mb-0-5);
  background-color: transparent;
  border: 1px maroon solid;
  color: var(--soft-black);
  font-size: 1.5rem;
  border-radius: 5px;
  margin-bottom: 1.25rem;
  transition: unset;
}

.ccd h4 {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: var(--t-blue);
  line-height: 1;
  font-family: var(--pop-font);
}

.ccd p {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--t-blue);
}

.ccd a {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  font-family: var(--pri-font);
  color: var(--t-blue);
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--t-blue);
  margin-top: var(--mb-0-5);
}

.ccd a:hover {
  text-decoration-color: maroon;
}

.ccd:hover {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 8px;
  background-color: var(--tb-dark);
  border: 1px var(--tb-dark) solid;
}

.ccd:hover i {
  background-color: maroon;
  color: var(--white);
}

.ccd:hover h4,
.ccd:hover p,
.ccd:hover a {
  color: var(--white);
}

.ccd:hover a {
  text-decoration-color: var(--white);
}

.ccd:hover a:hover {
  text-decoration-color: maroon;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 480px */
@media screen and (max-width: 500px) {
  /* ++++++++++++ ========== [LANDING PAGE] ========== ++++++++++++*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

  /* >>>>>>>> ========== HERO SECTION ========== <<<<<<<< */

  .he-content {
    width: 100%;
    height: 100%;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.75);
    /* border: 1px dodgerblue solid; */
    z-index: 3;
    padding: var(--mb-2) var(--mb-1-5);
    padding-top: var(--mb-6);
  }

  .hec {
    width: 100%;
    height: 70%;
    /* border: 1px red solid; */
    row-gap: var(--mb-1);
    /* justify-content: space-between; */
  }

  .hec h1 {
    font-size: var(--fs-3-5);
    line-height: 1.1;
    /* text-transform: uppercase; */
  }

  .hec p {
    width: 80%;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    color: var(--white);
  }

  .hec-footer {
    width: 100%;
    justify-content: center;
    padding-top: var(--mb-2);
    column-gap: var(--mb-1);
    flex-wrap: wrap;
    row-gap: var(--mb-1);
  }

  .hec-footer p {
    font-size: 0.85rem;
    padding: var(--mb-0-5) var(--mb-1);
    border: 2px var(--tl-brown) solid;
    border-radius: 30px;
  }

  /* >>>>>>>> ========== ABOUT SECTION ========== <<<<<<<< */

  .ab-container {
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-4);
    justify-content: flex-start;
    /* border: 1px lime solid; */
  }

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

  .abt-span {
    flex: 0 0 100%;
    justify-content: center;
  }

  .abt-span > span {
    flex: 0 0 auto;
    text-align: center;
  }

  .at-circle {
    position: relative;
    width: 200px;
    height: 22vh;
    margin: 0;
    /* border: 1px hotpink solid; */
  }

  #cir-text {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #cir-text i {
    font-size: 0.8rem;
    color: var(--text-grey);
  }

  .atc img {
    position: absolute;
    width: 100px;
    height: 100px;
    padding: var(--mb-1);
  }

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

  .abt h2 {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
  }

  .abt h2 strong {
    font-weight: 500;
    color: maroon;
    font-size: 1.8rem;
  }

  .abt p {
    width: 90%;
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
  }

  .abt-media {
    width: 100%;
    height: 500px;
    background-color: #8c1919;
    border-radius: 30px;
  }

  .abtm {
    width: 100%;
    padding: var(--mb-2);
    justify-content: flex-end;
    align-items: flex-start;
    row-gap: var(--mb-1-5);
  }

  .abtm i {
    font-size: var(--fs-3);
    color: var(--t-brown);
  }

  .abtm h3 {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 300;
    text-align: left;
    color: var(--white);
    line-height: 1.3;
  }

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

  .abtm p span {
    font-style: italic;
    font-size: 0.9rem;
  }

  /* >>>>>>>> ========== SERVICES SECTION ========== <<<<<<<< */
  .se-wrapper {
    align-items: center;
    row-gap: var(--mb-4);
    padding: var(--mb-4) var(--mb-1-5);
  }

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

  .set-span {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }

  .set-span > span {
    font-weight: 300;
    text-align: center;
  }

  .se-title h3 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
  }

  .se-title p {
    width: 80%;
    font-size: 0.95rem;
    font-weight: 300;
    text-align: center;
  }

  .ase-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    /* border: 1px teal solid solid; */
  }

  .asec {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--mb-2) 0;
    border-bottom: 1px #ccc solid;
    cursor: pointer;
  }

  .asec-head {
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    /* border: 1px teal solid; */
  }

  .asec-head h3 {
    column-gap: var(--mb-2);
    font-size: 1.6rem;
    line-height: 1;
  }

  .asec-head h3 sub {
    font-size: 1rem;
    line-height: 1;
  }

  .asec-head span {
    font-size: 1rem;
    padding: var(--mb-0-5);
    margin: 0;
  }

  .asec-body {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 0;
    padding-top: var(--mb-2);
    row-gap: var(--mb-2);
    display: none;
  }

  .asecb-text {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    row-gap: var(--mb-1-5);
    display: none;
  }

  .asecb-text p {
    font-size: 1rem;
  }
  .asecb-img {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    /* border: 1px teal solid; */
    overflow: hidden;
    animation: fadeY 1s ease-in-out;
    display: none;
  }

  .asecb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .asec:hover {
    padding: var(--mb-2-5) 0;
  }

  .asec:hover .asec-body,
  .asec:hover .asecb-text {
    display: flex;
  }

  .asec:hover .asecb-img {
    display: flex;
  }

  .asec:hover .asec-head > span {
    rotate: 45deg;
    background-color: var(--tl-brown);
    color: var(--white);
    border: 2px var(--tl-brown) solid;
  }

  /* >>>>>>>> ========== GALLERY SECTION ========== <<<<<<<< */
  .ga-container {
    position: relative;
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-4);
    justify-content: flex-start;
    align-items: center;
    /* border: 1px lime solid; */
  }

  .ga-title {
    align-items: center;
    row-gap: var(--mb-1-5);
    padding-bottom: var(--mb-3);
    border-bottom: 1px var(--t-blue) solid;
  }

  .gat-span {
    flex: 0 0 100%;
    justify-content: center;
  }

  .gat-span > span {
    flex: 0 0 auto;
    width: 80%;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
  }

  .ga-title h3 {
    width: 100%;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
  }

  .ga-title h3 strong {
    font-weight: 500;
    color: #993232;
  }

  .ga-title > p {
    width: 90%;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--mb-0-5);
  }

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

  .gac {
    flex: 0 0 auto;
    width: 100%;
    height: 300px;
    border-radius: 15px;
  }

  /* >>>>>>>> ========== TESTIMONIALS SECTION ========== <<<<<<<< */

  .te-container {
    padding: var(--mb-6) var(--mb-1-5);
    row-gap: var(--mb-3);
    align-items: center;
    /* border: 1px lime solid; */
  }

  .te-title {
    align-items: center;
    row-gap: var(--mb-1-5);
    padding-bottom: var(--mb-2);
    border-bottom: 1px var(--white) solid;
  }

  .tet-span {
    flex: 0 0 100%;
    justify-content: center;
  }

  .tet-span > span {
    flex: 0 0 auto;
    font-size: 0.8rem;
    text-align: center;
  }

  .te-title h3 {
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
  }

  .te-title h3 strong {
    font-weight: 500;
    color: var(--t-brown);
  }

  .te-title p {
    width: 90%;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
  }

  .te-wrapper {
    width: 100%;
    height: 480px;
    /* border: 1px red solid; */
  }

  .te-cards {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .tec {
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  /* Active rec (visible) */
  .tec.active {
    opacity: 1;
  }

  .tec i {
    font-size: var(--fs-2);
    color: var(--t-brown);
  }

  .tec h5 {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
  }

  .tec p {
    font-size: var(--fs-1);
    font-weight: 400;
    text-align: center;
    border-radius: 20px;
    margin-top: var(--mb-0-5);
  }

  /* >>>>>>>> ========== FAQ SECTION ========== <<<<<<<< */

  .fq-container {
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-4);
    align-items: center;
    /* border: 1px lime solid; */
  }

  .fq-title {
    align-items: center;
    row-gap: var(--mb-1-5);
    padding-bottom: var(--mb-2-5);
    border-bottom: 1px var(--t-brown) solid;
  }

  .fqt-span {
    flex: 0 0 100%;
    justify-content: center;
  }

  .fqt-span > span {
    flex: 0 0 auto;
    font-size: 0.95rem;
    text-align: center;
  }

  .fq-title h3 {
    width: 100%;
    font-size: 2rem;
    text-align: center;
    line-height: 1.3;
  }

  .fq-title > p {
    width: 80%;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
  }

  .fq-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .fqc {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--mb-2) 0;
    border-bottom: 1px var(--t-blue) solid;
    cursor: pointer;
  }

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

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

  .fqc-questions h4 {
    flex: 0 0 70%;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .fqc-questions span {
    font-size: 2rem;
    color: var(--t-brown);
  }

  .fqc-answers {
    width: 100%;
    padding-top: var(--mb-1);
    display: none;
  }

  .fqc-answers p {
    width: 100%;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: left;
    color: var(--t-blue);
  }

  /* ++++++++++++ ========== [ABOUT PAGE] ========== ++++++++++++*/
  .ab-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== AERO SECTION ==========*/
  .ae-title {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: 6rem;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .ae-title span {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    color: maroon;
    display: none;
  }

  .ae-title h3 {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
  }

  .ae-title h3 strong {
    font-weight: 600;
    opacity: 1;
    color: var(--t-brown);
  }

  .ae-img {
    height: 500px;
    background-color: maroon;
    justify-content: center;
    overflow: hidden;
  }

  .ae-img img {
    width: 100%;
  }

  .aei {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: unset;
    width: 350px;
    padding: var(--mb-2);
    align-items: center;
    row-gap: var(--mb-1);
  }

  .aei h4 {
    font-size: var(--fs-1-5);
    font-weight: 500;
    text-align: center;
  }

  .aei p {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
  }

  /*========== A-STORY SECTION ==========*/

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

  .as-title {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .as-title h3 {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
  }

  .as-content {
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .as-content p {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
  }

  .asc {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-1);
  }

  .asc p {
    font-size: 0.9rem;
    color: var(--t-blue);
    line-height: 1.2;
  }

  .asc p strong {
    font-size: var(--fs-1);
    color: var(--t-blue);
  }

  /*========== A-TEAM SECTION ==========*/
  .at-container {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-3);
  }

  .at-title {
    width: 100%;
    justify-content: center;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .at-title > span {
    text-align: center;
    color: maroon;
  }

  .at-title h3 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-top: var(--mb-0-5);
  }

  .at-title h3 strong {
    font-weight: 500;
    font-size: 2.2rem;
  }

  .at-title p {
    width: 80%;
    font-size: 1rem;
    text-align: center;
  }

  .at-group {
    width: 100%;
    height: 400px;
    border-radius: 30px;
  }

  .at-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ++++++++++++ ========== [SERVICES PAGE] ========== ++++++++++++*/
  .ser-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== SERO SECTION ==========*/
  .sero {
    width: 100%;
    background-color: var(--white);
    background-image: url(/assets/img/bckg/b-8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  .sero-container {
    width: 100%;
    background-color: rgb(2, 48, 71, 0.9);
  }

  .sr-title {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: 6rem;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .sr-title h1 {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
  }

  .sr-title h1 strong {
    font-weight: 600;
    color: var(--light-grey);
    opacity: 0.8;
  }

  .sr-img {
    width: 100%;
    height: 400px;
  }

  /*========== S-SERVICES SECTION ==========*/
  .ss-container {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-3);
  }

  .ss-title {
    position: relative;
    align-items: center;
    row-gap: var(--mb-1-5);
    /* border: 1px gold solid solid; */
  }

  #sst-span {
    font-size: 1rem;
    text-align: center;
  }

  .ss-title h3 {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
  }

  .ss-title h3 strong {
    font-weight: 600;
    color: var(--t-blue);
    opacity: 0.8;
  }

  .ss-title p {
    width: 90%;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--t-blue);
  }

  #sst-arrow {
    position: unset;
    margin-top: var(--mb-1);
    padding: var(--mb-1);
    font-size: var(--fs-2-5);
    border-radius: 50%;
  }

  .ss-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px var(--t-blue) solid;
  }

  .ssc {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2-5);
    padding: var(--mb-3) 0;
    border-bottom: 1px var(--t-blue) solid;
  }

  .ssc-img {
    flex: 0 0 auto;
    width: 100%;
    height: 280px;
    justify-content: center;
    align-items: center;
    padding: var(--mb-1);
    border: 1px var(--t-brown) solid;
  }

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

  .ssc-text h3 {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
  }

  .ssc-text > p {
    width: 90%;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
  }

  /* ++++++++++++ ========== [CONTACT PAGE] ========== ++++++++++++*/
  .con-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== CERO SECTION ==========*/
  .cero-container {
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: var(--mb-6);
    row-gap: var(--mb-3);
  }

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

  .ce-title img {
    width: 100px;
    height: 100px;
    padding: var(--mb-1);
  }

  .ce-title h1 {
    font-size: 2.2rem;
    margin-top: var(--mb-0-25);
    line-height: 1.3;
  }

  .ce-title h1 strong {
    opacity: 0.8;
  }

  .ce-title p {
    width: 90%;
    font-size: 1.1rem;
    color: var(--t-blue);
  }

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

  .ccd {
    flex: 0 0 auto;
    width: 90%;
    padding: var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-0-25);
  }

  .ccd i {
    padding: var(--mb-0-5);
    font-size: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.25rem;
  }

  .ccd h4 {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
  }

  .ccd p {
    font-size: 0.95rem;
    text-align: center;
  }

  .ccd a {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: var(--mb-0-5);
  }
}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
  /* ++++++++++++ ========== [LANDING PAGE] ========== ++++++++++++*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

  /* >>>>>>>> ========== HERO SECTION ========== <<<<<<<< */

  .he-content {
    width: 100%;
    height: 100%;
    padding: var(--mb-3) var(--mb-6);
    padding-top: var(--mb-7);
  }

  .hec h1 {
    font-size: 7rem;
  }

  .hec p {
    width: 45%;
    font-size: 1.5rem;
  }

  /* >>>>>>>> ========== ABOUT SECTION ========== <<<<<<<< */

  .ab-container {
    position: relative;
    width: 100%;
    padding: var(--mb-8) 6rem;
    row-gap: var(--mb-4);
  }

  /* >>>>>>>> ========== SERVICES SECTION ========== <<<<<<<< */
  .se-wrapper {
    width: 100%;
    row-gap: var(--mb-4);
    background-color: rgb(2, 48, 71, 0.98);
    padding: var(--mb-8);
  }

  /* >>>>>>>> ========== GALLERY SECTION ========== <<<<<<<< */
  .ga-container {
    position: relative;
    width: 100%;
    padding: var(--mb-8);
    row-gap: var(--mb-4);
  }

  .gat-span > span {
    flex: 0 0 auto;
    font-size: 0.9rem;
  }

  .ga-title h3 {
    width: 70%;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: left;
    color: var(--t-blue);
    line-height: 1.2;
  }

  .ga-title > p {
    width: 50%;
    font-size: 1.1rem;
    margin-bottom: var(--mb-0-5);
  }

  /* >>>>>>>> ========== TESTIMONIALS SECTION ========== <<<<<<<< */

  .te-container {
    position: relative;
    width: 100%;
    padding: var(--mb-8);
    row-gap: var(--mb-3);
  }

  /* >>>>>>>> ========== FAQ SECTION ========== <<<<<<<< */
  .fq-container {
    position: relative;
    width: 100%;
    padding: var(--mb-8);
    row-gap: var(--mb-4);
  }

  /* ++++++++++++ ========== [ABOUT PAGE] ========== ++++++++++++*/
  .ab-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== AERO SECTION ==========*/
  .ae-title {
    width: 100%;
    padding: var(--mb-6);
    padding-top: 10rem;
    row-gap: var(--mb-2);
  }

  .ae-title h3 {
    font-size: var(--fs-4);
    line-height: 1.3;
  }

  .aei {
    position: absolute;
    right: var(--mb-6);
    width: 400px;
    padding: var(--mb-2);
    row-gap: var(--mb-1);
    border-radius: 20px;
  }

  /*========== A-STORY SECTION ==========*/
  .as-container {
    width: 100%;
    background-color: rgba(250, 250, 250, 0.9);
    overflow: hidden;
    padding: var(--mb-8);
    align-items: flex-start;
    justify-content: space-between;
  }

  /*========== A-TEAM SECTION ==========*/
  .ateam {
    width: 100%;
    background-color: var(--white);
    background-image: url(/assets/img/bckg/b-8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .at-container {
    width: 100%;
    padding: var(--mb-8);
    background-color: rgba(250, 250, 250, 0.9);
    row-gap: var(--mb-6);
  }

  .at-group {
    width: 100%;
    height: 650px;
  }

  /* ++++++++++++ ========== [SERVICES PAGE] ========== ++++++++++++*/
  .ser-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== SERO SECTION ==========*/
  .sr-title {
    width: 100%;
    padding: var(--mb-4) var(--mb-6);
    padding-top: 10rem;
    row-gap: var(--mb-2);
  }

  .sr-title h1 {
    font-size: var(--fs-4-5);
    font-weight: 500;
    line-height: 1.3;
  }

  /*========== S-SERVICES SECTION ==========*/

  .ss-container {
    width: 100%;
    padding: var(--mb-8);
    background-color: rgba(250, 250, 250, 0.8);
    row-gap: var(--mb-4);
  }
}
