@import url('https://fonts.googleapis.com/css2?family=Poppins');
@import url('https://fonts.googleapis.com/css2?family=Inter');
@import url('https://fonts.googleapis.com/css2?family=Montserrat');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #2196F3;
    --lightgray: #BDBDBD;
    --darkgray: #424242;
    --white: #ffffff;
    --orange: #FFCC80;
    --green: #66BB6A;
    --lightred: #EF9A9A;
    --red: #EF5350;
    --smaller: .6vw;
    --small: .8vw;
    --medium: 1vw;
    --large: 2.5vw;
    --larger: 3vw;
}

html {
    scroll-behavior: smooth;
}

section {
    width: 100vw;
    height: 100vh;
}

body {
    width: 100vw;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background: rgb(175, 221, 255);
    background: linear-gradient(231deg, rgba(175, 221, 255, 1) 0%, rgba(255, 255, 255, 1) 40%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: all ease .3s;
}

body::-webkit-scrollbar {
    display: none;
}

.cookieHolder {
    position: absolute;
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
    height: 8vh;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    justify-content: space-around;
    align-items: center;
}

.cookieHolder span {
    font-size: var(--medium);
}

.cookieHolder button {
    width: 10vw;
    height: 5vh;
    background-color: var(--blue);
    border: none;
    outline: none;
    border-radius: .2vw;
    font-size: var(--small);
    color: var(--white);
}

.header {
    position: absolute;
    position: fixed;
    z-index: 90;
    width: 100%;
    height: 11vh;
    padding: 0 2vw;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    background: none;
    transition: all ease-in .3s;
}

.show {
    animation: show .3s ease-in;
}

.hide {
    visibility: hidden;
    animation: hide .5s ease-out forwards;
}

.navBarScroll {
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
    -moz-box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
    box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);

}

.navBarCheck {
    position: absolute;
    width: fit-content;
    height: fit-content;
    font-size: 4vh;
    right: 2vw;
    color: var(--darkgray);
    display: none;
}

#navBar {
    width: 50vw;
}

nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.ul {
    position: absolute;
    right: 10vw;
    width: 100%;
    height: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
}

a {
    font-size: var(--medium);
    text-decoration: none;
    letter-spacing: .01vw;
    color: var(--lightgray);
    transition: ease 0.3s;
}

header a:hover {
    color: var(--blue);
    font-weight: bolder;
}

.activeSection {
    font-weight: 600;
    color: var(--blue);
}

#login {
    position: absolute;
    right: 2vw;
    height: 50%;
    width: 7vw;
    outline: none;
    border: none;
    background-color: var(--blue);
    border: solid 1px var(--blue);
    border-radius: .3vw;
    color: var(--white);
    letter-spacing: .1vw;
    font-size: var(--small);
    transition: ease .3s;
}

#login:hover {
    color: var(--blue);
    background: none;
}

.role {
    position: absolute;
    top: 10.5vh;
    right: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    width: 8vw;
    height: 12.5vh;
    padding: .3vw;
    border-radius: .5vw;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.totalContainer {
    width: 40%;
    height: fit-content;
    display: flex;
    justify-content: center;
    padding-left: 5vw;
    margin-top: 15vh;
}

.totalHolder {
    width: calc(100% / 3);
    height: fit-content;
    padding: .5vw;
}

.totalAndIcon {
    width: 100%;
    height: fit-content;
    padding: .5vw 0;
    display: flex;
    align-items: center;
}

.totalAndIcon i {
    width: 2vw;
    height: 2vw;
    display: grid;
    place-items: center;
    font-size: 2vh;
    color: var(--darkgray);
}

.totalAndIcon span {
    width: 100%;
    font-size: 3vh;
    color: var(--darkgray);
}

.totalHolderLabel {
    font-size: var(--medium);
    color: #999999;
}

.role {
    position: absolute;
    top: 10.5vh;
    right: 1.6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    width: 8vw;
    height: 12.5vh;
    padding: .3vw;
    border-radius: .5vw;
    color: var(--white);
    backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
}

.role span {
    width: 100%;
    padding: .7vh 0;
    text-align: center;
    background-color: var(--blue);
    border-radius: .2vw;
    font-size: 2.3vh;
    border: solid .1vw var(--blue);
    transition: all ease .3s;
    cursor: pointer;
}

.role span:hover {
    border: solid .1vw var(--blue);
    background: none;
    color: var(--blue);
}

.visible {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s ease, opacity .3s ease;
}

#home {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
}

