@font-face {
  font-family: 'Bebas';
  src: url('Fonts/Bebas.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Reggae';
  src: url('Fonts/Reggae-one.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('Fonts/Roboto.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nova';
  src: url('Fonts/Nova-round.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Elite';
  src: url('Fonts/Special-elite.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --white-color: #FFFFFF;
  --color-1: #fdfdfd; /* white */
  --color-2: #fceeee;
  --color-3: #f9dcdd;
  --color-4: #f6cbcc;
  --color-5: #f3babc;
  --color-6: #f0a8ab;
  --color-7: #ed979a;
  --color-8: #ea8689;
  --color-9: #e77478;
  --color-10: #e36367;
  --color-11: #e05256;
  --color-12: #dd4045;
  --color-13: #da2f35;
  --color-14: #d0252a;
  --color-15: #bf2227;
  --color-16: #ad1f23;
  --color-17: #951a1f; /* main */
  --color-18: #8b181c;
  --color-19: #791519;
  --color-20: #681215;
  --color-21: #450c0e;
  --color-22: #450c0e;
  --color-23: #34090b;
  --color-24: #110304;
  --color-25: #110304;
  --black-color:  #000000; /* black */
  --main-rgba: rgba(149, 26, 31, 1);
  --text-hex: #FAEBD7;
  --text-rgba: rgba(250, 235, 215, 1);
  --border-radius: 4px;
}

::-webkit-scrollbar {
  width: 5px;
  height: auto;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-color);
}

::-webkit-scrollbar-track {
  background-color: var(--white-color);
  border-radius: 0px;
}

*{
  max-width: 100vw;
  height: auto;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 2.2;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--text-hex);
  background: #fcf8f8;
}

h1 {
  font-family: 'Bebas', sans-serif;
  font-weight: 400;
  color: var(--color-1);
}

h2,
h3 {
  font-family: 'Elite', sans-serif;
  font-weight: 500;
  color: var(--color-1);
}

h4,
h5,
h6 {
  font-family: 'Nova', sans-serif;
  font-weight: 600;
  font-size: 100%;
  text-transform: capitalize;
  color: var(--color-1);
}

input, textarea, select {
  font-size: 100%;
  width: 100%;
  max-height: 180px;
  resize: vertical;
  margin: 10px 0px;
  padding: 14px 12px;
  background: transparent;
  color: var(--color-21);
  border: 1px solid #aaa;
  border-radius: var(--border-radius);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  outline: none;
}

textarea {
  min-height: 120px;
}

input:read-only,
textarea:read-only {
  border-color: rgba(0, 128, 0, 0.2);
  background: rgba(0, 128, 0, 0.1);
  color: var(--color-15);
  cursor: not-allowed;
  pointer-events: none;
}

input:disabled,
textarea:disabled {
  border-color: transparent;
  background: rgba(0, 0, 0, 0.25);
  color: var(--color-2);
  cursor: not-allowed;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--black-color);
/*  box-shadow: 0 0 4px 2px rgba(140, 147, 140, 0.6);*/
  outline: none;
  transition: box-shadow 0.3s ease;
}

::placeholder{
  color: #777;
  font-size: 90%;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
  margin: 10px auto;
  padding: 8px 12px;
  border: 1px solid #aaa;
  border-radius: var(--border-radius);
  background: var(--color-1);
  cursor: pointer;
  font-size: 95%;
  color: var(--color-22);
  display: flex;
  flex-direction: column;
}

.custom-select-trigger::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 70%;
  pointer-events: none;
  color: var(--color-13);
}

.custom-options {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  font-size: 97%;
  background: var(--color-1);
  border: 1px solid #aaa;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow-y: auto;
  z-index: 100;
}

.custom-option {
  padding: 12px 16px;
  cursor: pointer;
  color: var(--color-22);
  user-select: none;
}

.custom-option:hover,
.custom-option.selected {
  background: rgba(149, 26, 31, 0.08);
  color: var(--color-20);
}

button {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 100%;
  font-weight: 500;
  margin: 0;
  padding: 14px 25px;
  color: var(--color-1);
  background: linear-gradient(-180deg, var(--color-18), var(--color-10));
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius, 4px);
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, background 0.8s ease-in-out, color 0.3s ease-in-out;
}

button i {
  font-size: 110%;
  margin-left: 5px;
  color: var(--color-1);
  transition: color 0.4s ease-in-out;
}

button:hover {
  background: linear-gradient(45deg, var(--color-15), var(--color-15));
}

button:disabled {
  background: var(--color-10);
  color: var(--color-1);
  cursor: not-allowed;
  transition: background 0.4s ease-in-out, color 0.4s ease-in-out;
  opacity: 0.5;
}

/* Button spining animation */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

p a {
  font-size: inherit;
  text-decoration: underline;
  color: greenyellow;
  word-spacing: 3px;
  cursor: pointer;
}

span, a {
  font-size: inherit;
  font-weight: inherit;
}

#body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  scroll-behavior: smooth;
}

/*START OF HEADER*/

#header {
  position: sticky;
  width: 100%;
  height: auto;
  top: 0;
  margin: 0;
  padding: 0;
  background: var(--color-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari */
  z-index: 2147483595;
}

header {
  width: 100%;
  display: block;
  border: none;
  transition: box-shadow 0.3s ease-in-out;
}

#header-ad {
  width: 100%;
  background-color: var(--color-17);
  text-align: center;
  justify-content: center;
  padding: 0;
  display: flex;
}

#header-ad marquee {
  font-size: 75%;
  line-height: 2.4;
  font-weight: 500;
  font-style: normal;
  font-family: Arial;
  color: var(--color-1);
  word-spacing: 1px;
}

#header-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0px 10%;
}

#header-main #logo {
  text-decoration: none;
  height: 65px;
  width: auto;
  margin: auto 0px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

#header-main #logo img {
  display: block;
  height: 100%;
}

#header-main #logo:hover {
  transform: scale(0.95);
}

#header-main #desktop-nav {
  display: flex;
  margin-left: auto;
}

#header-main #desktop-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  list-style: none;
  padding: 0 20px;
  margin: 0;
  overflow: hidden;
  gap: 50px;
  border: none;
}

#header-main #desktop-nav ul li {
  display: flex;
  align-items: center;
  height: 100%;
}

#header-main #desktop-nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 100%;
  font-weight: 500;
  color: var(--color-19);
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.3s ease;
  background: transparent;
  cursor: pointer;
}

#header-main #desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 80%;
  height: 2px;
  background-color: var(--color-15);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  transform-origin: center center;
  transform-box: fill-box;
  /* Center the underline using translateX */
  transform: translateX(-50%) scaleX(0);
}

#header-main #desktop-nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

#header-main #hambuger-icon {
  display: none;
  width: auto;
  height: 28px;
  margin: 0;
  padding: 0;
}

#header-main #mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: flex-end;
  transition: background 0.4s ease-in-out;
}

#header-main #mobile-nav .the-mobile-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: white;
  overflow: hidden;
}

