a:hover{
  text-decoration: none;
}
ul li a:hover{
  text-decoration: none;
}

:root {
    --color-white-100: hsl(206, 5%, 98%);
    --color-white-200: hsl(206, 5%, 90%);
    --color-white-300: hsl(206, 5%, 80%);
    --color-white-400: hsl(206, 5%, 65%);
    --color-white-500: hsl(206, 5%, 50%);
    --color-black-100: hsl(213, 23%, 8%);
    --color-black-200: hsl(214, 21%, 6%);
    --color-black-300: hsl(210, 21%, 6%);
    --color-black-400: hsl(216, 22%, 4%);
    --color-black-500: hsl(220, 18%, 3%);
    --color-pink-100: hsl(326, 85%, 90%);
    --color-pink-200: hsl(327, 87%, 80%);
    --color-pink-300: hsl(329, 86%, 70%);
    --color-pink-400: hsl(330, 81%, 60%);
    --color-pink-500: hsl(333, 71%, 50%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
       0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
       0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
       0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  *,
  *::before,
  *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    height: -webkit-fill-available;
    color: var(--color-black-500);
    background-color: var(--color-white-100);
  }
  
  a,
  button {
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: none;
    box-shadow: none;
  }
  
  img,
  video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  .brand {
    font-family: inherit;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-pink-500);
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
  }
  
  .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 3.5rem;
    margin: 0 auto;
  }
  
  @media screen and (max-width: 992px) {
    .navbar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 75%;
      height: 100%;
      z-index: 10;
      opacity: 0;
      overflow-y: auto;
      visibility: hidden;
      box-shadow: var(--shadow-medium);
      background-color: var(--color-white-100);
      transition: all 0.5s ease;
    }
    .navbar.active {
      left: 0rem;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .menu-item {
    position: relative;
    display: inline-block;
    margin-left: 1.5rem;
  }
  .menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: var(--color-black-500);
    transition: all 0.3s ease-in-out;
  }
  .menu-link > i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
  }
  .menu-link:hover {
    outline: none;
    color: var(--color-pink-500);
  }
  li.active>a {
    outline: none;
    color: var(--color-pink-500);
  }
  
  @media only screen and (min-width: 993px) {
    .menu-dropdown:hover > .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }
  @media only screen and (max-width: 992px) {
    .menu {
      width: 100%;
      height: auto;
      padding: 1rem 0;
    }
    .menu-item {
      display: block;
      /* margin: 0 auto; */
    }
    .menu-link {
      /* justify-content: space-between; */
      padding: 0.5rem 1.25rem;
      margin-right: 67px;
    }
  }
  
  .submenu {
    position: absolute;
    top: 2.35rem;
    left: -2rem;
    min-width: 13rem;
    height: auto;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    border-top: 2px solid var(--color-pink-400);
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
    transition: all 0.3s ease-in-out;
  }
  .submenu-item {
    display: block;
    margin-top: 0.75rem;
  }
  .submenu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: var(--color-black-500);
    transition: all 0.35s ease;
  }
  .submenu-link:hover {
    outline: none;
    color: var(--color-pink-500);
    text-decoration: none;
  }
  @media only screen and (max-width: 992px) {
    .submenu {
      position: relative;
      top: -0.5rem;
      left: 2.5rem;
      width: 100%;
      max-height: 0;
      padding: 0px;
      border: none;
      outline: none;
      opacity: 1;
      overflow: hidden;
      visibility: visible;
      transform: translateY(0px);
      box-shadow: none;
      background: transparent;
    }
  }
  
  .burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    width: 1.75rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
  }
  .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border: none;
    outline: none;
    background: var(--color-black-500);
  }
  .burger-line:nth-child(1) {
    top: 0px;
  }
  .burger-line:nth-child(2) {
    top: 0.5rem;
  }
  .burger-line:nth-child(3) {
    top: 1rem;
  }
  @media only screen and (max-width: 992px) {
    .burger {
      display: block;
      opacity: 1;
      visibility: visible;
      margin-left: 230px;
    }
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
  }
  @media only screen and (max-width: 992px) {
    .overlay.active {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }

  .calendar img{
    /* height:100vh; */
    width: 100%; 
    margin-top:85px;
 }
 @media only screen and (max-width: 600px) {

  .calendar img{
    /* height:100vh; */
    width: 100%; 
    margin-top:100px;
 }


 }

 /* ///about banner */
 .hero-wrap {
  width: 100%;
  height: 300px;
  position: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  /* background-attachment: fixed; */
}

.slider-text .bread {
  font-weight: 400 !important;
  position: relative;
  line-height: .8;
}

.slider-text h1 {
  font-size: 44px;
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
}

          
/*                 
.hero-wrap.hero-wrap-2 .slider-text {
  height: 600px !important;
} */

.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: .3;
  height: 850px;
}