#main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#text1 {
    margin-top: 28vh;
    font-weight: bold;
    color: var(--blue);
    font-size: 7vh;
    transition-delay: 100ms;
}

#text2 {
    font-weight: bold;
    color: var(--darkgray);
    font-size: 8vh;
    letter-spacing: .15vw;
    transition-delay: 200ms;
}

#text3 {
    width: 40vw;
    height: fit-content;
    text-align: center;
    font-size: var(--medium);
    transition-delay: 300ms;
}

.choice {
    margin-top: 2vh;
    width: 30%;
    display: flex;
    justify-content: space-around;
}

#register {
    width: 49%;
    height: 6vh;
    outline: none;
    border: none;
    background-color: var(--blue);
    border: solid 1px var(--blue);
    border-radius: .3vw;
    color: var(--white);
    font-size: var(--medium);
    transition: ease .3s;
    transition-delay: 200ms;
}

#register:hover {
    color: var(--blue);
    background: none;
}

#registerResponsive {
    width: 49%;
    height: 6vh;
    outline: none;
    border: none;
    background-color: var(--blue);
    border: solid 1px var(--blue);
    border-radius: .3vw;
    color: var(--white);
    font-size: var(--medium);
    transition: ease .3s;
    transition-delay: 200ms;
    display: none;
}

#registerResponsive:hover {
    color: var(--blue);
    background: none;
}

#bookButton {
    width: 49%;
    height: 6vh;
    outline: none;
    border: none;
    background-color: transparent;
    border: solid 1px var(--blue);
    border-radius: .3vw;
    color: var(--blue);
    font-size: var(--medium);
    transition: ease .3s;
    transition-delay: 100ms;
}

#bookButton:hover {
    color: var(--white);
    border: solid 1px var(--blue);
    background-color: var(--blue);
}

#pictureHolder {
    width: 40vw;
    height: 40vw;
    margin-top: 3vw;
    margin-right: 3vw;
    background: linear-gradient(to left, rgba(175, 221, 255, 1), rgba(255, 255, 255, 1));
    border-radius: 50% 10% 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#pictureHolder1 {
    width: 95%;
    height: 95%;
    background: linear-gradient(to left, rgb(176, 219, 252), rgb(248, 246, 246));
    border-radius: 50% 10% 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#doctor {
    margin-left: 2vw;
    width: 25vw;
    transition-delay: 300ms;
}

.check {
    color: var(--green);
    font-size: 2vw;
    margin-right: 1vw;
}

#exp {
    background-color: var(--white);
    height: 9vh;
    width: 25vw;
    border-radius: .5vw;
    position: absolute;
    top: 65vh;
    right: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--medium);
    font-weight: bolder;
    letter-spacing: .1vw;
    opacity: .9;
}

.containerAdmin .logo, .container .logo, .containerOTP .logo {
    position: absolute;
    top: 4vh;
    width: 7vw;
}

.container, .containerAdmin, .containerOTP {
    position: relative;
    position: fixed;
    display: flex;
    overflow: hidden;
    left: 25%;
    top: 15%;
    width: 50vw;
    height: 70vh;
    border-radius: .2vw;
    background: none;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);
    visibility: hidden;
    opacity: 0;
    z-index: 50;
}

.container.active, .containerAdmin.active, .containerOTP.active {
    position: relative;
    position: fixed;
    display: flex;
    overflow: hidden;
    left: 25%;
    top: 15%;
    width: 50vw;
    height: 70vh;
    border-radius: .2vw;
    background: none;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);
    animation: show 0.3s ease-in;
    visibility: visible;
    opacity: 1;
    backdrop-filter: blur(10px);
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    transition: all 0.6s ease-in-out;
    background: var(--white);
}

.sign-in-container {
    left: 0;
    z-index: 2;
}

.sign-up-container {
    left: 0;
    opacity: 0;
    z-index: 1;
    padding-bottom: 5vh;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
    opacity: 0;
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: swipe 0.6s;
}

.containerOTP.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
}

.container.right-panel-active .overlay-container,
.containerOTP.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.container.right-panel-active .overlay, .containerOTP.right-panel-active .overlay {
    transform: translateX(50%);
}

