:root {
    --base-color: #0A0908;
    --base-varient: rgba(20, 20, 10, 0.858);
    --text-color: #ffffff;
    --secondary-text: gray;
    --text-shadow: rgba(255, 255, 255, 0,352);
    --accent-color: #ffd700;
    --accent-secondary: #FFE97C;
    --border-color: rgba(110, 101, 114, 0.5);
    --error-color: #E63946;
    --valid-color: #28a745;
    --menu-color: rgba(20, 20, 10, 0.955);
    --gradient-color: #ffffff, #ffd700, #ffe97c, #fff3b2, #ffffff;
}

@font-face {
  font-family: 'Zain'; /* 1️⃣ Give your font a name to use later */
  src: url('/fonts/Zain.woff2') format('woff2'), /* 2️⃣ The actual font file */
       url('/fonts/Zain.woff') format('woff'),
       url('/fonts/Zain.ttf') format('truetype');
  font-display: swap; /* 3️⃣ Improves loading behavior */
}

.light-mode {
    --base-color: #ffffff;
    --base-varient: rgba(255, 255, 238, 0.858);
    --text-color: #0A0908;
    --secondary-text: gray;
    --text-shadow: rgba(255, 255, 255, 0,352);
    --accent-color: #ffd700;
    --border-color: rgba(110, 101, 114, 0.5);
    --menu-color: rgba(199, 199, 162, 0.955);
}

body[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--base-color);
    font-family: 'Zain', 'Poppins', 'Segoe UI', 'Arial', sans-serif;
    color: var(--text-color);
    user-select: none;
    -webkit-user-drag: none;
}

/* Header Section */

label {
    width: 40px;
    height: 20px;
    position: relative;
    display: block;
    background-color: var(--base-color);
    border-radius: 80px;
    box-shadow: inset 0px 5px 15px var(--base-varient), inset 0px -5px 15px var(--secondary-text);
    cursor: pointer;
    transition: .3s;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--border-color);
    z-index: 9999;
}

.head-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

label {
    width: 40px;
    height: 20px;
    position: relative;
    display: block;
    background-color: var(--base-color);
    border-radius: 80px;
    box-shadow: inset 0px 5px 15px var(--base-varient), inset 0px -5px 15px var(--secondary-text);
    cursor: pointer;
    transition: .3s;
}

label span{
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    background: linear-gradient(180deg, var(--secondary-text), #3a3a3a);
    border-radius: 23px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
    transition: .3s;
}

.head-left .black-circle span {
    background: #3a3a3a;
    transform: translateX(-1%);
}

.head-left .yellow-circle span {
    left: 40px;
    transform: translateX(-120%);
    background: linear-gradient(180deg,  var(--gradient-color));
}

header ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
}

header ul .logo-svg path {
    fill: var(--secondary-text);
    transition: .5s;
}

header ul .logo-svg {
    height: 60px;
    width: 60px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    overflow: hidden;
    color: var(--secondary-text);
    transition: 0.5s ease;
}

header ul a svg:hover {
    transform: scale(1.2);
    fill: var(--text-color);
}

header ul a:hover .logo-svg path {
    fill: var(--text-color);
}
header ul li {
    display: flex;
    align-items: center;
    list-style: none;
}

header ul li a {
    text-decoration: none;
    color: var(--secondary-text);
    font-weight: 900;
    font-size: 18px;
    transition: 0.3s;
}

header a:hover {
    color: var(--text-color);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0,352);
}

.button-box {
    position: relative;
    width: 150px;
    height: 45px;
    background: linear-gradient(to right, var(--gradient-color));
    border-radius: 20px;
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
}

@keyframes animationGradient {
    to {
        background-position: 200%;
    }
}

.button-box button {
    position: absolute;
    inset: 3px 3px 3px 3px;
    border: none;
    background-color: var(--base-color);
    color: var(--text-color);
    border-radius: 20px;
    cursor: pointer;
    transition: .3s;
    font-family: 'Zain';
}

.button-box button:hover {
    color: var(--accent-color);
}

header .head-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .head-right select {
    outline: none;
    background-color: var(--base-color);
    color: var(--text-color);
    border: none;
}

