@import url("https://fonts.googleapis.com/css?family=Hind");
:root {
  --main-color:#2d5586;
}

body {
  font-family: "Hind";
  margin: 0;
  padding: 0;
  background-image: url("/img/body_background.png");
}

.main-background {
  background-color: var(--main-color);
}

#header-background {
  background-color: var(--main-color);
  min-height: 75px;
  padding: 10px 0px;
}

#navbarNav {
  justify-content: flex-end;
}

.nav-link {
  font-size: 18px;
}

.global-header {
  max-width: 1150px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

#header-logo {
  height: 75px;
  display: inline-block;
}

#header-list {
  display: inline-block;
  line-height: 45px;
}

#header-menu {
  list-style-type: none;
  color: white;
  padding: 0;
}

#letter-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  padding-bottom: 100px;
}

#letter-item {
  color: black;
  margin: 0 0 15px 0;
}

.nav-list {
  display: inline;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 18px;
}

.main-body {
  max-width: 1150px;
  width: 90%;
  min-height: 500px;
  padding-top: 25px;
  padding-bottom: 80px;
  margin: auto;
  display: flex;
}

.letter-body {
  max-width: 1150px;
  width: 90%;
  padding-top: 25px;
  padding-bottom: 25px;
  margin: auto;
  display: flex;
}

.column-main {
  float: left;
  width: 50%;
  text-align: justify;
}

#main-title {
  max-width: 1150px;
  width: 90%;
  margin: auto;
  padding-top: 5%;
  font-size: 18px;
  color: #225189;
  font-weight: bold;
  display: flex;
}

#mid-col {
  padding-left: 25px;
  padding-right: 25px;
}

.footer-background {
  background-color: var(--main-color);
  height: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  bottom: 0;
  position: fixed;
  width: 100%;
}

.global-footer {
  max-width: 1150px;
  width: 90%;
  margin: auto;
  bottom: 0;
}

#copyright {
  color: lightblue;
  font-size: 10px;
  line-height: 25px;
  display: inline-block;
}

.nav-list a:link, .nav-list a:visited {
  color: white;
  text-decoration: none;
}
.nav-list a:hover {
  color: lightblue;
  text-decoration: none;
}

a:active {
  color: lightblue;
  text-decoration: none;
}

#letter-item a:link, #letter-item a:visited {
  color: var(--main-color);
  text-decoration: none;
}
#letter-item a:hover, #letter-item a:active {
  color: lightblue;
  text-decoration: none;
}

#full-name-container {
  display: flex;
  justify-content: space-between;
}
#full-name-container input {
  width: 49%;
}

textarea {
  width: 100%;
  height: 250px;
  resize: none;
  padding: 5px;
  background-color: #f2f2f2;
  font-family: "Hind";
  font-size: 16px;
  box-sizing: border-box;
  border-style: solid;
  border-color: darkgray;
  border-width: thin;
}

input[type=email], input[type=text] {
  width: 100%;
  background-color: #f2f2f2;
  font-family: "Hind";
  font-size: 16px;
  box-sizing: border-box;
  border-style: solid;
  border-color: darkgray;
  border-width: thin;
  padding: 5px;
}

#opt-in-label {
  font-size: 14px;
}

.contact-form {
  padding-bottom: 10px;
}

input[type=submit] {
  background-color: white;
  padding: 5px 15px 5px 15px;
  font-size: 16px;
  border-style: solid;
  border-color: darkgray;
  border-width: thin;
  font-family: "Hind";
  color: #225189;
}
input[type=submit]:hover {
  background-color: #f2f2f2;
}

.button {
  background-color: white;
  padding: 5px 15px 5px 15px;
  font-size: 16px;
  border-style: solid;
  border-color: darkgray;
  border-width: thin;
  font-family: "Hind";
  color: #225189;
  width: 200px;
  margin-left: 5px;
  margin-right: 5px;
}
.button:hover {
  background-color: #f2f2f2;
}

.column-main a:link, .column-main a:visited {
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
}

#acc-overlay {
  display: block;
  position: fixed;
  overflow: auto;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: white;
  color: black;
  z-index: 1001;
  opacity: 100;
}

#acc-box {
  box-shadow: 1px 1px 5px var(--main-color);
  padding: 1%;
  width: 90%;
  max-width: 1000px;
  margin: 5% auto;
  color: var(--main-color);
  font-size: 18px;
}

#acc-list {
  list-style: square;
}
#acc-list li {
  padding-bottom: 5px;
}

#acc-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

/** Contact Form **/
.wpcf7-form-control-wrap.fname,
.wpcf7-form-control-wrap.lname {
  width: 48%;
}
.wpcf7-form-control-wrap.fname input,
.wpcf7-form-control-wrap.lname input {
  width: 100% !important;
}

@media all and (max-width: 768px) {
  .main-body {
    display: block;
  }

  .column-main {
    float: none;
    width: 100%;
  }

  #mid-col {
    margin: 20px 0;
  }
}
@media all and (max-width: 410px) {
  #full-name-container {
    display: grid;
    width: 100%;
    grid-gap: 10px;
    justify-content: inherit;
  }
  #full-name-container input[type=text] {
    width: 100%;
  }
}
/*# sourceMappingURL=krc.css.map */

/*# sourceMappingURL=krc.css.map */