.container.right-panel-active .overlay-left, .containerOTP.right-panel-active .overlay-left {
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.form-container form {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 1vw 1.5vw;
}

.container h1, .containerAdmin h1 {
    margin-top: 2vh;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 2vw;
    margin-bottom: 1vw;
    color: var(--darkgray);
}

.inputContent {
    width: 100%;
    height: 6vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.inputContent .eyeOpen {
    position: absolute;
    margin-top: 2.4vw;
    right: 3.5vw;
    color: var(--lightgray);
    font-size: var(--small);
    display: none;
}

.inputContent .eyeClose {
    position: absolute;
    margin-top: 2.4vw;
    right: 3.5vw;
    color: var(--lightgray);
    font-size: var(--small);
    display: none;
}

.inputContent label {
    display: flex;
    width: 100%;
    height: 1vw;
    transition: all ease .5s;
    font-size: var(--small);
    background: none;
    padding: 0 0 1.5vw 1.2vw;
    color: var(--darkgray);
}

.inputContent .input {
    height: 2.5vw;
    width: 90%;
    border-radius: .2vw;
    border: solid .1vh var(--lightgray);
    outline: none;
    transition: all ease .5s;
    letter-spacing: .05vw;
    cursor: pointer;
    font-size: var(--small);
    color: var(--darkgray);
    padding-left: 1vw;

}

.errorMessage {
    font-size: var(--smaller);
    color: var(--red);
    opacity: 0;
}

.shake {
    animation: error 0.5s;
}

.inputContent.error input {
    border-color: var(--red);
}

.inputContent.error .errorMessage {
    opacity: 1;
}

.inputContent.success input {
    border-color: var(--green);
}

.inputContent input::placeholder {
    opacity: 0;
    transition: all ease .5s;
}

.inputContent input:hover::placeholder, .inputContent input:focus::placeholder {
    opacity: 1;
}

.forgot {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .5vh 0 2vh 0;
}

.forgot a {
    font-size: var(--small);
    text-decoration: underline;
    color: var(--lightgray);
    transition: ease 0.3s;
}

.forgot a:hover {
    color: var(--darkgray);
}

.container1 {
    width: 10vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    font-size: var(--small);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--lightgray);
}

.container1 input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.container1.checkmark {
    font-size: var(--small);
    transition: ease 0.3s;
    color: var(--lightgray);
}

#remember {
    transition: ease 0.3s;
}

.container1:hover input~.checkmark {
    color: var(--green);
}

.container1:hover input~#remember {
    color: var(--darkgray);
}

.container1 input:checked~.checkmark {
    color: var(--green);
}

.container1 input:checked~#remember {
    color: var(--darkgray);
}

.buttonContainer {
    position: absolute;
    bottom: 2vh;
    width: 100%;
    height: 11.5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.container .btn, .containerAdmin .btn {
    width: 60%;
    height: 5vh;
    border: solid .1vw var(--blue);
    border-radius: .3vw;
    letter-spacing: .05vw;
    background: var(--blue);
    background: linear-gradient(94deg, rgba(0, 123, 213, 1) 0%, rgba(13, 153, 255, 1) 83%);
    color: var(--white);
    transition: all ease .3s;
}

.containerAdmin .btn {
    margin-top: 3vh;
}

.googleBtn {
    width: 60%;
    height: 5vh;
    border: solid 1px lightgray;
    border-radius: .3vw;
    letter-spacing: .05vw;
    color: var(--white);
    transition: all ease .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darkgray);
    font-size: var(--smaller);
}

.googleBtn:hover {
    border: solid 1px lightgray !important;
}

.googleBtn img {
    margin-left: 1vw;
    width: 2vw;
}

.container .btnMain {
    width: 55%;
    height: 5vh;
    border: solid .1vw var(--blue);
    border-radius: .3vw;
    font-size: var(--small);
    letter-spacing: .05vw;
    background: var(--blue);
    background: linear-gradient(94deg, rgba(0, 123, 213, 1) 0%, rgba(13, 153, 255, 1) 83%);
    color: var(--white);
    transition: all ease .3s;
}

.container button:hover, .containerAdmin button:hover {
    color: var(--blue);
    background: var(--white);
}

