* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

:root {
  --xxxl: 2.4rem;
  --xxxlss: 2rem;
  --xxl: 1.9rem;
  --xxlss: 1.6rem;
  --xl: 1.5rem;
  --xlss: 1.4rem;
  --l: 1.3rem;
  --lss: 1.2rem;
  --m: 1.1rem;
  --mss: 1rem;
  --s: 0.8rem;
  --sss: 0.7rem;

  --primary-color: #000000;
  --oprimary-color: #ffffff;
  --secondary-color: #333333;
  --osecondary-color: #bbbbbb;
  --tprimary-color: #00000066;
  --tsecondary-color: #ffffffcc;
  --highlight-color: #750000;
  --ohighlight-color: #ffcece;
  --t-color: rgba(255, 255, 255, 0);
}
.darkmode {
  --primary-color: #cecece;
  --oprimary-color: #000000;
  --secondary-color: #ffffff;
  --osecondary-color: #333333;
  --tprimary-color: #ffffff22;
  --tsecondary-color: #000000cc;
  --highlight-color: #ff0000;
  --ohighlight-color: #333333;
  --t-color: rgba(0, 0, 0, 0);
}

div[popover]:not(.container-pop)::backdrop {
  height: 100%;
  width: 100%;
  background: var(--tsecondary-color);
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  background: var(--oprimary-color);
  overflow-x: hidden;
}

body:has([popover]:popover-open),
body:has(.booknow.show) {
  overflow: hidden;
}

h2,
h3,
h5 {
  color: var(--highlight-color);
}

p,
h1,
h4,
h6 {
  color: var(--primary-color);
}

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

li {
  color: var(--primary-color);
}

.text-xxxl,
h1 {
  font-size: var(--xxxl);
  font-weight: 900;
  margin: 40px 0 20px;
}
.text-xxl,
h2 {
  font-size: var(--xxl);
  font-weight: 600;
  margin: 30px 0 15px;
}
.text-xl,
h3 {
  font-size: var(--xl);
  margin: 20px 0 10px;
}
.text-l,
h4 {
  font-size: var(--l);
  margin: 10px 0 5px;
}
.text-m,
h5,
h6 {
  font-size: var(--m);
  margin: 5px 0 5px;
}

a,
button,
p,
li,
input {
  font-size: var(--m);
}

.text-s {
  font-size: var(--s);
  margin: 0;
}

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

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

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

a {
  text-decoration: none;
}

.footer-contents ul,
.faq ul {
  list-style: none;
}
h4 {
  font-weight: 900;
}

.iframecss {
  margin: 0 auto;
  max-width: 700px;
}

header {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  z-index: 999;
  background: var(--tsecondary-color);
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 2px 10px var(--tprimary-color);
  white-space: nowrap;
  transition: 0.4s;
  padding: 0 5px 0;
}
header img {
  width: 150px;
  height: 60px;
  margin: auto -5px;
}

header nav {
  margin: auto;
}

header nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  white-space: nowrap;
}

header nav ul li {
  list-style: none;
  white-space: nowrap;
  margin: 0 auto;
  position: relative;
  width: 125px;
  height: 40px;
}

header nav ul li button {
  text-align: center;
  color: var(--secondary-color);
  font-size: var(--m);
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 10px;
  width: 100%;
  height: 100%;
  transition: 2s;
}
header nav ul li button:hover {
  color: var(--highlight-color);
}

header nav ul li button:hover li {
  position: relative;
}

header nav ul li::after {
  content: "";
  background: var(--highlight-color);
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.6s;
  opacity: 0;
}
header nav ul li:hover::after {
  background: var(--highlight-color);
  width: 100%;
  opacity: 1;
}

header button {
  margin: auto 0;
}

header .hamburgerbutton {
  display: none;
  background: transparent;
  margin: auto 0;
  cursor: pointer;
}

header .hamburgerbutton .hamburgerline1,
header .hamburgerbutton .hamburgerline2,
header .hamburgerbutton .hamburgerline3 {
  width: 30px;
  height: 4px;
  margin: 6px 0;
  background: var(--highlight-color);
  transition: 0.6s;
}