/* Slide-in Animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Slide-out Animation */
@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

#header-main #mobile-nav.active .the-mobile-nav {
  animation: slideInRight 0.4s ease-out forwards;
}

#header-main #mobile-nav.closing .the-mobile-nav {
  animation: slideOutRight 0.4s ease-out forwards;
}

.the-mobile-nav .menu-top {
  position: sticky;
  width: 100%;
  top: 0;
  background: var(--color-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari */
  z-index: 999;
  margin: 0;
  padding: 0px 20px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-bottom: 1px solid antiquewhite;
}

.the-mobile-nav .menu-center {
  flex: 1;
  overflow-y: scroll;
  padding: 10px 4%;
  padding-left: 4%;
  background: transparent;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}
.menu-center::-webkit-scrollbar { width: 3px; height: 3px; background: transparent; }
.menu-center::-webkit-scrollbar-track { background-color: transparent; border-radius: 25px; }
.menu-center::-webkit-scrollbar-thumb { background-color: var(--color-8); border-radius: 25px; border: none; }

.the-mobile-nav .menu-bottom {
  width: 100%;
  background: var(--color-2);
  z-index: 999;
  margin: 0;
  padding: 5px 10px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 3px 0px, rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.the-mobile-nav .menu-top a {
  text-decoration: none;
  max-width: 85px;
  height: auto;
  margin: auto 0px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.the-mobile-nav .menu-top a img  {
  display: block;
  width: 100%;
  height: auto;
}

.the-mobile-nav .menu-top span {
  font-size: 180%;
  color: var(--color-8);
  cursor: pointer;
}

.menu-center div {
  display: flex;
  margin: 18px 0px;
  align-items: center;
  gap: 2%;
}

.menu-center div .icon {
  flex: 0 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 105%;
  color: var(--white-color);
  background: var(--color-8);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 4px;
}

.menu-center div a {
  text-decoration: none;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #e9e9e9;
}

.menu-center div a small {
  font-size: 90%;
  font-weight: 500;
  text-transform: capitalize;
  color: #333;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-center div a i {
  font-size: 95%;
  color: #ccc;
  opacity: 0.85;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.menu-bottom legend {
  display: block;
  font-size: 80%;
  color: #444;
  text-align: center;
}

.menu-bottom div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  margin: 1px auto;
}

.menu-bottom div a {
  flex: 1 1 0;
  text-align: center;
  padding: 5px 0;
  background: linear-gradient(-180deg, var(--color-18), var(--color-10));
  color: var(--color-1);
  text-decoration: none;
  font-size: 75%;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-17);
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

.menu-bottom div a:active {
  background: var(--color-1);
  color: var(--color-17);
  border-color: var(--color-17);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: scale(0.97);
}

.menu-bottom small {
  display: block;
  margin-top: 10px;
  font-size: 70%;
  text-align: center;
  color: #666;
}

@media only screen and (max-width: 1200px) {
  #header-main{
    padding: 0 20px;
  }
}

@media (min-width: 900px) {
  #header-main #mobile-nav {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  #header-main #logo {
    height: 55px;
  }
  #header-main #desktop-nav {
    display: none;
  }
  #header-main #hambuger-icon {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  #header-main{
    padding: 0 10px;
  }
}



/*END OF HEADER*/

/*START OF TOP BUTTON*/

#gotoTop {
  position: fixed;
  display: none;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  color: var(--color-13);
  background-color: var(--color-2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* For Safari */
  border-radius: var(--border-radius);
  font-size: 150%;
  cursor: pointer;
  z-index: 9999998;
  transition: background-color 0.3s, border-color 0.3s;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-color: var(--color-4);
}

#gotoTop:hover {
  background-color: var(--color-5);
}

#gotoTop i {
  pointer-events: none;
}


@media only screen and (max-width: 1200px) {
  #gotoTop{
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 10px;
    border-radius: 0;
  }
}

@media only screen and (max-width: 700px) {
  #gotoTop{
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 10px;
    border-radius: var(--border-radius);
  }
}

@media only screen and (max-width: 576px) {
  #gotoTop{
    width: 48px;
    height: 48px;
    bottom: 30px;
    right: 10px;
    border-radius: 50%;
    color: var(--color-10);
  }
}

/*END OF TOP BUTTON*/

/* START OF CONTACT FLOAT BUTTON */
#contact-float {
  position: fixed;
  display: flex;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #25D366;
  color: white;
  font-size: 170%;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #1ebe57;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

#contact-float i {
  pointer-events: none;
}

#contact-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

@media only screen and (max-width: 1200px) {
  #contact-float {
    width: 55px;
    height: 55px;
    bottom: 35px;
    left: 10px;
  }
}

@media only screen and (max-width: 576px) {
  #contact-float {
    width: 48px;
    height: 48px;
    bottom: 30px;
    left: 10px;
  }
}

/* END OF CONTACT FLOAT BUTTON */


/*START OF FOOTER*/
footer {
  position: relative;
  z-index: 999;
  bottom: 0;
  width: 100%;
  padding-top: 50px;
  background: #fcf8f8;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border-top: 1px solid #ddd;
}

.footer {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.footer h3 {
  color: var(--white-color);
  font-size: 100%;
  font-weight: normal;
  text-transform: capitalize;
  padding-left: 10px;
  padding-bottom: 3px;
}

.footer p, .footer li a, .footer li span {
  font-size: 90%;
  color: #222;
}

.footer .footer-hr {
  max-width: 100%;
  margin: 15px auto;
  border: 0;
  border-top: 1px solid #ddd;
}

.footer-top {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  row-gap: 30px;
  column-gap: 50px;
}

.footer-about-other {
  display: flex;
  width: 100%;
  max-width: 48%;
  flex-direction: column;
  align-items: flex-start;
}

#footer-logo {
  display: block;
  width: 80px;
  margin-bottom: 5px;
}

#footer-logo img {
  width: 100%;
  display: block;
}

.footer-about-other h3 {
  font-size: 90%;
  font-style: italic;
  color: var(--color-17);
}

.footer-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-ul li {
  display: flex;
  align-items: center;
  color: #333;
}

.footer-ul li i {
  flex: 0 0 30px;
  height: 38px;
  display: flex;
  margin: auto 0;
  color: var(--color-17);
  align-items: center;
  justify-content: center;
}

.footer-ul li a,
.footer-ul li small {
  display: block;
  font-size: 80%;
  font-style: italic;
  padding-left: 10px;
  padding-right: 5px;
  border-left: 2px solid var(--color-10);
  color: inherit;
}

.footer-ul li a:hover,
.footer-ul li small:hover {
  background: rgba(149, 26, 31, 0.1);
  transition: 0.3s ease;
}

.footer-ul li a {
  text-decoration: none;
}

.footer-ul li a span {
  display: block;
  font-weight: bold;
}






.contact-fill {
  text-decoration: underline;
  cursor: pointer;
}

.contact-fill:hover {
  font-style: normal;
  color: blue;
  text-decoration: none;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto 0px;
  gap: 50px;
}

.footer-top-right ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}