.optionsGrp {
    position: absolute;
    bottom: 1vw;
    width: 90%;
    height: 10vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.optionsGrp span {
    color: var(--lightgray);
    font-size: var(--small);
}

.optionsGrp i {
    font-size: 4.2vh;
    color: var(--blue);
}

.optionsGrp img {
    width: var(--large);
    border-radius: 50%;
}

.responsiveButtons {
    position: absolute;
    bottom: 1vh;
    border: none;
    outline: none;
    background-color: var(--white);
    color: var(--darkgray);
    display: none;
    color: var(--blue);
}

.terms input[type="checkbox"] {
    display: none;
}

.terms {
    font-size: var(--small);
    transition: ease 0.3s;
    color: var(--lightgray);
}

#termsAndConditions {
    transition: ease 0.3s;
    cursor: pointer;
}

#showTerms {
    text-decoration: underline;
    color: var(--blue);
}

.checkmark1, .checkmark2 {
    cursor: pointer;
}

.terms input[type="checkbox"]:checked+.checkmark1 {
    color: var(--green);
}

.terms input[type="checkbox"]:checked+#termsAndConditions {
    color: var(--darkgray);
}

.overlay span i {
    cursor: pointer;
}

.overlay-left span {
    position: absolute;
    width: 100%;
    padding: 3vh 0 0 2vw;
    display: flex;
    top: 0;
    color: var(--lightgray);
}

.overlay-right span {
    position: absolute;
    width: 100%;
    padding: 3vh 2vw 0 0;
    display: flex;
    flex-direction: row-reverse;
    top: 0;
    color: var(--lightgray);
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.overlay {
    background: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: var(--darkgray);
    position: relative;
    left: -100%;
    width: 200%;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay h1 {
    font-size: var(--large);
}

.overlay p {
    font-size: var(--medium);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 6vw;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.overlay p {
    margin-bottom: 1.5vw;
}

.overlay button {
    position: absolute;
    bottom: 4vh;
    background: none !important;
    color: var(--blue) !important;
    border-color: var(--blue) !important;
    font-size: var(--medium);
}

.overlay button:hover {
    color: var(--white);
    background: var(--blue) !important;
}

button.ghost {
    background-color: transparent;
    border-color: var(--white);
}

button.ghost:hover {
    color: var(--white) !important;
}

.termsHolder {
    position: absolute;
    position: fixed;
    top: 10%;
    right: 30vw;
    width: 40%;
    height: 80vh;
    border-radius: .6vw;
    padding: .5vw 1vw;
    background-color: var(--white);
    visibility: hidden;
    opacity: 0;
    z-index: 60;
    transition: all ease-in .3s;
    overflow: hidden;
}

.text {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 65vh;
    padding: .5vw 1vw;
    overflow-y: scroll;
}

.text::-webkit-scrollbar {
    display: none;
}

.text .contentHolder {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text .title {
    font-size: var(--medium);
    width: 100%;
    padding: .5vw 0;
    letter-spacing: .02vw;
}

.text .title2 {
    font-size: var(--small);
    width: 100%;
}

.text .title2:first-child {
    margin-top: 2vh;
}

.text .content {
    font-size: var(--small);
    width: 95%;
    letter-spacing: .01vw;
}

.termsHolder-show {
    position: absolute;
    position: fixed;
    top: 10%;
    right: 30vw;
    width: 40%;
    height: 80vh;
    border-radius: .6vw;
    padding: 1vw 2vw;
    background-color: var(--white);
    z-index: 60;
    transition: all ease-in .3s;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);
}

.termsHolder-show span {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.8vh;
}

.termsHolder-show span i {
    font-size: var(--small);
}

.termsHolder span {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.8vh;
}

.termsHolder span i {
    font-size: var(--small);
}

.termsConditions {
    width: 100%;
    height: 83%;
    font-size: var(--small);
    overflow-y: scroll;
    padding: 1vw .5vw;
}

.termsConditions::-webkit-scrollbar {
    display: none;
}

.termsCheckbox input[type="checkbox"] {
    display: none;
}

.termsCheckbox {
    padding: 1vw;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: var(--small);
    transition: ease 0.3s;
    color: var(--lightgray);
}

#termsAndConditions1 {
    margin-left: 1vw;
    font-size: var(--small);
    transition: ease 0.3s;
    cursor: pointer;
}

#showTerms {
    text-decoration: underline;
    color: var(--blue);
}

.termsCheckbox input[type="checkbox"]:checked+.checkmark2 {
    color: var(--green);
}

.termsCheckbox input[type="checkbox"]:checked+#termsAndConditions1 {
    color: var(--darkgray);
}

.loaded {
    /* overflow: auto;  */
    overflow-x: auto;
}

.spinner {
    position: absolute;
    position: fixed;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    background: rgba(211, 211, 211, 0.082);
    transition: all ease 1s;

}