@media (max-width: 1080px) {
  header {
    z-index: 100001;
    color: var(--secondary-color);
  }

  header.mobilemenuheader {
    flex-direction: column;
    height: 100%;
  }

  body:has(header.mobilemenuheader) {
    overflow: hidden;
  }

  header.mobilemenuheader img {
    margin: auto;
    width: 300px;
    height: 120px;
  }

  header .hamburgerbutton {
    display: block;
  }

  header nav ul.mobilemenu {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  header nav ul {
    display: none;
  }
  header nav ul li {
    width: 100%;
  }
  header nav ul li button {
    font-size: var(--xl);
  }
  header nav ul li::after {
    height: 5px;
  }
  header nav ul li button {
    margin: auto;
  }
  header .loginbtn {
    margin: auto;
    display: none;
  }

  header .loginbtn.show {
    display: block;
  }

  header a {
    padding-left: 10px;
    width: 150px;
  }
  header .hamburgerbutton {
    margin: auto 0;
    position: absolute;
    top: 12px;
    right: 20px;
  }
  .hamburgerbutton .hamburgerline1.close {
    transform: rotate(-45deg) translateX(-5px) translateY(12px);
  }
  .hamburgerbutton .hamburgerline2.close {
    transform: scale(0);
  }
  .hamburgerbutton .hamburgerline3.close {
    transform: rotate(45deg) translateX(-1px) translateY(-10px);
  }
}

@media (max-width: 1080px) and (orientation: landscape) {
  header nav ul.mobilemenu {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
  }
}

/* @media (hover: none) and (pointer: coarse) and (max-width: 1080px) and (orientation: landscape) {
  #booknowform {
    display: none;
  }

  #booknowheadpid span {
    display: none;
  }
  #booknowheadpid::before {
    content: "Note:";
    font-size: var(--m);
    font-weight: 500;
  }
  #booknowheadpid::after {
    content: "Change screen orientation to book with Whatsapp!";
    font-size: var(--m);
    font-weight: 400;
  }
} */

.colormode {
  background: var(--highlight-color);
  box-shadow: 0px 0px 5px 7px var(--tprimary-color);
  border-radius: 100px;
  border: none solid;
  cursor: pointer;
  display: block;
  z-index: 100002;
  width: 128px;
  height: 24px;
  padding-left: 6px;
  text-align: left;
  position: fixed;
  right: -98px;
  top: 0;
  transition: 10s;
}
.colormode:hover {
  transition: 0.6s;
  box-shadow: 0px 0px 5px 4px var(--primary-color);
  right: 0;
}

.topcss {
  position: fixed;
  right: -100px;
  bottom: 8px;
  font-size: var(--xxl);
  cursor: pointer;
  height: 50px;
  width: 50px;
  transition: 1.2s;
  opacity: 0.4;
  border-radius: 100%;
  box-shadow: 0px 5px 10px var(--tprimary-color);
  z-index: 1000;
}

.topcss:hover {
  opacity: 1;
}

.topcss.active {
  display: block;
  right: 20px;
}

.float-donate {
  position: fixed;
  font-size: var(--xxl);
  left: 20px;
  bottom: 65px;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.5s;
  border-radius: 100%;
  border: none;
  box-shadow: 0px 5px 10px var(--tprimary-color);
  z-index: 1000;
}

.float-donate:hover {
  font-size: var(--xxxl);
  opacity: 1;
}

.float-contact {
  position: fixed;
  font-size: var(--xxl);
  right: 20px;
  bottom: 65px;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.5s;
  border-radius: 100%;
  border: none;
  box-shadow: 0px 5px 10px var(--tprimary-color);
  z-index: 1000;
}

.float-contact:hover {
  font-size: var(--xxxl);
  opacity: 1;
}

.appointmentfloat {
  position: fixed;
  bottom: 8px;
  left: 20px;
  width: 50px;
  height: 50px;
  z-index: 1002;
  white-space: nowrap;
}

.appointmentfloatbutton {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  z-index: 1001;
  opacity: 0.4;
  background: var(--highlight-color);
  white-space: nowrap;
  font-size: var(--l);
}

.appointmentfloat:hover {
  border-radius: 50px;
  width: 332px;
  left: 0;
  right: 0;
  transition: 1s;
}
.appointmentfloat:hover .appointmentfloatbutton {
  width: 100%;
  border-radius: 50px;
  opacity: 1;
  color: var(--ohighlight-color);
}

.appointmentfloat.expand {
  border-radius: 50px;
  width: 332px;
  left: 0;
  right: 0;
  transition: 1s;
}

.appointmentfloatbutton.expand {
  width: 100%;
  border-radius: 50px;
  opacity: 1;
  color: var(--ohighlight-color);
}

.float-social {
  position: fixed;
  top: 40%;
  right: -25px;
  cursor: pointer;
  height: 50px;
  width: 50px;
  font-size: var(--xxl);
  transition: 0.7s;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.float-social.hide {
  opacity: 0.3;
}

.float-social:hover {
  right: 0;
  transition: 0.5s;
}
.social-header {
  height: 50px;
  width: 50px;
  background: var(--highlight-color);
  border-top: 30px solid transparent;
  border-bottom: 220px solid transparent;
  border-left: 130px solid var(--ohighlight-color);
  border-radius: 50px;
  box-shadow: -20px 8px 35px var(--tprimary-color);
}

.float-social-links {
  position: relative;
  display: flex;
  flex-direction: column;
  top: -230px;
  right: 20px;
  transition: right 0.5s ease-in-out;
  z-index: 100;
  font-size: var(--m);
  cursor: pointer;
  opacity: 1;
}

.float-social-links.hide {
  right: -10px;
  font-size: var(--m);
  padding: 13px;
  opacity: 0.4;
}

.float-social-links.hide:hover {
  right: -10px;
  font-size: var(--m);
  padding: 13px;
  opacity: 1;
}

.float-social-links a {
  padding-top: 5px;
  border-radius: 100%;
  width: 70px;
  height: auto;
  box-shadow: -10px 5px 10px var(--tsecondary-color);
}

.float-social-links a:hover {
  transition: 0.4s;
  font-size: var(--xxxl);
}

.float-social .social-text {
  transform: rotate(90deg);
  white-space: nowrap;
  margin-left: -26px;
  margin-top: -348px;
}

.float-social .social-text.hide {
  color: var(--ohighlight-color);
}

.donation-pop {
  position: fixed;
  top: calc(50% - 200px);
  left: calc(50% - 150px);
  height: 400px;
  width: 300px;
  border: 2px solid var(--highlight-color);
  border-radius: 15px;
  z-index: 1000;
  background: var(--oprimary-color);
  justify-items: center;
  padding-top: 45px;
  box-shadow: 0 10px 25px 10px var(--tprimary-color);
  text-align: center;
}

.contact-pop {
  position: fixed;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  height: 320px;
  width: 300px;
  border: 2px solid var(--highlight-color);
  z-index: 1000;
  background: var(--oprimary-color);
  text-align: center;
  padding-top: 50px;
  justify-items: center;
  border-radius: 15px;
  box-shadow: 0 10px 25px 10px var(--tprimary-color);
}

.contact-pop a:hover {
  color: var(--highlight-color);
}

.booknow {
  position: fixed;
  display: block;
  bottom: -1000px;
  opacity: 0;
  transition: 1s;
  z-index: 100000000;
}

.booknow.show {
  left: 0;
  bottom: -0;
  height: 67vh;
  opacity: 1;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 10px;
  background: var(--osecondary-color);
}

.booknow h2 {
  margin: -10px 0 0 0;
}
p {
  margin: 0;
}

.booknow .closebtn {
  position: sticky;
  top: 0;
  border: 1px solid var(--tprimary-color);
  border-radius: 10px;
  height: calc(2 * var(--m));
  width: 100%;
  padding: 0;
  font-size: var(--m);
  color: var(--highlight-color);
  background: var(--osecondary-color);
  box-shadow: 0 1px 5px 3px var(--tprimary-color);
  vertical-align: middle;
  cursor: pointer;
  -moz-animation: fadeinout 2s linear infinite;
  -webkit-animation: fadeinout 2s linear infinite;
  animation: fadeinout 2s linear infinite;
}

.booknow .closebtn:hover {
  opacity: 0.8;
  border-color: var(--highlight-color);
  color: var(--highlight-color);
  transition: 0.4s;
  -moz-animation: fadeinout 0s linear infinite;
  -webkit-animation: fadeinout 0s linear infinite;
  animation: fadeinout 0s linear infinite;
}

.booknow .booknow-common.card {
  background: var(--osecondary-color);
  margin: 0 auto;
  /* border-radius: 10px; */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.booknow .booknow-common.card form label {
  color: var(--primary-color);
  font-size: var(--m);
}

.booknow .booknow-common.card form input {
  background: var(--oprimary-color);
  color: var(--primary-color);
  font-size: var(--m);
  border-radius: 5px;
  border: 1px solid var(--tprimary-color);
  width: 100%;
  padding: 3px;
  margin: 0 auto 5px auto;
}

.booknow .booknow-common.card form textarea {
  background: var(--oprimary-color);
  color: var(--primary-color);
  font-size: var(--m);
  border-radius: 5px;
  border: 1px solid var(--tprimary-color);
  width: 100%;
  resize: none;
  padding: 3px;
  margin: 0 auto 5px auto;
}

.booknow .booknow-common.card form button {
  margin: 5px auto 0 auto;
  color: var(--highlight-color);
}

.booknow .booknow-common.card form button:hover {
  color: var(--ohighlight-color);
}

.booknow .booknow-common.card form button:hover i {
  color: var(--ohighlight-color);
  transition: 3s;
}
.booknow .booknow-common.card p {
  margin: 5px auto 10px;
  font-size: var(--l);
  font-weight: 400;
}

#booknowheadpid {
  margin: 30px auto auto;
}

.booknow.show::after {
  content: "<i class=" fa fa-youtube floater-style oprimary-color "></i>";
  background: var(--highlight-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  transform: rotate(90deg);
  vertical-align: middle;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.login-pop {
  padding: 10px;
  background: var(--oprimary-color);
  box-shadow: 0 6px 20px 10px var(--tprimary-color);
  border-radius: 10px;
  border: 3px solid var(--highlight-color);
  margin: 62px 1px 0 auto;
}

.login-pop label {
  color: var(--primary-color);
  font-size: var(--m);
  font-weight: 600;
}
.login-pop input {
  color: var(--primary-color);
  background: var(--oprimary-color);
  font-size: var(--m);
  border-radius: 5px;
  width: 220px;
  padding: 1%;
  margin: 5px auto 5px auto;
}

.login-pop .username {
  margin-top: 10px;
  margin-left: 17px;
}
.login-pop .password {
  margin-left: 20px;
  margin-bottom: 20px;
}

.login-pop button {
  margin: 5px auto 10px auto;
  width: 320px;
}

.container-pop {
  position: fixed;
  top: 61px;
  left: 0px;
  height: auto;
  width: 100%;
  border: 0px solid var(--osecondary-color);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  z-index: 1000;
  background: var(--oprimary-color);
  padding: 20px;
}
.container-pop::-webkit-scrollbar {
  display: none;
}
.container-pop-content {
  padding-bottom: 50px;
}

.container-pop-content p + p {
  margin-top: 1rem;
}
.container-pop-content h1 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.container-pop-content h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.container-pop-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.container-pop-content h4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.container-pop-content h5,
h6 {
  margin-top: 1rem;
}

.container-pop-content ul li {
  list-style: inside;
}
.container-pop-content ul.num li {
  list-style-type: decimal;
}

.backbtn {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 10000000;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--osecondary-color);
  box-shadow: 0px 5px 10px var(--tprimary-color);
  opacity: 0.8;
}
.backbtn:hover {
  background: var(--highlight-color);
  box-shadow: 0px 0px 35px var(--highlight-color);
  opacity: 1;
}
.backbtn i {
  color: var(--highlight-color);
}

.backbtn:hover i {
  color: var(--ohighlight-color);
}

.backbtn.marginup {
  top: 20px;
}

#previousnewslettersid .newsletteryear,
#articlesid .articleyear {
  cursor: pointer;
  display: block;
  width: fit-content;
  color: var(--highlight-color);
  font-size: var(--xxl);
  font-weight: 600;
  padding: 10px 30px;
  margin: 20px auto 0;
  position: relative;
  text-align: center;
}
#previousnewslettersid .newsletteryear:hover,
#articlesid .articleyear:hover {
  font-weight: 900;
  border-radius: 100%;
  transition: 0.2s;
}

#previousnewslettersid .newsletteryearset,
#articlesid .articleyearset {
  height: auto;
  width: 100%;
}

