body {
  background: #fff;
  min-height: 100vh;
}
*::selection {
  color: #fff;
  background-color: #d8232a;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between !important;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.d-block {
  max-width: 100%;
  width: 100%;
}

.logo {
  height: 60px;
  color: #12334e;
  font-weight: 700;
  font-size: 2em;
  text-decoration: none;
  cursor: pointer;
  padding-left: 20px !important;
  text-decoration: none;
  margin-left: 67px;
}

#toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #9051ff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  display: none;
}

#toggle::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  transform: translateY(-5px);
  transition: 0.2s;
}

#toggle::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  transform: translateY(5px);
  transition: 0.2s;
}

#toggle.active::before {
  transform: translateY(0px) rotate(45deg);
}

#toggle.active::after {
  transform: translateY(0px) rotate(-45deg);
}

#toggle.active {
  background: #f7226a;
}

#navbar {
  position: relative;
  height: 60px;
  right: 60px;
  background: #fff;

  transition: 0.5s;
  /* width: 0px; */

  /* overflow: hidden; */
}

#navbar ul {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#navbar ul li {
  list-style: none;
  font-family: "Poppins", sans-serif;

  /* display: flex; */
}

#navbar ul li a {
  color: #12334e;
  height: 60px;
  text-transform: uppercase;
  display: inline-block;
  /* display: flex; */
  text-decoration: none;
  font-size: 15px;
  padding: 16px 15px !important;
  letter-spacing: 2px !important;
  /* white-space: normal; */
}

#navbar ul li a:hover {
  color: #fff;
  background-color: #d8232a;
  transition: 0.5s ease-in-out;
}

section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  /* color: #cecccc; */
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.keyfeatures {
  padding: 100px 0px;
  background: no-repeat fixed center center / cover;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 80vh;
}

.keyfeatures h3 {
  color: white;
  font-size: 18px;
  padding: 20px 50px;
}

.heading-txt {
  padding-bottom: 12px;
  color: rgba(0, 0, 0, 0.806);
  letter-spacing: -0.005em;
  word-spacing: 1px;
  margin: 55px 0px !important;
  position: relative;
  font-family: "Poppins", sans-serif;
}

/* responsive */
@media (max-width: 991px) {
  #navbar {
    position: fixed;
    bottom: -100%;
    right: 0;
    width: 100%;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #navbar.active {
    height: calc(100% - 60px);
    bottom: 0;
    width: 100%;
  }

  #navbar ul {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #d8232a;
    cursor: pointer;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: 0.2s;
    display: block;
  }

  #toggle::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 2px;
    background: #fff;
    transform: translateY(-5px);
    transition: 0.2s;
  }

  #toggle::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 2px;
    background: #fff;
    transform: translateY(5px);
    transition: 0.2s;
  }

  #toggle.active::before {
    transform: translateY(0px) rotate(45deg);
  }

  #toggle.active::after {
    transform: translateY(0px) rotate(-45deg);
  }

  #toggle.active {
    background: #d8232a;
  }

  .overlay {
    overflow-y: scroll;
  }
}

.name {
  height: 80px;
  padding: 10px !important;

  text-align: center !important;
}

.single-plan {
  position: relative;
  border: 5px groove #ccc;
  /* padding: 20px; */
  /* margin-left: 10px; */
}

.zoom-in-out {
  animation: zoom-in-zoom-out 1s ease infinite;
}

.zoom-in-out {
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.single-plan h3 {
  font-size: 15px;
  font-weight: 900 !important;
  color: #d8232a;
}

a,
a:hover {
  text-decoration: none !important;
}

.costsheet-btn {
  padding: 10px 20px;
  background: #d8232a;
  color: #fff;
  font-weight: bold;
  border-radius: 0;
}

a,
a:hover {
  text-decoration: none !important;
}

.main-box {
  background-color: #efefef;
}

.main-box h6 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000000b5;
  font-family: "Poppins", sans-serif;
}

/* Begin Media Queries*/

.amenities {

  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin: 75px auto; */
  text-align: center;
}
.amenities h5{

 font-size: 17px;
}
.card {
  width: 100%;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  /* flex-direction: column; */
  
  padding: 20px 20px !important;
  background-color: #efefef;
  /* text-align: center !important; */
  border-radius: 10px;
  cursor: pointer;
}

.card .image img {
  height: 50px;
  width: 50px;
}
.card a {
  background-color: #d8232a;
}

.accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  /* width: 600px; */
  margin: 0 auto;
}
.accordion {
  width: 100%;
  color: white;
  overflow: hidden;
  margin-bottom: 16px;
}
.accordion:last-child {
  margin-bottom: 0;
}
.accordion-label {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between !important;
  padding: 16px !important;
  background: #efefef;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  font-size: 20px;
  /* margin-bottom: 10px !important; */
}
.accordion-label:hover {
  background: #d8232a;
  color: #fff;
}
.accordion-label::after {
  content: "\276F";
  width: 16px;
  height: 16px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-content {
  max-height: 0;
  padding: 0 16px;
  color: #000;
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-content p {
  margin: 0;
  color: rgba(4, 57, 94, 0.7);
  font-size: 18px;
  padding: 20px !important;
}
input:checked + .accordion-label {
  background: #d8232a;
  color: #fff;
}
input:checked + .accordion-label::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
input:checked ~ .accordion-content {
  max-height: 100vh;
  padding: 16px;
}
.contact-option {
  max-width: 800px !important;
  margin-right: auto;
}

.contact-form {
  padding: 46px !important;
  max-width: 800px !important;
  margin: 0 auto 0;
  background-color: #f4f4f4;
}
.contact-form span {
  color: #6f7c8a !important;
  font-weight: 500 !important;
  line-height: 0 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
}
.contact-form h2 {
  font-size: 35px !important;
  margin-bottom: 20px !important;
}
.contact-form .form-group {
  margin-bottom: 25px !important;
  position: relative !important;
}
.contact-form .form-group i {
  position: absolute !important ;
  top: 14px !important;
  left: 15px !important;
  line-height: 1 !important;
  font-size: 18px !important;
  color: #7f7f7f !important;
  z-index: 1 !important;
}
.contact-form .form-group .form-control {
  height: 50px !important;
  color: #7f7f7f !important;
  border: 1px solid #e8e8e8 !important;
  background-color: #ffffff !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  padding: 10px 20px 10px 40px !important;
  width: 100% !important;
}
.form-control {
  display: block !important;
  /* width: 100%; */
  /* padding: 0.375rem 0.75rem; */
  /* font-size: 1rem; */
  font-weight: 400 !important;
  line-height: 1.5 !important;
  /* color: var(--bs-body-color); */
  /* background-color: var(--bs-form-control-bg); */
  background-clip: padding-box !important;
  /* border: var(--bs-border-width) solid var(--bs-border-color); */
  /* -webkit-appearance: none; */
  /* -moz-appearance: none; */
  appearance: none !important;
  /* border-radius: 0.375rem; */
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.modal {
  padding: 20px;
}
.footer-bottom {
  padding: 10px 0 10px 0;
  background-color: #d8232a;
  color: #fff;
}
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom ul li {
  display: inline;
  padding-right: 10px;
}
.footer-bottom ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
}
.contact-icon {
  font-size: 30px;
  margin-top: 8px;
  background-color: #f4f4f4;
  color: #d8232a;
  border-radius: 50%;
  padding: 10px;
}
.contact-details .info a {
  text-decoration: none;
  color: #777777;
}
.heading-txt:before {
  background-color: #d8232a;
  left: 0;
  width: 90px;
  bottom: 0;
  position: absolute;
  content: "" !important;
  height: 4px;
  right: 0;
  margin: auto;
}
.heading-txt:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 4px;
  content: "";
  right: 45px;
  margin: auto;
  background-color: #ffffffb8;
}
.modal-dialog {
  top: 0% !important;
}

@media (max-width: 767px) {
  .contact-form {
    padding: 20px;
  }
}
.contact-form {
  /* padding: 50px; */
  max-width: 800px;
  margin: 0 auto 0;
  background-color: #f4f4f4;
}
.modal-body h3 {
  line-height: 1;
  margin-bottom: 20px !important;
}
.contact-form .form-group .form-control {
  height: 50px;
  color: #7f7f7f;
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
  border-radius: 0;
  font-size: 14px;
  padding: 10px 20px 10px 40px;
  width: 100%;
}
.mdbtnclose {
  position: absolute;
  top: 20px;
  right: 20px;
}
.standard-btn {
  border: none;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background-color: #d8232a;
  padding: 7px 20px;
  border: 1px solid #d8232a;
  transition: all 0.4s ease-in !important;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0;
}
.img {
  /* border: 2px solid black; */
}
.img img {
  filter: blur(3px);
  border: 2px solid black;
}
.modal-content {
  /* width: 100vw; */

  display: flex;
  justify-content: center;
  align-items: center;
}
#mobile-call-buttons {
  background: #d8232a;
  bottom: 0;
  height: 50px;
  left: 0;
  position: fixed;
  /* display: none; */
  right: 0;
  z-index: 100;
}
#mobile-call-buttons ul {
  padding: 0px;
}
#mobile-call-buttons ul li {
  border-bottom: 1px solid #fff;
  background: #d8232a;
  position: relative;
  width: 50%;
  list-style: none;
  float: left;
  line-height: 50px;
  text-align: center;
}
#mobile-call-buttons ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
#mobile-call-buttons ul li a i {
  -webkit-animation: pulsate 0.5s ease-out;
  -webkit-animation-iteration-count: infinite;
}

@media (max-width: 767px) {
  .footer-bottom {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 991px) {
  .contact-form h2{
    font-size: 20px !important;
  }
  .accordion-label {
    font-size: 15px !important;
  }
  
}



/*   */
.dbover{
  padding: 10px;
  background-color: #efefef;
  border-radius: 10px;
  -webkit-transition: 1.2s cubic-bezier(.17,.85,.438,.99);
  -o-transition: 1.2s cubic-bezier(.17,.85,.438,.99);
  transition: 1.2s cubic-bezier(.17,.85,.438,.99);
  }
  .dbover:hover{
  transform: translateY(-7.5px);
  -webkit-transition: 1.2s cubic-bezier(.17,.85,.438,.99);
  -o-transition: 1.2s cubic-bezier(.17,.85,.438,.99);
  transition: 1.2s cubic-bezier(.17,.85,.438,.99);
  }
.dbover h4{
  font-size:20px;
  color: #000;
  margin-top: 5px;
}
.overview h3{
  text-align: center;
  font-size:40px;
  color: #d8232a;
}