

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  background: #fafafa;
  color: #444444;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}


.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}
.herosection{
  background: #fbfbfb;
  padding: 50px;
  margin-top: 40px;
}
.herosection .smalltext{
  text-transform: uppercase;
  display: block;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 20px;
}
.herosection img{
  max-width: 100%;
}

.herosection h1{
  color: var(--head-color);
  display: block;
  font-size: 35px;
  display: inline-block;
  text-align: left;
}
.herosection h1 span{
  color: var(--primary-color);
  display: block;
  border-top: 4px solid var(--primary-color);
  font-size: 24px;
  display: inline-block;
  margin-right: 20px;
}
.cardimg{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 200px;
}
.btnposbtm{
  position: absolute;
  bottom: 10px;
}
.cardbgdarkbg{
  padding: 0 20px 20px 20px;
  background: var(--primary-color);
  color:#fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.cardlightkbg{
  padding: 0 20px 20px 20px;
  background: var(--secondary-color);
  color:#fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.fnt35{
  font-size: 35px;
}
.cardbgdarkbg h4{
  text-align: center;
  color: #fff;
  font-size: 25px;
}
.cardlightkbg h4{
  text-align: center;
  color: #fff;
  font-size: 25px;

}
.topstrip{
  background: var(--primary-color);
  height: 30px;
  line-height: 30px;
}
.topstrip small{
  color: var(--secondary-text-color);
  text-align: center;
  width:100%;
}
.topcontentsection{
  background: #f5f1f1;
    padding: 50px;
    margin-top: 140px;
}
.toprighticonbox{
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  padding: 20px;
  color: var(--primary-color);
  margin-top: 4rem;
}
.toprighticonbox span{
  margin-top: 10px;
  color: var(--primary-color);
  font-size: 16px;
}
.toprighticonbox img{
 width:120px;
 margin-top: 10px;
 margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #444444;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #444444;
}

.card-title span {
  color: #444444;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 30%;
  background-color:var(--secondary-color);
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--primary-color);
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #444444;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  color: #444444;
  font-weight: 600;
}

.breadcrumb a {
  color: #444444;
  transition: 0.3s;
}

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

.breadcrumb .breadcrumb-item::before {
  color: var(--secondary-color);
}

