@font-face {
  font-family: 'gotham_bold';
  src: url(../fonts/gotham/bold.otf);
}

@font-face {
  font-family: 'gotham_medium';
  src: url(../fonts/gotham/medium.ttf);
}

@font-face {
  font-family: 'gotham_regular';
  src: url(../fonts/gotham/regular.otf);
}

@font-face {
  font-family: 'gotham_light';
  src: url(../fonts/gotham/light.ttf);
}

:root {
  --primary: #20364E;
  --secondary: #333;
  --filterPrimary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background-color: #eee;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: ltr;
  overflow-x: hidden;
}

div::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

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

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

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 60px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

form textarea {
  resize: none;
}

form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

.slide_ltr {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.slide_ltr.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_ltr.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide_rtl {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.slide_rtl.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_rtl.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .7rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 0;
  width: 195px;
  height: 45px;
}

.butn::before {
  content: '';
  width: 197px;
  height: 60px;
  position: absolute;
  left: 8px;
  top: -8.5px;
  border: 1px solid;
  z-index: -1;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.primary_butn::before {
  border-color: var(--primary);
}

.butn.gray_butn {
  background-color: #E5E5E5;
  color: var(--primary);
}

.butn.gray_butn::before {
  border-color: #E5E5E5;
}

.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_butn {
  background-color: #fff;
  color: #333;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn:hover {
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff !important;
}

.butn:hover i,
.butn:hover .icon {
  animation: pulse .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  z-index: 99;
  position: relative;
  padding: 1rem;
}

.navs-container .navbar.home_nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.navs-container .navbar .nav-link {
  font-size: 17px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: var(--primary);
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  padding-top: 100px;
  background-color: var(--primary);
}

.footer .content {
  margin-bottom: 40px;
}

.footer .content .title {
  text-transform: uppercase;
  font-size: 20px;
}

.footer .content .p {
  color: #E5E5E5;
  height: 85px;
  overflow: hidden;
  font-size: 12px;
}

.footer .content .item {
  color: #E5E5E5;
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
  position: relative;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 2;
}

.footer .content .item i {
  color: #fff;
  position: absolute;
  inset-inline-start: 2px;
  top: 8px;
}

.footer .content .socialLinks a {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fff;
  color: #fff !important;
  border-radius: 50%;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  font-size: 15px;
}

.footer .content .socialLinks a:hover {
  color: #fff !important;
}

.footer .patter {
  -webkit-filter: invert(152%) sepia(0%) saturate(4787%) hue-rotate(170deg) brightness(527%) contrast(6%);
          filter: invert(152%) sepia(0%) saturate(4787%) hue-rotate(170deg) brightness(527%) contrast(6%);
  position: absolute;
  bottom: -11%;
  inset-inline-end: 0;
  width: 75%;
  opacity: .1;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .text_box .title {
  font-size: 46px;
  font-family: 'gotham_bold';
}

.header .text_box .p {
  font-size: 13px;
}

.header .sec-img {
  height: 680px;
}

.header .last_row {
  margin-top: -150px;
}

.header .last_row .sm_img {
  height: 390px;
}

.header .last_row .search_box {
  padding: 40px 30px 30px 30px;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.18);
  margin-top: -50px;
  z-index: 5;
}

.header .last_row .search_box .form-group {
  height: 55px;
  border: 1px solid #E5E5E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5px;
  margin-bottom: 30px;
}

.header .last_row .search_box .form-group .form-control {
  height: 30px !important;
  border: none !important;
  font-size: 13px;
}

.header .last_row .search_box .form-group .search_input {
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
}

.header .last_row .search_box .form-group i {
  color: var(--primary);
  position: absolute;
  inset-inline-start: 9px;
  top: 18px;
}

.header .last_row .search_box .label {
  font-size: 11px;
  color: #687787;
  display: block;
  padding: 3px 5px;
}

.header .last_row .search_box .quantity-container {
  border-radius: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px;
  text-align: center;
  min-width: 139px;
}

.header .last_row .search_box .quantity-container .qt-plus,
.header .last_row .search_box .quantity-container .qt-minus {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  background-color: #E5E5E5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.header .last_row .search_box .quantity-container .qt-plus:hover,
.header .last_row .search_box .quantity-container .qt-minus:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.header .last_row .search_box .quantity-container .qt-plus .fa,
.header .last_row .search_box .quantity-container .qt-minus .fa {
  font-weight: 300;
}

.header .last_row .search_box .quantity-container .qt {
  display: inline-block;
  min-width: 40px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.44;
  color: var(--secondary);
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
}

.header .last_row .search_box .butn {
  height: 55px;
}

.header .last_row .search_box .butn::before {
  display: none;
}

.about-sec .text_box .title {
  font-size: 46px;
}

.about-sec .text_box .p {
  font-size: 13px;
  height: 85px;
  overflow: hidden;
}

.about-sec .img_box {
  position: relative;
}

.about-sec .img_box .about_img1 {
  height: 440px;
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
}

.about-sec .img_box .about_img2 {
  width: 55%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset-inline-start: 0;
  bottom: 40px;
  -webkit-box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
}

.facilities-sec .title_sec {
  font-size: 46px;
}

.facilities-sec .swiper-slide {
  height: auto;
}

.facilities-sec .swiper-container {
  overflow: visible;
}

.facilities-sec .facility_card {
  border: 1px solid #E5E5E5;
  position: relative;
  text-align: center;
  padding: 40px 20px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  height: 100%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.facilities-sec .facility_card .icon {
  font-size: 27px;
  color: var(--primary);
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.facilities-sec .facility_card .txt {
  width: 55%;
  margin: auto;
  margin-bottom: 0;
  font-size: 18px;
  color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.facilities-sec .facility_card:hover {
  background-color: var(--primary);
}

.facilities-sec .facility_card:hover .icon,
.facilities-sec .facility_card:hover .txt {
  color: #fff;
}

.facilities-sec .pattern {
  position: absolute;
  top: 2%;
  inset-inline-end: 0;
  opacity: .1;
  width: 33%;
}

.resturants-sec .img_box {
  position: relative;
}

.resturants-sec .img_box .resturants_img1 {
  height: 630px;
  width: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
}

.resturants-sec .img_box .resturants_img2 {
  width: 38%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset-inline-end: 4%;
  top: 20%;
  -webkit-box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
}

.rooms-sec .title_sec {
  font-size: 46px;
}

.rooms-sec .p_sec {
  height: 85px;
  overflow: hidden;
}

.rooms-sec .room_card {
  position: relative;
  height: 100%;
}

.rooms-sec .room_card .img_box {
  height: 380px;
}

.rooms-sec .room_card .card-body {
  padding: 1.3rem;
}

.rooms-sec .room_card .card-body .title {
  font-weight: bold;
  font-size: 18px;
}

.rooms-sec .room_card .card-body .p {
  line-height: 1.5;
  font-size: 13px;
  margin-bottom: 0;
}

.rooms-sec .swiper-slide {
  height: auto;
}

.rooms-sec .swiper-container {
  overflow: visible;
}

.rooms-sec .pattern {
  position: absolute;
  top: 2%;
  inset-inline-end: 0;
  opacity: .1;
  width: 33%;
}

.meetings-sec .img_box {
  position: relative;
}

.meetings-sec .img_box .meetings_img1 {
  height: 660px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
}

.meetings-sec .img_box .meetings_img2 {
  width: 35%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset-inline-start: 16%;
  bottom: -50px;
  -webkit-box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.1);
}

.reward-sec .reward_card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 210px;
  padding: 45px 25px;
}

.reward-sec .reward_card .logo {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.reward-sec .reward_card .title {
  font-size: 19px;
}

.reward-sec .reward_card .square {
  width: 52px;
  height: 37px;
  border-radius: 11px;
  position: absolute;
  inset-inline-end: 25px;
  top: 60px;
}

.reward-sec .reward_card .square.bg_light {
  background-color: #CBCBCB;
}

.reward-sec .reward_card .square.bg_dark {
  background-color: var(--primary);
}

.reward-sec .pattern {
  position: absolute;
  left: -16%;
  top: 18%;
  width: 75%;
  opacity: .04;
}

/**********************************************
    Start Edit pg-header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/*# sourceMappingURL=style.css.map */