/*****
TABLE OF CONTENT

1.) Font family.
2.) root variables.
3.) custom styling elements.
4.) custom styled classes.
5.) header styling.
6.) hero section styling.

*********/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,900;1,500;1,600;1,700&family=Lato:ital,wght@0,100;1,100&family=Manrope:wght@200;300;400;500;600;700;800&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');



/*
font-family: 'Inter', sans-serif;
font-family: 'Jost', sans-serif;
font-family: 'Lato', sans-serif;
font-family: 'Roboto', sans-serif;
*/

@font-face {
  font-family: gilroy-bold;
  src: url(fonts/Gilroy-FREE/Gilroy-ExtraBold.otf);
}

@font-face {
  font-family: gilroy-light;
  src: url(fonts/Gilroy-FREE/Gilroy-Light.otf);
}


:root {
  --as-white: #fff;
  --as-white-2: #cacaca;
  --as-white-3: #dddddd;
  --as-white-4: #fbfbfb;
  --as-black: #022527;
  --as-black-1: #022527;
  --as-black-2: #555555;
  --as-black-3: #151515;
  --as-black-4: #333333;
  --as-heading-color: #111111;
  --as-primary-color: #030166;
  --as-primary-color-2: #a1a0c6;
  --as-primary-color-3: #ddf4ff;
  --as-primary-color-4: #0098DB;
  --as-primary-color-5: #D4F1FF;
  --as-primary-color-6: #4DBEC2;
  --as-primary-color-7: #F2FBFF;
  --as-primary-color-8: #F2FAFF;
  --border-color-9: #EEEEEE;
  --ltn__paragraph-color: #aaaaaa;
  --as-secondary-color: #0A9A73;
  --as-heading-font: 'Inter', sans-serif;

}

*,
::after,
::before {
  box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: smooth
  }
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden !important;
  font-size: 1.6rem;
  font-family: var(--as-heading-font);
}

h1,
.h1 {
  font-size: 5.6rem;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 4.8rem;
}

h3,
.h3 {
  font-size: 3.6rem;
}

h4,
.h4 {
  font-size: 3rem;
}

h5,
.h5 {
  font-size: 1.8rem;
}

h6,
.h6 {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--as-heading-color);
  clear: both;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;

}

p {
  color: var(--as-black-1);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-size: 1.4rem;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--as-black-1);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--as-secondary-color);
}


/* ----------------------------------------------------
    input and button type focus outline disable
---------------------------------------------------- */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="tel"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="file"]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

code {
  color: #faa603;
}

/* ----------------------------------------------------
    Form input box
---------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="submit"],
input[type="time"],
input[type="date"],
select[option="submit"] {
  background-color: var(--white);
  border: 1px solid;
  border-color: var(--border-color-9);
  height: 4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: inherit;
  color: var(--ltn__paragraph-color);
  width: 100%;
  border-radius: 5px;
  padding: 2.5rem 5px 2.5rem 2rem;

}

textarea {
  background-color: var(--white);
  border: 1px solid;
  border-color: var(--border-color-9);
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: inherit;
  color: var(--ltn__paragraph-color);
  width: 100%;
  border-radius: 5px;
  padding: 2rem 5px 2rem 2rem;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="submit"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--ltn__paragraph-color);
  font-size: 1.4rem;
  font-weight: 400;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
  border-color: var(--as-secondary-color);
  box-shadow: none !important;
}

input[type="password"] {
  letter-spacing: 3px;
  font-size: 1.6rem;
}

label {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: var(--as-black-4);
}

/*-----------------------------
    custom styles
------------------------------*/
.format-pre pre {
    color: rgb(226, 50, 50);
    padding:1.5rem 0 0;
    line-height: 2.5;
    font-size: 11px;
    font-family: var(--as-heading-font);
  }
/*image*/
.custom-img-transition {
  overflow: hidden;
}

.custom-img-transition img {
  -webkit-transition: all 3.5s ease-out 0s;
  -o-transition: all 3.5s ease-out 0s;
  -moz-transition: all 3.5s ease-out 0s;
  transition: all 3.5s ease-out 0s;
}

.custom-img-transition img:hover {
  -webkit-transform: scaleX(.9);
  -ms-transform: scaleX(.9);
  transform: scaleX(.9);
}

/*width */
.as-w-80 {
  width: 80%;
}

/*font size */
.f-12 {
  font-size: 1.2rem !important;
}

.f-11 {
  font-size: 1.1rem !important;
}


.f-14 {
  font-size: 1.4rem !important;
}

.f-16 {
  font-size: 1.6rem !important;
}

.f-18 {
  font-size: 1.8rem !important;
}

.f-20 {
  font-size: 2rem !important;
}
.f-24 {
  font-size: 2.4rem !important;
}

.f-30 {
  font-size: 3rem !important;
}


@media screen and (min-width: 560px) and (max-width: 768) {
  .f-12 {
    font-size: 1.1rem !important;
  }

  .f-16 {
    font-size: 1.5rem !important;
  }

  .f-18 {
    font-size: 1.7rem !important;
  }

  .f-20 {
    font-size: 1.8rem !important;
  }
  .f-24 {
    font-size: 2.2rem !important;
  }

  .f-30 {
    font-size: 2.8rem !important;
  }

}

