*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --bottom-box-shadow: 0 6px 4px 1px rgba(160, 148, 148, 0.467);
  --bottom-box-shadow-2: 0 3px 4px 1px rgba(40, 40, 40, 0.467);
  --bottom-box-shadow-3: 0 3px 4px 1px rgba(22, 22, 22, 0.55);
  --flat-box-shadow: 0 0 3px 1px rgba(22, 22, 22, 0.55);
  --flat-box-shadow-2: 0 0 4px 4px rgba(22, 22, 22, 0.35);
  --flat-box-shadow-3: 0 0 6px 6px rgba(22, 22, 22, 0.15);
  --bottom-box-shadow-light: 0 0 20px -5px #fffa;
  --nav-transition: .3s ease-in;
}

html {
  scroll-behavior: smooth;
  overflow-y: overlay;
  overflow-x: hidden;
}
html:has(.hidden-overflow) {
  overflow: hidden !important;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: overlay;
  position: relative;
}
body.hidden-overflow {
  overflow: hidden !important;
}

.desktop {
  display: none;
}

#to-top {
  position: absolute;
  top: 0;
  visibility: hidden;
  pointer-events: none;
}

.to-top-btn {
  cursor: pointer;
  display: inline-block;
  height: 45px;
  width: 45px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s 0s;
  border-radius: 50%;
  color: #fff;
  background-color: var(--clr-secondary);
  z-index: 1099;
  background: url(../images/icons/back-to-top-arrow.svg) no-repeat scroll center 50% #000;
  background-size: 50%;
}

.to-top-btn:hover {
  background-color: var(--clr-primary);
  scale: 1.2;
}