.footer-top-right ul li {
  line-height: 1.4;
  padding: 0 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.footer-top-right ul li:not(:last-child) {
  border-right: 2px solid var(--color-10);
}

.footer-top-right ul li a {
  text-decoration: none;
  text-transform: capitalize;
  color: #222;
  font-size: 90%;
  font-weight: 500;
  cursor: pointer;
}

.footer-top-right ul li a:hover {
  color: blue;
  text-decoration: underline;
}

.newsletter-social {
  width: 100%;
}

.newsletter-social h3 {
  font-size: 95%;
  line-height: 1.4;
  color: var(--color-17);
}

.newsletter-box {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-15);
  border-radius: 50px;
  background: rgba(149, 26, 31, 0.025);
  cursor: pointer;
  transition: border-color 0.3s ease;
  z-index: 1;
  padding: 0;
}

.newsletter-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 95%;
  color: black;
  pointer-events: none;
  margin: 0;
  padding: 14px;
  flex-grow: 1;
  border-radius: 50px 0 0 50px;
}

.newsletter-box input::placeholder {
  color: var(--color-19);
  font-size: 95%;
  padding-left: 8px;
}

.newsletter-box span {
  padding: 0 28px;
  font-size: 90%;
  font-weight: bold;
  background: var(--color-17);
  color: var(--color-1);
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: -4px 0 10px rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.newsletter-box:hover {
  border-color: var(--color-3);
}

.sm-part-socio {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  gap: 40px;
}

.sm-part-socio a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 130%;
}

.sm-part-socio a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-copyright p {
  font-size: 77%;
  padding: 20px 0;
  text-align: center;
}


@media only screen and (max-width: 1250px){
  footer {
    padding: 30px;
    padding-top: 50px;
  }
}

@media only screen and (max-width: 935px){
  .footer-top-right {
    margin: auto;
    margin-top: 30px;
  }
  .footer-about-other {
    display: flex;
    width: 100%;
    max-width: 95%;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 576px) {
  footer {
    padding: 15px;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 420px){
  .footer-hr {
    margin: 0px 7px;
  }
  .footer-top-right ul li {
    padding: 0 12px;
  }
}

/*END OF FOOTER*/

/*START OF PRELOADER AND UNIVERSAL POPUP*/
#main-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
  z-index: 2147483599;
}

#main-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader { 
  width: 50px; 
  height: 50px; 
  border: 2px solid transparent; 
  border-top: 2px solid var(--color-15); 
  border-radius: 50%; 
  animation: spin 0.7s linear infinite; 
} 

@keyframes spin { 
  0% { 
    transform: rotate(0deg); 
  } 
  100% {
   transform: rotate(360deg); 
 } 
}

#universal-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483647;
  background: rgba(0, 0, 0, 0.77);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border: none;
  transform: scale(0.8);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Default Animation (Desktop & Tablets) */
#universal-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  animation: fadeInUniversalpopup 0.5s ease forwards;
  overflow: hidden;
  overflow-y: auto;
}

#universal-popup:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Desktop Fade + Scale Animation */
@keyframes fadeInUniversalpopup {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.95);
    filter: blur(8px);
  }
  70% {
    opacity: 1;
    transform: translateY(10px) scale(1.02);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ===== MOBILE ANIMATION ===== */
@media screen and (max-width: 576px) {
  #universal-popup {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
  }

  /* OPENING ANIMATION */
  #universal-popup.active {
    animation: slideUpUniversalpopup 0.5s ease forwards;
    pointer-events: all;
  }

  @keyframes slideUpUniversalpopup {
    0% {
      transform: translateY(100%);
      opacity: 0;
      visibility: visible;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  }

  /* CLOSING ANIMATION */
  #universal-popup:not(.active) {
    animation: slideDownUniversalpopup 0.5s ease forwards;
  }

  @keyframes slideDownUniversalpopup {
    0% {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    100% {
      transform: translateY(100%);
      opacity: 0;
      visibility: hidden;
    }
  }
}

#uni-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  min-height: 50dvh;
  max-height: 85dvh;
  background: var(--color-1);
  padding: 0;
  border: none;
  border-radius: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: transform 0.3s, max-width 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.28) 6px 2px 16px 0px, rgba(0, 0, 0, 0.28) -6px -2px 16px 0px;
  scrollbar-width: none;
}

#uni-popup::-webkit-scrollbar {
  display: none;
}

#uni-popup .topper {
  position: sticky;
  width: 100%;
  top: 0;
  padding: 5px 10px;
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-13);
  border: none;
  border-bottom: 1px solid var(--color-5);
  box-shadow: rgba(255, 255, 255, 0.45) 0px 25px 30px -20px;
  z-index: 1000;
}

#uni-popup .topper h6 {
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--color-1);
  margin: auto 0px;
}

#uni-popup .topper span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

#uni-popup .topper span:hover {
  background: var(--color-8);
}

#uni-popup .topper span:hover i {
  color: var(--color-17);
} 

#uni-popup .topper span i {
  font-size: 130%;
  color: var(--color-5);
  line-height: 1;
}

#the-contents {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0px;
  padding-bottom: 50px;
  background: var(--white-color);
  color: #222;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#the-contents .loading-text {
  text-align: center;
  padding: 20px;
  font-size: 80%;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 100px;
}

#the-contents .loading-text i {
  font-size: 150%;
}

#the-contents .resource-error {
  text-align: center;
  padding: 20px;
  font-size: 80%;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 100px;
}

#the-contents .resource-error i {
  font-size: 250%;
  color: #e74c3c;
}

#the-contents::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 600px) {
  #uni-popup {
    width: 98%;
    min-width: 90%;
  }
}

@media screen and (max-width: 480px) {
  #universal-popup {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    bottom: env(safe-area-inset-bottom, 0);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2147483647;
    box-sizing: border-box;
  }
  #uni-popup {
    position: fixed;
    max-height: 100dvh;
    left: 50%;
    bottom: 0;
    top: 2.6dvh;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    background: var(--white-color);
    padding: 0;
    box-shadow: 
      0px -2px 16px rgba(0, 0, 0, 0.08),
      0px -4px 32px rgba(0, 0, 0, 0.12),
      0px -8px 64px rgba(0, 0, 0, 0.15);
    border: none;
    border-top: 1px solid #ddd;
    border-radius: 22px 22px 0 0;
    overflow: auto;
  }
  #uni-popup .topper {
    padding: 10px 5%;
    padding-right: 8px;
    background-color: var(--white-color);
    border: none;
    box-shadow: rgba(27, 31, 35, 0.06) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
  }
  #uni-popup .topper h6 {
    font-size: 105%;
    color: var(--black-color);
  }
  #uni-popup .topper span {
    background: transparent;
  }
  #uni-popup .topper span i {
    color: #aaa;
  }
  #the-contents {
    padding: 0;
    padding-bottom: 80px;
  }
}
/*END OF PRELOADER AND UNIVERSAL POPUP*/