.spinner--hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner div {
    animation: spinner-4t3wzl 1.5s infinite backwards;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    position: absolute;
    margin-bottom: .8vw;
}

.spinner div:nth-child(1) {
    animation-delay: 0.15s;
}

.spinner div:nth-child(2) {
    animation-delay: 0.3s;
}

.spinner div:nth-child(3) {
    animation-delay: 0.45s;
}

.spinner div:nth-child(4) {
    animation-delay: 0.6s;
}

.spinner div:nth-child(5) {
    animation-delay: 0.75s;
}

.spinner span img {
    background: none;
    width: 6vw;
    transition: all ease .3s;
}

#services, #aboutUs {
    margin: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 6vw;
}

#clinics {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#clinicTitle {
    width: 100%;
    height: fit-content;
    padding: 3vh 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#clinicTitle span {
    font-size: var(--large);
    color: var(--blue);
    font-weight: bold;
}

.searchBar {
    position: relative;
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
}

.searchBar input {
    position: relative;
    width: 20vw;
    height: 5vh;
    border-radius: .4vw;
    border: none;
    background: white;
    border: none;
    outline: none;
    color: var(--darkgray);
    text-align: center;
    font-size: var(--medium);
    letter-spacing: .03vw;
}

.searchBar input::placeholder {
    color: var(--lightgray);
    font-size: var(--medium);
}

.searchBar i {
    position: absolute;
    right: 1vw;
    color: var(--lightgray);
    font-size: var(--medium);
}

.searchBar button {
    height: 5vh;
    padding: 0 1vw;
    font-size: var(--medium);
    color: var(--white);
    background-color: var(--blue);
    border: solid 1px var(--blue);
    border-radius: .3vw;
    margin-right: 1vw;
    transition: all ease .3s;
}

.searchBar button:hover {
    color: var(--blue);
    background-color: var(--white);
}

.clinicsContainer {
    width: 90%;
    height: 80%;
    display: flex;
    flex-wrap: wrap;
    overflow-y: scroll;
}

.clinicsContainer::-webkit-scrollbar {
    display: none;
}

.clinicHolder {
    width: calc(100%/4.8);
    height: 34vh;
    padding: 0.5vw;
}

.clinic {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: .3vw;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);
    transition: all ease .3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: .2vw;
}

.imageHolderClinic {
    width: 100%;
    height: 20vh;
    overflow: hidden;
    border-radius: .2vw;
    margin-bottom: 2vh;
}

.imageHolderClinic img {
    width: 100%;
    flex-shrink: 1;
}

.clinicName {
    width: 100%;
    height: 4vh;
    font-weight: 600;
    font-size: 2.5vh;
    padding-left: 1vh;
    color: var(--darkgray);
    margin-bottom: .5vh;
    border-radius: .2vw;
}

.locationHolder {
    position: relative;
    width: 100%;
    min-height: 3vh;
    max-height: fit-content;
    padding-left: 1vh;
    display: flex;
    align-items: center;
}

.locationHolder i {
    position: relative;
    margin-right: 1vh;
    color: var(--blue);
    display: flex;
    align-items: center;
    font-size: 2.5vh;
}

.locationHolder #location {
    position: relative;
    width: 100%;
    height: fit-content;
    color: var(--darkgray);
    border-radius: .2vw;
    display: flex;
    align-items: center;
    font-size: .9vw;
}

.aboutUsContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aboutUsTitle {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#aboutUsText1 {
    font-size: var(--large);
    color: var(--blue);
}

#aboutUsText2 {
    font-size: var(--medium);
    color: var(--blue);
}

.personnel {
    width: 80%;
    height: fit-content;
    padding: 2vh 1vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.personnel::-webkit-scrollbar {
    display: none;
}

.personContainer {
    width: calc(100%/4.8);
    height: 36vh;
    padding: .5vw;
}

.personnelContainer {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: .4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all ease-in .3s;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);

}

.personnelContainer:nth-child(even) {
    transition-delay: 200ms;
}

.personnelContainer:hover {
    box-shadow: none;
}

.imgContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7vw;
    height: 7vw;
    border-radius: 50%;
    overflow: hidden;
}

.imgContainer img {
    width: 100%;
    flex-shrink: 0;
}

.personnelRole {
    color: var(--blue) !important;
}

