@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap");

body {
  /*font-family: 'Roboto', sans-serif;*/
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  80% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  80% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@keyframes rocking {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}

@-webkit-keyframes Gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@-moz-keyframes Gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes Gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

.effetMoveGradient,
.effetMoveGradient:hover {
  text-shadow: 0 3px 6px #f58220;
  background-color: #c4a972;
  background: linear-gradient(-45deg, #dc0b90, #002a53, #b7097f, #002a53);
  background-size: 400% 400%;
  -webkit-animation:
    Gradient 3s ease infinite,
    rocking 3s ease infinite;
  animation-delay: 2s;
  -moz-animation:
    Gradient 3s ease infinite,
    rocking 3s ease infinite;
  animation-delay: 2s;
  animation:
    Gradient 3s ease infinite,
    rocking 3s ease infinite;
  animation-delay: 2s;
  color: #ffffff;
  border: none;
}

.effetGradient,
.effetGradient:hover {
  text-shadow: 0 3px 6px #f58220;
  background-color: #c4a972;
  background: linear-gradient(-45deg, #dc0b90, #002a53, #b7097f, #002a53);
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
  color: #ffffff;
  border: none;
}

.effectScale {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.effectScale:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
}

.outer-border {
  border: 1px solid #ddd;
  box-shadow: 1px -1px 1px #ddd;
}

.main-logo {
  height: 54px;
}

.navbar {
  padding: 0 10px;
}

.bg-dark {
  background-color: #002a53 !important;
}

.section {
  padding: 20px 0 20px;
}

.head1 {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 2px;
}

.head2 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 5px 0;
  color: #a80b7a;
  font-family: "Poppins", sans-serif;
}

.sub-head1 {
  font-size: 20px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgb(255 255 255);
  text-transform: uppercase;
  font-size: 14px;
  margin-right: 10px;
}
.navbar-dark .navbar-nav .nav-link i {
  margin-right: 4px;
}

.anc-wrapper {
  padding: 0 6px 12px;
  text-align: center;
  background-image: -webkit-linear-gradient(top, #fff, #f1f1f1);
  background-image: -moz-linear-gradient(top, #fff, #f1f1f1);
  background-image: -ms-linear-gradient(top, #fff, #f1f1f1);
  background-image: -o-linear-gradient(top, #fff, #f1f1f1);
  background-image: linear-gradient(top, #fff, #f1f1f1);
}

.side-top-anc {
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  margin-bottom: 12px;
  background-color: #002a53;
  color: #fff;
  cursor: pointer;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  /*  background-image: -webkit-linear-gradient(left, #ec008c, #009fc0);
  background-image: -moz-linear-gradient(left, #ec008c, #009fc0);
  background-image: -ms-linear-gradient(left, #ec008c, #009fc0);
  background-image: -o-linear-gradient(left, #ec008c, #009fc0);
  background-image: linear-gradient(left, #ec008c, #009fc0);*/
}

.py-10 {
  padding: 10px 0;
}

.px-20 {
  padding: 2px 20px;
}

.frm-wrapper {
  padding: 20px;
  text-align: center;
}

.brochure-btn {
  padding: 8px 20px;
  background-color: transparent;
  color: #181d24;
  border: 1px solid #181d24;
}
.brochure-btn:hover {
  text-shadow: 0 3px 6px #181d24;
  background-color: #c4a972;
  background: linear-gradient(-45deg, #181d24, #c4a972, #181d24, #c4a972);
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
  color: #ffffff;
  border: 1px solid transparent;
}

.sidebar {
  position: fixed;
  width: 100%;
  right: 0;
}

.costing-title {
  text-align: center;
  padding: 8px 10px 10px;
}

a:hover {
  text-decoration: none;
  color: #ddd;
}

.btn-pricing {
  margin-left: 22px;
}

.ul-location {
  font-size: 16px;
  list-style-type: none;
  padding-left: 10px;
}
.ul-location i {
  color: #03a9f4;
  /*border-radius: 0 15px 15px 0;*/
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  padding: 2px 0;
}

.virtual-wrapper {
  position: absolute;
  top: 36%;
  background: #181c257d;
  text-align: center;
  width: 97.2%;
  padding: 30px;
}

.play-img {
  height: 60px;
}

.virtual-title {
  color: #edcf93;
  font-size: 39px;
  text-transform: uppercase;
  margin: 8px;
}

.virtual-desc {
  font-size: 20px;
  color: #fff;
}

#amenities img {
  height: 54px;
  margin: 16px auto;
}

.am-wrap {
  text-align: center;
  border: 1px solid #ddd;
  padding: 10px 0 0;
  margin-bottom: 5px;
}

.am-wrap p {
  color: #ffffff;
  background: #000000;
  margin: 7px 0 0;
  font-size: 13px;
}

.dev-logo {
  padding: 40px 0;
  display: block;
  margin: 0 auto;
}

footer {
  background: #ddd;
  font-size: 12px;
  padding: 20px 0 5px;
}

.gal-wrap {
  margin: 8px 0;
}

.mclose {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #ddd;
  padding: 4px 6px !important;
  font-size: 15px;
  border-radius: 20px;
  opacity: 1;
}

/* Stackoverflow preview fix, please ignore */
.navbar-nav {
  flex-direction: row;
}

/* Fixes dropdown menus placed on the right side */
.ml-auto .dropdown-menu {
  left: auto !important;
  right: 0px;
}

p.ul-head {
  color: #000912;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0px;
}

#ul-spec li {
  font-size: 13px;
  line-height: 16px;
}

#ul-spec ul {
  /*list-style-type: none;*/
  padding-left: 5px;
}

.has-error small.help-block {
  color: #c71414;
}

#fixedbutton_brouchure {
  position: fixed;
  right: -75px;
  top: 35%;
  transform: rotate(-90deg);
  z-index: 9;
  background: #cf0485;
  color: #ffffff;
  box-shadow: 0px 0px 2px rgb(0 158 193);
}

.sticky_footer {
  position: fixed;
  bottom: -75px;
  visibility: hidden;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 8px 0;
  background-color: #181c25;
  box-shadow: -14px -6px 11px 0 #27202036;
  text-align: center;
  opacity: 0;
  transition: 0.5s all ease;
}
.sticky_footer_active {
  visibility: visible;
  bottom: 0;
  opacity: 1;
}
.sticky_footer a {
  color: #fff;
  font-size: 0;
  display: inline-block;
}
.sticky_footer a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
.sticky_footer a span.icon-wrap {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
.sticky_footer .br {
  border-right: 1px solid #e6e7e9;
}
.sticky_footer .col-md-4:nth-of-type(3) {
  border: none;
}

@media (max-width: 576px) {
  .navbar-nav {
    flex-direction: row;
    display: block;
  }
  li.nav-item {
    display: block;
  }
  .navbar-toggler {
    background-color: #002a53;
  }

  .table-sm td,
  .table-sm th {
    padding: 4px;
  }
  .btn-pricing {
    margin-left: 0;
  }
  .table {
    font-size: 13px;
  }

  .virtual-wrapper {
    position: absolute;
    top: 0%;
    background: #181c257d;
    text-align: center;
    width: 88%;
    padding: 7px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .play-img {
    height: 34px;
  }

  .virtual-title {
    color: #edcf93;
    font-size: 25px;
    text-transform: uppercase;
    margin: 8px;
  }

  .virtual-desc {
    font-size: 13px;
    color: #fff;
  }

  .navbar-toggler {
    padding: 2px 9px;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255);
    text-transform: uppercase;
    font-size: 12px;
    margin-right: 4px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-dark .navbar-nav .nav-link {
    font-size: 11px;
    margin-right: 4px;
  }

  .side-top-anc {
    display: inline-block;
    font-size: 11px;
    padding: 5px 4px;
    margin-bottom: 12px;
  }
  .virtual-wrapper {
    width: 96%;
    top: 14%;
  }
}

.badge-primary {
  padding: 5px 12px !important;
}