.sub-menu-wrap {
    display: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.head-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

label {
    width: 40px;
    height: 20px;
    position: relative;
    display: block;
    background-color: var(--base-color);
    border-radius: 80px;
    box-shadow: inset 0px 5px 15px var(--base-varient), inset 0px -5px 15px var(--secondary-text);
    cursor: pointer;
    transition: .3s;
}

label span{
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    background: linear-gradient(180deg, var(--secondary-text), #3a3a3a);
    border-radius: 23px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
    transition: .3s;
}

.head-left .black-circle span {
    background: #3a3a3a;
}

.head-left .yellow-circle span {
    left: 40px;
    transform: translateX(-110%);
    background: linear-gradient(180deg,  var(--gradient-color));
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
/* Book Consultation Form */
.book-consultation-box {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5%;
    flex-wrap: wrap;
    top: 60%;
    width: 30%;
    height: 60vh;
    scale: 0;
    filter: blur(50px);
    z-index: 900;
    background-color: var(--base-varient);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 0.5px solid var(--border-color);
}

h1 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 50%;
    gap: 10%;
}

.book-holder {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.book-holder input {
  width: 80%;
  height: 100%;
  outline: none;
  border: none;
  font-size: 18px;
  color: var(--text-color);
  padding: 15px 30px;
  line-height: 40px;
  border-radius: 20px;
  border: 0.5px solid var(--border-color);
  background-color: transparent;
  transition: .1s ease;
  font-family: inherit;
  z-index: 111;
}

#ourForm .hide {
    display: none;
}

.book-holder input:-webkit-autofill {
  box-shadow: 0 0 0 1000px inherit inset;
}

.book-holder input:focus,
.book-holder input:valid {
  border: 1px solid var(--accent-color);
  transition: .2s ease-out;
}

.book-holder .place-holder {
  display: flex;
  align-items: center;
  height: 100%;
  inset-inline-start: 10%;
  font-size: 18px;
  transition: .3s ease-out;
  position: absolute;
  color: var(--secondary-text);
  font-size: 18px;
  transition: .3s ease;
}

.book-holder input:focus + .place-holder,
.book-holder input:valid + .place-holder {
  z-index: -999;
  opacity: 0;
}

.book-holder span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 12px;
    inset-inline-end: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--error-color);
    font-size: 16px;
}

ul.dots {
    padding: 0;
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots li {
    width: 7px;
    height: 7px;
    margin: 0 1px;
    background: var(--secondary-text);
    border-radius: 50%;
    -webkit-animation: bounce 0.5s infinite alternate;
    -moz-animation: bounce 0.5s infinite alternate;
    -o-animation: bounce 0.5s infinite alternate;
    animation: bounce 0.5s infinite alternate;
}

@-webkit-keyframes bounce {
    to {opacity: 0.2; transform: translateY(-5px);}
}

@-moz-keyframes bounce {
    to {opacity: 0.2; transform: translateY(-5px);}
}

@-o-keyframes bounce {
    to {opacity: 0.2; transform: translateY(-5px);}
}

@keyframes bounce {
    to {opacity: 0.2; transform: translateY(-5px);}
}

.dots li:nth-child(2) {
    animation-delay: 300ms;
}

.dots li:nth-child(3) {
    animation-delay: 600ms;
}

#toastBox {
    position: fixed;
    top: 10%;
    right: 30px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    z-index: 9999;
}

.toast {
    width: 350px;
    height: 60px;
    background: var(--base-varient);
    font-size: 18px;
    font-weight: 500;
    border: 0.5px solid var(--border-color);
    border-radius: 20px;
    margin: 15px 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    transform: translateX(100%);
    animation: moveleft .3s ease-out forwards;
}

@keyframes moveleft {
    100% {
        transform: translateX(0);
    }
}

.toast i {
    margin: 0 20px;
    font-size: 35px;
    color: var(--valid-color);
}

.toast.error i {
    color: var(--error-color);
}

.book-holder span i {
    color: var(--valid-color);
    font-size: 18px;
}

.book-consultation-box button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 40px;
    font-size: 20px;
    font-weight: 700;
    background-color: var(--accent-color);
    border: none;
    border-radius: 10px;
    color: var(--text-color);
    cursor: not-allowed;
    opacity: 0.5;
    transition: .3s ease-out;
    font-family: inherit;
}

.book-consultation-box .enabled {
    cursor: pointer;
    opacity: 1;
}

.book-consultation-box .close-icon {
    position: absolute;
    top: 3%;
    right: 5%;
    font-size: 40px;
    cursor: pointer;
    transition: .3s;
}

.book-consultation-box .close-icon:hover {
    color: var(--secondary-text);
}

/* OPEN FORM */
.openForm {
    animation: openFormAnimation .5s forwards;
}