.hero-wrap.hero-wrap-2 .overlay {
  width: 100%;
  opacity: .3;
  height: 600px;
}

.slider-text .breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  z-index: 99;
  text-transform: uppercase;
  font-weight: 500;
}

.slider-text p {
  line-height: 1.5;
  color: #000;
}

.pb-5,
.py-5 {
  padding-bottom: 20rem!important;
}

.slider-text .bread {
  font-weight: 800 !important;
  position: relative;
  color: #000;
  line-height: .8;
  /* margin-top: 200px; */
}
.col-md-12.ftco-animate {
  text-align: center;
  padding: 104px 0px;
}
@media screen and (max-width:768px) {
  .hero-wrap {
      width: 100%;
      height: 200px;
      position: inherit;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top center;
      /* background-attachment: fixed; */
  }
  .slider-text .bread {
      font-weight: 800 !important;
      position: relative;
      line-height: .8;
   
      /* margin-top: 72px; */
  }
  .col-md-12.ftco-animate {
    text-align: center;
    padding: 0px 0px;
  }
          } 
.slider-text h1 {
  font-size: 44px;
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
}

.slider-text .breadcrumbs span a {
  color: rgba(32, 32, 32, 0.7);
}
 /* about banner end */

/* /////////////////////////////contact page start //////////////////////////////////*/

.contact-info {
  width: 50%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  /* height: 70px; */
  /* width: 70px; */
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  color:  hsl(336deg 73% 53%);
  line-height: 70px;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color:  hsl(336deg 73% 53%);
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #000;
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  /* padding: 5px 0; */
  font-size: 16px;
  /* margin: 10px 0; */
  pointer-events: none;
  /* transition: 0.5s; */

  color: #666;
}

.contact-form .input-box input:focus~span,
.contact-form .input-box textarea:focus~span {
  color: hsl(336deg 73% 53%);
  font-size: 12px;
  /* transform: translateY(-20px); */
}

.contact-form .input-box input[type="submit"] {
  width: 100%;
  /* background: #6a41ed; */
  background: hsl(336deg 73% 53%);
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid hsl(336deg 73% 53%);
  /* transform: translateY(-20px); */
  /* transition: 0.5s; */
}