#previousnewslettersid .newslettermonth,
#articlesid .articlemonth {
  display: none;
}

#previousnewslettersid .newslettermonth li,
#articlesid .articlemonth li {
  list-style: none;
  margin: 0 auto;
  width: fit-content;
}

#previousnewslettersid .newslettermonth li a,
#articlesid .articlemonth li a {
  display: block;
  text-decoration: none;
  padding: 5px;
  margin: 0 auto;
  width: fit-content;
  border: none;
  text-align: center;
  color: var(--primary-color);
}

#previousnewslettersid .newslettermonth li a:hover,
#articlesid .articlemonth li a:hover {
  transition: 0.6s;
  color: var(--highlight-color);
  font-weight: 500;
}

.slider {
  margin-top: 75px;
}
.slider-common {
  position: relative;
  width: 100%;
  margin: 100px auto 0 auto;
  overflow: hidden;
  box-shadow: 0px 2px 10px var(--tprimary-color);
}
.slider-common img {
  width: 100%;
  display: none;
  cursor: pointer;
}
img.displaySlide {
  display: block;
  animation-name: fade;
  animation-duration: 1.5s;
}
.slider-common button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--xxl);
  padding: 10px 15px;
  background: var(--t-color);
  color: var(--highlight-color);
  border: none;
  opacity: 0.8;
  width: 100px;
  height: 100px;
  text-align: start;
}
.slider-common button:last-child {
  text-align: end;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}