.personnelRole, .personnelName {
    width: 100%;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--medium);
    color: var(--darkgray);
}

.fa-circle-up {
    margin-top: 4vh;
    color: var(--blue);
    font-size: 2vw;
}

.weDo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 7vw;
    letter-spacing: .05vw;
}

.weDo #t1 {
    font-size: var(--medium);
    font-weight: bolder;
    color: var(--blue);
}

.weDo #t2 {
    font-size: var(--larger);
    font-weight: bolder;
    color: var(--blue);
}

.weDo #t3 {
    width: 10%;
    border: solid .1vw var(--blue);
}

.servicesContainer {
    width: 100%;
    height: 80%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 3vw;
    justify-content: center;

}

.servicesInitial {
    width: calc(100% / 6);
    height: 15vw;
    overflow: hidden;
    border-radius: .3vw;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);
    margin: 1vh;
}

.servicesEach {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicesEach:hover .servicesTitleandDescription {
    bottom: 0;
}

.servicesEach:hover i {
    display: none;
}

.servicesEach i {
    width: 100%;
    height: fit-content;
    font-size: var(--large);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3vw 0 0;
    transition: all ease .3s;
}

.servicesTitleandDescription {
    position: absolute;
    bottom: -10vh;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    transition: all ease .3s;
}

.servicesTitleandDescriptionBG {
    width: 100%;
    height: 15vh;
    background-image: url('../images/wave.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.servicesTitle {
    width: 100%;
    height: fit-content;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3vh;
    padding-bottom: 2vh;
}

.servicesDescription {
    width: 100%;
    height: 10vh;
    display: flex;
    padding-top: 1vh;
    justify-content: center;
    font-size: var(--medium);
    color: var(--white);
    background-color: var(--blue);
}

/* .image-slider{
    position: relative;
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darkgray);
    padding-left: 2vw;
}

.image-slider .slide{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    -webkit-clip-path: circle(0.0% at 0 0);
    clip-path: circle(0.0% at 0 0);
    opacity: 0;
} 
.image-slider .slide.activeSlide{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    -webkit-clip-path: circle(141.4% at 0 0);
    clip-path: circle(141.4% at 0 0);
    transition: 2s;
    transition-property: clip-path;
    opacity: 1;
}
.image-slider .slide img{
    width: 40%;
    border-radius: .5vw;
}
.image-slider .slide .image-info{
    bottom: 1vw;
    width: 20%;
    padding: 0 2vw;
}
.image-slider .slide .image-info h2{
    font-size: var(--large);
}
.image-slider .slide .image-info p{
    font-size: var(--medium);
}
.image-slider .imgNavigation{
    z-index: 2;
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 2vw;
    left: 16vw;
    width: 50%;
}
.image-slider .imgNavigation .imgBtn{
    background: var(--lightgray);
    width: .6vw;
    height: .6vw;
    margin: .5vw;
    border-radius: 50%;
    cursor: pointer;
}
.image-slider .imgNavigation .imgBtn.activeSlide{
    background: var(--blue);
    width: 1vw;
    height: .6vw;
    margin: .5vw;
    border-radius: .5vw;
    cursor: pointer;
    transition: width .1s;
    transition-delay: 100ms;
} */

.announcements {
    position: absolute;
    right: 1vw;
    top: 122vh;
    width: 30vw;
    height: 70vh;
    padding: 1vw;
    background: var(--white);
    border-radius: 1vw;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);
}

.announcements .anTitle {
    width: 100%;
    height: 5vh;
    font-size: 1.5vw;
    font-weight: bold;

}

#contactUs {
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
}

.contactContainer {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.get {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 5vw;
    letter-spacing: .05vw;
    font-size: 2.2vw;
    font-weight: bold;
    color: var(--blue);
}

.contactForm {
    position: relative;
    width: 50vw;
    height: 73vh;
    background: none;
    margin-left: 30vw;
    border-radius: .5vw;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);
}

.contactForm form {
    width: 100%;
    height: 100%;
    padding: 1vw 1vw 0 7vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contactForm #contactFormTitle {
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vw;
    color: var(--darkgray);
}

.input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4vw;
    margin-bottom: .2vw;
}

.input input {
    width: 80%;
    height: 70%;
    border-radius: .2vw;
    border: solid 1px var(--lightgray);
    outline: none;
    text-align: center;
    transition: all ease .5s;
    letter-spacing: .05vw;
    cursor: pointer;
    font-size: 1vw;
}

