@import url('https://fonts.googleapis.com/css?family=Jaldi&display=swap');

/*
Color Scheme:
#325E8D;
#6998CA;
#DDA11D;
#A78858;
*/

/**********************************GLOBAL STYLES*******************************/

body {
  margin: 0;
  font-family: "Jaldi", sans-serif;
  color: #325e8e;
}

p {
  font-size: 1.7rem;
  margin: 8px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin: 0;
}

h3 {
  font-size: 1.5rem;
  margin: 0;
}

small {
  font-size: 1rem;
}

a:link {
  color: #325e8e;
  text-decoration: none;
}

a:visited {
  color: #325e8e;
}

a:hover {
  color: tomato;
}

nav h2 {
  display: inline-block;
  padding: 8px;
}

p {
  margin-left: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/**********************************HEADER SECTION******************************/

.header-bar {
  overflow: hidden;
  position: fixed;
  display: flex;
  box-shadow: 0 2px 2px 1px rgba(0,0,0,0.3);
  width: 100%;
  background-color: #fff;
  top: 0;
  margin: 0;
  z-index: 2;
}

.flex-child {
  flex: 1;
}

.flex-child:first-child {
  margin-right: 20px;
  position: relative;
}

.logo {
  box-sizing: border-box;
  padding-top: 20px;
  padding-left: 10px;
  width: 300px;
  cursor: pointer;
}

.menu {
  position: absolute;
  top: 50px;
  right: 10px;
}

.menu nav{
  padding: 0 8px;
  margin: 0 5px;
}

.menu nav:hover{
  color: tomato;
  cursor: pointer;
}

.ty-container {
  text-align: center;
}

/*********Mobile Navigation*********/

.mobile-nav {
  position: fixed;
  width: 100vw;
  margin: 0;
  background-color: #6998CA;
  box-shadow: 0 2px 2px 1px rgba(0,0,0,0.3);
  max-height: 0;
  transition: max-height 0.5s ease-in;
  /* overflow: hidden; */
  overflow: hidden;
}

.mobile-nav.display-mobile-nav {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
  z-index: 1;
}

.mobile-nav a {
  color: #fff;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.mobile-nav a:hover {
  background-color: #325E8D;
}

.mobile-nav-icon {
  overflow: hidden;
  display: none;
  position: relative;
}

.mobile-links ul {
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 0;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.mobile-links ul li {
  width: 100%;
  padding: 0;
}

.mobile-links ul li a {
  padding: 0;
  font-size: 1.4rem;
  text-shadow: 2px 1px rgba(0,0,0,0.5);
}



/********************************BANNER SECTION********************************/
.banner {
  position: relative;
  width: 100%;
  top: auto;
  height: auto;
  margin-top: 134px;
  background-color: black;
  border-bottom: #000;
  box-shadow: 0 2px 2px 1px rgba(0,0,0,0.3);
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: 0 0;
  opacity: 0.8;
}

.phone-number {
  position: absolute;
  color: #fff;
  padding-right: 10px;
  top: 10%;
  right: 20px;
  text-shadow: 2px 2px #000;
}

.subtitle {
  color: #fff;
  position: absolute;
  margin: 0;
  top: 30%;
  text-align: center;
  left: 10%;
  right: 10%;
  text-shadow: 2px 2px #000;
}

/*********************************Welcome Section******************************/
.welcome-info {
  position: relative;
  font-size: 1.6rem;
  padding: 10px 10px 50px 30px;
}

.welcome-info h2 {
  text-align: center;
}

/***********Contact Form*************/
.contact-form {
  float: right;
  width: 390px;
  margin: 10px;
}

.contact-container {
  position: relative;
  top: 180px;
  margin-left: 3%;
  margin-right: 3%;
  margin-bottom: 180px;
  font-size: 1.6rem;
  padding: 10px 10px 50px 30px;
}

.contact-form-index {
  color: #fff;
  background-color: #325e8e;
  width: 350px;
  top: 80px;
  border-radius: 10px;
  line-height: 35px;
  box-shadow: 2px 2px 2px 1px rgba(0,0,0,0.3);
}

fieldset {
  border: none;
}

label {
  font-size: 1.5rem;
}

.input-style {
  height: 26px;
  width: 290px;
  font-size: 1.0rem;
  border-radius: 5px;
  border: 0;
  box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.5);
}

.contact-textarea {
  font-family: inherit;
  font-size: 1.2rem;
  height: 140px;
  width: 290px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.5);
}