@media screen and (max-width: 559px) {
  .f-12 {
    font-size: 1rem !important;
  }

  .f-16 {
    font-size: 1.4rem !important;
  }

  .f-18 {
    font-size: 1.6rem !important;
  }

  .f-20 {
    font-size: 1.7rem !important;
  }
  .f-24 {
    font-size: 2rem !important;
  }

  .f-30 {
    font-size: 2.6rem !important;
  }
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.pwlr-5 {
  padding-left: 5% !important;
  padding-right: 5% !important;
}

@media screen and (max-width:578px) {
  .pwlr-sm-5 {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

}

.pwlr-13 {
  padding-left: 13% !important;
  padding-right: 13% !important;
}

.pwlr-15 {
  padding-left: 15% !important;
  padding-right: 15% !important;
}

.pwlr-20 {
  padding-left: 20% !important;
  padding-right: 20% !important;
}

.pwlr-lg-25 {
  padding-left: 25% !important;
  padding-right: 25% !important;
}

.pwlr-lg-28 {
  padding-left: 28% !important;
  padding-right: 28% !important;
}

.pwlr-lg-30 {
  padding-left: 30% !important;
  padding-right: 30% !important;
}

@media screen and (max-width:600px) {
  .pwlr-sm-10 {
    padding-left: 10% !important;
    padding-right: 10% !important;
  }
}

.plr-4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.plr-5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.plr-8 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

@media screen and (max-width:578px) {

  .pwlr-13 {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  .plr-sm-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

}



@media (min-width:992px) and (max-width:1199px) {

  .pwlr-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }


  .pwlr-13 {
    padding-left: 11% !important;
    padding-right: 11% !important;
  }

}

@media (max-width:600px) {

  .plr-8 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

}

.p-10tb {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.p-10b {
  padding-bottom: 10rem;
}

.p-13tb {
  padding-top: 13rem;
  padding-bottom: 13rem;
}

@media (min-width:768px) and (max-width:991px) {

  .p-10tb {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .p-10b {
    padding-bottom: 8rem;
  }

  .p-13tb {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

}

@media (min-width:560px) and (max-width:767px) {

  .p-10tb {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .p-10b {
    padding-bottom: 6rem;
  }

  .p-13tb {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

}

@media (max-width:559px) {

  .p-10tb {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .p-10b {
    padding-bottom: 5rem;
  }

  .p-13tb {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }


}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

@media (min-width:560px) and (max-width:767px) {
  .mt-8 {
    margin-top: 6rem;
  }



}

@media screen and (max-width:559px) {

  .mt-8 {
    margin-top: 3rem;
  }


}

.lh-20 {
  line-height: 2rem !important;
}

.lh-20 {
  line-height: 2rem !important;
}

.lh-28 {
  line-height: 2.8rem !important;
}

.lh-30 {
  line-height: 3rem !important;
}

/*text customs*/
.text-justify {
  text-align: justify;
}

@media screen and (max-width:578px) {
  .mobile-hidden {
    display: none;
  }

}

.btn-outline-as-primary,
.btn-outline-as-primary:link,
.btn-outline-as-primary:visited {
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  border: 1px var(--as-primary-color) solid;
  color: var(--as-primary-color);
  font-size: inherit;
  font-weight: bold;
  backface-visibility: hidden;
  display: inline-block;
  transition: all .4s;
  cursor: pointer;
}

.btn-outline-as-primary:hover {
  color: var(--as-secondary-color);
  border: 1px var(--as-secondary-color) solid;
}

.btn-as-primary,
.btn-as-primary:link,
.btn-as-primary:visited {
  padding: 1.5rem 3.5rem;
  border-radius: 50px;
  background-color: var(--as-primary-color);
  color: var(--as-white);
  font-weight: bold;
  font-size: inherit;
  backface-visibility: hidden;
  display: inline-block;
  transition: all .4s;
  cursor: pointer;
  text-transform: capitalize;
}


.btn-as-primary:hover {
  background-color: var(--as-secondary-color);
  color: var(--as-white);
}

.btn-package-as-primary,
.btn-package-as-primary:link,
.btn-package-as-primary:visited {
  padding: 1rem 2rem;
  border-radius: 50px;
  background-color: var(--as-primary-color-4);
  color: var(--as-white);
  font-size: inherit;
  backface-visibility: hidden;
  display: inline-block;
  transition: all .4s;
  cursor: pointer;
  font-weight: bold;
}

.btn-package-as-primary:hover {
  background-color: var(--as-secondary-color);
  color: var(--as-white);
}

.custom-as-light-btn,
.custom-as-light-btn:link,
.custom-as-light-btn:visited {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background-color: var(--as-white);
  color: #055559;
  font-size: inherit;
  font-weight: bold;
  backface-visibility: hidden;
  display: inline-block;
  transition: all .4s;
  cursor: pointer;
}

.custom-as-light-btn:hover {
  color: var(--as-heading-color);
}

/*custom title*/
.custom-pg-title {
  text-align: center;
  margin-bottom: 5rem;
}

.custom-pg-title h2 {
  letter-spacing: 0;
  color: var(--as-heading-color);
  font-weight: 700;
}

.custom-pg-title p {
  letter-spacing: 0;
  color: var(--as-black-4);
  font-weight: 400;
  font-size: 2rem;
}

.custom-span-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--as-white);
}

/*background colors*/
.bg-membership {
  background-color: var(--as-white-4);
}

.bg-card-package {
  background-color: #f0fbff;
}


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

.bg-as-primary-1 {
  background-color: var(--as-primary-color-4);
}

/*custom check-box */
.check-box-component input[type="checkbox"] {
  position: relative;
  cursor: pointer;
}

.check-box-component input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 33.75px;
  height: 33.75px;
  top: 0;
  left: 0;
  border: 2px solid #111111;
  border-radius: 2px;
  background-color: white;
}

.check-box-component input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  left: 15px;
}

.multiple-text-component {
  display: flex;
  justify-content: flex-end;
  padding-right: 2%;
  margin-bottom: 2rem;
}

.multiple-text-component .btn-multiple,
.multiple-text-component .btn-multiple:link {
  padding: 1.5rem 2.5rem;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: var(--as-secondary-color);
  color: #fff;
  font-size: inherit;
  font-weight: bold;
  backface-visibility: hidden;
  display: inline-block;
  transition: all .4s;
  cursor: pointer;
}

.multiple-text-component .btn-multiple:hover {
  transform: translateY(-5px);
  box-shadow: 0 -3px 10px rgba(10, 154, 116, 0.534), 0 -5px 20px rgba(142, 240, 214, 0.61);
}

.multiple-text-component .btn-multiple:active {
  transform: translateY(-1px);
  box-shadow: 0 -3px 10px rgba(10, 154, 116, 0.178), 0 -5px 20px rgba(142, 240, 214, 0.274);
}

/*styling modal component */
.modal-component .modal .modal-content {
  border-radius: 2rem;
  width: 100%;
}

.modal-component .modal .modal-content .modal-header {
  border-bottom: none;
  padding-top: 2rem;
  margin-right: 2rem;
}

.modal-component .modal .modal-content .modal-body {
  text-align: center;
}

.modal-component .modal .modal-content .modal-body .modal-btn-container {
  margin-top: 3rem;
  margin-bottom: 7rem;
}

.modal-component .modal .modal-btn-container .modal-btn {
  padding: 1.5rem 14rem;
  border: #333333 solid 1px;
  border-radius: 3rem;
  font-size: 2rem;
  line-height: 24.2px;
  transition: all .5s ease;
}

@media screen and (max-width:567px) {
    .modal-component .modal .modal-btn-container .modal-btn {
        padding: 1.5rem 10rem;

      }
}

.modal-component .modal .modal-btn-container .modal-btn.btn-1 {
  padding: 1.5rem 15rem;
}

@media screen and (max-width:567px) {
    .modal-component .modal .modal-btn-container .modal-btn.btn-1 {
        padding: 1.5rem 11rem;
      }
}
.modal-component .modal .modal-btn-container .modal-btn:hover {
  background: #030166B2;
  color: #fff;
}


/*-------------------------------------------
            header styling
-------------------------------------------*/

.header-nav.sticky-top {
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.2);
  animation: fadeInDown .5s steps(10, end) 0s 1 normal forwards;
  transition: all .4s;
}


@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);

  }

  50% {

    opacity: 0.5;

  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);

  }

  50% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  background: #fff;
  color: #333;
}

.header-top-responsive .container {
  display: none;
}

.header-top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-left,
.header-center,
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

}

.header-center {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 3;
  margin: 0 5rem;
  position: relative;
}

.header-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-right i {
  color: #030166;
}

.header-center .header-search-icon {
  position: absolute;
  left: 1.5rem;
}

@media screen and (max-width:767px) {

  .header-top {
    display: none;
  }

  .header-top-responsive .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }

  .header-top-responsive .container i {
    color: rgba(136, 136, 136, 1);
    font-weight: 100;
    font-size: 2rem;
  }

  .header-top-responsive .container span i {
    font-size: 2rem;
  }

  .responsive-header-left {
    position: relative;
  }

  .header-top-responsive .search-box {
    display: none;
    position: absolute;
    top: 70px;
    width: 80%;
    right: 30px;
    margin-bottom: 2rem;
  }

  .open {
    display: block !important;
  }

  .header-top-responsive .search-box form input[type='text'].responsive-search-input {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-radius: 5rem;
    padding-left: 5rem;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 5px 0 rgba(210, 243, 245, 0.568);
    ;
  }

  .header-top-responsive .search-box form button {
    position: absolute;
    top: 12px;
    right: 20px;
    border: none;
    background-color: #fff;
  }
}

