:root {
  --ms-color1: #41729F;
  --ms-color2: #5885AF;
  --ms-color3: #274472;
  --ms-color4: #C3E0E5;
  --ms-color5: #000;
  --ms-body-font-size: 1rem;
  --ms-body-font-weight: 400;
  --ms-body-line-height: 1.5;
  --ms-body-color: #fff;
  --ms-body-bg: #274472;
  --ms-link-color: #C3E0E5;
  --ms-link-hover-color: #C3E0E5;
  --ms-logo-height: 55px;
}


body {
  background-color: var(--ms-body-bg);
  color: var(--ms-body-color);
  margin: 0;
  font-family: 'Montserrat-Reg';
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  
}
.h-100 {
  height: 100% !important;
}

a {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Montserrat-Black';
}

.img-fluid {
  width: 100%;
  height: auto;
}

/* Animations */

.fade-enter-active,
.fade-leave-active {
  transition: opacity 1.0s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.fade-enter-active .close,
.fade-leave-active .close {
  transition: all 0.8s ease-in-out;
}

.fade-enter-from .close,
.fade-leave-to .close {
  opacity: 0;
}

/* Modal */
.modal {
  position: fixed;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  top: 0;
  left: 0;
  backdrop-filter: blur(15px) brightness(0.25);
  -webkit-backdrop-filter: blur(15px) brightness(0.25);
}

.modal-overflow {
  overflow: hidden !important;
}

.modal-header {
  padding: 10px 0px;
  height: var(--ms-logo-height);
  cursor: pointer;
  position: -webkit-sticky;
  position: sticky !important;
  top: 0;
  z-index: 1020;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 100%);
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 992px) {
  .modal-content {
    margin-top: 1vh !important;
  }
}

/* Buttons */
.btn {
  padding: 10px 40px;
  color: #000;
  background: #fff;
  border-radius: 45px;
  text-transform: uppercase;
  font-size: 1.5rem;
  transition: all 0.4s ease;
  border: 2px solid #fff;
}

.btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.rounded {
  border-radius: 5px;
}