@keyframes openFormAnimation {
    to {
        filter: blur(0);
        scale: 1;
        top: 30%;
    }
}

.closeForm {
    animation: closeFormAnimation .5s forwards;
}

@keyframes closeFormAnimation {
    from {
        filter: blur(0);
        scale: 1;
        top: 30%;
    }
    to {
        filter: blur(10px);
        scale: 0;
        top: 60%;
    }
}

/* Our Story Section */
#our-story {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: 980px;
    overflow: hidden;
    border: .5px solid var(--border-color);
    z-index: 0;
}

.our-story {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.our-story svg {
    opacity: 0;
}

.sLogo {
    width: 120px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: logoIn .6s .6s forwards;
}

.sLogo path {
    fill: var(--text-color);
}

@keyframes logoIn {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
  }
}

.our-story h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 70px;
    font-weight: bold;
    color: var(--text-color);
    width: fit-content;
    height: fit-content;
    direction: ltr;
}

.our-story .transform {
    position: relative;
    display: flex;
    justify-content: center;

    font-weight: bold;
    overflow: hidden;
}

.transform span {
  display: inline-block;
  transform-origin: center;
}

h1 .space {
    opacity: 0;
}

.transform #O {
      animation: squeeze-O 1s forwards;
}

@keyframes squeeze-O {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(400%) scale(0.5);
  }
  100% {
    transform: translateX(400%) scale(0.5);
    opacity: 0;
  }
}

.transform #u {
      animation: squeeze-u 1s forwards;
}

@keyframes squeeze-u {
  0% {
    transform:  translateX(0) scale(1);
  }
  50% {
    transform: translateX(300%) scale(0.5);
  }
  100% {
    transform: translateX(300%) scale(0.5);
    opacity: 0;
  }
}

.transform #R {
      animation: squeeze-R 1s forwards;
}

@keyframes squeeze-R {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(200%) scale(0.5);
  }
  100% {
    transform: translateX(200%) scale(0.5);
    opacity: 0;
  }
}

.transform #space {
      animation: squeeze-space 1s forwards;
}

@keyframes squeeze-space {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(100%) scale(0.5);
  }
  100% {
    transform: translateX(100%) scale(0.5);
    opacity: 0;
  }
}

.transform #s {
      animation: squeeze-s 1s forwards;
}

@keyframes squeeze-s {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(0) scale(0.5);
  }
  100% {
    transform: translateX(0) scale(0.5);
    opacity: 0;
  }
}

.transform #t {
      animation: squeeze-t 1s forwards;
}

@keyframes squeeze-t {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(-100%) scale(0.5);
  }
  100% {
    transform: translateX(-100%) scale(0.5);
    opacity: 0;
  }
}

.transform #o {
      animation: squeeze-o 1s forwards;
}

@keyframes squeeze-o {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(-200%) scale(0.5);
  }
  100% {
    transform: translateX(-200%) scale(0.5);
    opacity: 0;
  }
}

.transform #r {
      animation: squeeze-r 1s forwards;
}

@keyframes squeeze-r {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(-300%) scale(0.5);
  }
  100% {
    transform: translateX(-300%) scale(0.5);
    opacity: 0;
  }
}

.transform #y {
      animation: squeeze-y 1s forwards;
}

@keyframes squeeze-y {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(-400%) scale(0.5);
  }
  100% {
    transform: translateX(-400%) scale(0.5);
    opacity: 0;
  }
}

.our-story p {
    font-size: 25px;
    width: 50%;
    text-align: center;
    opacity: 0;
    height: 0;
    color: var(--secondary-text);
    transition: 1s;
}

.our-story .opacity {
    height: 30%;
    opacity: 1;
}

/* Our Values Section */
.values {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    height: 1000px;
    overflow: hidden;
    border: .5px solid var(--border-color);
    padding-top: 100px; 
    z-index: 1;
}

.values .core-values {
    font-size: 60px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
}

.values .text-changer {
    height: 50px;
    font-size: 60px;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
    overflow: hidden;
    margin-bottom: 5%;
}

.values .text-changer .roles-container {
    overflow: hidden;
    position: relative;
}

.values .text-changer .roles-container .role {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--accent-color);
    animation: role-change 5s infinite forwards;
}

@keyframes role-change {
    0% {
        transform: translateY(-180%);
    }
    20% {
        transform: translateY(-100%);
    }
    25% {
        transform: translateY(-100%);
    }
    40% {
      transform: translateY(0%);
    }
    45% {
      transform: translateY(0%);
    }
    60% {
        transform: translateY(100%);
    }
    65% {
        transform: translateY(100%);
    }
    95% {
        transform: translateY(180%);
    }
    100% {
        transform: translateY(180%);
    }
}