/*search input*/
.header-center input[type='text'].header-search-input {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-radius: 5rem;
  padding-left: 5rem;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 5px 0 rgba(210, 243, 245, 0.568);
  ;
}

/*header button*/



.nav-item .nav-link {
  color: var(--as-black);
  font-weight: 500;
}

/*main nav*/

.header-nav .navbar-nav .nav-item.dropdown .dropdown-menu {
  min-width: 15vw;
  height: auto;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 5px rgba(0, 0, 0, 0.2);
  background-color: var(--as-primary-color-7);
}

.header-nav .navbar-nav .nav-item.dropdown .dropdown-menu li a {
  display: inline-block;
  padding: 1.5rem 2rem;
  background-image: linear-gradient(100deg, transparent 0%, transparent 50%, var(--as-primary-color-6) 50%);
  background-size: 250%;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;

}

.header-nav .navbar-nav .nav-item.dropdown .dropdown-menu li a:hover {
  background-position: 100%;
  color: var(--as-white);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);

}

.header-nav .navbar-brand {
  display: none;
}

.header-nav .border {
  display: none;
}

@media screen and (max-width:991px) {
  .header-nav .navbar-brand {
    display: inline-block;
  }

  .header-nav .border {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    z-index: 0;
  }

}


/*hero-section*/
main {
  margin-top: 3rem;
}

