@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
*{
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    touch-action: manipulation;
}
body {
    overflow-x: hidden;
    user-scalable: none;
    -webkit-user-zoom: fixed;
    background: var(--Bg, #FAF8F5);
}
@viewport {
    zoom: 1.0 !important;
    user-zoom: fixed !important;
}


:root {
	--hue: 223;
	--bg: hsl(var(--hue),10%,90%);
	--fg: hsl(var(--hue),10%,10%);
	--primary: hsl(var(--hue),90%,55%);
	--primary-l: hsl(var(--hue),90%,65%);
	--primary-d: hsl(var(--hue),90%,45%);
	--white: hsl(var(--hue),10%,100%);
	--white-d: hsl(var(--hue),10%,45%);
}
#loaders {
	background-color: var(--bg);
	color: var(--fg);
	font: 1em/1.5 sans-serif;
	height: 100vh;
	display: grid;
	place-items: center;
    position: fixed;
    width: 100%;
    z-index: 9999;
    height: 100vh;
    opacity: 0.97;
}

  .book .inner {
	width: 120px;
	position: relative;
	transform-origin: 2px 2px;
	-webkit-animation: book var(--duration) ease infinite;
			animation: book var(--duration) ease infinite;
  }

/* #scroll-top img,svg {
    height: 70px;
    width: 60px;
} */

.scroll-top {
  position: fixed;
  bottom: 60px;
  right: 30px;
  width: 50px;
  height: 50px;
  font-size: 32px;
  /* background: #FBBC05; */
  border-radius: 100%;
  cursor: pointer;
  z-index: 999!important;
  animation: zoom 2s infinite;
}
@keyframes zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.scroll-top_1 {
  position: fixed;
  bottom: 110px;
  right: 10px;
  width: 50px;
  height: 50px;
  font-size: 32px;
  /* background: #FBBC05; */
  border-radius: 100%;
  cursor: pointer;
  z-index: 999!important;
  animation: bouns 4s infinite;
}

@keyframes bouns {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-10px);
  }
}



.animated-title { display:inline-block; white-space:pre; }

.animated-title span {
  display: inline-block;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/* Fade Left */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Fade Right */
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}
::-webkit-scrollbar-thumb {
    background-color: #b4b4b4;
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.sys-view {
    display: block !important;
}
.mbl-view {
    display: none !important;
}
.tab-view-no {
    display: block !important;
}
.tab-view {
    display: none !important;
}
.grand_care_blu {
    background: var(--Bg-blue, #E6EFFB);
}
.grand_care_pnk {
    background: var(--PINK-50, #FFE6F3);
}
.pink_clr{
    background: var(--PINK-100, #FFB0D9);
}
.actv_bg_clr {
    background: var(--Blue, #0063DB);
}
.fxd_txt_clr {
    color: var(--Blue, #0063DB);
}
.text_clr {
    color: var(--Text-highlight, #003678);
}
.bg_clr {
    background: var(--Text-highlight, #003678);
}
button:hover, button:active {
    background: var(--Blue, #0063DB)!important;
    color: white!important;
}


#enquireModal {
    svg {
        align-self: center;
    }
    img {
        width: 75%;
        align-self: center;
    }
    .card {
        border: 1px solid var(--BLUE-200, #8AB7EE);
        box-shadow: 2px 2px 6px 0px #68686840;
    }
    hr {
        width: 90%;
        color: #ff0084;
        margin: 0.2rem 0 3rem 0;
        opacity: 0.7;
        border-width: 1.1px;
        justify-self: center;
    }
    .btn-close:hover {
        background: none !important;
        color: dark !important;
    }
}
.error_msg {
    align-self: end;
}
@media(max-width: 1024px) and (min-width: 600px) {
    #enquireModal {
        height: auto;
    }
}
@media(max-width: 1024px) {
    .tab-view-no {
        display: none !important;
    }
    .tab-view {
        display: block !important;
    }
}
@media(max-width: 600px) {
    .sys-view {
        display: none !important;
    }
    .mbl-view {
        display: block !important;
    }
    #enquireModal {
        hr {
            width: 60%;
            margin: 0.2rem 0 2rem 0;
        }
    }
}

