@import url("https://fonts.googleapis.com/css?family=Public+Sans:300,400,500,600,700,800,900&display=swap");
/* @import url("https://fonts.googleapis.com/css?family=Dancing+Script:400,500,600,700&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
:root {
  --theme-black: #1E1F4A;
  --theme-gold: #FFA34F;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
  --fw-black: 900;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  font-family: "Public Sans", sans-serif;
  font-weight: var(--fw-regular);
}
body,
html {
  scroll-behavior: smooth;
}

.fvp .navbar {
  z-index: 5;
  background-color: transparent !important;
  color: #fff;
}

.fvp .navbar-light li a {
  color: #fff !important;
}

.fvp .navbar-light .active a {
  color: var(--theme-gold) !important;
}

.navbar-brand img {
  width: 80px;
  height: auto;
}

.secondary-title-div {
  text-align: center;
  margin: 50px auto;
}
.secondary-title {
  font-family: 'Lobster', cursive;
  font-weight: 400;
}
.read-more-div {
  width: 100%;
}
.main-footer {
  background-color: var(--theme-black);
  padding: 40px 0;
}
.main-footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.btn-warning {
  color: #fff;
}

.main-footer .footer-nav-div {
  margin-top: 30px;
}

.main-footer .footer-nav {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.main-footer .footer-nav li {
  padding: 0 10px;
}

.main-footer .footer-nav li a {
  text-decoration: none;
  color: #fff;
}
.footer-logo-div img {
  width: 150px;
}

/* Sub footer */
.sub-footer {
  font-size: 80%;
  padding: 10px 0;
  background-color: #333;
}

.sub-footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.sub-footer img {
  height: 16px;
}

.sub-footer a {
  color: #f00;
  margin-left: 6px;
}

/* Data gathering pop up */
.data-pop-db{
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-pop-wb{
  padding: 20px 20px;
  background-color: #fff;
  height: auto;
  width: 350px;
  border-radius: 4px;
}

.data-pop-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #999;
}
.dp-header-text h4{
  font-size: 100%;
}

.data-pop-body {
  padding-top: 30px;
}
.close-btn{
  background-color: transparent;
  border: 1px solid #777777;
  padding: 0 4px;
  font-weight: bolder;
}

#enqSubmitBtn, #popSubmitBtn{
  background-color: #000;
  color: var(--theme-gold);
  border: none;
  font-size: 90%;
}

/* Message buttons */
.message-btns-div {
  z-index: 1000;
  position: fixed;
  display: block;
  flex-direction: column;
  bottom: 30px;
  right: 70px;
  width: 40px;
}

.message-btns-div *{
  box-sizing: border-box;
}


.open-close-button {
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 0.1em solid #f4d6d7;
  background-color: #eaeaea;
  margin: 0 0%;
  font-size: 20px;
  border-radius: 50%;
  position: relative;
  /* -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0); */
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.6);
}

@-webkit-keyframes cFlash {
  from,
  50%,
  to {
    color: green;
  }

  25%,
  75% {
    color: yellow;
  }
}

@keyframes cFlash {
  from,
  50%,
  to {
    color: green;
  }

  25%,
  75% {
    color: yellow;
  }
}


.open-close-button img{
  height: 30px;
  width: auto;
  animation: flash 1s infinite;
}



/* .open-close-button:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #f4d6d7;
  width: 40px;
  height: 2px;
  left: 10%;
  top: 47%;
} */
/* .open-close-button:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #f4d6d7;
  width: 2%;
  height: 40px;
  left: 47%;
  top: 10%;
} */
.open-close-button.open {
  background-color: #C9353B;
  -moz-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}
.open-close-button.open:after {
  background-color: #C9353B;
}
.open-close-button.open:before {
  background-color: #C9353B;
}


.mb-items-core{
  /* display: none; */
  margin-right: 50px;
  display: flex;
}

.mb-items-core-close{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mb-item{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #000;
  overflow: hidden;
  margin-bottom: 7px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.6);
}

.mb-item img {
  height: 30px;
  width: 30px;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {  }

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
  .parallax-window{
    height: 500px;
  }
  .contact-tab .container {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    font-size: 80%;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {  }

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {  }