.hero-section {
  background-image: linear-gradient(to bottom right, rgba(221, 244, 255), rgba(221, 244, 255, 0.911)), url('../images/bg-img/home-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: center center;
  overflow: hidden !important;

}

.hero-title h1 {
  text-align: left;
  line-height: 7.2rem;
  font-weight: 600;
}

@media screen and (min-width:768px) and (max-width:991px) {
  .hero-title h1 {
    text-align: left;
    line-height: 7rem;
    font-weight: 600;
  }
}

@media screen and (max-width:765px) {
  .hero-title h1 {
    text-align: left;
    line-height: 6rem;
    font-weight: 600;
  }
}


.hero-sub-title {
  width: 95%;
  text-align: left;
}

.hero-img {
  overflow: hidden;
}

.hero-img img {
  -webkit-transition: all 3.5s ease-out 0s;
  -o-transition: all 3.5s ease-out 0s;
  -moz-transition: all 3.5s ease-out 0s;
  transition: all 3.5s ease-out 0s;

}

.hero-img img:hover {
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

.hero-section .hero-call-to-action a {
  display: inline-block;
}

@media screen and (max-width:399px) {
  .hero-section .hero-call-to-action a {
    display: inline-block;
    margin-bottom: 10px;
  }
}

/*vaccination section */
.vaccination-section {
  padding-top: 10rem;
  background-color: var(--as-white-4);
  padding-bottom: 3rem;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}



.vac-bg img.vac-img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3rem;
  -webkit-transition: all 3.5s ease-out 0s;
  -o-transition: all 3.5s ease-out 0s;
  -moz-transition: all 3.5s ease-out 0s;
  transition: all 3.5s ease-out 0s;

}

.vac-bg img:hover {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}


.vaccination-section .custom-card {
  width: 95%;
  background-image: url(../images/bg-img/vac-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: center center;
  padding: 6rem 3rem;
  border-radius: 1rem;
  -webkit-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}

@media screen and (max-width:600px) {
  .vaccination-section .custom-card {
    width: 100%;

  }
}

.vaccination-section .custom-card:hover {
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  box-shadow: 0 4px 8px 0 rgba(3, 1, 102, .7), 0 6px 20px 0 rgba(3, 1, 102, .2);
}

.vaccination-section .custom-card h3 {
  width: 85%;
  margin-bottom: 2.5rem;
  color: rgba(3, 1, 102, 1);
  line-height: 4.8rem;
}

@media screen and (max-width:600px) {
  .vaccination-section .custom-card h3 {
    width: 100%;
  }

}

.vaccination-section .custom-card p {
  color: rgba(3, 1, 102, 1);
  line-height: 2.8rem;
  width: 90%;
  font-weight: 500;
  margin-bottom: 5rem;
}

@media screen and (max-width:600px) {
  .vaccination-section .custom-card p {
    width: 95%;

  }
}


/*packages section*/
.packages-section {
  text-align: center;
  padding: 10rem 0;
}


.tab-div-content {
  padding: 1.2rem 10rem;
  border-radius: 5rem;
  background-color: var(--as-white-4);
}

@media screen and (max-width:578px) {
  .tab-div-content {
    padding: 1rem 1rem;
  }

  .tab-div-content .nav-item:nth-child(1) {
    margin-right: 0 !important;
  }
}

@media (min-width:579px) and (max-width:768px) {
  .tab-div-content {
    padding: 2rem 1rem;
  }

  .tab-div-content .nav-item:nth-child(1) {
    margin-right: 0 !important;
  }

}

@media (min-width:759px) and (max-width:991px) {
  .tab-div-content .nav-item:nth-child(1) {
    margin-right: 0 !important;
  }
}

.nav-pills .nav-item button.nav-link.active {
  padding: 1rem 6rem;
  border-radius: 50px;
  background-color: var(--as-white);
  color: var(--as-black);
  font-size: inherit;
  backface-visibility: hidden;
  display: inline-block;
  transition: all .4s;
  cursor: pointer;
}

.nav-pills .nav-item button.nav-link {
  padding: 1rem 6rem;
  border-radius: 50px;
  background-color: #fcfcfc;
  display: inline-block;
  color: #c4c4c4;
  font-size: inherit;
  backface-visibility: hidden;
  cursor: pointer;
}


.package-content-1 {
  text-align: left;
  transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.package-content-1:hover {
  transform: translateY(1rem);
}

.packages-section .package-content-1:hover .card.shadow {
  box-shadow: none !important;
}

.package-content-1 .card {
  padding: 0 5rem 3rem;
  background-color: #ebf7fc;
  border: none;
  border-radius: 2rem;
  margin-bottom: 5rem;
}

  @media screen and (max-width:568px) {

  }

.package-content-1 .card .d-flex a {
  border-bottom: #0098DB solid 2px;

}

.package-content-1 .card .d-flex .more:hover a {
  border-bottom: var(--as-secondary-color) solid 2px;
  color: var(--as-secondary-color);
  cursor: pointer;
}

.package-content-1 .card .d-flex .more:hover i {
  color: var(--as-secondary-color) !important;
  cursor: fade-in-up;
}

.package-components {
  margin-bottom: 3rem;

}

.package-components h5.package-price-text {

  font-weight: 400;
  color: var(--as-black-2);
}

.check-box .fa-check-circle {
  font-size: 2rem;
  color: var(--as-primary-color-6);

}

.card .services-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  border-radius: 2rem;
  width: 100%;
  height: 11rem;
  display: block;
}

.card .services-bg.img-1 {
  background-image: url("../images/home-services/home-lab-test.png");
}

.card .services-bg.img-2 {
  background-image: url("../images/home-services/book-lab.png");
}

.card .services-bg.img-3 {
  background-image: url("../images/home-services/home-care-nurse.png");
}

.card .services-bg.img-4 {
  background-image: url("../images/home-services/pharm-consult.jpg");

}

.card .services-bg.img-5 {
  background-image: url("../images/home-services/doc-consult.png");

}

/*book section */
.book-section {
  background-image: linear-gradient(to right bottom, rgba(251, 251, 251, 0.445), rgba(219, 219, 215, 0.301)), url(../images/book-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.book-section .book-card {
  border-radius: 1rem;
  border: .5px solid #007FB633;
  padding: 2rem 3rem;
  position: relative;
  transition: .4s all;
}

.book-section .book-card-color-1 {
  background-color: #FFFAF2;
}

.book-section .book-card-color-2 {
  background-color: #F8FFF2;
}

.book-section .book-card-color-3 {
  background-color: #F8F5FF;
}

.book-card .book-time {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--as-heading-color);
}

.book-card .book-steps {
  padding-left: 3rem;
  width: 85%;
}

.book-section .book-card::before {
  content: '';
  top: 0;
  left: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: linear-gradient(to bottom, rgba(221, 244, 255, 0.459), #def1fa79);
  transition: .5s ease-out;
}

.book-section .book-card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-1rem);
}

.book-section .book-card:hover::before {
  height: 100%;
  width: 100%;
  visibility: visible;
  opacity: 1;
}

/*faq section*/
.faq {
  background-image: linear-gradient(to bottom right, rgba(254, 254, 253, 0.397), rgba(248, 248, 248, 0.247)), url(../images/faq-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: center center;
  text-align: center;
  backface-visibility: hidden;
}

.faq .accordion {
  padding-left: 10%;
}

.accordion .accordion-item {
  background-color: transparent !important;
  overflow: hidden;
  border: none !important;

}

.accordion-body {
  text-align: left;
  padding-left: 0;
}

.accordion .accordion-item .accordion-button {
  text-align: left;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 0.5px solid #1EA6AD33;
  padding: 2.5rem 2.5rem 2.5rem 0;
  font-size: 2rem;
  font-weight: 400;
  color: var(--as-black-3);
}

@media screen and (max-width:600px) {
  .accordion .accordion-item .accordion-button {
    font-size: 1.5rem;
  }
}


/*explore*/
.explore {
  text-align: center;
  background-image: linear-gradient(to bottom right, #4cbbbfd3, rgba(76, 187, 191, 0.842)), url(../images/explore-bg.png);
}

.explore .explore-text {
  margin-bottom: 5rem;
  color: var(--as-white);
}


.explore .explore-text h4 {
  line-height: 3.8rem;
}

@media screen and (min-width:768px) and (max-width:992px) {
  .explore .explore-text.pwlr-20 {
    padding-left: 10% !important;
    padding-right: 10% !important;
  }
}

@media screen and (min-width:579px) and (max-width:767px) {
  .explore .explore-text.pwlr-20 {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}

@media screen and (max-width:578px) {

  .explore .explore-text.pwlr-20 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/*
Download Area Style
======================================================*/
.download {
  padding: 8rem 0 0;
  background-color: var(--as-heading-color);
}

.download .download-img {
  margin-top: 0;
  margin-left: 5rem;
  max-height: 600px;
  padding: 0;

}


.download-content {
 margin-top: 15rem;
}

.download-content .download-text h3 {
  text-align: left;
  font-weight: 600;
  line-height: 4.4rem;
  color: var(--as-white);
}



.download-content .custom-span-title {
  font-size: 1.5rem;
  font-weight: 400;
}

.download-content .downonlod-btn {
  margin-top: 30px;
}

@media screen and (min-width:769px) and (max-width:1199px) {
  .download {
    padding: 0;
    background-color: var(--as-heading-color);
  }

  .download .download-img {
    margin-top: 17rem;
    margin-left: 0;
    max-height: 500px;
    padding: 0;
  }

  .download-content {
    margin-top: 20rem;
    padding-bottom: 2rem;
  }

  .download-content h4 {
    font-size: 2.5rem !important;
    margin-bottom: 2rem;
  }

}

@media screen and (min-width:579px) and (max-width:768px) {
  .download {
    padding: 8rem 0 8rem;
    background-color: var(--as-heading-color);
  }

  .download .download-img {
    margin-top: 4rem;
    margin-left: 0;
    max-height: 500px;

  }

  .download-content {
    margin-top: 5rem;
  }

}

@media screen and (max-width:578px) {
  .download {
    padding: 8rem 0 8rem;
    background-color: var(--as-heading-color);
  }

  .download .download-img {
    margin-top: 4rem;
    margin-left: 0;
    margin-left: 0;
    max-height: 500px;
  }

  .download-content {
    margin-top: 5rem;
  }

}

.download-content .downonlod-btn .store-btn {
  background-color: var(--as-white);
  color: var(--as-heading-color);
  display: inline-block;
  position: relative;
  padding: 10px 30px 0;
  padding-left: 70px;
  border-radius: 15px;
  margin-right: 30px;
}


.download-content .downonlod-btn .store-btn:last-child {
  margin-right: 0;
}



.download-content .downonlod-btn .store-btn img {
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 30px;
}

.download-content .downonlod-btn .store-btn i {
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 30px;
}

.download-content .downonlod-btn .store-btn span {
  line-height: 1;
  font-size: 10px;
  display: block;
  font-family: gilroy-light;
}

.download-content .downonlod-btn .store-btn p {
  font-family: gilroy-bold;
}

.download-content .downonlod-btn .store-btn:hover {
  background-color: var(--as-white-2);
}

/* footer section*/

footer {
  padding: 10rem 0 5rem;
  background-color: var(--as-white);
  position: relative;

}

footer .footer-socials i {
  font-size: 20px;
}

footer .footer-socials-1 i {
  font-size: 20px;
  color: #444444;
}

footer .newsletter h6 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--as-heading-color)
}

footer .newsletter .subscribe-email input {
  width: 60%;
  border-radius: 30px;
}

footer .footer-section-content a:hover p {
  color: var(--as-secondary-color);
  font-weight: bold;
  transform: translateX(5px);
  transition: ease-out .4s;
}


footer .footer-socials a:hover i {
  transform: scale(1.2, 1.2);
  transition: ease-out .4s;
}
footer .footer-socials a:hover img {
    display: inline-block;
    transform: scale(1.2, 1.2);
    transition: ease-out .4s;
  }

footer .footer-section-content.footer-socials-1 .d-flex:hover i {
  color: var(--as-secondary-color) !important;
  transform: scale(1.2, 1.2);
  cursor: pointer;
  transition: ease-out .4s
}

footer .newsletter .subscribe-email input {
  width: 100%;
  border-radius: 30px;
}

footer .newsletter .subscribe-email button.sub-btn:link,
footer .newsletter .subscribe-email button.sub-btn:visited,
footer .newsletter .subscribe-email button.sub-btn {
  padding: 0 2rem;
  height: 5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.5rem;
  background-color: var(--as-primary-color);
  color: var(--as-white);
}

footer .newsletter .subscribe-email button.sub-btn:hover {
  background-color: var(--as-primary-color-4);
}

/*about us section*/
section.about-us {
  position: relative;
  padding: 20rem 0;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;

}
section#privacy{
    position: relative;
    padding: 12rem 0;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

@media screen and (min-width:769px) and (max-width:991px) {
  section.about-us {
    padding: 15rem 0;
  }

}

@media screen and (min-width:579px) and (max-width:768px) {
  section.about-us {
    padding: 10rem 0;
  }

}

@media screen and (max-width:578px) {
  section.about-us {
    padding: 5rem 0;
  }

}

section.about-us::before {
  content: '';
  position: absolute;
  z-index: -1;
  opacity: .2;
  top: 0;
  left: 0;
  background: #000000;
  height: 100%;
  width: 100%;
}

section.about-us::after {
  content: '';
  position: absolute;
  z-index: -1;
  opacity: 0.04;
  inset: 0;
  height: 100%;
  z-index: -1;
  background-image: url(../images/bg_lines.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 200%;
}

section.about-us.item-bg2 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.267), rgba(13, 10, 168, 0.199)), url(../images/bg-img/about-bg.jpg);
}

section.about-us.item-bg3 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.671), rgba(13, 10, 168, 0.281)), url(../images/bg-img/membership-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

section.about-us.item-bg4 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.267), rgba(13, 10, 168, 0.336)), url(../images/bg-img/pharm-supply-bg.jpg);
}

