P {margin: 0; padding: 0;}

/* start to the code */
html, body , .container {
  font-family: "Ubuntu", Arial, sans-serif;
  background-image: url("/imgs/Rotatedbackdrop-01.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  margin: 0;
}


/* NAV */
nav {
  background: transparent;
  margin: 0 auto;
  padding: 5px 0px;
  width: 85%;
}

.menu {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    list-style-type: none;
    padding: 20px 0; 
}

.menu P {
    color: white;
    font-size: 18px;
}

.miami {
    text-align: center;
    margin: 20px 0;
}

/* Tablet */
@media all and (min-width: 468px) {

}

/* Desktop menu */
@media all and (min-width: 1098px) {
    .menu {
        flex-direction: row;
    }
    .miami {
        text-align: left;
    }
}

.logo img {
  filter: drop-shadow(0px 2px 5px #333);
  min-width: 170px;
  position: relative;
  top: 7px;
  width: 15vw;
}

/* Entire website container */
.container {  
  display: block;
  position: relative;
}

.content {
    margin: 0 auto;
    width: 75%;
}

.subnavigation, .footer-container {
    align-items: center;
    background: rgb(57,32,141);
    background: linear-gradient(270deg, rgba(30,3,51,1) 0%, rgba(57,32,141,1) 100%);
    display: flex;
    justify-content: end;
    padding: 10px 0;
}

.contactCTA {
    background-color: #4794EE;
    border: 0;
    border-radius: 10px;
    box-shadow: 5px 5px 5px black;
    color: white;
    cursor: pointer;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 20px;
    height: 50px;
    letter-spacing: 2;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    width: 230px;
}

.contactCTA:hover {
    box-shadow: 2px 2px 2px black;
}

.custWrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 75%;
}

h1, h2 {
    color: #DFFFF5;
    font-family: "Orbitron", Arial, sans-serif;
    letter-spacing: 0.04em;
}

h1 {
    font-weight: 600;
    margin-bottom: 40px;
}

.custWrapper .mainContent {
    border-top: 1px solid white;
    padding-top: 20px;
    margin-top: 20px;
}

.mainContent P {
    color: white;
    line-height: 1.5;
}

.testimonial {
    color: #46FBC4;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonialBy {
    align-self: flex-end;
    color: #46FBC4;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-top: 5px;
    text-align: right;
}


ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-start; /* Adjusted justify-content */
}

.item img {
  filter: drop-shadow(0px 2px 5px #333);
  transform: translate(0, 0%);
  width: 110%;
  height: 14vh;
}

.item.home-button img {
  width: 90%;
  height: 3vh;
}

.item.login-button img {
  width: 90%;
  height: 5vh;
}



/* Mobile menu */


.toggle {
  order: 1;
  cursor: pointer;
}

.bars {
  background: #999;
  display: inline-block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.bars:before,
.bars:after {
  background: #999;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.bars:before {
  top: 5px;
}

.bars:after {
  top: -5px;
}

.item {
  width: 100%;
  text-align: center;
  order: 3;
  display: none;
  z-index: 2;
}

.item.active {
  display: block;
}

.mobile-menu {
  display: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu li {
  text-align: center;
}

.mobile-menu li a {
  display: block;
  padding: 10px;
  color: white;
}

.hpImage {
    float: right;
    margin: 0 0 5% 10%;
    width: 30%;
}


/* Footer */
.footer-container { 
    margin-top: 50px;
}

.footer-container > DIV {
    cursor: pointer;
}

.footer-container IMG {
    width: 60px;
    height: 60px;
}