.contact-form .input-box input[type="submit"]:hover {
  background: #FFF;
  color: hsl(336deg 73% 53%);
}
@media (max-width: 991px) {
  section {
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .row {
      flex-direction: column;
  }
  .contact-info {
      margin-bottom: 40px;
      width: 100%;
  }
  .contact-form {
      width: 100%;
  }
}


/* contact page end */

/* ////////////useful article////////////////// */
a {
  color: #000;
}
.blog-button {
  border-radius:0;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 3px;
  min-width: 146px;
}
.blog-button:not(:first-of-type){
   margin-left: 10px;
}

.btn:focus,
.form-control:focus {
  box-shadow: 0 0 0 0.1rem var(--box-shadow);
}
.btn-custom {
  background-color: var(--primary-color);
  color: var(--black);
  transition: all 0.3s;
  border: 2px solid var(--primary-hover-color);
  border-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.btn-custom-reverse {
  background-color: var(--bs-white);
  border: 2px solid var(--primary-hover-color);
  color: var(--black);
  transition: all 0.3s;
}

/* .btn-custom:hover {
  background-color: var(--bs-white);
} */
.btn-custom-reverse:hover {
  background-color: var(--primary-hover-color);
}

.btn-custom.active::after {
  content: "\A";
    border-style: solid;
    border-width: 0px 21px 23px 104px;
    border-color: transparent var(--primary-color) transparent transparent;
    position: absolute;
    top: 73px;
    left: 83px;
}
/**
* Search
*/
.search {
  position: relative;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}
.search .fa-search {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--bs-gray);
}
.search-box {
  background-color: var(--search-section-primary);
  border: 0;
  text-indent: 25px;
}
/**
* Blog Block
*/
.blog-block-container {
  border-bottom: 7px dotted var(--primary-color);
  padding-bottom: 25px;
}
.blog-block-container:not(:first-of-type){
  margin-top:30px;
}
.blog-block {
  /* border: 2px solid #898989; */
  /* padding: 40px 40px; */
/*   background: linear-gradient(275deg, var(--primary-color), transparent); */
}
.blog-block-row {
/*   align-items: center; */
}
.blog-block-image {
  width: 100%;
  height: 289px;
  /* filter: grayscale(1); */
  transition: filter .3s;
}
.blog-block-image:hover{
  /* filter: grayscale(0); */
}
.blog-title {
  font-size: 28px;
  font-family: var(--secondary-font);
  margin-bottom: 0;
}
.blog-sub-title {
  font-size: 36px;
  font-family: var(--secondary-font);
  color: var(--bs-red);
}

.blog-content {
  text-align: justify;
  padding-top: 8px;
}
.blog-read-more-link {
  color: var(--bs-red);
}
.blog-block-container .text-secondary a {
  color: var(--bs-gray);
  text-decoration: none;
}
.footer-social-info {
  text-align: right;
}
.footer-social-info a {
  color: var(--black);
  width: 40px;
  border: 1px solid var(--primary-color);
  justify-content: center;
  display: inline-flex;
  height: 40px;
  align-items: center;
  text-decoration: none;
}
.footer-social-info a:hover {
  color: black;
  background-color: var(--primary-color);
}

.popular-blog-section {
  background-color: #f9f6e5;
  padding: 10px 10px 10px 10px;
}
.popular-blog-section-title {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--primary-color);
  margin-bottom: 0px;
  color: #fff;
  background-color: hsl(336deg 73% 53%);
}
.blog-preview:not(:first-of-type) {
  padding-top: 15px;
}
.blog-preview {
  display: flex;
  /* align-items: center; */
  border-bottom: 2px solid #b6b6b6;
  padding-bottom: 15px;
  padding-top: 5px;
}
.blog-preview:last-of-type {
  border-bottom: none;
}

.blog-preview .blog-preview-content {
  padding: 5px 5px;
}

@media all and (max-width: 768px){
  .blog-section {
    /* display:none */
  }
}


/* //////////////// reminder start */
span.showEvent.bg-primary {
  color: #fff;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  /* background-color: rgba(0,0,0,.03); */
  border-bottom: 1px solid rgb(229 53 115);
}
.alert-danger {
  color: #ffffff;
  background-color: #e53573;
  border-color: #e53573;
}


.card {
  border-radius: 15px;
  overflow: hidden;
}
 .card-header {
  /* background: #5c3037; */
  color: #000;
}
 .card-header .prevMonth {
  cursor: pointer;
}
 .card-header .nextMonth {
  cursor: pointer;
}
 .card-body {
  /* background: #f1acb7; */
}
 .card-body .days span {
  background: hsl(336deg 73% 53%);
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  cursor: pointer;
}
 .card-body .days span:hover {
  /* background: #f7899a; */
}
 .card-body .dates span {
  /* background: #f4bdc6; */
  color: #000;
  border-radius: 50%;
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  cursor: pointer;
}
 .card-body .dates span.active,
 .card-body .dates span:hover {
  background: #e53573;
    color: #fff;
}
 .card-body .dates span.ntMonth {
  color: #938e8e;
  background: #ffd8de;
}
 .card-body .dates span.ntMonth:hover {
  background: #ffeef0;
  color: #000;
}
 .card#event .card-header .close {
  color: #fff;
  opacity: 1;
}
 .card#event .card-body .events-today {
  height: 210px;
  overflow-x: hidden;
}
 .card#event .card-body .events-input .data-invalid {
  border-color: red;
}
 .card#event .card-body .events-input .error {
  font-size: 12px;
  color: red;
  position: absolute;
  top: 100%;
}
@media (max-width: 767px) {
   .pa-sm {
    /* position: absolute; */
  }
   .card-body .days span {
    height: 38px;
    width: 38px;
    line-height: 38px;
    font-size: 0.8rem;
  }
   .card-body .dates span {
    height: 38px;
    width: 38px;
    line-height: 38px;
    font-size: 0.8rem;
  }
   .card#event .card-body .events-today {
    height: 188px;
  }
} /*# sourceMappingURL=style.css.map */
/* @media only screen and (max-width: 768px) {
.col-sm-4.col-12.d-flex.pa-sm {
  margin-top: 369px;
}
} */

/* ////login page start//// */