section.about-us.item-bg5 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.438), rgba(13, 10, 168, 0.171)), url(../images/bg-img/vaccination-bg.jpg);
}

section.about-us.item-bg6 {
  position: relative;
  padding: 20rem 0;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.384), rgba(12, 10, 168, 0.322)), url(../images/bg-img/package-bg.jpg);
}

section.about-us.item-bg7 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.384), rgba(12, 10, 168, 0.322)), url(../images/bg-img/contact-bg.jpg);

}

section.about-us.item-bg8 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.384), rgba(12, 10, 168, 0.322)), url(../images/bg-img/home-lab-bg.jpg);
}

section.about-us.item-bg9 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.384), rgba(12, 10, 168, 0.322)), url(../images/bg-img/home-care-nurse-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

section.about-us.item-bg10 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.158), rgba(3, 1, 102, 0.322)), url(../images/bg-img/lab-visit-bg.jpg);
}

section.about-us.item-bg11 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.6), rgba(3, 1, 102, 0.322)), url(../images/bg-img/pharm-consult-bg.jpg);
}




section.about-us.item-bg-2 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.158), rgba(3, 1, 102, 0.322)), url(../images/bg-img/doc-consult-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

section.about-us.item-bg-3 {
  background-image: linear-gradient(to bottom right, rgba(3, 1, 102, 0.6), rgba(3, 1, 102, 0.322)), url(../images/bg-img/faq.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.about-us .about-content {
  text-align: center;
}


@media screen and (max-width:568px) {
  section.about-us-text {
    text-align: left;
  }
}

section.about-us-info .about-text p {
  line-height: 2.4;
  font-weight: 400;
  font-size: 18px;
  color: var(--as-heading-color);
}

@media screen and (max-width:568px) {
  section.about-us-info .about-text.pe-5 {
    padding-right: 0 !important;
  }
}

section.about-us-info .about-img img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 7px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-top-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
  -webkit-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}

section.about-us-info .about-img:hover img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

/*v-m-section*/
.v-m-section {
  padding: 10rem 0;
  background-color: var(--as-primary-color-5);
}
.v-m-section .v-m-img{
  margin-top: 14rem;
}
.v-m-section .v-m-img img {
  box-shadow: 0 4px 8px 5px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  width: 90%;
  height: 45vh;

  border-radius: 5rem;
}
@media screen and (max-width:992px) {
  .v-m-section .v-m-img{
    margin-top: 0;
  }
  .v-m-section .v-m-img img {
    height: 40vh;
  }
}

.v-m-section .vision {
  margin-bottom: 10rem;
  padding-right: 1rem;
}

.v-m-section .vision .vision-text {
  line-height: 3rem;
}

.v-m-section .mission {
  padding-right: 1rem;
}

.v-m-section .mission .mission-text {
  line-height: 3rem;
}


/*core-value*/
.core-value .card.card-body {
  border: solid 1px var(--as-primary-color-3);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.core-value .card.card-body .value-icon {
  width: 6.5rem;
  height: 6.5rem;
  text-align: center;
  background-color: #F2FBFF;
  color: var(--as-white);
  border-radius: 50%;
  transition: all .4s;
}



.core-value .card.card-body h5 {
  transition: all .4s;
}

.core-value .card.card-body p {
  transition: all .4s;
}

.core-value .card.card-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  z-index: -1;
  width: 0;
  height: 100%;
  background: linear-gradient(120deg, #35C6CB80 0%, #31d9dfde 50%, rgba(13, 156, 228, 0.76) 100%);
  border-radius: 30px;
  transition: 0.5s;
}

.core-value .card.card-body:hover {
  transform: translateY(-10px);
}

.core-value .card.card-body:hover::before {
  width: 100%;
}

.core-value .card.card-body:hover .value-icon {
  transform: rotate(360deg);
  color: var(--as-primary-color-4);
  background-color: #ffffff;
}

.core-value .card.card-body:hover h5 {
  color: #ffffff;
}

.core-value .card.card-body:hover p {
  color: #ffffff;
}


/********************************
  Design package section
  *******************************/
.all-packages .package-search {
  position: relative;
  margin-bottom: 8rem;
}

@media screen and (max-width:767px) {
  .all-packages .package-search {
    margin-bottom: 5rem;
  }
}

@media screen and (max-width:568px) {
  .all-packages .package-search {
    margin-bottom: 3rem;
  }
}

.all-packages .package-search i {
  position: absolute;
  top: 1.7rem;
  left: 1.5%;
  font-size: 2rem;
  color: var(--as-black-2);
}

@media screen and (max-width:600px) {
  .all-packages .package-search i {
    position: absolute;
    top: 1.7rem;
    left: 5%;
    font-size: 2rem;
    color: var(--as-black-2);
  }
}


/*search input*/
.all-packages .package-search input[type='text'].package-search-input {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-radius: 5rem;
  padding-left: 5rem;
  width: 100%;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 5px 0 rgba(210, 243, 245, 0.568);
}

.all-packages .card.card-body {
  border-radius: 20px;
  border: none;
  transition: all .4s;
}

.all-packages .card.card-body:hover {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 5px 0 rgba(47, 48, 48, 0.568);
  transform: translateY(-2rem);
}

/*faq main */
.faq-main .accordion {
  padding-left: 10%;
  padding-right: 10%;
}

/**********************
    membership
***********************/
.membership-discount-img {
  overflow: hidden;
}

.membership-discount-img img {
  -webkit-transition: all 3.5s ease-out 0s;
  -o-transition: all 3.5s ease-out 0s;
  -moz-transition: all 3.5s ease-out 0s;
  transition: all 3.5s ease-out 0s;
}

.membership-discount-img img:hover {
  -webkit-transform: scaleX(.9);
  -ms-transform: scaleX(.9);
  transform: scaleX(.9);
}

/*membership-signup */
.sign-up .card.card-body {
  border-radius: 1.5rem;
  border: 2px solid var(--as-primary-color-3);
}

.sign-up.order-summary .summary-card.card.card-body {
  border: 1px solid #333333B2;
  border-radius: 1rem;
  max-height: 25rem;
  overflow-x: hidden;
  overflow-y: auto;

}


.sign-up.order-summary .summary-card.card.card-body::-webkit-scrollbar {
  width: 1rem;
}

.sign-up.order-summary .summary-card.card.card-body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5rem;
}

.sign-up.order-summary .summary-card.card.card-body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.13);
  border-radius: 5rem;

}