.card-container {
    display: grid;
    flex-wrap: wrap;
    height: 100%;
    position: relative;
    margin-top: 100px;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    gap: 4%;
    /* overflow: hidden; */
}

.card-article {
    position: relative;
    background: linear-gradient(to right, var(--base-color), #ffd90024);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: .3s;
    overflow: hidden;
    height: 500px;
    flex: 1 1 200px;
}

.card-article h1 {
    position: absolute;
    color: var(--text-color);
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.card-article img {
    border-radius: 50px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: .5s;
}

.card-data {
  position: absolute;
  width: 60%;
  background-color: var(--base-color);
  padding: 1.5rem 2rem;
  box-shadow: var(--box-shadow);
  border-radius: 30px;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity .5s;
  border: .5px solid var(--border-color);
}

.card-article:hover img {
    opacity: .2;
}

.card-article:hover .card-data {
    animation: show-data 1s forwards;
    opacity: 1;
    transition: opacity .3s;
}

.card-article:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.484);
    transform: scale(1.05);
    animation: remover-overflow 2s forwards;
}

@keyframes show-data {
    50% {
        transform: translateY(-5rem);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes remover-overflow {
    to {
        overflow: initial;
    }
  }

.card-description {
    display: block;
    font-size: 20px;
    margin-bottom: .25rem;
}

/* Our Team Section  */
.our-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    height: 1000px;
    overflow: hidden;
    border: .5px solid var(--border-color);
    padding-top: 100px; 
}

.our-team .title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-team .title h1 {
    font-size: 60px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
}

.our-team .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 100px;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    gap: 3%;
    overflow: hidden;
}

.our-team .team-box {
    position: relative;
    margin-top: 20px;
    margin-bottom: 80px;
    transition: .3s ease-in-out;
}

.our-team .team-box .team-img img {
    width: 320px;
    height: 500px;
    border-radius: 50px;
    transition: .3s ease-in-out;
}

.our-team .team-box .team-content {
    background-color: var(--base-varient);
    height: 30px;
    box-shadow: var(--box-shadow);
    width: calc(100% - 100px);
    border-radius: 20px;
    padding: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    overflow: hidden;
    transition: .3s ease-in-out;
    z-index: 9;
    text-align: center;
}

.team-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.team-box:hover .team-content {
    height: 60px;
}

.team-box .email {
    transform: translateY(-50px);
    transition: .3s ease-in-out;
    display: none;
    visibility: hidden;
    opacity: 0;
}