/* START OF TOOLTIP STYLES */
[tooltip] { position: relative; cursor: pointer; }
[tooltip]::before, [tooltip]::after { position: absolute; display: none; opacity: 0; pointer-events: none; user-select: none; font-size: 0.88rem; line-height: 2.0; text-transform: none; z-index: 1000; }
[tooltip]::before { content: ''; border: 4px solid transparent; z-index: 1001; }
[tooltip]::after { content: attr(tooltip); min-width: 50px; max-width: 320px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 5px 10px; border-radius: 2px; background: #333 !important; color: #fff; text-align: center; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35); }
[tooltip]:hover::before, [tooltip]:hover::after { display: block; }
[tooltip='']::before, [tooltip='']::after { display: none !important; }
[tooltip]:not([flow])::before, [tooltip][flow^="up"]::before { bottom: calc(100% + 0px); border-bottom: 0; border-top-color: #333; left: 50%; transform: translateX(-50%); }
[tooltip]:not([flow])::after, [tooltip][flow^="up"]::after { bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%); }
[tooltip][flow^="down"]::before { top: calc(100% + 0px); border-top: 0; border-bottom-color: #333; left: 50%; transform: translateX(-50%); }
[tooltip][flow^="down"]::after { top: calc(100% + 4px); left: 50%; transform: translateX(-50%); }
[tooltip][flow^="left"]::before { top: 50%; left: -5px; border-right: 0; border-left-color: #333; transform: translateY(-50%); }
[tooltip][flow^="left"]::after { top: 50%; right: calc(100% + 5px); transform: translateY(-50%); }
[tooltip][flow^="right"]::before { top: 50%; right: -5px; border-left: 0; border-right-color: #333; transform: translateY(-50%); }
[tooltip][flow^="right"]::after { top: 50%; left: calc(100% + 5px); transform: translateY(-50%); }
@keyframes tooltip-fade-vert { 0% { opacity: 0; transform: translateX(-50%) translateY(-5px); } 100% { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes tooltip-fade-horz { 0% { opacity: 0; transform: translateY(-50%) translateX(-5px); } 100% { opacity: 1; transform: translateY(-50%) translateX(0); } }
[tooltip]:not([flow]):hover::before, [tooltip]:not([flow]):hover::after, [tooltip][flow^="up"]:hover::before, [tooltip][flow^="up"]:hover::after, [tooltip][flow^="down"]:hover::before, [tooltip][flow^="down"]:hover::after { animation: tooltip-fade-vert 300ms ease-out forwards; }
[tooltip][flow^="left"]:hover::before, [tooltip][flow^="left"]:hover::after, [tooltip][flow^="right"]:hover::before, [tooltip][flow^="right"]:hover::after { animation: tooltip-fade-horz 300ms ease-out forwards; }
/* END OF TOOLTIP STYLES */

@keyframes revealCenter {
  from {
    opacity: 0;
    transform: scale(0.8);
    clip-path: inset(50% 50% 50% 50%);
  }
  to {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }
}

.animate-me {
  opacity: 0;
}

.animate-me.show {
  animation: revealCenter 0.8s ease-out forwards;
}


/*START OF TOGGLE CHECKBOX*/
.remember-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 80%;
}

.remember-row .remember-label {
  color: #222;
}

.toggle-container {
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 20px;
}

.toggle-container input {
  display: none;
}

.toggle-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #aaa;
  border-radius: 30px;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
  background-color: var(--white-color);
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-container input:checked + .toggle-slider {
  background-color: royalblue;
}

.toggle-container input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

/*END OF TOGGLE CHECKBOX*/

.review-carousel {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: #f9f9f9;
}

.review-carousel h6 {
  width: fit-content;
  font-size: 82%;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 2px 25px;
  margin: 5px auto;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-1);
  background: var(--color-17);
  border-radius: var(--border-radius);
}

.review-carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll linear infinite;
  will-change: transform; 
  transform: translate3d(0, 0, 0);
}

.each-review {
  display: block;
  flex: 0 0 350px;
  height: auto;
  max-height: 350px;
  margin: 0 5px;
  padding: 0;
  color: #555;
  background: transparent;
  backface-visibility: hidden; 
  transform: translateZ(0); 
}

.each-review figure:hover {
  background: var(--white-color);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.each-review figure:hover .arrow {
  border-top-color: var(--white-color);
}

.each-review figure {
  position: relative;
  display: block;
  width: 100%;
  max-width: 350px;
  font-size: 80%;
  font-style: italic;
  padding: 20px;
  background: #ebebeb;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: visible;
}

.each-review figure:before,
.each-review figure:after {
  font-family: 'FontAwesome';
  font-style: normal;
  position: absolute;
  font-size: 80%;
  opacity: 0.5;
}

.each-review figure:before {
  content: "\201C";
  top: 5px;
  left: 5px;
}

.each-review figure:after {
  content: "\201D";
  right: 5px;
  bottom: 5px;
}

.each-review figure .arrow {
  width: 0;
  height: 0;
  border-right: 1px solid #ddd;
  border-left: 25px solid transparent;
  border-top: 25px solid #ebebeb;
  position: absolute;
  bottom: -25px;
  left: 20px;
  transition: all 0.3s ease;
}

.each-review legend {
  width: 100%;
  margin: 0;
  margin-top: 18px;
  margin-left: 30px;
  font-size: 90%;
  color: var(--color-17);
}

.feedback-message {
  display: block;
  margin: 0px;
  margin-bottom: 10px;
  line-height: 2.2;
  padding: 2px 5px;
  padding-left: 8px;
  font-size: 95%;
  text-align: left;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.feedback-message .fa-spinner {
  font-size: 110%;
  color: #222;
  margin-left: 3px;
}

.password-div {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-div input {
  flex: 1;
  padding: 12px;
  padding-right: 58px;
}

.password-div span#showhide {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 85%;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s ease;
}

.password-div span#showhide:hover {
  opacity: 0.7;
}

.password-instruction {
  display: block;
  width: 98%;
  margin: 0px auto;
  margin-top: 4px;
  font-size: 78%;
  color: #222;
}

#auth-div {
  text-align: center;
  max-width: 400px;
  height: auto;
  min-height: 200px;
  margin: 0 auto;
  margin-bottom: 8%;
  padding: 0;
}

#auth-div #toggleAuthDivs {
  font-size: 95%;
  margin: 0;
  padding: 8px 25px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white-color);
  cursor: pointer;
}

#auth-div #toggleAuthDivs:hover {
  color: var(--white-color);
  background: var(--black-color);
  text-decoration: underline;
}

.dual-aas {
  width: 99%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
  padding: 8px;
  font-size: 90%;
}

#authDivBack {
  color: var(--white-color);
  text-decoration: underline;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
  border-radius: var(--border-radius);
}

.resend-code-link {
  user-select: none;
  text-decoration: underline;
  padding: 2px 4px;
  border-radius: var(--border-radius);
}

.resend-code-link i {
  font-size: 120%;
  margin-left: 2px;
  color: blue;
}

.resend-code-link[data-disabled="true"] {
  color: #999999;
  cursor: not-allowed;
  text-decoration: none;
}