.sign-up .card.card-body .summary-button {
  margin-top: 8rem;
}

.sign-up .card.card-body .successful-text {
  margin: 15rem 5rem 25rem;
}
@media (min-width:768px) and (max-width:991px) {

    .sign-up .card.card-body .successful-text {
        margin: 13rem 4rem 20rem;
      }

  }

  @media (min-width:560px) and (max-width:767px) {

    .sign-up .card.card-body .successful-text {
        margin: 10rem 4rem 15rem;
      }

  }

  @media (max-width:559px) {

    .sign-up .card.card-body .successful-text {
        margin: 8rem 2rem 12rem;
      }


  }

.sign-up .card.card-body .successful-text .successful-subtext {
  color: #022527;
  line-height: 50px;
  text-align: center;
}

.sign-up .card.card-body .btn-as-primary {
  padding: 1.5rem 4rem;
  border-radius: 10px;

}

.sign-up .card.card-body .sign-up-profile-header .profile-img {

  position: relative;

}

.sign-up .card.card-body .sign-up-profile-header .profile-icon {
  position: absolute;
  right: 5rem;
  top: 7rem;
}

@media screen and (max-width:528px) and (min-width:400px) {
  .sign-up .card.card-body .sign-up-profile-header .profile-icon {
    position: absolute;
    right: 2rem;
    top: 7rem;
  }
}

@media screen and (max-width:399px) {
  .sign-up .card.card-body .sign-up-profile-header .profile-icon {
    position: absolute;
    right: .8rem;
    top: 7rem;
  }
}


.sign-up .card.card-body .sign-up-form {
  text-align: left;
}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .search-component {
  position: relative;
}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .search-component i {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #dddddd;
  font-size: 2rem;
}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .search-component input[type='text'] {
  width: 100%;
  padding: 1.5rem 0 1.5rem 3.5rem;
  border: .8px solid #DDDDDD;
  border-radius: 2rem;
}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .search-component input[type="text"]::-webkit-input-placeholder {
  color: #dddddd;
  font-size: 1.2rem;
  font-weight: 400;
}

.sign-up .card.card-body .sign-up-form .select-img input[type='file'] {
  width: 100%;
  padding: 0 0 0 0;
  border: .8px solid #DDDDDD;
  border-radius: 5px;
}

.sign-up .card.card-body .sign-up-form .select-img input[type='file'].form-control::file-selector-button {
  padding: 2rem 1rem 2rem .75rem;
  margin: 0 1rem 0 0;
  border: .8px solid #DDDDDD;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 400;
}

.sign-up .card.card-body .sign-up-form .select-img input[type='file'].form-control::-webkit-file-upload-button {
  padding: 2rem 1rem 2rem .75rem;
  margin: -.375rem 1rem -.75rem -.375rem;
  border: .8px solid #DDDDDD;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 400;
}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .as-search-btn:link,
.sign-up .card.card-body .sign-up-form .sign-up-bottom .as-search-btn:active,
.sign-up .card.card-body .sign-up-form .sign-up-bottom .as-search-btn {
  padding: .8rem 4rem;
  border-radius: 50px;
  background-color: #1F9AE8;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--as-white);
  font-weight: bold;
  display: inline-block;
  transition: all .4s;
  cursor: pointer;
}


.sign-up .card.card-body .sign-up-form .sign-up-bottom .sign-up-bottom-check-boxes .checkbox .span-text{
  margin-top: 18px;

}
.sign-up .card.card-body .sign-up-form .sign-up-bottom .sign-up-bottom-check-boxes .checkbox label{
  position: relative;

}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .sign-up-bottom-check-boxes  .checked-span {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  padding-left: 25px;
  margin-right: 15px;
}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .sign-up-bottom-check-boxes  .checked-span:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);
}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .sign-up-bottom-check-boxes input[type=checkbox] {
  display: block;
  position: absolute;
  visibility: hidden;
}
.sign-up .card.card-body .sign-up-form .sign-up-bottom .sign-up-bottom-check-boxes .checkbox .checked-span:before {
  border-radius: 3px;
}

.sign-up .card.card-body .sign-up-form .sign-up-bottom .sign-up-bottom-check-boxes input[type=checkbox]:checked ~ .checked-span::before{
  display: inline-block;
  content: "\2713";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 12px;
}










.sign-up .card.card-body .register-button .as-register-btn,
.sign-up .card.card-body .register-button .as-register-btn:link {
  padding: 1.5rem 7rem;
  border-radius: 50px;
  background-color: var(--as-primary-color-5);
  transition: all .5s;
  cursor: pointer;
}

.sign-up .card.card-body .register-button .as-register-btn:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2) !important;

}

.sign-up .card.card-body .register-button .register-btn,
.sign-up .card.card-body .register-button .register-btn:link {
  padding: 1.5rem 12rem;
  border-radius: 8px;
  background-color: var(--as-primary-color);
  transition: all .5s;
  cursor: pointer;
}

.sign-up .card.card-body .register-button .register-btn:hover {
  transform: translateY(-1px) !important;
  background-color: #0301669c;
}

.sign-up .card.card-body .register-button .register-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2) !important;
  background-color: #0301664b;
}

.sign-up-bottom-check-boxes .check-box-anchor {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2.2rem;
  color: #1F9AE8;
  border-bottom: 1px solid #1F9AE8;
  padding-bottom: 3px;
}

.sign-up .card.card-body .register-button .as-register-btn:hover {
  background-color: var(--as-primary-color-4);
  color: var(--as-black-1) !important;
  transform: translateY(-2px);
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.2);
}

.sign-up .sign-up-bottom-check-boxes .collapse .overflow {
  max-height: 13rem;
  overflow-y: scroll;
  overflow-x: hidden;
}
.sign-up .sign-up-bottom-check-boxes .collapse .overflow::-webkit-scrollbar {
  width: 10px;
  overflow: hidden;
}

.sign-up .sign-up-bottom-check-boxes .collapse .overflow::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5rem;
}

.sign-up .sign-up-bottom-check-boxes .collapse .overflow::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.13);
  border-radius: 5rem;

}



@media screen and (max-width:578px) {

  .sign-up .card.card-body.p-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}

@media screen and (min-width:579px) and (max-width:768px) {
  .sign-up .pwlr-13 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sign-up .card.card-body.p-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


.sign-up .tab-content .doc-persona .card.card-body {
  background-color: #F4FCFF66;
  transition: all .4s;
}

.sign-up .tab-content .doc-persona .card.card-body img {
  -webkit-transition: all .5s ease-out 0s;
  -o-transition: all .5s ease-out 0s;
  -moz-transition: all .5s ease-out 0s;
  transition: all .5s ease-out 0s;
}

.sign-up .tab-content .doc-persona .card.card-body:hover img {
  -webkit-transform: scaleX(1.05);
  -ms-transform: scaleX(1.05);
  transform: scaleX(1.05);
}

.sign-up .tab-content .doc-persona .card.card-body:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transform: translate(2px, 5px);
}

