/* ------------- */
/* GLOBAL STYLES */
/* ------------- */
* {
  box-sizing: border-box;
}

body {
  /*! background: #3952a3; */
  /*! color: #485e74; */
  /*! line-height: 1.6; */
  /*! font-family: "Yantramanav", sans-serif; */
  /*! padding: 1em; */
}

p#red-message {
  color: red;
}

p#blue-message {
  color: blue;
}

h4 {
  margin: 0
}

h3 {
  margin-top: 0px;
  font-size: 30px;
}

h3#center {
  text-align: center;
}

.box {
  width: 100%;
  height: auto;
  /*! border: 5px dashed #f7a239; */
}

img {
  width: 100%;
  height: 100%;
}

ul#contactlist {
  line-height: 2;
  font-size: 1.3rem;
}

#contactlist li {
  background-color: #13273b;
  margin-bottom: 5px;
  color: white;
  padding: 20px;
  font-size: 1.2rem;
}

.label-headers {
  font-weight: bold;
}

.container-contact {
  /*! max-width: 1170px; */
  margin-left: auto;
  margin-right: auto;
  /*! padding: 1em; */
  padding-top: 4rem;
  padding-bottom: 4rem;
}

ul {
  list-style: none;
  padding: 0;
}

.brand-contact {
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand-contact span {
  color: black;
}

.wrapper {
  /*! box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25); */
  ;
}

.wrapper>* {
  padding: 1em;
}

/* ------------------- */
/* COMPANY INFORMATION */
/* ------------------- */
.company-info {
  /*! background: #c3c9dd; */
  /*! border-top-left-radius: 4px; */
  /*! border-top-right-radius: 4px; */
}

.company-info h3,
.company-info ul {
  text-align: left;
  /*! margin: 0 0 1rem 0; */
}

/* ------- */
/* CONTACT */
/* ------- */
.contact {
  padding: 5%;
}

/* ---- */
/* FORM */
/* ---- */
.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.contact form label {
  display: inline;
  line-height: 1.5;
}

.contact form p {
  margin: 0;
}

.contact form .full {
  grid-column: 1 / 3;
}

.contact form button,
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1em;
  border: solid 1px #13273b;
  /*! border-radius: 2px; */
  /*! margin-bottom: 20px; */
}

input#tswsubmit {
  background: #baa57b;
  border: 0;
  color: #13273b;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  width: auto;
  margin-top: 12px;
}

input#tswsubmit:hover {
  background: #13273b;
  color: #baa57b;
  outline: 0;
  transition: background-color 1s ease-out;
}

.contact form textarea {
  resize: none;
}

.contact form button {
  background: #baa57b;
  border: 0;
  color: #13273b;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  width: 30%;
  margin-top: 10px;
}

.contact form button:hover,
.contact form button:focus {
  background: #13273b;
  color: #baa57b;
  outline: 0;
  transition: background-color 1s ease-out;
}

.google-maps {
  position: relative;
  padding-bottom: 0;
  /*! // This is the aspect ratio
  height: 0; */
  overflow: hidden;
}

.google-maps iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 500px !important;
  overflow: hidden;
}

/* ------------- */
/* MEDIA QUERIES */
/* ------------- */
@media only screen and (max-width: 600px) {
  .contact form {
    display: revert;
    grid-template-columns: max-content;
    grid-gap: 20px;
  }

  .contact {
    background-color: #f6f8fb;
  }

  h4 {
    margin-top: 10px;
  }

  .contact form label {
    line-height: 2;
  }
}

@media only screen and (min-width: 1000px) {
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }

  .wrapper>* {
    padding: 2em;
  }

  .company-info {
    /*! border-radius: 4px 0 0 4px; */
  }

  .contact {
    /*! border-radius: 0 4px 4px 0; */
    box-shadow: 0 4px 10px -5px rgba(0, 0, 0, 0.6) !important;
  }

  .company-info h3,
  .company-info ul,
  .brand-contact {
    text-align: left;
  }
}