.header1 .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5rem 0.75rem 3rem;
}
.header1 .top .contact-list .contact-block {
  margin-left: 1rem;
}
.header1 .top .contact-list .contact-block .img-ctn {
  width: 2rem;
  margin-left: 0rem;
}
.header1 .top .contact-list .contact-block .name {
  font-size: clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
  font-weight: 300;
  color: #707070;
  white-space: nowrap;
  transition: 0.6s ease;
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .header1 .top .contact-list .contact-block .name {
    display: none;
  }
  .header1 .top .contact-list .contact-block.contact-block:hover .name {
    display: block;
  }
}
.header1 .top .search-top {
  width: 20rem;
}
.header1 .bottom {
  position: relative;
}
.header1 .bottom .search-bottom {
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 0;
  align-self: flex-end;
  overflow: hidden;
  transition: 1s;
  z-index: 500;
}
.header1 .bottom .search-bottom:hover {
  height: 50vh !important;
  padding: 3rem 7% !important;
}
.header1 .bottom .search-bottom.mini {
  height: 0 !important;
  padding: 0 !important;
}
.header1 .bottom .search-bottom .search-close-btn {
  display: none;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.header1 .bottom .search-bottom .search-title {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 0.75rem 0;
}
.header1 .bottom .search-bottom .search-sugg {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: overlay;
}
.header1 .bottom .search-bottom .search-sugg .search-object {
  margin: 0.25rem 0;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
}
.header1 .bottom .search-bottom .search-sugg .search-object:hover {
  color: var(--clr-primary);
}
.header1 .bottom .search-bottom .search-results {
  height: 47.5vh;
}

.header2 {
  transition: var(--nav-transition);
  isolation: isolate;
  z-index: 100;
  transition: 1s ease;
  position: relative;
  width: 100%;
}
.header2.opened .mobile {
  background-color: rgba(112, 112, 112, 0.9);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.header2.opened .mobile .menu-btn {
  display: none !important;
}
.header2.opened .mobile .close-btn {
  display: block !important;
}
.header2.opened .mobile .popup-ctn {
  height: unset;
}
.header2.sticky .desktop {
  position: fixed !important;
  top: 0;
}
.header2.sticky .desktop .view {
  box-shadow: var(--bottom-box-shadow-3);
  background-color: rgba(33, 33, 33, 0.75);
  border-bottom: 1px solid #707070;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.header2.sticky .desktop .view .left {
  margin: 0 0;
}
@media (min-width: 1236px) {
  .header2.sticky .desktop .view .left {
    margin: -1.5rem;
  }
  .header2.sticky .desktop .view .left img {
    filter: none !important;
  }
}
.header2.paused .mobile {
  border-bottom: 1px solid #fff;
  position: absolute !important;
}
.header2.paused .mobile .view {
  background-color: #000;
}
.header2.paused .desktop .view {
  background-color: #000;
  border-radius: 0;
}
.header2.paused .desktop .view .left {
  margin: 0 0;
}
@media (min-width: 1236px) {
  .header2.paused .desktop .view .left {
    margin: -1.5rem;
  }
}
.header2 .mobile {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: var(--nav-transition);
  background-color: #000;
}
.header2 .mobile .view {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header2 .mobile .view .button-ctn {
  position: absolute;
}
.header2 .mobile .view .button-ctn .menu-btn {
  display: block;
}
.header2 .mobile .view .button-ctn .close-btn {
  display: none;
}
.header2 .mobile .view .button-ctn.left {
  left: 1rem;
}
.header2 .mobile .view .button-ctn.right {
  right: 1rem;
}
.header2 .mobile .view .button-ctn .img-ctn {
  width: 2rem;
}
.header2 .mobile .view .quick-link-ctn {
  flex: 1;
  display: grid;
  place-items: center;
}
.header2 .mobile .view .quick-link-ctn .img-ctn {
  width: clamp(12rem, 12rem + 1vw, 18rem);
}
.header2 .mobile .popup-ctn {
  color: #fff;
  height: 0px;
  overflow: hidden;
  transition: var(--nav-transition);
}
.header2 .mobile .popup-ctn .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}
.header2 .mobile .popup-ctn .mobile-nav .search-ctn {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}
.header2 .mobile .popup-ctn .mobile-nav .search-ctn .search-top {
  align-self: center;
  width: 85%;
  margin-bottom: 1.5rem;
}
.header2 .mobile .popup-ctn .mobile-nav .search-ctn .search-top .search-input {
  flex: 1;
  border-right: 2px solid lightgrey;
}
.header2 .mobile .popup-ctn .mobile-nav .search-ctn .search-top .search-btn {
  margin: 0 0.25rem 0 1rem;
}
.header2 .mobile .popup-ctn .mobile-nav .search-ctn .search-bottom {
  width: 85%;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 1rem;
  overflow: hidden;
  height: 30vh !important;
  padding: 3rem 7%;
}
.header2 .mobile .popup-ctn .mobile-nav .search-ctn .search-bottom .search-title {
  font-size: 1.5rem;
}
.header2 .mobile .popup-ctn .mobile-nav .search-ctn .search-bottom .search-sugg {
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.header2 .mobile .popup-ctn .mobile-nav .search-ctn .search-bottom .search-sugg .search-object {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  margin: 0.35rem 0;
  text-transform: capitalize;
  font-weight: 700;
  text-align: right;
}
.header2 .mobile .popup-ctn .mobile-nav .bottom-nav {
  width: 85%;
  margin: 1rem 0;
}
.header2 .mobile .popup-ctn .mobile-nav .bottom-nav .nav-title {
  font-size: 1.5rem;
}
.header2 .mobile .popup-ctn .mobile-nav .bottom-nav ul {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #DEDEDE;
}
.header2 .mobile .popup-ctn .mobile-nav .bottom-nav ul li {
  margin: 0.1rem;
  font-size: 1.25rem;
}
.header2 .mobile .popup-ctn .mobile-nav .bottom-nav ul li:has(.active) {
  border-bottom: 2px solid red;
}
.header2 .mobile .popup-ctn .mobile-nav .bottom-nav ul li a {
  text-transform: capitalize;
}
.header2 .mobile .popup-ctn .mobile-nav .bottom-nav ul li a.active {
  color: red;
}
.header2 .mobile .popup-ctn .mobile-nav .line-ctn, .header2 .mobile .popup-ctn .mobile-nav .line {
  height: 1px;
  background-color: #CC0000;
  width: 100%;
}
.header2 .mobile .popup-ctn .mobile-nav .contact-list {
  width: 85%;
  margin: 2rem 0;
}
.header2 .mobile .popup-ctn .mobile-nav .booking-ctn {
  margin: 2rem 0;
}
.header2 .mobile .popup-ctn .mobile-nav .booking-ctn .booking-btn {
  padding: 0.5rem 2rem;
  background-color: #fff;
  color: #CC0000;
  border-radius: 2rem;
  box-shadow: var(--bottom-box-shadow);
  font-size: 1.25rem;
}
.header2 .desktop {
  position: absolute;
  width: 100%;
}
.header2 .desktop .view {
  display: flex;
  align-items: center;
  padding: 0 3rem 0 4rem;
  border-bottom: 1px solid #fff;
  color: #fff;
  border-radius: 0 0 1rem 1rem;
  width: 100%;
  transition: var(--nav-transition);
}
.header2 .desktop .view .left {
  transition: var(--nav-transition);
}
.header2 .desktop .view .left .logo img {
  transition: var(--nav-transition);
  filter: grayscale(1) brightness(100);
}
.header2 .desktop .view .mid {
  margin-left: auto;
  margin-right: 1rem;
}
.header2 .desktop .view .mid .nav-menu {
  display: flex;
  align-items: center;
}
.header2 .desktop .view .mid .nav-menu li {
  margin: 0 0.25rem;
}
.header2 .desktop .view .mid .nav-menu li a {
  position: relative;
  padding: 0.5rem 0.75rem;
  color: #fff;
  transition: 0.6s ease-in-out;
  isolation: isolate;
  white-space: nowrap;
  text-transform: capitalize;
  font-weight: 300;
}
.header2 .desktop .view .mid .nav-menu li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background-color: transparent;
  transition: 0.5s ease-in-out;
}
.header2 .desktop .view .mid .nav-menu li a.active::before {
  height: 5%;
  background-color: var(--clr-primary);
}
.header2 .desktop .view .mid .nav-menu li a:hover {
  color: var(--clr-primary);
}
.header2 .desktop .view .mid .nav-menu li a:hover::before {
  top: 100%;
  bottom: 0;
  left: 0;
  height: 0%;
  background-color: var(--clr-hover);
}
.header2 .desktop .view .right .booking-btn {
  padding: 0.25rem 2.5rem;
  font-size: 1rem;
}

.footer1 {
  background-color: #000;
  box-shadow: var(--bottom-box-shadow);
  border-radius: 0 0 1rem 1rem;
  padding: 4rem 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
  .footer1 {
    padding-top: 3rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.footer1 .subfooter.first {
  margin-bottom: 4rem;
}
.footer1 .subfooter.first .block1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer1 .subfooter.first .block1 .title {
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 1.25rem;
}
.footer1 .subfooter.first .block1 .text {
  font-weight: 400;
  font-size: 0.75rem;
  text-align: center;
  margin: 1rem 0 3rem 0;
}
.footer1 .subfooter.first .block1 .subscriber-block {
  width: 90%;
}
@media screen and (min-width: 769px) {
  .footer1 .subfooter.first {
    margin-bottom: 3rem;
  }
}
.footer1 .subfooter.second {
  padding: 0rem 0 2rem 0;
  border-top: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
}
.footer1 .subfooter.second .block {
  margin: 2rem 0;
}
.footer1 .subfooter.second .block.block1 {
  display: grid;
  place-items: center;
  margin: 3rem 0;
}
.footer1 .subfooter.second .block.block1 .img-ctn {
  width: 12.5rem;
  filter: grayscale(1) brightness(100);
}
.footer1 .subfooter.second .block.block4 .vertical-nav {
  display: flex;
  flex-direction: column;
}
.footer1 .subfooter.second .block.block4 .vertical-nav .socials {
  align-self: center;
}
.footer1 .subfooter.second .block.block4 .vertical-nav .socials .img-ctn {
  width: 1.5rem;
}
.footer1 .subfooter.third {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}
.footer1 .subfooter.third .socials {
  margin: 1rem 0 3rem 0;
}
.footer1 .subfooter.third .gov-ctn {
  width: 10rem;
}
@media screen and (min-width: 769px) {
  .footer1 .subfooter.first {
    margin-bottom: 4rem;
  }
  .footer1 .subfooter.first .block1 .title {
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 2rem;
  }
  .footer1 .subfooter.first .block1 .text {
    width: 30rem;
  }
  .footer1 .subfooter.first .block1 .subscriber-block {
    width: 27.5rem;
  }
  .footer1 .subfooter.second {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer1 .subfooter.second .block {
    margin: 2rem 3rem;
  }
  .footer1 .subfooter.second .block.block1 {
    margin: 3rem;
  }
  .footer1 .subfooter.second .block.block1 .img-ctn {
    width: 15rem;
  }
}
@media screen and (min-width: 769px) and (min-width: 1200px) {
  .footer1 .subfooter.second .block.block1 .img-ctn {
    width: 20rem;
  }
}
@media screen and (min-width: 769px) {
  .footer1 .subfooter.second .block.block4 .socials .img-ctn {
    width: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .footer1 .subfooter.third {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 3rem 6rem 2rem 6rem;
    justify-content: center;
    position: relative;
  }
  .footer1 .subfooter.third .socials {
    margin: 1rem 0 1rem 0;
  }
  .footer1 .subfooter.third .gov-ctn {
    width: 10rem;
    position: absolute;
    left: 6rem;
  }
}

.footer2 .fourth {
  padding: 0 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
.footer2 .fourth .otc {
  font-weight: 300;
  margin: 0.5rem 0;
}
.footer2 .fourth .otc:hover {
  color: var(--clr-otc);
}
.footer2 .fourth .copywrite {
  font-size: 0.5rem;
  text-align: center;
}
.footer2 .fourth .copywrite .fc-otc {
  color: var(--clr-otc);
}
@media screen and (min-width: 769px) {
  .footer2 .fourth {
    padding: 0 3rem 0.75rem;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .footer2 .fourth .otc {
    font-weight: 800;
    margin: 0.5rem 0;
  }
  .footer2 .fourth .otc:hover {
    color: var(--clr-otc);
  }
  .footer2 .fourth .copywrite {
    font-size: 0.75rem;
    font-weight: 600;
    color: #707070;
  }
  .footer2 .fourth .copywrite .fc-otc {
    color: var(--clr-otc);
  }
}

@media screen and (min-width: 1023px) {
  .mobile {
    display: none !important;
  }
  .desktop {
    display: block !important;
  }
}/*# sourceMappingURL=main.css.map */