@charset "UTF-8";
/* Root Variables */
:root {
  --font-sans: "Helvetica Neue", sans-serif;
  --font-mono: "Courier New", monospace;
  --color-white: #ffffff;
  --color-black: #343131;
  --color-gray: #e4e4e4;
  --color-blue: #8bb4fc;
  --color-azure: #4181ee;
  --color-gold: #D6B151;
  --spacing-0: 0rem;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-7: 2rem;
  --spacing-8: 2.5rem;
}

/* Resets & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--color-black);
  background-color: var(--color-white);
}

/* Typography */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.font-sans {
  font-family: var(--font-sans);
}

.font-mono {
  font-family: var(--font-mono);
}

.logo-icon {
  height: 15px;
  width: 15px;
}

.wrapper {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 2.25rem;
}

.text-xxxl {
  font-size: 3.25rem;
}

.contact-btn {
  margin-top: 5rem;
  padding: 10px 10px;
  border-radius: 5px;
  border: solid var(--color-azure);
  font-size: 20px;
  font-weight: 600;
  transition: all 0.5s;
  cursor: pointer;
  letter-spacing: 1.2px;
  text-align: center;
  text-decoration: none;
  color: var(--color-azure);
}

.contact-btn:hover {
  padding: 20px 20px;
  color: var(--color-white);
  background: var(--color-azure);
}

@media (min-width: 678px) {
  .med_text-lg {
    font-size: 1.125rem;
  }
  .med_text-xl {
    font-size: 1.25rem;
  }
  .med_text-2xl {
    font-size: 2.25rem;
  }
  .med_text-xxxl {
    font-size: 3.25rem;
  }
  .med_logo-icon {
    height: 20px;
    width: 20px;
  }
}
@media (min-width: 1000px) {
  .lg_text-lg {
    font-size: 1.125rem;
  }
  .lg_text-xl {
    font-size: 1.25rem;
  }
  .lg_text-2xl {
    font-size: 2.25rem;
  }
  .lg_text-xxxl {
    font-size: 3.25rem;
  }
  .med_logo-icon {
    height: 30px;
    width: 30px;
  }
}
.no-underline {
  text-decoration: none;
}

.text-bold {
  font-weight: 600;
}

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

/* Spacing - Padding & Margin */
.p-1 {
  padding: var(--spacing-1);
}

.p-2 {
  padding: var(--spacing-2);
}

.p-3 {
  padding: var(--spacing-3);
}

.p-4 {
  padding: var(--spacing-4);
}

.p-5 {
  padding: var(--spacing-5);
}

.p-6 {
  padding: var(--spacing-6);
}

.m-1 {
  margin: var(--spacing-1);
}

.m-2 {
  margin: var(--spacing-2);
}

.m-3 {
  margin: var(--spacing-3);
}

.m-4 {
  margin: var(--spacing-4);
}

.m-5 {
  margin: var(--spacing-5);
}

.m-6 {
  margin: var(--spacing-6);
}

.pt-2 {
  padding-top: var(--spacing-2);
}

.pt-3 {
  padding-top: var(--spacing-3);
}

.pt-4 {
  padding-top: var(--spacing-5);
}

.pt-5 {
  padding-top: var(--spacing-2);
}

.pt-6 {
  padding-top: var(--spacing-6);
}

