body {
  margin: 0;
}

p{
  margin-bottom: 20px;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: #194f90;
}

.content {
  margin-top: 20px;
}

.footer {
  margin-top: auto;
}

.orange-border{
  border-bottom: #ed7137 5px solid;
}

.submit-button{
  background: #ed7137;
  border: white 1px solid;
}

.submit-button:hover{
  background: #ee9064;
  border: white 1px solid;
}

.right-side {
  background: #102f54;
  color: white;
}

.orange{
  color: #ed7137;
}

.phone a{
  color: white;
}

.footer p{
  font-size: 12px;
}

.gray-box {
  background-color: #f8f9fa;
}


.card-text{
  font-size: 12px;
}

.perk-img {
  width: 80%;
}

.quote{
  font-style: italic;
}

.quote-name,.quote{
  font-size: 13px;
}

.marquee-container {
  width: 100%;
  background-color: #102f54;
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.marquee span {
  display: inline-block;
  font-size: 25px;
  color: white;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.mobile-only{
  display: none;
}

@media only screen and (max-width: 991px) {
  .right-side {
    margin-left: 13%;
    margin-right: 13%;
  }
}

@media only screen and (max-width: 768px) {
  .right-side {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }
  p {
    font-size: 12px;
  }
  .perk-img {
    width: 100%;
  }
  h1{
    font-size: 20px;
  }
  .phone a,.complete {
    font-size: 16px;
  }
  .gray-box {
    background-color: #f8f9fa;
    margin-right: 20%;
    margin-left: 20%;
  }

  .mobile-only{
    display: block;
  }
  .desktop-only{
    display: none;
  }
  li {
    font-size: 12px;
  }
  p {
    margin-bottom: 10px;
  }
  .right-side {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 500px) {
  .gray-box {
    background-color: #f8f9fa;
    margin-right: 15%;
    margin-left: 15%;
  }
}

@media only screen and (max-width: 400px) {
  .gray-box {
    background-color: #f8f9fa;
    margin-right: 0;
    margin-left: 0;
  }
}