.contact-title {
  padding-top: 10px;
  margin-bottom: 10px;
}

.contact-info {
  justify-content: space-between;
  border-radius: 5px;
}

.hint {
  font-size: 1.2rem;
  color: tomato;
}

.btn-submit {
  text-align: center;
}

.submit-btn {
  position: relative;
  background-color: #fff;
  font-size: 1.5rem;
  width: 150px;
  height: 50px;
  margin-top: 0;
  margin-bottom: 30px;
  border-radius: 5px;
}

.submit-btn:hover {
  background-color: #6998CA;
  color: #fff;
  cursor: pointer;
}

/**************Contact Page******************/

.contact-page-container {
  position: relative;
  top: 170px;
  font-size: 1.6rem;
  /* text-align: left; */
}

.contact-page-header {
  background-color: #325e8e;
  color: #fff;
  margin: 0;
}

.contact-page-title {
  text-align: center;
  margin: 0;
  width: 100%;
}

.contact-page-form {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
}

.contact-page-info {
  margin: 3% auto 0 auto; /* Display in middle of page*/
  text-align: center;
  border-radius: 5px;
  width: 410px;
}

.contact-page-fieldset {
  margin: 0 auto; /* Display in middle of page*/
  text-align: left;
  border-radius: 5px;
  width: 410px;
}

.contact-page-form-contact {
  color: #000;
  background-color: #fff;
  top: 80px;
  border-radius: 10px;
  line-height: 35px;
  width: 100%; /*Adjust form div width*/
}

.label {
  text-align: right;
}

.input-form-style {
  height: 26px;
  width: 400px;
  font-size: 1.0rem;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.5);
}

.input-form-style:hover {
  border: 3px solid rgba(0,0,0,0.5);
}

.contact-page-textarea {
  font-family: inherit;
  font-size: 1.2rem;
  height: 140px;
  width: 400px;
  border-radius: 5px;
  /* box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.5); */
}

.contact-page-textarea:hover {
  border: 3px solid rgba(0,0,0,0.5);
}

.contact-page-btn-submit {
  /* margin-left: 8%; */
  text-align: center;
}

.contact-page-submit-btn {
  position: relative;
  background-color: #fff;
  font-size: 1.5rem;
  width: 150px;
  height: 50px;
  margin-top: 0;
  margin-bottom: 30px;
  border-radius: 5px;
}

.contact-page-submit-btn:hover {
  background-color: #6998CA;
  color: #fff;
  cursor: pointer;
}

/******************************Footer Section**********************************/
footer {
  border-top: #000;
  border-top: solid 2px rgba(0,0,0,0.8);
  background-color: #325e8e;
  color: #fff;
}