.input label {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 43%;
    width: 6vw;
    z-index: 1;
    transition: all ease .5s;
    font-size: 1vw;
    background: none;
    color: var(--lightgray);
}

.input input::placeholder {
    opacity: 0;
    transition: all ease .5s;
}

.input input:valid, .input input:hover, .input input:focus {
    border-color: var(--blue);

}

.input input:valid::placeholder, .input input:hover::placeholder, .input input:focus::placeholder {
    opacity: 1;
}

.input input:valid~label, .input input:hover~label, .input input:focus~label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6vw;
    background-color: var(--white);
    color: rgb(49, 190, 49);
    transform: translateY(-1.3vw);
    font-size: 1vw;
    border-radius: .5vw;
    color: var(--darkgray);
    letter-spacing: .03vw;
}

.input textarea {
    margin-top: 8vw;
    width: 80%;
    height: 10vw;
    border-radius: .2vw;
    border: solid 1px var(--lightgray);
    outline: none;
    padding: .5vw;
    font-family: 'Montserrat', sans-serif !important;
    resize: none;
    scroll-behavior: smooth;
    overflow-y: scroll;
    text-indent: .6vw;
    transition: all ease .3s;
    letter-spacing: .03vw;
    font-size: 1vw;
}

.input textarea::placeholder {
    text-indent: .6vw;
    font-size: 1.1vw;
    font-family: 'Montserrat', sans-serif !important;
}

.input textarea::-webkit-scrollbar {
    display: none;
}

.input textarea:focus, .input textarea:hover {
    border-color: var(--blue);
}

.contactForm button {
    margin-top: 8vw;
    width: 50%;
    height: 3vw;
    border: none;
    outline: none;
    border-radius: .3vw;
    color: #fff;
    font-size: 1.1vw;
    background-color: #00A2E8;
    cursor: pointer;
    border: solid 1px #00A2E8;
    transition: all ease .5s;
}

.contactForm button:hover {
    color: #00A2E8;
    border-color: #00A2E8;
    background-color: #fff;
}

.contactDetails {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    left: 16vw;
    width: 35vw;
    height: 60vh;
    padding: 1vw;
}

.contacts {
    background-color: var(--white);
    width: 15vw;
    height: 25vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: .5vw;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.08),
        0px 0px 4px rgba(3, 7, 18, 0.06),
        0px 1px 9px rgba(3, 7, 18, 0.05),
        0px 2px 15px rgba(3, 7, 18, 0.03),
        0px 3px 24px rgba(3, 7, 18, 0.02);
    transition: box-shadow ease .3s;
    cursor: pointer;
}

.contacts:nth-child(even) {
    transition-delay: 300ms;
}

.contacts:hover {
    box-shadow: none;
}

.contacts span {
    color: var(--darkgray);
    font-size: var(--small);
}

.contacts i {
    font-size: var(--larger);
    font-weight: bold;
    margin-bottom: .5vw;
}

.contacts .ad {
    color: var(--green);
}

.contacts .en {
    color: var(--red);
}

.contacts .ph {
    color: #64B7F4;
}

.contacts .fb {
    color: var(--blue);
}

.contacts .contactDetail {
    font-size: var(--medium);
}

i, button {
    cursor: pointer;
}

input {
    cursor: text !important;
}

.otpHold {
    width: 90%;
    margin: 4vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: var(--medium);
    color: var(--darkgray);
    user-select: none;
}

#otpText {
    font-size: var(--small);
}

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

.containerOTP .inputContent .input {
    height: 7vh;
    font-size: 3vh;
    letter-spacing: .8vw;
    font-weight: bolder;
    text-align: center;
}

.containerOTP .inputContent .input::placeholder {
    visibility: visible;
    opacity: 1;
    font-size: 2.5vh;
    font-weight: lighter;
    letter-spacing: 0;
}

.resendOTP {
    color: var(--darkgray);
    font-size: var(--small);
}

#resendOTP {
    text-decoration: underline;
    color: var(--blue);
    cursor: pointer;
    transition: all ease;
}

.containerOTP #verifyEmail {
    position: absolute;
    bottom: 10vh;
    width: 60%;
    height: 5vh;
    border: solid .1vw var(--blue);
    border-radius: .4vw;
    font-size: var(--small);
    letter-spacing: .05vw;
    background-color: var(--blue);
    color: var(--white);
    transition: all ease .3s;
}

