/********************************************************
******************** SCSS VARIABLES *********************
********************************************************/
/********************************************************
********************** BREAKPOINTS **********************
********************************************************/
/********************************************************
********************** ASPECT RATIO *********************
********************************************************/
/********************************************************
******************* HEX TO RGBA MIXIN *******************
********************************************************/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #455473;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/********************************************************
***************** FLOAT CLEARFIX CLASS *****************
********************************************************/
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

/********************************************************
*************** MAIN BODY/WRAPPER STYLES ****************
********************************************************/
* {
  box-sizing: border-box; }

html {
  text-size-adjust: 100%; }

body {
  font-family: 'Titillium Web', sans-serif;
  overflow-x: hidden;
  background: #fff;
  line-height: 1.5;
  background: #e2d9cb;
  color: #000; }

a {
  color: #455473; }
  a:hover {
    text-decoration: none; }

h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 29px;
  color: #455473; }

h2 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 19px;
  color: #455473; }

p {
  font-size: 15px; }
.customer-portal-btn{
   font-weight: 700;
   white-space: nowrap;
}
.customer-portal-btn.btn-sm {
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 15px; 
}
.customer-portal-btn.btn-primary {
    border-color: #bfb4a4;
    background-color:#455473 ;
    color: #fff; }
.customer-portal-btn.btn-primary:hover {
    background: #f4f4f4;
    border: 1px solid #455473;
    color: #455473; }
.customer-portal-btn.btn-primary:active, .btn.btn-primary:focus {
    color: #455473; }
.btn {
  font-weight: 700; }
  .btn.btn-sm {
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 15px; }
  .btn.btn-primary {
    border-color: #bfb4a4;
    background: #fff;
    color: #455473; }
    .btn.btn-primary:hover {
      background: #f4f4f4; }
    .btn.btn-primary:active, .btn.btn-primary:focus {
      color: #455473; }

ul.list-pdf li {
  margin-bottom: 6px;
  display: flex; }
  ul.list-pdf li img {
    margin-right: 4px; }
  ul.list-pdf li:last-of-type {
    margin-bottom: 0; }

/********************************************************
***************** BASIC VISUAL STYLES *******************
********************************************************/
img {
  display: inline-block;
  max-width: 100%; }

/********************************************************
******************* REUSABLE CLASSES ********************
********************************************************/
.shadow {
  position: relative; }
  .shadow:before {
    background: url("/img/shadow.png");
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    opacity: 0.5;
    height: 30px;
    width: 100%;
    z-index: 10;
    content: '';
    left: 0;
    top: 0; }

.site-header {
  margin: 20px auto; }
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 1px solid #d0a276; }
    @media screen and (max-width: 992px) {
      .site-header .container {
        display: block;
        text-align: center; } }
    .site-header .container:before, .site-header .container:after {
      display: none; }
  .site-header .logo a {
    display: block; }
  .site-header .logo svg {
    width: 170px;
    height: 80px; }
  .site-header button.hamburger {
    z-index: 999;
    display: none; }
    @media screen and (max-width: 768px) {
      .site-header button.hamburger {
        position: absolute;
        display: block;
        right: 0;
        top: 0; } }
    .site-header button.hamburger.is-active .hamburger-inner,
    .site-header button.hamburger.is-active .hamburger-inner:before,
    .site-header button.hamburger.is-active .hamburger-inner:after {
      background: #fff; }
  .site-header nav {
    text-align: right; }
    @media screen and (max-width: 992px) {
      .site-header nav {
        text-align: center; } }
    .site-header nav p {
      color: #d0a276;
      font-size: 20px;
      font-weight: 700; }
    .site-header nav ul {
      display: flex;
      white-space: nowrap;
      gap: 10px;
      position: relative;
      margin: 0;
      padding: 0;
      list-style: none; }

      @media screen and (max-width: 992px) {
        .site-header nav ul {
          display: flex;
          gap: 0px !important;
          font-size: 8px !important;
          justify-content: center; }
          .site-header nav ul li a {
          font-size: 12px !important;
          }  
        }
      @media screen and (max-width: 768px) {
        .site-header nav ul {
          position: absolute;
          background: #455473;
          text-align: left;
          display: none !important;
          z-index: 998;
          right: 0;
          left: 0;
          top: 0;
          border-bottom: 2px solid #d0a276; } }
      .site-header nav ul li {
        margin: 0 5px;
        padding: 5px;
        cursor: pointer; }
        @media screen and (max-width: 768px) {
          .site-header nav ul li {
            display: block;
            width: 100%;
            margin: 0;
            border-bottom: 1px solid #fff; }
            .site-header nav ul li:last-of-type {
              border-bottom: 0; } }
        .site-header nav ul li:hover ul {
          display: flex;
          padding: 1em;
          z-index: 999; }
        .site-header nav ul li a {
          text-transform: uppercase;
          font-size: 14px;
          font-weight: 600; }
          @media screen and (max-width: 768px) {
            .site-header nav ul li a {
              padding: 12px 18px;
              font-size: 16px;
              display: block;
              color: #fff; } }
          .site-header nav ul li a.active, .site-header nav ul li a:hover {
            border-bottom: 2px solid #d0a276; }
            @media screen and (max-width: 768px) {
              .site-header nav ul li a.active, .site-header nav ul li a:hover {
                border-bottom: 0; } }
      .site-header nav ul ul {
        background-color: #455473;
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        flex-direction: column; }
        .site-header nav ul ul a {
          text-transform: uppercase;
          font-size: 14px;
          font-weight: 600;
          color: #e2d9cb; }
          @media screen and (max-width: 768px) {
            .site-header nav ul ul a {
              padding: 12px 18px;
              font-size: 16px;
              display: block;
              color: #fff; } }

.site-footer {
  margin-top: 20px; }
  .site-footer .container {
    position: relative;
    color: #e2d9cb; }
    @media screen and (max-width: 768px) {
      .site-footer .container {
        text-align: center;
        height: auto; } }
    .site-footer .container .cfs {
      position: absolute;
      padding-left: 60px;
      text-align: left;
      bottom: 50px;
      color: #000;
      right: 20px; }
      @media screen and (max-width: 768px) {
        .site-footer .container .cfs {
          position: relative;
          margin: 0 auto;
          width: 240px;
          bottom: auto;
          right: auto; } }
      .site-footer .container .cfs svg {
        position: absolute;
        display: block;
        height: 50px;
        width: 50px;
        left: 0;
        top: 0; }
      .site-footer .container .cfs p {
        font-size: 14px;
        text-transform: uppercase;
        line-height: 20px; }
        .site-footer .container .cfs p strong {
          font-size: 23px;
          font-weight: 700; }
    .site-footer .container p.banner {
      font-size: 12px;
      line-height: 30px;
      background: #455473;
      margin: 0 -15px;
      padding: 0 10px; }
      .site-footer .container p.banner span {
        display: inline-block;
        padding: 0 10px; }
        .site-footer .container p.banner span:first-of-type {
          margin-left: 0; }
        .site-footer .container p.banner span:last-of-type {
          margin-right: 0; }
      .site-footer .container p.banner a {
        color: inherit; }

.home h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  text-transform: none; }
.home .main {
  border-bottom: 1px solid #d0a276;
  position: relative;
  padding-left: 60%;
  min-height: 430px; }
  @media screen and (max-width: 768px) {
    .home .main {
      padding: 0 30px 30px;
      text-align: center;
      min-height: auto; } }
  .home .main img {
    position: absolute;
    z-index: 1;
    width: 60%;
    left: 0;
    top: 0; }
    @media screen and (max-width: 768px) {
      .home .main img {
        margin: 20px auto 0;
        position: relative;
        display: block;
        width: 80%;
        left: auto;
        top: auto; } }
  .home .main .content {
    position: relative;
    z-index: 10; }
    .home .main .content ul {
      list-style: none;
      margin: 0 0 12px;
      padding: 0; }
      .home .main .content ul li {
        font-style: italic;
        font-weight: 600;
        font-size: 24px;
        color: #455473; }
        @media screen and (max-width: 768px) {
          .home .main .content ul li {
            font-size: 18px; } }
    @media screen and (max-width: 768px) {
      .home .main .content .actions {
        margin-left: -20px;
        margin-right: -20px; } }
    .home .main .content .btn {
      display: block;
      text-align: left;
      max-width: 100%;
      width: 290px;
      margin-bottom: 8px;
      position: relative;
      padding-left: 80px;
      padding-right: 20px; }
      @media screen and (max-width: 768px) {
        .home .main .content .btn {
          margin: 8px auto; } }
      .home .main .content .btn svg {
        width: 30px;
        height: 30px;
        position: absolute;
        left: 30px;
        top: 50%;
        margin-top: -15px; }
      .home .main .content .btn:last-of-type {
        margin-bottom: 0; }
.home .services {
  text-align: center;
  flex-wrap: wrap;
  display: flex;
  justify-content: center; }
  .home .services .col-md-3 {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; }
  .home .services h2 {
    text-transform: uppercase;
    margin: 0; }

.page .content {
  padding-right: 30px; }
  @media screen and (max-width: 992px) {
    .page .content {
      padding-right: 15px;
      margin-bottom: 30px; } }
.page .sidebar {
  background: #f8f6f2;
  border-radius: 5px;
  text-align: center;
  padding: 20px; }
  .page .sidebar p.quote {
    font-size: 19px; }
    .page .sidebar p.quote span.author {
      font-size: 15px;
      display: block; }
  .page .sidebar .icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .page .sidebar .icons a {
      margin: 20px 0; }

/*# sourceMappingURL=style.min.css.map */