.footer-items {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.footer-pos {
  padding: 20px 3%;
  vertical-align: top;
}

.footer-pos h3 {
  margin: 0;
}

.footer-pos p {
  font-size: 1.3rem;
  margin: 0;
}

.hours {
  display: inherit;
}

.payment-options {
  display: inherit;
}

.location {
  display: inherit;
}

.social {
  display: inherit;
}

.fa-social {
  padding: 0.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.fa-social:hover {
  color: royalblue;
}

.copyright {
  padding: 20px 0;
  background-color: #23212c;
  text-align: center;
}

.copyright p {
  margin: 0;
  font-size: 1.3rem;
}

/*****************************Message Styles***********************************/
.message {
  overflow: hidden;
  position: fixed;
  font-size: 2rem;
  line-height: 1.8;
  background-color: rgba(50,94,141,1);
  border-radius: 5px;
  border: 2px solid #000;
  color: #fff;
  width: 50%;
  padding: 20px 0;
  text-align: center;
  opacity: 0;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease-in;
  z-index: 10;
}

.message.visible {
  transform: translate(-50%, 50%);
  opacity: 1;
}

/* Class of .btn:*/
.btn {
  background-color: #fff;
  color: #325E8D;
  border: 1px;
  box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2);
  border-radius: 5px;
  transform: scale(1.5);
  margin: 10px;
}

.btn:hover {
  background-color: #6998CA;
  color: #fff;
}

.btn:active {
  background-color: #8492b5;
}

/***********************************Display Sizes******************************/

@media (max-width: 1600px ) {
  .logo {
    width: 250px;
  }

  nav h2 {
    font-size: 1.8rem;
  }

  .contact-page-container {
    top: 142px;
  }
}

@media (min-width: 1000px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 1000px ) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1.4rem;
  }

  .logo {
    padding-top: 10px;
    padding-left: 10px;
    width: 200px;
  }

  .menu {
    display: none;
  }

  .mobile-nav {
    padding-top: 112px;
  }

  .mobile-nav-icon {
    display: inline-block;
    position: relative;
    padding-top: 50px;
    padding-right: 20px;
  }

  .fa-bars {
    font-size: 1.8rem;
    color: #325E8D;
  }

  .fa-bars:active {
    color: #6998CA;
  }

  .banner {
    margin-top: 0;
    margin-bottom: 0;
    height: 400px;
  }

  .banner img{
    height: 400px;
  }

  /**Contact Form Page**/
  .contact-page-container {
    top: 112px;
  }

}

@media (max-width: 750px) {
  .mobile-nav-icon {
    padding-top: 25px;
  }

  .mobile-nav {
    padding-top: 80px;
  }

  .logo {
    width: 130px;
  }

  .subtitle h2 {
    display: none;
  }

  .banner {
    /* margin-top: 80px; */
    margin-bottom: 0;
    height: 200px;
  }

  .banner img{
    height: 200px;
  }

  .contact-form {
    display: none;
  }

  input {
    width: 230px;
  }

  textarea {
    width: 230px;
    height: 80px;
  }

  /**Contact Form Page**/
  .contact-page-container {
    top: 78px;
  }

  .contact-page-textarea {
    width: 75%;
  }

  .input-form-style {
    height: 26px;
    width: 360px;
    font-size: 1.0rem;
  }
  
  .contact-page-textarea {
    font-size: 1.2rem;
    height: 140px;
    width: 360px;
  }

  .contact-page-fieldset {
    width: 370px;
  }
}

@media (max-width: 500px) {
  .message {
    width: 90%;
    font-size: 1.5rem;
  }

  nav h2 {
    font-size: 1.4rem;
  }

  .subtitle h1 {
    font-size: 1.5rem;
  }

  .welcome-info {
    padding-left: 20px;
  }

  .contact-form {
    float: none;
    margin: 0;
    padding: 0;
    width: 100vw;
  }

  .phone-number {
    text-align: center;
    left: 10%;
    right: 10%;
  }

  form {
    width: 100vw;
  }

  input {
    position: relative;
    width: 95%;
  }

  textarea {
    width: 95%;
  }

   /**Contact Form Page**/

  .contact-page-btn-submit {
    text-align: center;
  }

  .contact-page-info {
    border-radius: 5px;
    padding: 0;
  }

  .input-form-style {
    height: 26px;
    width: 300px;
    font-size: 1.0rem;
  }
  
  .contact-page-textarea {
    font-size: 1.2rem;
    height: 140px;
    width: 300px;
  }

  .contact-page-fieldset {
    width: 310px;
  }

  .contact-page-info {
    width: 100vw;
  }
}


@media (max-width: 400px) {
  .input-form-style {
    height: 26px;
    width: 100%;
    font-size: 1.0rem;
  }
  
  .contact-page-textarea {
    font-size: 1.2rem;
    height: 140px;
    width: 100%;
    margin-right: 0;
  }

  .contact-page-fieldset {
    padding: 0;
    width: 100%;
  }

  label {
    font-size: 1.2rem;
  }
}