.resend-code-link[data-disabled="false"] {
  color: var(--white-color);
  cursor: pointer;
}

#authDivBack:hover, .resend-code-link[data-disabled="false"]:hover {
  background: rgba(9, 105, 218, 0.50);
  color: #FFFFFF;
  text-decoration: none;
}

.auth-preloader {
  display: block;
  margin: 80px auto;
  margin-top: 100px;
  width: 40px;
}

.inside-auth-div {
  width: 100%;
  text-align: left;
  margin: 10px auto;
  margin-top: 25%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

.inside-auth-div img {
  display: block;
  width: 50px;
  margin: 0px auto;
}

.inside-auth-div .auth-logo {
  text-decoration: none;
  display: block;
  width: 85px;
  margin: 0 auto;
  text-align: center;
}

.inside-auth-div .auth-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.inside-auth-div h3 {
  font-size: 130%;
  font-weight: normal;
  color: #333;
  text-align: center;
}

.inside-auth-div h6 {
  margin: 5px auto;
  color: #000;
  text-align: center;
}

.inside-auth-div input {
  font-size: 100%;
  width: 100%;
  max-height: 170px;
  resize: vertical;
  margin: 10px 0px;
  padding: 12px;
  background: transparent;
  color: var(--black-color);
  border: 1px solid #999;
  border-radius: var(--border-radius);
  -webkit-transition: 0.1s;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 3px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.inside-auth-div input:focus {
  border-color: var(--main-color);
}

.inside-auth-div input:disabled {
  background: rgba(0, 0, 0, 0.03);
  color: #999;
  cursor: not-allowed;
}

.inside-auth-div input::placeholder,
.inside-auth-div textarea::placeholder {
  color: #666;
  font-size: 90%;
}

.inside-auth-div .countdown-message {
  text-align: center;
  margin-top: 10px;
  font-size: 75%;
  color: #222;
}

.inside-auth-div .countdown-message span {
  color: royalblue;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 105%;
}

.inside-auth-div .fp-rp {
  margin-left: 2px;
  font-size: 85%;
  color: #222;
  cursor: pointer;
  text-decoration: underline;
}

.inside-auth-div .fp-rp:hover {
  color: blue;
  text-decoration: none;
}

.inside-auth-div button {
  width: 100%;
  margin: 0px auto;
  margin-top: 25px;
}

.legend-icon {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  padding: 8px 12px;
  font-size: 105%;
  color: #222;
  background-color: #f0f0f0;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.legend-icon i {
  color: inherit;
}

.legend-icon:hover {
  background-color: red;
  color: #fff;
}

.intro-layer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 60vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.intro-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.02);
  z-index: 0;
}

.intro-text {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 50px auto;
  margin-bottom: 0;
  padding: 20px;
  background: rgba(149, 26, 31, 0.03);
  border: 1px solid rgba(253, 253, 253, 0.2);
  border-radius: 4px 4px 0px 0px;
  backdrop-filter: blur(10px); /* The actual blur */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.intro-text h1 {
  position: relative;
  text-align: left;
  font-size: 250%;
  line-height: 1.8;
  word-spacing: 1px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-1);
  user-select: none;
  font-weight: bold;
}

.intro-text h1 span {
  position: absolute;
  font-family: monospace;
  letter-spacing: 1px;
  margin-left: 10px;
  background: var(--white-color);
  padding: 0px 12px;
  border-radius: var(--border-radius);
  color: transparent;
  -webkit-text-stroke: 0.7px var(--color-17);
  animation: display-text 12s ease-in-out infinite;
  animation-delay: calc(-4s * var(--i));
  box-shadow: rgba(0, 0, 0, 0.17) 0px 1px 2px, 
              rgba(0, 0, 0, 0.17) 0px 2px 4px, 
              rgba(0, 0, 0, 0.17) 0px 4px 8px, 
              rgba(0, 0, 0, 0.17) 0px 8px 16px, 
              rgba(0, 0, 0, 0.17) 0px 16px 32px, 
              rgba(0, 0, 0, 0.17) 0px 32px 64px;
  overflow: hidden;
}

@keyframes display-text {
  0%, 24.9%, 100% {
    opacity: 0;
  }
  5%, 20% {
    opacity: 1;
  }
}

.intro-text h1 span::before {
  content: attr(data-text);
  position: absolute;
  width: 0%;
  border-right: 3px solid var(--color-17);
  color: var(--color-17);
  white-space: nowrap;
  overflow: hidden;
  animation: fill-text 4s ease-in-out infinite;
  animation-delay: calc(-4s * var(--i));
}

@keyframes fill-text {
  0%, 10% {
    width: 0%;
  }
  40%, 80% {
    width: 100%;
  }
  90%, 100% {
    width: 0%;
  }
}


.intro-text p {
  position: relative;
  text-align: left;
  margin: 20px 0;
  font-size: 100%;
  color: var(--white-color);
}

.osidiv {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0px auto;
  margin-bottom: 150px;
  padding: 10px;
  line-height: 1.4;
  color: var(--color-25);
  background: rgba(253, 253, 253, 1.0);
  border-radius: 0px 0px 4px 4px;
}

.osidiv h1 {
  font-size: 120%;
  word-spacing: 8px;
  color: var(--color-17);
}

.osidiv ul {
  display: flex;
  list-style: none;
  margin: 10px auto 0;
  padding: 0;
  justify-content: center;
  gap: 5px 40px;
  flex-wrap: wrap;
}

.osidiv ul li {
  font-size: 90%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.osidiv ul li span {
  font-size: 150%;
  color: var(--color-17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.w2talk {
  display: none;
  width: 100%;
  margin: 0px auto;
  margin-top: 20px;
  text-align: center;
  color: var(--color-17);
  font-size: 95%;
}

.w2talk .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 5px;
  padding-right: 12px;
  padding-left: 0;
  color: var(--color-17);
  background: var(--color-2);
  border: 1px solid var(--color-8);
  border-radius: 50px;
  height: 32px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.w2talk .phone-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1/1;
  color: var(--color-1);
  background: var(--color-17);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.w2talk .phone-link:hover {
  transform: scale(0.95);
}

.w2talk .phone-link:hover i {
  transform: rotate(360deg);
}


.action-btns {
  display: flex;
  gap: 20px;
}

.action-btns a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: fit-content;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.8;
  text-transform: capitalize;
  padding: 10px 30px;
  border-radius: 4px;
  color: var(--color-1);
  background: linear-gradient(-180deg, var(--color-18), var(--color-10));
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border: 1px solid;
  border-color: transparent;
}

.action-btns a:last-child {
  background: transparent;
  color: var(--color-1);
  border-color: var(--color-1);
}

.action-btns a:hover {
  background: transparent;
  box-shadow:none;
  border-color: transparent;
}
.action-btns a:before,
.action-btns a:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: var(--color-17);
  transition:400ms ease all;
}
.action-btns a:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.action-btns a:hover:before,
.action-btns a:hover:after{
  width:100%;
  transition:800ms ease all;
}

.intro-lapping-layer {
  width: 99%;
  max-width: 1200px;
  height: auto;
  margin: 0px auto;
  margin-top: -60px; /* Negative margin to pull upward */
  background: transparent;
  border: none;
  z-index: 1;
}

.twin-div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
}

