@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  line-height: 150%;
}

body {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4em;
  margin-bottom: 1.2em;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.4em;
  margin-bottom: 1em;
}

p {
  margin-bottom: 1em;
}

small {
  line-height: 150%;
}

ul {
  list-style: none;
  list-style-type: none;
}

.yellow-text {
  color: #e2a83d;
  line-height: 150%;
}

.hidden {
  display: none !important;
}

.hidden-mobxs,
.hidden-moblg,
.hidden-tabxs,
.hidden-tablg,
.hidden-lapxs,
.hidden-laplg {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media screen and (max-width: 375px) {
  .hidden-mobxs {
    display: none !important;
  }
}

@media screen and (min-width: 376px) and (max-width: 414px) {
  .hidden-moblg {
    display: none !important;
  }
}

@media screen and (min-width: 415px) and (max-width: 768px) {
  .hidden-tabxs {
    display: none !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hidden-tablg {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .hidden-lapxs {
    display: none !important;
  }
}

@media screen and (min-width: 1367px) {
  .hidden-laplg {
    display: none !important;
  }
}

.visible-mobxs,
.visible-moblg,
.visible-tabxs,
.visible-tablg,
.visible-lapxs,
.visible-laplg {
  display: none !important;
}

@media screen and (max-width: 375px) {
  .visible-mobxs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 376px) and (max-width: 414px) {
  .visible-moblg {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 415px) and (max-width: 768px) {
  .visible-tabxs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .visible-tablg {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .visible-lapxs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1367px) {
  .visible-laplg {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.nopad {
  padding: 0 !important;
}

.nopad-horz {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nopad-vert {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.flexcol {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-menu {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  height: 48px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.main-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main-menu li {
  position: relative;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  cursor: pointer;
}

.main-menu li:hover, .main-menu li.active {
  color: #e2a83d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main-menu-sections {
  border-bottom: none;
}

.main-menu-sections, .main-menu-toggled {
  padding-top: 48px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 48px;
  bottom: 0;
  left: 0;
  width: 160px;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.26);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.26);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.main-menu-sections.active, .main-menu-toggled.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.main-menu-admin {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-menu-xs-sitename {
  font-family: 'Playfair Display', serif;
}

.main-menu .fd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  width: 36px;
  margin-right: 4px;
  border-radius: 50%;
  border: solid 1px #e2a83d;
}

.main-menu-menu {
  top: 0;
  left: 0;
  z-index: 1000;
  height: 48px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 8px 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  cursor: pointer;
}

.main-menu .main-menu-sitename {
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
}

.main-menu .main-menu-sitename a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu .main-menu-sitename .fd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  width: 40px;
  margin-right: 4px;
  border-radius: 50%;
  border: solid 1px #e2a83d;
}

@media screen and (min-width: 415px) {
  .main-menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 15% !important;
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    padding: 0 32px;
  }
  .main-menu-sections {
    width: auto;
    padding-top: 0;
    position: relative;
    top: 0;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-bottom: solid 2px #e2a83d;
  }
}

.menu-icon,
.menu-icon:before,
.menu-icon:after {
  display: block;
  width: 24px;
  height: 6px;
  border-radius: 2px;
  background: #fff;
}

.menu-icon:before {
  content: '';
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.menu-icon:after {
  content: '';
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.y-cont {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
  background: lightgray;
}

.y-sec {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover !important;
  background-position: center !important;
  background-position: left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.y-sec.prev {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.y-sec.next {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.y-scroll {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  display: block;
  background-size:cover;
  background-repeat:no-repeat;
}

@media screen and (min-width: 768px) {
  .y-scroll {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.x-cont {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.x-sec {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover !important;
  background-position: center !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.x-sec.prev {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.x-sec.next {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.x-sec-dark:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
}

.x-sec-xs {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.y-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.y-nav li {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: solid 1px #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.y-nav li:hover, .y-nav li.active {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 2px #000;
          box-shadow: 0 0 2px #000;
}

.x-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.x-nav li {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: solid 1px #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.x-nav li:hover, .x-nav li.active {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 2px #000;
          box-shadow: 0 0 2px #000;
}

.mob-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover !important;
  background-position: center !important;
}

@media screen and (min-width: 1024px) {
  .mob-bg {
    display: none;
  }
}

form {
  padding: 0 16px;
}

form h2 {
  text-align: center;
  margin-bottom: 32px;
}

form input {
  height: 32px;
}

form input,
form textarea {
  width: 100%;
  padding: 8px;
  outline: none;
  border: none;
}

form input:focus {
  border-bottom: solid 1px gray;
}

form .err {
  color: red;
  font-size: 0.8rem;
  margin: 0 8px 8px 4px;
}

form label {
  font-size: 0.8rem;
  margin: 0 8px;
  display: block;
}

form input[type=submit] {
  width: auto;
  margin-top: 4px;
  border-radius: 4px;
  background: #e2a83d;
  border: none;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

form input[type=submit]:active,
form input[type=submit]:hover {
  background: #63a0ff;
}

.login-form,
.contact-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 8px;
  color: #333;
}

.login-form div:not(:last-child),
.contact-form div:not(:last-child) {
  background: #fff;
  border-radius: 4px;
  margin: 8px 0;
  overflow: hidden;
}

.contact-form-cont {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(304px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(304px, 1fr));
  width: 100%;
  max-width: 640px;
  padding: 56px 0;
}

.contact-form-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 16px;
}

.centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.admin {
  background: gray;
}

.cont-grid-3 {
  width: 100%;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.cont-cont {
  padding: 20%;
}

.cont-cont h3 {
  margin-left: -20px;
}

.cont-cont ul:not(.biglist) {
  margin-bottom: 1em;
}

.cont-cont ul:not(.biglist) {
  list-style-type: circle;
}

.cont-cont .circle {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: solid 1px #e2a83d;
  margin-right: 4px;
}

.cont-cont .biglist {
  line-height: 175%;
}

.cont-title-wide {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  text-align: center;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background-color: #e2a83d;
  color: #333;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: solid 2px #333;
  margin-right: 4px;
}

.footer-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 32px;
}

.footer-grid-logo {
  font-family: 'Playfair Display', serif;
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-grid-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .footer-grid {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
  }
  .footer-grid-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-grid-info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.home-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 32px;
}

.home-msg-title {
  text-align: center;
}

.home-msg-title span {
  line-height: 150%;
}

.home-logo-cont {
  display: none;
}

@media screen and (min-width: 768px) {
  .home-msg {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px minmax(320px, 480px);
        grid-template-columns: 180px minmax(320px, 480px);
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    grid-gap: 32px;
  }
  .home-msg-title {
    text-align: right;
  }
  .home-msg-title span {
    line-height: 150%;
  }
  .home-logo-cont {
    display: block;
  }
  .home-logo-cont {
    padding: 32px;
  }
  .home-logo-fd {
    border: solid 2px #e2a83d;
    border-radius: 50%;
    padding: 24px;
  }
}

.law-card {
  position: absolute;
  width: 80%;
  height: 40%;
  bottom: 10%;
  padding: 32px;
  background: rgba(125, 125, 125, 0.5);
  color: #fff;
}

.law-card h2 {
  line-height: 150%;
}

@media screen and (min-width: 1024px) {
  .law-card {
    position: absolute;
    width: 40%;
    height: 40%;
    right: 10%;
  }
}
/*# sourceMappingURL=styles.css.map */