@keyframes fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.newsletter {
  margin-top: 70px;
}

.newsletter .newsletter-common .newsletter-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.newsletter .newsletter-common .newsletter-buttons .btn {
  margin: 10px auto;
  width: 160px;
}

.newsletter .newsletter-common .newsletter-text {
  /* width: 70%; */
  /* margin: 0 auto 20px auto; */
  padding: 15px 0;
}

.previousnewletterbutton button {
  background: var(--tsecondary-color);
  display: block;
  border-radius: 5px;
  margin: 20px auto 0 auto;
  font-size: var(--m);
  height: 50px;
  width: 240px;
  white-space: nowrap;
  border: 1px solid var(--ohighlight-color);
  cursor: pointer;
  box-shadow: 0px 5px 10px var(--tprimary-color);
}
.previousnewletterbutton button:hover {
  background: var(--ohighlight-color);
  border: 1px solid var(--highlight-color);
}

.new {
  padding: 10px 0;
}

.new-preview {
  margin-bottom: 20px;
  border-radius: 5px;
}

.new-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

.services {
  margin-top: 100px;
}

.services .services-heading {
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-grid .card:hover {
  cursor: pointer;
  background: var(--ohighlight-color);
  border: 1px solid var(--highlight-color);
}

.services .card p:nth-child(1) {
  margin-top: 10px;
}

.services .card p:nth-child(2) {
  margin-top: 20px;
}

.faq {
  margin-top: 100px;
}
.services-common {
  width: 90%;
}
.faq-common {
  width: 90%;
}

.faq .faq-group:not(:last-child) {
  padding-bottom: 20px;
}

.faq .faq-group .faq-group-header {
  padding: 10px 0;
}
.faq .faq-group .faq-group-header h6:hover {
  cursor: pointer;
  color: var(--highlight-color);
}

.faq .faq-group .faq-group-header i {
  z-index: 0;
  color: var(--highlight-color);
}

.faq .faq-group .faq-group-body {
  display: none;
}

.faq .faq-group .faq-group-body.open {
  display: block;
}

.subscribe {
  margin-top: 100px;
}
.subscribe .subscribe-common .card {
  background: var(--ohighlight-color);
  margin: 0 auto;
}

.subscribe .subscribe-common .card .btn {
  width: 300px;
  margin: 0 auto 25px auto;
  color: var(--primary-color);
}
.subscribe .subscribe-common .card .btn:hover {
  color: var(--ohighlight-color);
}
.subscribe .subscribe-common .card input[type="text"] {
  padding: 10px;
  display: block;
  background: var(--oprimary-color);
  border: 1px solid var(--osecondary-color);
  border-radius: 5px;
  margin: 20px auto;
  width: 360px;
}

.subscribebuttondiv {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: 100px;
}

.footer .footer-separator {
  border-color: var(--osecondary-color);
}

.footer-contents {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  width: 100%;
}
.footer-contents button {
  border: none;
  color: var(--secondary-color);
  background-color: var(--t-color);
  padding: 0;
  font-size: var(--s);
  cursor: pointer;
}
.footer-contents ul {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.footer-contents p {
  align-self: center;
}

.footer-contents a button:hover {
  color: var(--highlight-color);
}

.footerimg {
  margin-top: -2px;
  margin-right: 3px;
  vertical-align: middle;
}

footer .footer-contents {
  margin-top: 2px;
  margin-bottom: 2px;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.container-m {
  max-width: 1080px;
  margin: 0 auto;
}

.container-s {
  max-width: 720px;
  margin: 0 auto;
}

.container-t {
  max-width: 360px;
  margin: 0 auto;
}

.card {
  border: 1px solid var(--osecondary-color);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 5px 10px var(--tprimary-color);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--osecondary-color);
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--tprimary-color);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0px 3px 17px var(--tprimary-color);
  font-size: var(--m);
}
.btn:hover {
  background-color: var(--highlight-color);
  color: var(--ohighlight-color);
  transition: 0.5s;
}

.btn1 {
  background: var(--tsecondary-color);
  color: var(--primary-color);
  display: block;
  border-radius: 5px;
  margin: 0 auto;
  font-size: var(--m);
  height: 30px;
  width: 230px;
  white-space: nowrap;
  border: 1px solid var(--ohighlight-color);
  cursor: pointer;
  box-shadow: 0px 5px 10px var(--tprimary-color);
  padding: 2px;
}
.btn1:hover {
  color: var(--highlight-color);
  border: 1px solid var(--highlight-color);
}

.floater-style {
  background: var(--highlight-color);
  border-radius: 100%;
  border: none solid;
  padding: 10px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-margin {
  margin: 25px auto;
}

.primary-color {
  color: var(--primary-color);
}

.oprimary-color {
  color: var(--oprimary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.osecondary-color {
  color: var(--osecondary-color);
}

.highlight-color {
  color: var(--highlight-color);
}

.ohighlight {
  color: var(--ohighlight-color);
}

@media (max-width: 1080px) {
  .services .services-grid {
    grid-template-columns: repeat(2, 2fr);
  }
  .cardtext {
    text-align: justify;
  }
}

@media (max-width: 960px) {
  .subscribe .subscribe-common {
    width: 90%;
  }

  .text-xxxl {
    font-size: var(--xxxlss);
  }

  .text-xxl {
    font-size: var(--xxlss);
  }

  .text-xl {
    font-size: var(--xlss);
  }

  .text-l {
    font-size: var(--lss);
  }

  .text-m {
    font-size: var(--mss);
  }

  .text-s {
    font-size: var(--sss);
  }
}

@media (max-width: 560px) {
  .appointmentfloat:hover {
    width: 100%;
  }
  .appointmentfloat:hover .appointmentfloatbutton {
    width: 100%;
  }

  .appointmentfloat.expand {
    width: 100%;
  }

  .appointmentfloatbutton.expand {
    width: 100%;
  }

  .services .services-grid {
    grid-template-columns: repeat(1, 4fr);
  }
}

@media (max-width: 500px) {
  .container-pop {
    padding: 10px;
  }

  .subscribe .subscribe-common .card .btn {
    width: 80%;
  }
  .subscribe .subscribe-common .card input[type="text"] {
    width: 90%;
  }
}

@-moz-keyframes fadeinout {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes fadeinout {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes fadeinout {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