.in-touch {
  width: 100%;
  min-width: 280px;
  max-width: 300px;
  padding: 0;
  background: var(--color-18);
  position: sticky;
  top: 110px;
  align-self: flex-start;
  z-index: 10;
  border: 1px solid var(--color-18);
  border-radius: 4px 4px 0px 0px;
  overflow: visible;
}

.in-touch-twin {
  flex: 1;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 0;
  font-size: 95%;
  line-height: 2.0;
  background: transparent;
  border: none;
}

.some-features {
  width: 100%;
  min-height: 400px;
  height: auto;
  margin: 10px auto;
  margin-top: 0;
  padding: 1%;
  padding-top: 0px;
  background: var(--color-1);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.photo-div {
  display: flex;
  margin: 2%;
  align-items: center;
  text-align: center;
  border: none;
}

.photo-div img {
  width: auto;
  height: 70px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
}

.photo-div h3 {
  font-size: 100%;
  line-height: 1.6;
  text-align: center;
  margin: auto;
}

.in-touch-complimentary {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 5px;
  background: var(--color-1);
  border: none;
  border-radius: 16px 16px 0 0;
  opacity: 1;
  overflow: hidden;
}

.contact-list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 90%;
  margin: 20px auto;
  padding: 2px 0px;
  line-height: 1.4;
  color: var(--color-21);
  background: transparent;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.contact-list:hover {
  background: rgba(149, 26, 31, 0.1);
}

.contact-list:hover i {
  box-shadow: none; 
}

.contact-list i {
  flex: 0 0 38px;
  height: 38px;
  display: flex;
  margin: auto 0px;
  align-items: center;
  justify-content: center;
  font-size: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px, 
              rgba(0, 0, 0, 0.1) 0px 1px 3px 1px;
  border-radius: 4px;
}

.contact-list div {
  flex: 1 1 auto;
  display: block;
  margin: auto 0px;
}

.contact-list div legend {
  font-size: 75%;
  font-weight: bold;
}

.contact-list div span {
  font-size: 80%;
  color: var(--color-22);
}

.in-touch-social {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px auto 0 auto;
  padding: 12px 0px;
  flex-wrap: wrap;
  border-top: 1px dashed var(--color-8);
}

.in-touch-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  color: var(--color-1);
  font-size: 120%;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.in-touch-social a:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp { background-color: #25D366; }
.facebook { background-color: #3b5998; }
.linkedin { background-color: #0077b5; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.telegram { background-color: #0088cc; }
.github { background-color: #333; }
.twitter { background-color: #1DA1F2; }

@media only screen and (max-width: 576px) {
  .twin-div {
    display: flex;
    flex-direction: column;
  }

  .twin-div > :first-child {
    order: 2;
  }

  .twin-div > :last-child {
    order: 1;
  }

  .in-touch {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
    top: auto;
    background: var(--color-18);
    margin-bottom: 5px;
    overflow: hidden;
    border: none;
    border-radius: 16px 16px 0px 0px;
  }
  .photo-div img {
    height: 60px;
  }

  .in-touch-twin {
    flex: 1;
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .some-features {
    width: 100%;
    min-height: 200px;
    height: auto;
    margin: 5px auto;
    padding: 10px;
  }
}

.some-features h6 {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-15);
  font-size: 92%;
  text-transform: capitalize;
  margin: 20px auto;
  position: relative;
}

.some-features h6::before,
.some-features h6::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--color-10);
  margin: 0 15px;
}

.features-div {
  column-count: 3;
  column-gap: 20px;
}

.each-features {
  position: relative;
  width: 100%;
  margin: 0px auto;
  margin-top: 10px;
  padding: 0px;
  padding-top: 12px;
  background: transparent;
  overflow: hidden;
  display: block;
}

.each-features i {
  position: absolute;
  top: 0px;
  left: 15px;
  width: 30px;
  height: 30px;
  font-size: 100%;
  color: var(--color-1);
  background: var(--color-12);
  border-radius: var(--border-radius);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.each-features > div {
  padding: 15px;
  padding-top: 30px;
  position: relative;
  z-index: 1;
  background: #f1f1f1;
  border: 1px solid;
  border-color: #ddd;
  border-radius: var(--border-radius);
  transition: background 0.3s;
}

.each-features > div:hover {
  background: var(--color-2);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.each-features > div:hover legend {
  border-bottom: 1px solid var(--color-18);
}

.each-features legend {
  position: absolute;
  top: 2px;
  left: 50px;
  font-weight: 500;
  font-size: 98%;
  line-height: 1.4;
  color: var(--color-17);
  margin: 0;
  z-index: 2;
}

.each-features p {
  margin: 0;
  font-size: 95%;
  color: var(--color-22);
  position: relative;
  z-index: 1;
}

.responsive-screen-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
  margin-bottom: 0;
  padding: 20px 0px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-10);
  flex-wrap: wrap;
}

.responsive-screen-div > div {
  flex: 1;
  z-index: 2;
  padding: 10px;
  border-radius: var(--border-radius);
  background: transparent;
}

.responsive-screen-div > div p {
  font-size: 85%;
  font-style: italic;
  line-height: 2.2;
  color: var(--color-1);
}

.responsive-screen-div > div p i {
  background: var(--color-18);
  font-size: 150%;
  padding: 5px;
  border-radius: 4px;
}

.responsive-screen-div > img {
  width: 58%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  z-index: 1;
}

@media (max-width: 900px) {
  .features-div {
    column-count: 2;
    column-gap: 20px;
  }
}

@media (max-width: 576px) {
  .features-div {
    column-count: 1;
    column-gap: 20px;
  }

  .responsive-screen-div {
    display: block;
  }

  .responsive-screen-div > img {
    width: 100%;
    height: auto;
  }

  .responsive-screen-div > div {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(78, 86, 80, 0.90);
    border: 1px solid var(--color-12);
  }

  .responsive-screen-div > div p {
    color: #fff;
  }

  .responsive-screen-div > div p i {
    background: var(--color-1);
    color: var(--color-22);
  }
}

.in-touch-twin .top-part {
  display: block;
  width: 100%;
  padding: 2%;
  padding-bottom: 5px;
  background: var(--color-13);
  border: 1px solid var(--color-11);
  border-radius: var(--border-radius);
}

.below-twin-div {
  width: 99%;
  max-width: 1200px;
  min-height: 200px;
  margin: 80px auto;
  background: transparent;
}

#wcio {
  font-family: 'Reggae', sans-serif;
  font-size: 150%;
  word-spacing: 2px;
  white-space: nowrap;
  user-select: none;
  color: var(--color-18);
  margin-left: 10px;
}

.wcio-us {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin: 10px auto;
  padding: 5px;
}

.each-wcio-us {
  flex: 1 1 300px; /* each box takes at least 300px, but grows */
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.each-wcio-us:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.each-wcio-us h6 {
  font-size: 105%;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--color-17);
}

.each-wcio-us p {
  font-size: 90%;
  line-height: 1.8;
  color: #555;
}




.photo-speaks {
  width: 100%;
  height: auto;
  margin: 0px auto;
  margin-top: 20px;
  padding: 0px;
  padding-bottom: 10px;
  background: transparent;
  text-align: right;
}

.photo-speaks h3 {
  color: var(--color-17);
  padding-left: 10px;
  text-align: left;
}

.photo-speaks button {
  width: fit-content;
  font-size: 80%;
  line-height: 1.0;
  margin: 10px;
  margin-bottom: 0;
  padding: 10px 12px;
  background: transparent;
  color: var(--color-17);
  border: 1px solid var(--color-17);
  transition: all 0.3s ease;
}

.photo-speaks button:hover {
  color: var(--color-1);
  background: var(--color-17);
}

.photos-carousel::-webkit-scrollbar { width: 3px; height: 3px; background: transparent; }
.photos-carousel::-webkit-scrollbar-track { background-color: #ddd; border-radius: 25px; }
.photos-carousel::-webkit-scrollbar-thumb { background-color: var(--color-13); border-radius: 25px; border: none; }

.photos-carousel {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.photos-carousel img {
  flex: 0 0 auto;
  height: 350px;
  width: auto;
  min-width: 50px;
  max-width: 98%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.photos-carousel img:hover {
  transform: scale(0.95);
  filter: brightness(1.1) contrast(1.05);
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, 
              rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, 
              rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, 
              rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, 
              rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, 
              rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  border-radius: 12px;
}

#newsletter-form {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 10px;
}

#newsletter-form button {
  width: 100%;
  margin: 20px 0px;
}

#newsletter-form article {
  width: 100%;
  font-size: 80%;
  margin: 0;
  padding: 5px;
  color: #222;
}

#newsletter-form article i {
  color: green;
  margin-right: 10px;
}

#newsletter-form article a {
  text-decoration: none;
  color: blue;
  cursor: pointer;
}

#newsletter-form article a:hover {
  text-decoration: underline;
}

