* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  font-family: Montserrat, sans-serif;
  background-color: #dff6ff !important;
}

/* headerContent */

.mainHeading {
}
.mainCover {
  height: 100vh;
  width: 100%;
  filter: brightness(50%);
}

.header-content {
  text-align: center;
  color: white;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-content h3 {
  font-size: 4vmin;
  font-weight: 68px;
}

.line {
  width: 150px;
  height: 4px;
  background: white;
  margin: 10px auto;
  border-radius: 5px;
}

.header-content h2 {
  font-size: 13vmin;
  font-weight: 70px;
}
/* headerContent */

/* Navbar */

.navbar-brand {
  font-size: 2rem !important;
  font-weight: bold;
}
.navbar {
  font-weight: bold;
  width: 100vw !important;
}

.navbar-nav .nav-item:hover {
  background-color: #0d4599;
  -webkit-box-shadow: 0px 10px 13px -7px #000000,
    0px 1px 28px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 13px -7px #000000, 0px 1px 28px 6px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid white;
}
.nav-item {
  font-size: 1.3rem;
}
.nav-item .nav-link {
  border-bottom: 1px solid white;
}
nav {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 99;
}
.resNavBar {
  background-color: transparent;
}

.navigationDropdown ul {
  background-color: #1363df;
}
.navigationDropdown a {
  color: white;
}
.navigationDropdown a:hover {
  color: white;
  background-color: #0d4599;
  -webkit-box-shadow: 0px 10px 13px -7px #000000,
    0px 1px 28px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 13px -7px #000000, 0px 1px 28px 6px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid white;
}

/* Navbar */

/* topButton */
#topButton {
  background-color: transparent;
  color: #ff0000;
  right: 18px;
  bottom: 0;
  position: fixed;
  z-index: 30;
  text-align: center;
  font-size: 40px;
  border: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.fa-circle-arrow-up {
  border-radius: 100px;
  -webkit-box-shadow: 0px 10px 13px -7px #000000,
    0px 21px 14px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 13px -7px #000000, 0px 21px 14px 1px rgba(0, 0, 0, 0.04);
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

#topButton:hover {
  cursor: pointer;
  animation-name: bounce;
  -moz-animation-name: bounce;
}
/* topButton */

/* main */
.packagesCards {
  padding-top: 20vh;
  width: 70%;
  margin: 0 auto;
  position: relative;
}
.card .row {
  width: 70vw;
}
.packagesCards img {
  position: relative;
  background-size: cover;
  width: 350px;
}
/* main */

@media screen and (max-width: 1450px) {
  .nav-item .nav-link {
    text-align: center;
  }
  .packagesCards {
    padding-top: 20vh;
    width: 90%;
    margin: 0 auto;
  }
  .card .row {
    width: 100%;
  }
  .packagesCards img {
    position: relative;
    background-size: cover;
    height: fit-content;
  }
}

@media screen and (max-width: 480px) {
  .mainCover {
    width: 100%;
    height: 100vh;
  }
  .navbar {
    margin: auto;
    width: 98%;
    top: 10px;
    border-radius: 20px;
    font-weight: bold;
  }
  .nav-item .nav-link {
    text-align: center;
  }
  .packagesCards {
    padding-top: 20vh;
    width: 90%;
    margin: 0 auto;
  }
  .card .row {
    width: 100vw;
  }
  .packagesCards img {
    position: relative;
    background-size: cover;
    height: 250px;
  }
}