.breadcrumb .active {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #444444;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: var(--secondary-color);
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
filter {
  position: absolute;
  right: 0px;
  top: 25px;
}

.filter ul li{
  width: 100%;
  margin-right: 0px;
}
.filter .icon {
  color: #aab7cf;
  /* padding-right: 20px; */
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.filter .icon:hover,
.filter .icon:focus {
  color: #4154f1;
}

.filter .dropdown-header {
  padding: 8px 15px;
  display: inline;
}

 .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.filter .dropdown-item {
  padding: 8px 15px;
  display: block;
}
.filter .dropdown-item b {
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #121d6d;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 20px;
}
.footerinnerbox{
  display: flex;
  justify-content:space-between;
  height: 40px;
  align-items: center;
  text-align: center;
}
.footerinnerbox img{
    height: 40px;
    object-fit: contain;
}
.footerinnerbox .lftlogo{
  text-align: left;
}
.footerinnerbox .lftlogo img{
  width: 200px;
}
.footerinnerbox .righttext{
  text-align: right;
}
.footerinnerbox .righttext ul{
  margin: 0px;
  padding: 0px;
}
.footerinnerbox .righttext ul li{
  display: inline-block;
  list-style: none;
}
.footerinnerbox .righttext ul li a{
 display: block;
 margin-left: 10px;
 color: #fff;
}
.footerinnerbox .righttext ul li a:hover{
  color: var(--primary-color);
 }
.footer .copyright {
  text-align: center;
  color: #121d6d;
}

.footer .credits {
  padding-top: 5px;
  text-align: right;
  font-size: 12px;
  color: var(--secondary-text-color);
}
.footer a {
  text-decoration: underline !important;
  color: var(--secondary-text-color);
}
.lusericon{
    color: var(--primary-color);
    font-size: 25px;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn{
   background-color: var(--secondary-color);
   border-color:var(--secondary-color);
}
.btn-primary, .btn-primary-1{
  color: var(--btn-text-color);
  background-color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px 9px;
  border-radius: 3px;
  border: 2px solid transparent;
  box-shadow: 0 2px 2px rgba(0,0,0,.25);
  transition: all .15s ease-out;
}

.btn-primary:hover, .btn-primary-1:hover{
  color:var(--btn-text-color-hover);
  background-color:var(--primary-color);
  border-color:var(--primary-color);
}

:root{
--swiper-pagination-color: var(--primary-color);
}

.swiper-pagination-bullet .swiper-pagination-bullet-active{
  background-color: var(--swiper-pagination-color) !important;
}

.btn-outline-primary{
  border:1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 300;
}

.btn-outline-primary:hover{
 background: var(--primary-color);
 border: 0px;
 color: #fff;
}
.btnwhite{
  background: #fff;
  color: #444444;
  border: 0;
  height: 45px;
    line-height: 36px;
    font-weight: 600;
}
.height70{
  height: 70%;
}
.makediffrentdarktext{
    color: #000;
    display: block;
    font-size: 40px;
    display: inline-block;
    margin-top: 100px;
    margin-bottom: 20px;
}
.makediffrentsubtext{
  color: var(--secondary-color);
  display: block;
  font-size: 35px;
  display: inline-block;
  margin-bottom:20px;
}
.btnwhite:hover{
  background:#444444;
  color: #fff;
  border: 0;
}
.resource-zoom{
  font-size:30px;
}
.resource-zoom .media-body{
  display:none;
}

.resource-zoom .close-button-wrapper{
  display:inline-block !important;
  position: sticky;
  left: 45%;
  bottom: 4%;
}

.close-button {
  color: var(--btn-text-color);
  background-color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.6rem;
  border-radius: 3px;
  border: 2px solid transparent;
  box-shadow: 0px 9px 12px 1px rgba(0, 0, 0, 0.1), 0px 3px 16px 2px rgba(0, 0, 0, 0.05), 0px 5px 6px -3px rgba(0, 0, 0, 0.03);
  transition: all .15s ease-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  line-height: 0;
  overflow: hidden;
}


.minwidth100{
  min-width: 100px;
}
.mt5rem{
  margin-top: 5rem;
}
.fullwidthbanner{
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
    padding-top: 100px;

}
.fullwidthbanner img{
  width: 100%;
  height: 100%;
  -webkit-animation: backgroundScroll 20s linear infinite;
  animation: backgroundScroll 20s linear infinite;
}

.textaligncenter{
  position: absolute;
  width: 100%;
  top: 200px;
  text-align: center;
}
.textaligncenter h1{
  text-transform: uppercase;
  margin-top: 30px;
  font-weight: 700;
  text-shadow: 0 0 5px #000;
  margin-bottom: 20px;
  color: #fff;
}
.ongoingtext{
  color: #fff;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 600;
  text-shadow: 0 0 5px #000;
  margin-bottom: 20px;
}

.primarycolor{
  color: var(--secondary-color);
}
.p20{
  padding: 20px;
}
.searchtextbox{
  border-radius:5px;
  float: left;
  width: 100%;
  height:60px;
  line-height: 50px;
  color: #3a3a3a;
  border: 1px solid #ddd;
  position: relative;
  padding-left: 20px;
}
.searchtextbox:focus{
  border: 1px solid var(--secondary-color);
}

.searchbtn{
  position: absolute;
    right: 15px;
    height: 55px;
    min-width: 130px;
    font-size: 20px;
    top: 3px;
}
.announcelistbox{
  padding: 20px;
  border: 1px solid #ddd;
  margin-top: 20px;
}

.announcelistbox h3{
  text-align: left;
  display: block;
  width: 100%;
  font-size:20px;
  color: #000;
  margin-bottom: 20px;
}
.border1{
  display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    padding-top: 0px;
    margin-bottom: 20px;
}

.inlinebutton{
  padding: 0px;
  position: relative;
  top: -25px;
  margin-bottom: 0px;
}
.inlinebutton li{
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
  min-width: 120px;
}
.lipos{
  position: relative;
    top: 16px;
}
.imgcontainer{
  width: 100%;
}
.borderradius5{
  border-radius: 5px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
}
.tblannounceth{
  border-collapse: separate;
    border-spacing: 20px;
}
.tblannounceth tbody tr th{
  background: #f5f5f5;
}
.btn-close{
  width: 3em;
  height: 2em;
}
.modal-header{
  background: var(--head-color);
  color:var(--secondary-text-color);
}
.modal-footer{
  background: #f5f5f5;
}

.form-control{
  border: 1px solid var(--secondary-color);
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){
  width: 100%!important;
  top:0px!important;
}
.bootstrap-select>.dropdown-toggle{
  background: #fff!important;
  border: 1px solid var(--secondary-color)!important;
}

.dropdown-toggle::after {
  border: none!important;
  font: normal normal normal 14px/1 bootstrap-icons !important;
  content: "\F282"!important; /* the desired FontAwesome icon */
  vertical-align: 0; /* to center vertically */
}
.tp10{
  top:-10px;
}

.dropdown-menu{
  overflow: hidden;
}

.bootstrap-select .dropdown-menu li{
  width: 97%;
  border-top: 1px solid #ddd;
}
.bootstrap-select .bs-ok-default:after{
  position: relative;
  top: 8px;
  color: var(--secondary-color);
}
.postertopbox{
  padding: 10px;
display: flex;
align-items: center;
text-align: center;
height: 70px;
justify-content: space-between;
background-color: var(--primary-color);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

.postertopleft{
 color: #fff;
 text-align: left;
  }
.postertopleft h4{
  font-size: 18px;
  text-align: left;
}
.postertopleft small{
  font-size: .775em;
}
  .postertopright{
    padding: 10px;
    font-size: 15px;
    background: var(--secondary-color);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--head-color);
    font-weight: 700;
     }
.postercardimg{
  padding: 15px;
  border-radius: 25px !important;
  height: 300px;
  object-fit: contain;
}

.posterbottombox{
  padding: 10px;
display: flex;
align-items: center;
text-align: center;
height: 40px;
justify-content: space-between;
background-color: #fff;
border-top:1px solid #ddd;
border-bottom:1px solid #dddd;
}

.posterbottomleft{
  color: #3e3d3d;
  border-radius: 100px;
  transform: rotate(150deg);
  width: 40px;
  cursor: pointer;
  line-height: 40px;
  height: 50px;
  }
.posterbottomleft i{
  font-size: 25px;
}

  .posterbottomright{
    padding: 10px;
    font-size: 15px;
    color: #3e3d3d;;
     }
.posterbottomright i{
  font-size: 13px;
    color: #f00;
    margin-right: 5px;

}
.customheight{
  height: 58px!important;
    line-height: 58px!important;
}
.filtersbg{
  border-radius: 10px;
    margin-bottom: 10px;
    background: #e2f0fd;
}

.searcresultbox{
  padding: 10px;
display: flex;
align-items: center;
text-align: center;
justify-content: space-between;
height: 70px;
border-radius: 10px;
    margin-bottom: 10px;
    background: #e2f0fd;
}
.searcresultbox .lefttext{
  display: flex;
  justify-content: left;
  color: var(--primary-color);
  font-weight: 600;
}

.searcresultbox .textcenter{
  display: flex;
  justify-content:center;
  color: var(--primary-color);
  font-weight: 600;
}

.searcresultbox .textright{
  display: flex;
  justify-content:end;
  color: #a8a8aa;
  font-weight: 600;
}

.searcbtntbox{
display: flex;
align-items: center;
text-align: center;
justify-content: space-between;
height: 40px;
margin-top: 15px;
margin-bottom: 15px;
}
.cardsearch{
  border: 1px solid #ddd;
  box-shadow: none;
  position: relative;
}
.cardsearch p{
  font-size: 13px;
}
.volunteeroic{
  height: 50px;
    min-width: 50px;

}
.volunteeroic img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.volunteeroictext{
  font-size: 18px;
  color: var(--primary-color);
  display: block;
  width: 100%;
}
.volunteeroicsubtext{
  font-size: 13px;
  color: #4c4c4d;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.volunteeroicrgt{
  position: absolute;
  height: 30px;
  right: 10px;
  color: #4c4c4d;
  cursor: pointer;

}
.tablist{
  margin: 0px;
  padding: 0px;
}
.tablist li{
  display: inline-block;
    list-style-type: none;
    /* cursor: pointer; */
    color: var(--primary-color);
    font-size: 11px;
    text-align: center;
    border-right: 1px solid #ddd;
    padding-right: 3px;
}

@-webkit-keyframes backgroundScroll {
  from {
      background-position: 0 0;
  }

  to {
      background-position: -400px 0;
  }
}

@keyframes backgroundScroll {
  from {
      background-position: 0 0;
  }

  to {
      background-position: -400px 0;
  }
}

.mostpopular{
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  padding: 10px;
  width: 149px;
  border-radius: 10px;
  font-weight: 600;
  font-style: italic;
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thumbupicon {
  color: #067aa1 !important;
  font-size: 25px !important;
  position: relative;
  right: 10px
}

.edttrash{
  font-size: 1.1rem;
    cursor: pointer;
    margin-right: 5px;
}
textarea:focus, input:focus{
  outline: none;
}

.calendargoogleicon{
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.calendaroutlookicon{
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.eventimgcontainer {
  width: 100%;
  height: 320px;
}
.displaynone{
  display:none;
}

.dropbtn .bi-person, .dropbtn1 .bi-person{
  font-size:20px;
  position: relative;
  top: 0px;
  margin-right: 5px;
}
.dropbtn .bi-chevron-down, .dropbtn1 .bi-chevron-down{
  font-size:16px;
  position: relative;
  top: 1px;
  margin-left: 5px;
}
.dropdown {
  position: relative;
  display: inline-block;
  /*height: 50px;
  top:10px;*/

}
.rgt35{
  right:45px;
}

.selected {
   background-color: aliceblue!important;
  color: #000!important;
  border: 1px solid #fff!important;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  border:1px solid #ddd;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 9px 12px 1px rgba(0, 0, 0, 0.1), 0px 3px 16px 2px rgba(0, 0, 0, 0.05), 0px 5px 6px -3px rgba(0, 0, 0, 0.03);
  z-index: 1;
  top:50px;
}
/*
.dropdown-content::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 10%;
  margin-right: -5px;
  width:12px;
  height:12px;
  transform:translate(-50%,50%) rotate(45deg);
  background-color:#fff;
} */

.dropdown-content a {
  color: var(--primary-color);
  padding: 9px 9px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}
.dropdown-content a i {
  position: relative;
  font-size: 18px;
  color: var(--primary-color);
  top:3px;
}
.dropdown-content a:hover {
  background-color: #E1F4F2;
  color: var(--secondary-color)!important;
}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff;
}



*:focus {
  outline: none;
}
.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input:focus {
  outline:none;
}
::-webkit-input-placeholder {
  opacity: 0.5;
  color: #000;
  font-weight: 400;
  font-size: 17px;
}
:-ms-input-placeholder {
  opacity: 0.5;
  color: #000;
  font-weight: 400;
  font-size: 17px;
}

::-moz-placeholder {
  opacity: 0.5;
  color: #000;
  font-weight: 400;
  font-size: 17px;

}

:-moz-placeholder {
  opacity: 0.5;
  color: #000;
  font-size: 12px;
  font-size: 14px;

}

@media only screen and (max-width: 992px) {
  body{
    overflow-x: hidden;
  }
  .herosection
  .herosection .mt-5{
    margin-top: 1rem!important;
  }
  .herosection h1{
    font-size: 30px;
  }
  .herosection h1 span{
    font-size: 30px;
  }
  .herosection a.mt-3{
    margin-top: 0px!important;
    margin-bottom: 1rem;
  }
  .mostrecent.pt-5{
    padding-top: 0px!important;
  }
  .fnt35 {
    font-size: 25px;
}
.mt5rem {
  margin-top: 0rem;
}
.makediffrentdarktext {
  font-size: 25px;
}
.makediffrentsubtext{
  font-size: 25px;
}
.inlinebutton li{
  margin-top: 10px;
  min-width: 36%;
  margin-right: 0px;
  width: 49%;
}

.inlinebutton li .btn-outline-primary{
  width: 100%;
}
.fullwidthbanner {
  height: 290px;
}
.ongoingtext {
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.textaligncenter{
  top: 130px;
}
.footer{
  padding: 10px;
}
.footerinnerbox .lftlogo img {
  width: 150px;
}
.footerinnerbox .righttext ul li a{
  font-size: 12px;
}
.rgt35{
  right:0px;
}
}

.pointer{
  cursor: pointer;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
}
.bggray{
  background: #fbf8f8;
  padding: 10px;
}
.mediaimg{
  height: 80px;
  width: 80px;
  border-radius: 10px;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.fontsize15{
  font-size: 15px;
  font-weight: 600;
  padding-left: 10px;
}
.fontsize14{
  font-size: 14px;
  font-weight: 400;
  padding-left: 10px;
}
.resorcebanner{
    width: 100%;
    height:500px;
    background: #fff;
    text-align: center;
    padding-top: 100px;
}
.resorcebanner img{
max-width: 100%;
min-width: 100%;
max-height: 100%;
min-height: 100%;
-o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 55% 63%;
    object-position: 55% 63%;


}
.form-control.large-textarea {
  height: 300px !important;
  width: 100% !important;
}


/* start login css */

 .selfreges {
     color: #fff !important;
     background: var(--primary-color);
     border-radius: 4px;
     text-decoration: none;
     padding: 5px;
     border: 0;
     float: right;
     text-align: right;
     margin-top: 0px;
     margin-bottom: 10px;
     margin-right: 10px;
     font-size: 13px;
     font-style: italic;
 }

 .selfreges:hover {
     background: var(--secondary-color);
 }

 .fgtpwd {
     color: #fff !important;
     background: var(--secondary-color);
     border-radius: 4px;
     text-decoration: none;
     padding: 5px;
     border: 0;
     float: right;
     text-align: right;
     margin-top: 0px;
     margin-bottom: 10px;
     margin-right: 10px;
     font-size: 13px;
     font-style: italic;
 }

 .fgtpwd:hover {
     background: var(--primary-color);
 }

 .input-submit {
     width: 155px;
     height: 50px;
     border-radius: 15px;
     border: #dfdfdf;
     background-color: var(--primary-color);
     box-shadow: 0 0 8px var(--primary-color) inset;
     color: #fff;
     font-size: 18px;
     text-transform: uppercase;
     font-weight: 500;
     display: flex;
     align-items: center;
 }

 .input-submit.btn:hover{
  background-color: var(--secondary-color);

 }
.footertext:hover {
  text-decoration: none;
 }

/* end login css */


/* start menubar css */
.menu-section li a {
   padding: 1rem;
  font-size: 17px;
  font-weight: 600;
  color: var(--head-color);

}
.menu-section li a:hover {
  color: var(--secondary-text-color) !important;
  text-decoration: none;
  background-color: var(--head-color);
}

.activeli {
  background-color: var(--head-color);
  color: var(--secondary-text-color) !important;
}
/* end menubar css */

.lusericon{
    color: var(--primary-color);
    font-size: 25px;
}
.leftboxdiv{
  max-height: 480px; overflow-y: auto; position:relative; overflow-x:hidden;
}
#map-canvas.visible{
  transform: scale(0.8);
      animation: zoomIn 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
      /* -webkit-filter:blur(20px);
      filter:blur(20px) */
}
 @keyframes zoomIn {
      to {
        opacity: 1;
        transform: scale(1);
         /* -webkit-transition:opacity 100ms;
        -moz-transition:opacity 100ms;
        -o-transition:opacity 100ms;
        transition:opacity 100ms;
        filter:blur(0px) */
      }
    }
.fulllist {
     width: 100%;
      height: auto;
      position: absolute;
      top: 0px;
      height: 100vh;
      background-color: #fbf8f8;
      transform: scale(0);
      opacity: 0;
      transition: transform 0.5s ease, opacity 0.5s ease;
    }
    .fulllist.show {
      transform: scale(1);
      opacity: 1;
    }
.fulllistimgbox{
  width: 100%;
  height: 170px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.zoom-in {
      width: 100%;
      height: 100%;
      min-width: 170px;
      object-fit: contain;
      opacity: 0;
      transform: scale(0.8);
      animation: zoomIn 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    }
.fulllistcontent p strong{
  font-size:1.1rem ;
}
.bottomclose{
    position: fixed;
    left: 15%;
    bottom: 20px;
    z-index: 9999;
}

.close-button {
    box-shadow: 0px 9px 12px 1px rgba(0, 0, 0, 0.1), 0px 3px 16px 2px rgba(0, 0, 0, 0.05), 0px 5px 6px -3px rgba(0, 0, 0, 0.03);
    padding: 1.3rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    line-height: 0;
    overflow: hidden;
    color: #000000;
    background-color: #f2f6ed;
    border: 2px solid #ddd;
}
.close-button i{
  font-size: 1.5rem;
}

    @keyframes zoomIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

@media only screen and (min-width: 320px) and (max-width: 992px) {
  .clearfilterbtn{
    display: none;
  }
  .toprighticonbox{
    margin-top: 1rem;
  }
  #next30Days,#listViewBtn,#clearfilterEvent{
    padding: 5px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .clearfilterbtn{
    display: none;
  }
}