#contact-form {
  width: 90%;
  height: auto;
  min-height: 300px;
  margin: 0px auto;
  padding: 20px 0px;
  text-align: left;
  background: transparent;
}

#contact-form article {
  font-size: 85%;
  color: #555;
  margin: 20px auto;
  padding: 2px 5px;
  border-top: 1px dashed #999;
}

#contact-form article a:hover {
  text-decoration: none;
}

.contact-alternative {
  margin-top: 24px;
}

.contact-alternative legend {
  font-weight: 500;
  font-size: 90%;
  color: #333;
  margin-bottom: 15px;
  display: block;
}

.social-alt {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.social-alt a {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  color: white;
  font-size: 150%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-grow: 0;
  flex-shrink: 0;
}

.social-alt a:hover::after {
  opacity: 1;
}

.social-alt a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}


#aboutus_content {
  width: 100%;
  max-width: 1600px;
  margin: 0px auto;
  padding: 7px 20px;
  background: transparent;
  color: var(--black-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari */
}

.aboutus_content_links{
  width: 100%;
  background: transparent;
  margin: 10px auto;
  margin-left: 0px;
  margin-bottom: 20px;
}

.aboutus_content_links ul{
  list-style: none;
  margin-left: 20px;
}

.aboutus_content_links ul p{
  font-size: 90%;
  font-weight: bold;
  text-transform: capitalize;
}

.aboutus_content_links ul li{
  margin: 5px auto;
  font-size: 80%;
}

.aboutus_content_links ul li a{
  text-decoration: underline;
  padding: 5px;
  font-style: italic;
  color: var(--black-color);
  transition: all 0.1s ease;
  cursor: pointer;
}

.aboutus_content_links ul li a:hover{
  text-decoration: none;
  font-style: normal;
  background: var(--color-17);
  color: var(--white-color);
  border-radius: var(--border-radius);
}

.about_section{
  scroll-margin-top: 100px;
  width: 100%;
  height: auto;
  margin: 20px auto;
  background: var(--transparent-background);
}

.about_section h2{
  font-size: 100%;
  font-weight: 500;
  color: var(--color-17);
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--color-17) 0%, white 100%);
  border-image-slice: 1;
  padding-bottom: 3px;
}

.about_section p{
  font-size: 90%;
  padding: 5px;
}

.about_section p a {
  color: blue;
  text-decoration: underline;
}

.about_section p a:hover {
  text-decoration: none;
}

#faq-parent {
  width: 100%;
  margin-top: 20px;
}

.faq-parent {
  max-width: 900px;
  margin: 0px auto;
  padding: 10px 0px;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  border: none;
}

.faq-parent:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.15); 
}

.faq-parent:hover {
  background: rgba(149, 26, 31, 0.03);
}

.faq-parent legend {
  width: 100%;
  padding: 5px;
  margin: 0;
  font-size: 100%;
  color: var(--main-color);
  cursor: pointer;
  position: relative;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
}

.faq-parent legend i {
  font-size: 100%;
  transition: transform 0.4s ease, color 0.4s ease;
  opacity: 0.5;
}

.faq-parent legend.open i {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-parent p {
  width: 100%;
  max-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  color: var(--color-10);
  font-size: 95%;
  line-height: 1.8;
  overflow: hidden;
  transform: scaleY(0.95);
  transform-origin: top;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease 0.1s,
    transform 0.4s ease 0.1s;
  will-change: max-height, opacity, transform;
}

.faq-parent p.open {
  max-height: 600px;
  opacity: 1;
  padding: 7px 10px;
  transform: scaleY(1);
}

#gallery-view {
  width: 100%;
  height: auto;
  min-height: 300px;
  margin: 0px auto;
  padding: 20px 0px;
  padding-top: 0;
  text-align: left;
  background: transparent;
}

#gallery-view article {
  max-width: 95%;
  font-size: 85%;
  color: #555;
  margin: 30px auto;
  margin-bottom: 8px;
  padding: 2px 5px;
  border-top: 1px dashed #999;
}

#gallery-view article a {
  color: blue;
  cursor: pointer;
}

#gallery-view article a:hover {
  text-decoration: underline;
}

#prime-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  margin: 0px auto;
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
              rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
              rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
              rgba(0, 0, 0, 0.06) 0px 2px 1px, 
              rgba(0, 0, 0, 0.09) 0px 4px 2px, 
              rgba(0, 0, 0, 0.09) 0px 8px 4px, 
              rgba(0, 0, 0, 0.09) 0px 16px 8px, 
              rgba(0, 0, 0, 0.09) 0px 32px 16px;
  border: none;
}

#prime-img.drop-animation {
  animation: dropDown 1.2s ease-out forwards;
}