.team-box:hover .email {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

.team-box .email a {
    font-size: 20px;
    margin: 0 10px;
    font-weight: 400;
    transition: .3s ease-in-out;
    color: var(--secondary-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-box .email a:hover {
    color: var(--accent-color);
}

.team-box .email i {
    margin-right: 10px;
}
/* FOOTER */
footer {
    width: 95%;
    border: 0.5px solid var(--border-color);
    position: relative;
    bottom: 0;
    background: linear-gradient(to right, var(--base-color), #ffd90024);
    color: var(--text-color);
    padding: 30px 0 30px;
    border-top-left-radius: 125px;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    justify-content: center;
}
footer .row {
    width: 85%;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

footer .col1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    flex-basis: 25%;
    padding: 10px;
    height: 100%;
}

footer .col {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-basis: 25%;
    padding: 10px;
}

footer .col p {
    font-size: 18px;
    color: var(--secondary-text);
    padding: 0;
    margin-bottom: 15px;
    margin-top: 0;

}

footer .logo {
    width: 80px;
    margin-bottom: 10px;
    fill: var(--text-color);
}

footer .col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

footer .col li {
    list-style: none;
}

footer .col a {
    text-decoration: none;
    color: var(--secondary-text);
    align-items: center;
    display: flex;
    font-size: 18px;
    margin-bottom: 15px;
    transition: .3s;
}

footer .col  li i {
    margin-inline-end: 10px;
}

footer .col li .instagram:hover {
    color: #c13584;
}

footer .col li .facebook:hover {
    color: #1877f2;
}

footer .col li .linkedin:hover {
    color: #004182;
}

footer .col li .x:hover {
    color: #1da1f2;
}

hr {
    border: 0;
    border-bottom: .5px solid var(--border-color);
    width: 90%;
    margin: 20px auto;
}

.copy-right {
    text-align: center;
    color: var(--secondary-text);
    font-size: 15px;
}
.underline {
    width: 100%;
    height: 2px;
    background: var(--secondary-text);
    border-radius: 5px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 10px;
    height: 100%;
    background-color: var(--text-color);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}


@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

/* Tablets landscape / small laptops */
@media (max-width: 1024px) {
    
}

/* TABLET RESPONSIVE */
@media screen and (max-width: 1200px) {
    .book-consultation-box {
        width: 70%;
    }
}

/* MOBILE RESPONSIVE */
@Media screen and (max-width: 768px){
    .body {
        width: 400px;
    }
    .head-left{
        margin-inline-start: 10px;
    }

    .head-right {
        margin-inline-end: 10px;
    }

    .header .logo {
        width: 10px;
        align-items: center;
    }

    .head-left h1{
        font-size: 25px;
    }

    header .button-box {
        display: none;
    }

    header ul {
        align-items: center;
        justify-content: center;
        width: calc(100% - 40%);
        padding: 0;
    }

    header ul li:not(.logo){
        display: none;
    }

    .sub-menu-wrap {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        top: 102%;
        width: 300px;
        height: 0;
        background: var(--menu-color);
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        overflow: hidden;
        transition: height .5s ease-in-out;
        z-index: 999;
    }

    .sub-menu-wrap.open-menu {
        top: 88%;
        height: 180px;
        opacity: 1;
        padding: 20px;
        margin: 10px;
        border: 0.5px solid var(--border-color);
        border-top: none;
    }

    .sub-menu-wrap li, .sub-menu-wrap .button-box {
        display: block !important;
    }

    .our-story {
        height: 1000px;
        margin-bottom: 150px;
    }

    .our-story p {
        width: 80%;
    }

    .values {
        height: 2000px;
        padding-bottom: 100px;
    }

    .values .text-changer {
        padding: 25px 0px;
    }

    .card-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card-article {
        width: 90%;
        height: 500px;
    }

    footer {
        bottom: unset;
        display: flex;
        align-items: center;
    }

    footer h3 {
        font-size: 100%;
    }

     footer .col a {
        font-size: 80%;
     }

    footer .row {
        display: flex;
        flex-direction: column !important;
    }

    footer .col {
        flex-basis: 100%;
        width: 100%;
    }

    footer .col1 {
        align-items: center;
        width: 100%;
    }
}

/* Phablets & small tablets */
@media (max-width: 600px) {
    .book-consultation-box h1 {
        font-size: 34px;
    }
    .book-holder .place-holder {
        font-size: 14px;
    }
    .book-holder span {
        font-size: 14px;
    }
    .book-holder input {
        font-size: 14px;
    }
}

/* Large phones (iPhone Pro Max, Plus models) */
@media (max-width: 430px) {
    header {
        height: 60px;
    }
    .book-consultation-box h1 {
        font-size: 200%;
    }
    .book-holder .place-holder {
        font-size: 90%;
    }
    .book-holder span {
        font-size: 80%;
    }
    .book-holder input {
        font-size: 80%;
    }
    .our-story {
        height: 100%;
        margin: 0;
    }
    .our-story h1 {
        font-size: 300%;
     }
    .our-story .sLogo {
        width: 50%;
    }
    .our-story p {
        font-size: 120%;
    }
    .role {
        font-size: 110%;
    }
    .card-container h1 {
        font-size: 200%;
    }
    .card-container .card-description {
        font-size: 100%;
    }
    .values .core-values {
        font-size: 250%;
    }
    .roles-container {
        height: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .values .role {
        font-size: 60%;
    }
}

/* Most phones (iPhone SE up to Galaxy) */
@media (max-width: 385px) {

}

/* Small phones */
@media (max-width: 360px) {
    .book-consultation-box {
        height: 50%;
    }
    .book-consultation-box h1 {
        font-size: 25px;
        flex-wrap: wrap;
    }
    .book-holder .place-holder {
        font-size: 10px;
    }
    .book-holder span {
        font-size: 10px;
    }
    .book-holder input {
        font-size: 10px;
        padding: 10px 25px;
    }
    .our-story p {
        font-size: 18px;
    }
    .values .core-values {
        font-size: 40px;
    }
    .values .text-changer {
        font-size: 35px;
        height: 40px;
        padding: 8px 0;
    }
    .card-article h1 {
        font-size: 40px;
    }
    .card-data .card-description {
        font-size: 16px;
    }
}x