.sign-up .tab-content .doc-persona .doc-left-component {
  text-align: left;
  padding-left: 1rem;
}

.sign-up .tab-content .doc-persona .doc-left-component .cta-div a {
  color: #bce5f6;
  border-bottom: solid #bce5f6 1px;
}

.sign-up .tab-content .doc-persona .doc-left-component .doc-star {
  color: #facb4a;
}

.sign-up .tab-content .doc-persona .doc-left-component .doc-persona-btn,
.sign-up .tab-content .doc-persona .doc-left-component .doc-persona-btn:link {
  padding: 1rem 4rem;
  border-radius: 50px;
  background-color: var(--as-primary-color-4);
  transition: all .5s;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.sign-up .tab-content .doc-persona .doc-left-component .doc-persona-btn:hover {
  color: var(--as-primary-color-3);

}

.sign-up .no-pop-up-message {
  border-radius: 2rem;
  background: #030166B2;
  color: #fff;
  display: none;
  transition:.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.form-group .nice-select {
  width: 100%;
  border: 1px solid;
  border-color: var(--border-color-9);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--ltn__paragraph-color);
  font-size: 1.4rem;
  font-weight: 400;
  height: 5.5rem;
  float: none;
}

.form-group .nice-select.wide span.current {
  display: block;
  padding-top: .5rem;
}

/* register sign up */
.sign-up .blue-color{
  color: #070978;
}
.sign-up .sky-blue{
  color: #72CFD5;
}
.sign-up .register-subtext{
  color: #333333B2;
  line-height: 0;
}

.sign-up .register-bottom .icon-bg{
  background-color: #FAFAFA;
  padding: 1rem;
  border-radius: 50%;
}
.sign-up .register-bottom .login{
 color: #030166;
 font-weight: 600;
}
.forgot-password-text{
    color: #030166 !important;
}


/*********************************
         PHARM SUPPLY
**********************************/

.pharm-supply-streamline-btn button {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
}

/*********************************
         Tab-list
**********************************/
.how-it-works .list-group .list-group-item {
  border: none;
  background-color: var(--as-white-4);
  border-radius: 1rem;
  position: relative;
  transition: all .3s;
}

.how-it-works .list-group .list-group-item::before {
  content: '';
  bottom: 0;
  left: 5px;
  width: 0;
  position: absolute;
  height: 2px;
  background-color: #0A9A73;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.how-it-works .list-group .list-group-item:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.how-it-works .list-group .list-group-item:hover::before {
  width: 98%;
  opacity: 1;
  visibility: visible;
}

.how-it-works .list-group .list-group-item .custom-rounded-shape {
  height: 7rem;
  width: 7rem;
  padding-top: 2rem;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: rgba(5, 85, 89, 0.486);
}

.how-it-works .list-group .list-group-item:hover .custom-rounded-shape {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.how-it-works .list-group .list-group-item.active .custom-rounded-shape {
  height: 7rem;
  width: 7rem;
  padding-top: 2rem;
  border-radius: 50%;
  background-color: var(--as-primary-color-8);
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #055559;
}


.how-it-works .list-group .list-group-item.active h5 {
  color: var(--as-heading-color);
}

.how-it-works .list-group .list-group-item.active p {
  color: var(--as-black-2);
}

.how-it-works .list-group .list-group-item h5 {
  color: rgba(17, 17, 17, 0.329);
}

.how-it-works .list-group .list-group-item p {
  color: rgba(85, 85, 85, 0.267);
}

@media screen and (min-width:769px) {
  .how-it-works .mobile-view {
    display: none;
  }
}


@media screen and (max-width:768px) {
  .how-it-works .desktop-view {
    display: none;
  }

  .how-it-works .mobile-view {
    display: block;

  }

  .how-it-works .mobile-view .how-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
    text-align: center;
    text-align: left;
    position: relative;
    border-radius: 2rem;
    -webkit-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    -moz-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
  }

  .how-it-works .mobile-view .how-bg.img-1 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/home-lab-1.png');
  }

  .how-it-works .mobile-view .how-bg.img-2 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/home-lab-2.jpg');
  }

  .how-it-works .mobile-view .how-bg.img-3 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/home-lab-3.png');
  }

  /* images for lab-visit */
  .how-it-works .mobile-view .how-bg.img-4 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/lab-visit-1.png');
  }

  .how-it-works .mobile-view .how-bg.img-5 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/lab-visit-2.png');
  }

  .how-it-works .mobile-view .how-bg.img-6 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/lab-visit-3.jpg');
  }

  /* images for home-care nurse */
  .how-it-works .mobile-view .how-bg.img-7 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/nurse-1.png');
  }

  .how-it-works .mobile-view .how-bg.img-8 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/nurse-2.png');
  }

  .how-it-works .mobile-view .how-bg.img-9 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/nurse-3.png');
  }

  .how-it-works .mobile-view .how-bg.img-10 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/nurse-4.png');
  }

  /* images for pharm-consult nurse */
  .how-it-works .mobile-view .how-bg.img-11 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/pharm-consult-1.png');
  }

  .how-it-works .mobile-view .how-bg.img-12 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/pharm-consult-2.png');
  }

  .how-it-works .mobile-view .how-bg.img-13 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.781), rgba(0, 0, 0, 0.445)), url('../images/services/pharm-consult-3.png');
  }

  .how-it-works .mobile-view .how-bg.img-14 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/pharm-consult-4.png');
  }

  /* images for doc consult*/
  .how-it-works .mobile-view .how-bg.img-11 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/doc-consult-1.png');
  }

  .how-it-works .mobile-view .how-bg.img-12 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/doc-consult-2.png');
  }

  .how-it-works .mobile-view .how-bg.img-13 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.438), rgba(0, 0, 0, 0.288)), url('../images/services/doc-consult-3.png');
  }

  .how-it-works .mobile-view .how-bg.img-14 {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.274)), url('../images/services/doc-consult-4.png');
  }

  .how-it-works .mobile-view .how-bg .custom-number {
    font-size: 170px;
    line-height: 1;
    display: inline-block;
    position: absolute;
    z-index: 0;
    right: 15px;
    font-weight: 600;
    top: 5px;
    font-family: "Poppins", sans-serif;
    opacity: 0.5;
  }

  .how-it-works .mobile-view .how-bg:hover .custom-number {
    visibility: none;
    opacity: 0;
  }

  .how-it-works .mobile-view .how-bg:hover .how-bg.img-1 {
    transform: scaleX(1.1);
  }


}


/*********************************
         VACCINATIONS PAGE
**********************************/
.vaccination-types {
  background-color: #F0FBFF;
}

.vaccination-types .card.card-body {
  border: none;
  border-radius: 2rem;
  -webkit-box-shadow: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.2);
  transition: ease-out .4s;
}

.vaccination-types .card.card-body:hover {
  transform: translateY(10px);
  -webkit-box-shadow: none;
  box-shadow: none;
}



/***************************************
      PHARMACY CONSULTATION PAGE
***************************************/
.tab-pane#pharm-consult-2 .pharm-consult-tab .nav-item {}