.pt-25 {
  padding-top: 25px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-300 {
  padding-top: 300px;
}

.pb-2 {
  padding-bottom: var(--spacing-2);
}

.pb-3 {
  padding-bottom: var(--spacing-3);
}

.pb-4 {
  padding-bottom: var(--spacing-4);
}

.pb-5 {
  padding-bottom: var(--spacing-5);
}

.pb-6 {
  padding-bottom: var(--spacing-6);
}

.pb-7 {
  padding-bottom: var(--spacing-7);
}

.pb-8 {
  padding-bottom: var(--spacing-8);
}

.pb-25 {
  padding-bottom: 150px;
}

.pl-2 {
  padding-left: var(--spacing-2);
}

.pl-3 {
  padding-left: var(--spacing-3);
}

.pl-4 {
  padding-left: var(--spacing-4);
}

.pl-5 {
  padding-left: var(--spacing-5);
}

.pr-2 {
  padding-right: var(--spacing-2);
}

.pr-3 {
  padding-right: var(--spacing-3);
}

.pr-4 {
  padding-right: var(--spacing-4);
}

.pr-5 {
  padding-right: var(--spacing-5);
}

.px-2 {
  padding-right: var(--spacing-2);
  padding-left: var(--spacing-2);
}

.px-3 {
  padding-right: var(--spacing-3);
  padding-left: var(--spacing-3);
}

.py-2 {
  padding-top: var(--spacing-2);
  padding-bottom: var(--spacing-2);
}

.py-3 {
  padding-top: var(--spacing-3);
  padding-bottom: var(--spacing-3);
}

.py-4 {
  padding-top: var(--spacing-4);
  padding-bottom: var(--spacing-4);
}

.mt-2 {
  margin-top: var(--spacing-2);
}

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

.ml-2 {
  margin-left: var(--spacing-2);
}

.mr-2 {
  margin-right: var(--spacing-2);
}

.bottom-3 {
  bottom: 3rem;
}

.bottom-5 {
  bottom: 5rem;
}

.bottom-10 {
  bottom: 10rem;
}

.bottom-12 {
  bottom: 12rem;
}

.right-3 {
  right: 3rem;
}

.right-4 {
  right: 4rem;
}

.right-5 {
  right: 5rem;
}

.right-15 {
  right: 15rem;
}

.left-3 {
  left: 3rem;
}

@media (min-width: 768) {
  med_p-10 {
    padding-bottom: 10rem;
  }
}
/* Layout */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

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

.object-cover {
  object-fit: cover;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-5 {
  margin-left: var(--spacing-5);
  margin-right: var(--spacing-5);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.containerd {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}

.overflow-hidden {
  overflow: hidden;
}

/* Colors */
.bg-white {
  background-color: var(--color-white);
}

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

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

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

.text-white {
  color: var(--color-white);
}

.text-black {
  color: var(--color-black);
}

.text-gray {
  color: var(--color-gray);
}

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

/* Opacity */
.opacity-10 {
  opacity: 0.33;
}

.opacity-20 {
  opacity: 1;
}

/* Border & Radius */
.border {
  border: 1px solid #e5e7eb;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Widths (e.g. w-full, w-1/2) */
.w-full {
  width: 100%;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.3333%;
}

.w-1\/4 {
  width: 25%;
}

/* Height (e.g. w-full, w-1/2) */
.h-full {
  height: 100%;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* List */
.pp-list {
  list-style-type: disc;
  margin-left: 25px;
}

/* z-index */
.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

/* navbar */
* {
  scroll-behavior: smooth;
}

nav a {
  margin-right: 10px;
  text-decoration: none;
  color: var(--color-white);
}

nav a:hover {
  text-decoration: underline;
}

nav p {
  color: var(--color-white);
}

/* Language Switcher */
.ul-topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  position: relative;
}

/* Dropdown item */
.dropdowntop {
  position: relative;
  display: inline-block;
}

/* Button style */
.dropbtn {
  background-color: var(--color-white);
  color: #031927;
  margin-right: 0px;
  padding: 10px 16px;
  font-size: 0.875rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

/* Hover style */
.dropdowntop:hover .dropbtn,
.dropbtn:hover {
  background-color: #f0f0f0;
  color: var(--color-black);
}

/* Dropdown content */
.dropdowntop-content {
  display: none;
  position: absolute;
  background-color: var(--color-white);
  min-width: 180px;
  right: 0;
  top: 100%;
  border-radius: 6px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* Dropdown items */
.dropdowntop-content a {
  color: #031927;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Hover over items */
.dropdowntop-content a:hover {
  background-color: #f4f4f4;
  color: var(--color-black);
}

/* Show the dropdown on hover */
.dropdowntop:hover .dropdowntop-content {
  display: block;
}

/* Menu code starts here */
#menuToggle {
  display: block;
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

@media (min-width: 500px) {
  #menuToggle {
    left: 50px;
  }
}
#menuToggle a {
  text-decoration: none;
  color: var(--color-white);
  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: var(--color-blue);
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #232323;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #c5c5c5;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #232323;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menu li label {
  cursor: pointer;
}

#menuToggle input:checked ~ ul {
  transform: none;
}

.menu-subscribe {
  text-align: left;
  width: 100%;
  display: block;
  padding: 10px 0;
}

.menu-subscribe p {
  color: var(--color-white);
  margin-bottom: 15px;
  font-size: 1.1rem;
  /* white-space: nowrap; */
  display: block;
}

.mobile-form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.mobile-form-container input[type=email] {
  padding: 10px;
  border: 1px solid #ccc;
  background-color: var(--color-white);
  color: #222;
  border-radius: 4px;
  width: 100%;
  max-width: 250px;
  box-sizing: border-box;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
}

.mobile-form-container .btn-subscribe {
  margin-top: 5px;
  display: block;
  width: auto;
  background-color: var(--color-gold);
  border: none;
  color: var(--color-white);
  padding: 12px 24px;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition-duration: 0.4s;
}

.mobile-form-container .btn-subscribe:hover {
  background-color: var(--color-white) !important;
  color: var(--color-black);
  border: 2px solid var(--color-gold);
}

/* Mobile menu social icons */
.menu-social {
  margin-top: auto;
  padding: 20px 5px;
  border-top: none;
  width: 100%;
}

.menu-divider {
  border: 0;
  height: 1px;
  background-color: var(--color-white);
  margin-bottom: 20px;
}

.mobile-social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 5px;
  overflow-x: auto;
  padding: 5px 0px;
}

.mobile-social-icons img {
  height: 24px;
  width: 24px;
  transition: transform 0.2s ease;
}

.mobile-social-icons img:hover {
  transform: scale(1.2);
}

/* Header and Navigation */
.header {
  background-color: var(--color-white);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  height: 70px;
}

.footer-content {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically (optional) */
  padding: 20px;
}

/* topbar */
.header-left {
  display: block;
  position: fixed;
  top: 20px;
  left: 0px;
}

.header-center {
  top: 20px;
  padding-left: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right {
  display: block;
  position: fixed;
  top: 12px;
  right: 0px;
  margin-right: 10px;
  align-items: right;
}

@media (min-width: 450px) {
  .header-left {
    padding: 0px 30px;
  }
  .header-center {
    padding: 0px 30px;
  }
  .header-right {
    padding: 0px 30px;
  }
}
/* Right section with social icons */
.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons img {
  height: 20px;
  width: 20px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .social-icons a {
    margin-left: 20px;
  }
  .social-icons img {
    height: 24px;
    width: 24px;
  }
  .desktop-subscribe {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    margin-right: 20px;
  }
  .desktop-subscribe h3 {
    margin: 0;
    min-width: 150px;
    font-size: x-large;
    font-weight: 500;
  }
  .desktop-subscribe .subscribe-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }
  .desktop-subscribe .subscribe-form input[type=email] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 40px;
    box-sizing: border-box;
  }
  .desktop-subscribe .subscribe-form .btn-subscribe {
    margin-top: 0;
    height: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-color: var(--color-blue);
    border: none;
    color: var(--color-white);
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition-duration: 0.4s;
  }
  .desktop-subscribe .subscribe-form .btn-subscribe:hover {
    background-color: var(--color-white) !important;
    color: var(--color-black);
    border: 2px solid var(--color-blue);
  }
}
@media (max-width: 1200px) {
  .desktop-subscribe {
    display: none;
  }
}
@media (max-width: 550px) {
  .header-right {
    display: none;
  }
}
/* Language Switcher */
.ul-topmenu {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #031927;
  border-radius: 6px;
}

.dropdowntop {
  float: left;
}

.dropdowntop a,
.dropbtn {
  display: inline-block;
  color: #c5c5c5;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 0.75rem;
  border-radius: 6px;
}

.dropdowntop a:hover,
.dropdowntop:hover .dropbtn {
  background-color: #f4f4f4;
  color: #333;
  text-decoration: none;
  width: 100%;
}

li.dropdowntop {
  display: inline-block;
}

.dropdowntop-content {
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 3px 6px 14px 0px rgba(120, 120, 120, 0.58);
  -webkit-box-shadow: 3px 6px 14px 0px rgba(120, 120, 120, 0.58);
  -moz-box-shadow: 3px 6px 14px 0px rgba(120, 120, 120, 0.58);
  z-index: 1;
  border-radius: 6px;
}

.dropdowntop-content a {
  color: var(--color-black);
  padding: 12px 12px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdowntop-content a:hover {
  background-color: #f1f1f1;
}

.dropdowntop:hover .dropdowntop-content {
  display: block;
}

/* practice area cards */
.card-heading {
  text-align: center;
  color: var(--color-azure);
}

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

.card {
  min-width: 280px;
  max-width: 300px;
  min-height: 250px;
  background: var(--color-azure);
  border-radius: 10px;
  box-sizing: border-box;
  color: #FFF;
  margin: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  overflow: hidden;
}

.card-min {
  padding: 0;
}

.card-img {
  max-width: 600px;
  max-height: 200px;
  overflow: hidden;
}

.card-title {
  margin-top: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.card-content {
  padding: 30px;
}

.card-btn {
  all: unset;
  display: block;
  margin-left: 4.5rem;
  margin-right: 4.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border: 2px solid #FFF;
  padding: 10px 10px;
  border-radius: 25px;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.5s;
  cursor: pointer;
  letter-spacing: 1.2px;
  text-align: center;
  text-decoration: none;
  color: #FFF;
}

.card-btn:hover {
  color: #4181ee;
  background: #FFF;
}

/* Privacy Policy Table */
.pp-body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  padding: 20px;
}

.pp-container {
  max-width: 1000px;
  margin: auto;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}

.pp-container h1 {
  text-align: center;
  margin-bottom: 30px;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.pp-table th,
.pp-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

.pp-table th {
  background-color: var(--color-white);
}

.pp-table tbody tr:nth-child(odd) {
  background-color: #eeeeee;
}

.pp-table tbody tr:nth-child(even) {
  background-color: var(--color-white);
}

@media (max-width: 768px) {
  .pp-table,
  .pp-table thead,
  .pp-table tbody,
  .pp-table th,
  .pp-table td,
  .pp-table tr {
    display: block;
  }
  .pp-table thead {
    display: none;
  }
  .pp-table tr {
    margin-bottom: 15px;
    background-color: var(--color-white);
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }
  .pp-table td {
    position: relative;
    padding-left: 50%;
    text-align: right;
    border: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .pp-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 15px;
    font-weight: bold;
    text-align: left;
  }
}
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start; /* aligns text properly with bullet */
}

.custom-list li::before {
  content: "•";
  color: var(--color-black);
  margin-right: 8px;
  font-size: 1.2em;
  line-height: 1;
}

/*# sourceMappingURL=styles.css.map */