.containerOTP #editEmail {
    position: absolute;
    bottom: 4vh;
    width: 60%;
    height: 5vh;
    border: solid .1vw var(--blue);
    border-radius: .4vw;
    font-size: var(--small);
    letter-spacing: .05vw;
    background-color: var(--white);
    color: var(--blue);
    transition: all ease .3s;
}

.containerOTP #verifyEmail:hover {
    color: var(--blue);
    background: var(--white);
}

.containerOTP #editEmail:hover {
    background: var(--lightgray);
}

.swal2-title {
    color: #2196F3;
}

.swal2-popup {
    font-family: 'Poppins', Helvetica, sans-serif;
    color: var(--darkgray);
    font-size: 2vh !important;
}

.swal-icon--success {
    color: var(--green);
}

.swal-icon--success::before,
.swal-icon--success::after,
.swal-icon--success_hide-corners {
    background: none !important;
}

.swal-button {
    padding: 10px 19px;
    border-radius: 5px;
    color: white;
    font-size: 12px;
}

.swal-button:hover {
    color: white;
}

.swal-button:focus {
    box-shadow: none;
}

.swal-title {
    font-size: var(--medium);
}

.swal-wide {
    width: 5vw !important;
}

.showLeft {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.showRight {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.animateLeft {
    transform: translateX(-100%);
    opacity: 0;
    transition: all ease-in .5s;
}

.animateRight {
    transform: translateX(100%);
    opacity: 0;
    transition: all ease-in .5s;
}

/* .mapContainer{
    position: absolute;
    position: fixed;
    width: 75vw;
    height: 85vh;
    background-color: var(--lightgray);
    z-index: 10;
    top : 10vh;
    right: 13vw;
    border-radius: 1vw;
    padding: 4vw 1vw 1vw;
    display: flex;
    justify-content: space-between;
}
.mapTitle{
    position: absolute;
    width: 97%;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content:space-between;
    padding: 0 1vw;
    top: 1vh;
}
#map{
    width: 65%;
    height:100%;
    background: var(--white);
    border-radius: .4vw;
}
.clinicPicture{
    padding-top: 1vh;
    width: 34%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-content: space-evenly;
}
.clinicPictureHolder{
    height: 35%;
    width: 100%;
    background-color: #414141;
    border-radius: .4vw;
    margin-bottom: 1vh;
} */






@keyframes show {
    0% {
        transform: translateY(-10vw);
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hide {
    0% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vw);
        opacity: 0;
    }
}

@keyframes swipe {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

@keyframes spinner-4t3wzl {
    0% {
        transform: rotate(0deg) translateY(-250%);
        background-color: #84c8ff;
        opacity: 0;
    }

    60%, 100% {
        transform: rotate(360deg) translateY(-250%);
        background-color: #2196F3;
        opacity: 1;
    }
}

@keyframes error {
    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-4px);
    }
}

.hidden {
    display: none;
}

.skeleton1 {
    position: relative;
    overflow: hidden;
}

.skeleton1:nth-child(even) {
    animation-delay: 200ms;
}

.skeleton1::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, #ebebeb, transparent);
    transform: translateX(-100%);
    animation: skeleton-loading 2s infinite;
}

.no-data-found {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-data-found img {
    width: 30vw;
}

.highlight {
    background-color: lightgray;
    width: fit-content;
    height: fit-content;
    display: inline-flex;
}

@keyframes skeleton-loading {

    100% {
        transform: translateX(100%);
    }
}

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 30vh;
    background-color: var(--white);
}

.footerContent {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.footerSection {
    position: relative;
    width: 40%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.footerSection img {
    width: 12vw;
    margin-bottom: 1vw;
}

.textHolderFooter {
    width: 100%;
    height: 4vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.textHolderFooter a {
    text-decoration: none;
    color: var(--blue);
    padding: 0 1vw;
}

.textHolderFooter a:visited {
    color: rgb(180, 130, 238);
}

.custom-icon-size {
    font-size: 1vw;
}

.custom-title-size {
    font-size: 1.5vw;
}

.custom-modal-size {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30vw;
    height: 17vw;
}

.swalCancelButton {
    color: var(--blue) !important;
    background-color: var(--white) !important;
    border: solid 1px var(--blue) !important;
    cursor: pointer;
}

.swalAcceptButton {
    color: var(--white) !important;
    border: solid 1px var(--blue) !important;
    background-color: var(--blue) !important;
    cursor: pointer;
}