.tab-pane#pharm-consult-2 .pharm-consult-tab .nav-item .nav-link.active {
  border: solid 1px var(--as-primary-color-4);
  border-radius: 5px;
  background-color: #DCF0F9;
  padding: 1rem 3rem;
}

.tab-pane#pharm-consult-2 .pharm-consult-tab .nav-item .nav-link {
  border: solid 1px #D0D5DD;
  border-radius: 5px;
  background-color: #F0F2F5;
  padding: 1rem 3rem;
}

.tab-pane#pharm-consult-2 .pharm-consult-tab .nav-item:not(:last-child) {
  margin-right: 1rem;
}

/***************************************
      Table component
***************************************/
.table-component .table thead {
  background-color: #EEF8FC;
  color: #000000;


}

.table-component .table thead tr th {
  padding: 3rem;
  border-bottom: none;
}

.table-component .table tbody tr td {
  padding: 2rem;

}

.table-component .orders-table-shell {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-radius: 1.8rem;
  border: 1px solid #e9eff7;
  box-shadow: 0 16px 40px rgba(7, 42, 96, 0.12);
  padding: 1.2rem;
}

.table-component .finer-orders-table {
  margin-bottom: 0;
}

.table-component .finer-orders-table thead {
  background: #edf5ff;
}

.table-component .finer-orders-table thead tr th {
  padding: 1.8rem 1.6rem;
  border-bottom: 0;
  color: #0f2b5b;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.table-component .finer-orders-table tbody tr td {
  padding: 1.7rem 1.6rem;
  border-top: 1px solid #ecf1f8;
  font-size: 1.45rem;
  color: #22314f;
  vertical-align: top;
}

.table-component .finer-orders-table .order-date-col {
  min-width: 12.8rem;
  white-space: nowrap;
}

.table-component .finer-orders-table .order-test-col {
  min-width: 30rem;
  max-width: 46rem;
  line-height: 1.65;
  font-weight: 500;
}

.table-component .finer-orders-table .category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.2rem;
  background: #e8f0ff;
  color: #143b88;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.table-component .finer-orders-table .status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.7rem;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  text-transform: capitalize;
}

.table-component .finer-orders-table .status-pending {
  background: #fff6db;
  color: #8a6500;
}

.table-component .finer-orders-table .status-complete,
.table-component .finer-orders-table .status-completed {
  background: #defceb;
  color: #176338;
}

.table-component .finer-orders-table .table-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 50%;
  background: #103b98;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(16, 59, 152, 0.24);
  line-height: 1;
}

.table-component .finer-orders-table .table-action-btn:hover {
  color: #ffffff;
  background: #0c2e76;
}
.table-component .finer-orders-table a.table-action-btn.download {
border:red 1px solid;
display:inline-block;
height:10px;
   text-decoration: none;
}

.table-component .finer-orders-table .table-action-btn.order-download-action {
  background: #0f8f63;
  box-shadow: 0 8px 16px rgba(15, 143, 99, 0.24);
}

.table-component .finer-orders-table .table-action-btn.order-download-action:hover {
  background: #0a6f4c;
}

.table-component .finer-orders-table .table-action-empty {
  color: #a5afbd;
}

.table-component .order-details-popup-content {
  border: 0;
  border-radius: 1.6rem;
  box-shadow: 0 20px 44px rgba(12, 45, 99, 0.22);
}

.table-component .order-details-popup-content .modal-header {
  padding: 2rem 2.3rem 1rem;
}

.table-component .order-details-popup-content .modal-title {
  font-size: 2.1rem;
  font-weight: 700;
}

.table-component .order-details-popup-body {
  padding: 1.2rem 2.3rem 2.3rem;
}

.table-component .order-details-popup-body strong,
.table-component .order-details-popup-body span,
.table-component .order-details-popup-body li {
  font-size: 1.35rem;
}

.table-component .order-details-popup-body #fodItems {
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .table-component .finer-orders-table .order-test-col {
    min-width: 24rem;
    max-width: 30rem;
    font-size: 1.3rem;
  }

  .table-component .finer-orders-table thead tr th,
  .table-component .finer-orders-table tbody tr td {
    padding: 1.3rem 1.1rem;
  }

  .table-component .order-details-popup-content .modal-header {
    padding: 1.6rem 1.5rem 0.8rem;
  }

  .table-component .order-details-popup-body {
    padding: 1rem 1.5rem 1.8rem;
  }
}

/***************************************
      TO TOP
***************************************/
#totop {
  font-weight: 900;
  color: #fff;
  display: none;
  position: fixed;
  right: 34px;
  bottom: 50px;
  z-index: 999;
  height: 0;
  width: 0;
  font-size: 0;
  text-align: center;
  padding-top: 3px;
  line-height: 34px;
  border-radius: 3px;
  transition: .3s ease-in-out;
}

#totop.top-visible {
  height: 40px;
  width: 40px;
  font-size: 22px;
  display: inline;
}

@keyframes jump {
  0% {
    bottom: 20px;
  }

  50% {
    bottom: 40px;
  }

  100% {
    bottom: 20px;
  }
}

#totop.top-visible {
  animation: jump 4s infinite;
  background-color: var(--as-primary-color-4);
}

/***************************************
      style preloader
***************************************/


.loader-bg::after {
  content: '';
  position: absolute;
  z-index: -1;
  opacity: 0.04;
  inset: 0;
  height: 100%;
  z-index: -1;
  background-image: url(../images/bg_lines.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 200%;
}
.loader-bg {
  position: fixed;
  background: linear-gradient(127deg, #1141B6, #4DC0C1);
  top: 0;
  z-index: 100000000000000000000;
  width: 100%;
  height: 100%;
}

.loader{
  background: var(--as-primary-color-3);
  border-radius: 50%;
  position: absolute;
  width: 150px;
  height: 150px;
  top: calc(50vh - 75px);
  left: calc(50vw - 75px);
  text-align: center;
  animation: loader 2s linear infinite;
  opacity: 0;
  visibility: hidden;

}
.loader img{
  width: 150px;
  position: absolute;
  top: 40px;
  left: 0;
  animation: loader 2s ease-out infinite;
  opacity: 0;
  visibility: hidden;

}
/* .loader:before, .loader:after{
  content: '';
  border: 1em solid var(--as-primary-color-3);
  border-radius: 50%;
  height: inherit;
  width: inherit;
  position: absolute;
  top: 0;
  left: 0;
  animation: loader 2s linear infinite;
  opacity: 0;
}
.loader:before{
  animation-delay: .5s;
} */

@keyframes loader {
  0%{
    transform: scale(0);
    opacity: 0;
    visibility: hidden;

  }
  50%{
    opacity: 1;
    visibility: visible;

  }
  100%{
    transform: scale(1);
    opacity: 0;
    visibility: hidden;
  }
}

/***************************************
      style nice select list
***************************************/
.nice-select .list{
  overflow-x: auto !important;

}
.nice-select .list::-webkit-scrollbar{
  width: 2px;
}
.nice-select .list::-webkit-scrollbar-track{
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10rem;
}
.nice-select .list::-webkit-scrollbar-thumb{
  background-color: rgba(0, 0, 0, 0.13);
  border-radius: 10rem;
}