/* Keyframes */
@keyframes dropDown {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  50% {
    transform: translateY(20px);
    opacity: 1;
  }
  70% {
    transform: translateY(-10px);
  }
  90% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

#sec-imgs::-webkit-scrollbar { width: 3px; height: 3px; background: transparent; }
#sec-imgs::-webkit-scrollbar-track { background-color: var(--color-2); border-radius: 25px; }
#sec-imgs::-webkit-scrollbar-thumb { background-color: var(--color-13); border-radius: 25px; border: none; }

#sec-imgs {
  width: 95%;
  display: flex;
  overflow-x: auto;
  gap: 15px;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

#sec-imgs img {
  flex: 0 0 auto;
  height: 90px;
  width: auto;
  min-width: 30px;
  max-width: 200px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#sec-imgs img:hover {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#page404 {
  width: 100%;
  height: auto;
  font-size: 100%;
  color: #555;
  align-items: center;
  text-align: center;
}

#page404 legend {
  margin-top: 70px;
  font-size: 77%;
  color: #555;
}

.img404 {
  width: 100%;
  max-width: 150px;
  display: block;
  margin: 0px auto;
  margin-top: 10px;
}

.div404 {
  width: 95%;
  max-width: 600px;
  margin: 20px auto;
}

.div404 h3 {
  color: var(--black-color);
  font-family: arial;
  font-size: 120%;
  margin-bottom: 15px;
}

.div404 h3 span {
  font-size: inherit;
  border-bottom: 4px solid red;
}

.div404 p {
  font-size: 90%;
  text-align: left;
  color: #333;
}

.div404 a {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

.div404 a:hover {
  text-decoration: none;
}

.div404 ul {
  width: 100%;
  margin: 10px auto;
  margin-bottom: 40px;
  padding: 0;
  padding-left: 6%;
  border: none;
  list-style: square;
  text-align: left;
}

.div404 ul li {
  margin-bottom: 15px;
  font-size: 85%;
  line-height: 1.6;
}

#map-area {
  width: 100%;
  max-width: 1200px;
  min-height: 400px;
  margin: 0 auto;
  padding: 30px 15px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

#map-area h1 {
  display: inline-block;
  font-size: 105%;
  word-spacing: 5px;
  letter-spacing: 2px;
  margin: 0;
  padding: 2px 30px;
  color: var(--color-17);
  background: var(--white-color);
  border: 1px solid var(--color-17);
  border-radius: 50px;
  border-top-right-radius: 0;
  text-align: center;
}
.dual-addr {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 20px auto;
}

.dual-addr legend {
  font-size: 100%;
  font-weight: 500;
  padding: 3px 30px;
  color: #bbb;
  border-bottom: 2px solid #ccc;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dual-addr legend:not(.active):hover {
  color: var(--color-17);
  background: rgba(149, 26, 31, 0.05);
  border-color: var(--color-17);
}

.dual-addr legend.active {
  color: var(--color-17);
  border-color: var(--color-17);
  cursor: default; /* shows it's not clickable */
}

#map-here {
  width: 100%;
  height: 400px;
  background: transparent;
  overflow: hidden;
  margin: 0px auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

#map-here iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.area-paragraph {
  width: 95%;
  text-align: left;
  margin: 10px auto;
  padding: 0px;
  display: block;
  color: #444;
}

.area-paragraph small {
  font-size: 80%;
  color: var(--color-17);
}

.area-paragraph p {
  font-size: 90%;
  color: #444;
}








/*SCREEN RESOLUTIONS*/

@media screen and (max-width: 1300px) {
  
  .intro-layer {
    padding: 0px 20px;
    padding-bottom: 50px;
  }
  /*.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.2); /* 👈 zoom in */
    transform-origin: center;
    z-index: -1;
  }*/
  .intro-lapping-layer {
    margin-top: -50px;
  }
}

@media screen and (max-width: 1000px) {
  .features-div {
    column-count: 2;
    column-gap: 20px;
  }
}

@media screen and (max-width: 750px) {
  [tooltip]:hover::before, [tooltip]:hover::after { display: none !important; }
  .features-div {
    column-count: 1;
    column-gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  body {
    font-size: 0.88rem;
    background: var(--color-1);
  }
  .review-carousel-track {
    gap: 2px;
  }
  .each-review {
    flex: 0 0 270px;
  }
  .each-review figure {
    max-width: 270px;
  }
  .features-div {
    column-count: 2;
    column-gap: 20px;
  }
  .intro-layer {
    width: calc(100% - 3%);
    min-height: auto;
    margin: 18px auto;
    padding: 0px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
                rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
                rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
                rgba(0, 0, 0, 0.06) 0px 2px 1px, 
                rgba(0, 0, 0, 0.09) 0px 4px 2px, 
                rgba(0, 0, 0, 0.09) 0px 8px 4px, 
                rgba(0, 0, 0, 0.09) 0px 16px 8px, 
                rgba(0, 0, 0, 0.09) 0px 32px 16px;
    border: none;
    border-radius: 30px;
  }
  .intro-text {
    width: 100%;
    text-align: center;
    margin: 10px auto;
    padding: 10px 3%;
    background: transparent;
    border: none;
    backdrop-filter: blur(0); /* The actual blur */
    -webkit-backdrop-filter: blur(0); /* Safari support */
  }
  .intro-text h1 {
    font-size: 210%;
    line-height: 1.6;
  }
  .intro-text p {
    font-size: 95%;
    padding: 8px;
    color: var(--text-hex);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(30px); /* The actual blur */
    -webkit-backdrop-filter: blur(30px); /* Safari support */
  }
  .intro-lapping-layer {
    width: 100%;
    margin: 0px auto;
  }
  .osidiv {
    margin-bottom: 0px;
    padding: 10px;
  }
  .action-btns a:last-child {
    color: var(--color-17);
    background: var(--color-1);
  }
  #aboutus_content {
    padding: 7px;
  }
  .photo-speaks button {
    font-size: 75%;
    padding: 8px 10px;
  }
  .photos-carousel img {
    height: 280px;
    max-width: 90vw;
  }
  .w2talk {
    display: block;
  }
  #wcio {
    font-size: 120%;
  }
  .below-twin-div {
    margin: 30px auto;
  }
  .each-wcio-us {
    width: 100%;
  }
  #map-area {
    padding: 30px 5px;
  }

}

@media screen and (max-width: 480px) {
  .faq-parent legend {
    font-size: 95%;
  }
  .each-review {
    flex: 0 0 240px;
  }
  .each-review figure {
    max-width: 240px;
  }
  #map-here {
    height: 320px;
  }
}

@media screen and (max-width: 420px) {
  .intro-text h1 {
    font-size: 180%;
  }
  .photo-speaks button {
    font-size: 75%;
    padding: 6px 8px;
  }
  .photos-carousel img {
    height: 200px;
    max-width: 90vw;
  }
  .features-div {
    column-count: 1;
    column-gap: 20px;
  }
  .action-btns {
    display: block;
  }
  .action-btns a {
    display: block;
    width: auto;
    max-width: 90%;
    margin: auto;
  }
  .action-btns a:last-child {
    margin-top: 20px;
  }
  #map-here {
    height: 300px;
  }
}


