@charset "UTF-8";
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans"), url(/fonts/Noto_Sans/NotoSans-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans"), url(/fonts/Noto_Sans/NotoSans-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Noto Sans"), url(/fonts/Noto_Sans/NotoSans-Bold.ttf) format("truetype");
}
.grayBG {
  background-color: #f0efed;
}

.greenBG {
  background-color: #a5af71;
}

.darkBlueBG {
  background-color: #0d6ca6;
}

.blueBG {
  background-color: #5c9abf;
}
.blueBG h1, .blueBG .h1, .blueBG h2, .blueBG .h2, .blueBG p {
  color: white;
}

.priColor {
  color: #0d6ca6 !important;
}

.secColor {
  color: #7d8d2e !important;
}

.terColor {
  color: #908f8f !important;
}

.blue {
  color: #0d6ca6 !important;
}

.textBlue h1, .textBlue .h1, .textBlue h2, .textBlue .h2, .textBlue h3, .textBlue .h3, .textBlue h4, .textBlue .h4, .textBlue p {
  color: #0d6ca6 !important;
}

.stars {
  list-style: none;
  color: #0d6ca6;
}
.stars li {
  position: relative;
}
.stars li:before {
  content: "*";
  position: absolute;
  right: 100%;
  margin-right: 6px;
}

.maxWidth100 {
  max-width: 100%;
}

.horizontalCenter {
  margin-left: auto;
  margin-right: auto;
}

.verticalCenter {
  display: flex;
  align-items: center;
}

.noMargin {
  margin: 0 !important;
}

.noSidePadding {
  padding-left: 0;
  padding-right: 0;
}
.noSidePadding .row {
  margin-left: 0;
  margin-right: 0;
}

@media all and (min-width: 993px) {
  .pl-md-6 {
    padding-left: 100px;
  }
}

.noSidePaddingMargin {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.noPadding {
  padding: 0 !important;
}

@media all and (max-width: 768px) {
  .noPaddingBotMobile {
    padding-bottom: 0 !important;
  }
}

.bgImage {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .bgImage {
    height: 300px;
  }
}

.smallSmallSeparator {
  height: 16px;
}

.smallSeparator {
  height: 32px;
}

.separator {
  height: 48px;
}

.bigSeparator {
  height: 90px;
}

.paddingContainer {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media all and (min-width: 992px) {
  .sidePadding {
    padding-right: 55px;
    padding-left: 55px;
  }
}

.paddingContainerBig {
  padding-top: 100px;
  padding-bottom: 100px;
}

.scrollUpBtn {
  display: none;
  position: fixed;
  bottom: 0;
  right: 35px;
  padding: 8px;
  line-height: 1;
  font-size: 28px;
  cursor: pointer;
  color: white;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #7d8d2e;
}

.scrollUpBtn:hover {
  background-color: #626e24;
}

.showOnMobile {
  display: none;
}

@media all and (max-width: 1200px) {
  .hideOnLg {
    display: none !important;
  }
}
@media all and (max-width: 992px) {
  .hideOnMd {
    display: none !important;
  }

  .FullWidthOnMd {
    width: 100% !important;
  }
}
@media all and (max-width: 768px) {
  .hideOnSm {
    display: none !important;
  }
}
@media all and (max-width: 600px) {
  .hideOnMobile {
    display: none !important;
  }

  .showOnMobile {
    display: block;
  }
}
@media all and (min-width: 600px) {
  .showOnMobile {
    display: none;
  }
}
.fadeintop {
  opacity: 0;
  transform: translateY(-100px);
}

.fadeinbot {
  opacity: 0;
  transform: translateY(100px);
}

.fadeinleft {
  opacity: 0;
  transform: translateX(-100px);
}

.fadeinright {
  opacity: 0;
  transform: translateX(100px);
}

.fadedin {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.imgScaleAnimated {
  transition: transform 4.6s ease, 0.6s clip-path ease;
  -webkit-transition: -webkit-transform 4.6s ease, 0.6s -webkit-clip-path ease;
  transform: scale(1);
  -webkit-transform: scale(1);
}

@media all and (min-width: 993px) {
  .showOnMd {
    display: none !important;
  }
}

.navSelected {
  color: #7d8d2e !important;
}

header {
  position: relative;
  z-index: 2;
  background-color: #f0efed;
}
@media all and (max-width: 992px) {
  header {
    position: fixed;
    left: 0;
    z-index: 3;
    background-color: #f0efed;
    width: 100%;
  }
}

nav {
  padding: 15px 0 0;
  text-align: center;
}
nav .logo {
  display: block;
}
nav .logo img {
  margin-top: 25px;
  margin-bottom: 40px;
  max-width: 100%;
  width: 260px;
  margin-right: 100px;
}
@media all and (max-width: 992px) {
  nav .logo img {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 75%;
  }
}
@media all and (max-width: 1200px) {
  nav .logo {
    margin-right: -100px;
  }
}
@media all and (max-width: 992px) {
  nav .logo {
    width: 250px;
  }
}
nav #topNav ul {
  margin: 0;
  padding: 0;
  text-align: right;
}
@media all and (max-width: 992px) {
  nav #topNav ul li:last-child {
    padding-right: 0;
  }
}
nav #topNav ul li {
  color: #7d8d2e;
  display: inline-block;
  padding: 6px 3px;
}
nav #topNav ul li a {
  color: #7d8d2e;
  font-size: 16px;
}
@media all and (max-width: 992px) {
  nav #topNav ul {
    text-align: center;
    margin-bottom: 10px;
  }
}
nav #zNav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media all and (max-width: 992px) {
  nav #zNav {
    padding-left: 0;
    display: block;
    text-align: center;
  }
}
nav #zNav .mobileNav {
  display: inline-block;
}
@media all and (max-width: 992px) {
  nav #zNav .mobileNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
  }
}
nav #zNav .mobileNav #menuBtn {
  display: none;
  font-size: 13px;
  font-family: "Noto Sans", serif;
  color: #7d8d2e !important;
  width: 38px;
  text-align: center;
  right: 0;
  top: 20px;
  line-height: 0.7;
  cursor: pointer;
  font-weight: bold;
}
@media all and (max-width: 992px) {
  nav #zNav .mobileNav #menuBtn {
    display: inline-block;
  }
}
nav #zNav .mobileNav #menuBtn img {
  display: block;
  margin: auto;
  margin-bottom: 10px;
  width: 36px;
}
nav #zNav .mobileNav #menuBtn:hover, nav #zNav .mobileNav #menuBtn:focus {
  color: #626e24 !important;
}
nav .rightNav {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
nav .rightNav > div {
  padding: 22px 5px;
  text-align: center;
}
@media all and (max-width: 992px) {
  nav .rightNav > div {
    padding: 0px;
  }
}
@media all and (max-width: 992px) {
  nav .rightNav {
    position: absolute;
    left: 0;
    right: 0;
    margin-top: -3px;
  }
}
nav #navToggle {
  background-color: #f0efed;
  max-width: 1400px;
  margin: auto;
  height: 100%;
  align-items: center;
  line-height: 1;
  padding: 0;
  list-style: none;
}
nav #navToggle a, nav #navToggle ul, nav #navToggle li {
  display: inline-block;
}
nav #navToggle a {
  line-height: 1;
  color: #0d6ca6;
}
nav #navToggle a:hover {
  color: #0a527e;
  text-decoration: none;
}
@media all and (max-width: 992px) {
  nav #navToggle {
    padding-bottom: 20px;
    display: block;
  }
}
nav #navToggle li {
  color: #908f8f;
  font-family: "Noto Sans", serif;
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
  padding: 6px 8px;
  /*border-left: 2px solid white;


  @media all and (max-width: $break-md) {
    border-left: none;

    padding: 12px 0;
  }*/
}
@media all and (max-width: 992px) {
  nav #navToggle li {
    display: block;
    padding: 10px 8px;
  }
}
nav #navToggle li a {
  line-height: 1;
  font-size: 18px;
}
@media all and (min-width: 992px) {
  nav #navToggle li:last-child {
    padding-right: 0;
  }
}
@media all and (min-width: 993px) {
  nav #navToggle {
    display: flex !important;
    justify-content: space-between;
  }
}
@media all and (max-width: 992px) {
  nav #navToggle {
    display: none;
  }
}
footer p {
  color: #616161;
}
footer h3, footer h1 {
  color: #0d6ca6;
  border-bottom: 1px solid #0d6ca6;
  padding-bottom: 32px;
  margin-left: -500px;
  padding-left: 500px;
  font-size: 33px;
  font-family: "Noto Sans", serif;
  font-weight: bold;
}
footer ul {
  padding-left: 0;
  list-style: none;
  margin: auto;
  margin-bottom: 6px;
  max-width: 1200px;
  text-align: center;
}
footer ul li {
  margin: 4px 0;
  padding: 1px 4px 1px 0;
  line-height: 1.4;
  font-size: 18px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  footer ul li {
    border-left: none;
    display: block;
  }
}
footer ul li:first-child {
  border-left: none;
}
footer ul li, footer ul a {
  color: #616161;
}
footer ul a:hover {
  color: #313131;
  text-decoration: none;
}
footer .botFoot li {
  display: inline-block;
  padding: 1px 20px 1px 0;
}
footer .botFoot a {
  color: #0d6ca6;
}
footer .botFoot a:hover {
  color: #6b6b6b;
  text-decoration: none;
}

.slider {
  background-color: #f0efed;
  min-height: 600px;
}
@media all and (max-width: 768px) {
  .slider {
    min-height: 300px;
  }
}

@media all and (max-width: 768px) {
  .icon1 {
    margin-top: 0 !important;
  }
}

.img4 {
  position: absolute;
  right: 100px;
  bottom: 20px;
  width: 300px;
}
@media all and (max-width: 992px) {
  .img4 {
    right: 10px;
    bottom: 20px;
  }
}

.sliderBox {
    width: 330px;
    max-width: 100%;
    text-align: left;
    padding: 25px 15px;
    position: absolute;
    top: 0;
    right: 100px;
    background-color: rgb(13 108 166 / 0%);
}
@media all and (max-width: 992px) {
  .sliderBox {
    position: static;
    width: 100%;
    opacity: 1;
  }
}

.blueLine {
  height: 1px;
  width: 100%;
  background-color: #0d6ca6;
}

.icon {
  margin-bottom: 18px;
}

.iconGrayBG {
  background-color: #f0efed;
  padding: 10px;
  margin-top: -40px;
  transform: translateY(-60%);
  margin-bottom: -30px;
}

.blueBorderOuter {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.blueBorderOuter .blueBorder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.blueBorder {
  border: 1px solid #0d6ca6;
  padding: 40px;
  margin: 45px;
  text-align: center;
}
@media all and (max-width: 600px) {
  .blueBorder {
    padding: 15px;
    margin: 25px 0;
  }
}

.whiteBtn {
  border: 1px solid white;
  font-weight: bold;
  color: white;
  padding: 16px 32px;
  display: inline-block;
  font-size: 20px;
  text-align: center;
}

.whiteBtn:hover {
  color: white;
}

.overlay1 {
  position: absolute;
  top: 30px;
  left: -30px;
}
@media all and (max-width: 1200px) {
  .overlay1 {
    left: 0;
  }
}
@media all and (max-width: 600px) {
  .overlay1 {
    top: -20px;
    width: 60%;
  }
}

.overlay2 {
  position: absolute;
  bottom: -50px;
  right: 0;
}
@media all and (max-width: 600px) {
  .overlay2 {
    width: 60%;
  }
}

.divider1 {
  height: 250px;
}
@media all and (max-width: 992px) {
  .divider1 {
    height: 20px;
  }
}

.divider2 {
  height: 90px;
}
@media all and (max-width: 992px) {
  .divider2 {
    height: 20px;
  }
}

.imgWrap {
  display: inline-block;
  overflow: hidden;
}

.imgClipAnim {
  clip-path: inset(100% 0 0% 0);
  -webkit-clip-path: inset(100% 0 0% 0);
}

.imgClipLeftAnim {
  clip-path: inset(100% 0 0% 0);
  -webkit-clip-path: inset(0% 100% 0% 0);
}

.imgClipRightAnim {
  clip-path: inset(100% 0 0% 0);
  -webkit-clip-path: inset(0% 0 0% 100%);
}

.imgClipAnimated {
  clip-path: inset(0% 0 0% 0);
  -webkit-clip-path: inset(0% 0 0% 0);
  transition: 0.6s;
}

.imgScaleAnim {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
}

@media all and (max-width: 992px) {
  .spacer {
    height: 73px;
  }
}

.expandBox {
  cursor: pointer;
}
.expandBox .redBox:hover {
  background-color: #6b6b6b;
}
.arrowDown {
  position: absolute;
  left: 10px;
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.redBox, .blueBox, .contactBox {
  padding: 30px 20px 30px 20px;
}
.redBox a, .redBox a:hover, .redBox p, .blueBox a, .blueBox a:hover, .blueBox p, .contactBox a, .contactBox a:hover, .contactBox p {
  color: white;
}

.extraPaddingBox {
  padding-top: 60px;
  padding-bottom: 60px;
}

.blueBox {
  background-color: #0d6ca6;
}

.redBox {
  background-color: #908f8f;
}

.contactBox {
  background-color: #908f8f;
  position: relative;
  z-index: 1;
  width: 535px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}
@media all and (min-width: 993px) {
  .contactBox {
    height: 692px;
  }
}

.moreBtn {
  background-color: #7d8d2e;
  color: white;
  padding: 5px 32px;
  margin-top: 20px;
}

.moreBtn:hover {
  background-color: #626e24;
  color: white;
  text-decoration: none;
}

@media all and (min-width: 993px) {
  .p1 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}

.offstImg1 {
  margin-bottom: 80px;
}
@media all and (max-width: 992px) {
  .offstImg1 {
    margin-bottom: 0;
  }
}

.offstImg2 {
  margin-bottom: 250px;
}
@media all and (max-width: 992px) {
  .offstImg2 {
    margin-bottom: 0;
  }
}

.imgGroup .images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media all and (max-width: 992px) {
  .imgGroup .images {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
}
.imgGroup .images img {
  max-width: 100%;
  padding: 9px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.imgGroup .blueBox, .imgGroup .redBox {
  padding-top: 340px;
  transform: translateY(-320px);
  margin-bottom: -320px;
}

#wrapper {
  /*@media all and (min-width: $break-md + 1) {
    margin-left: 40px;
    margin-right: 40px;
  }*/
}
#wrapper .container {
  max-width: 1400px;
}

#mapid {
  height: 500px;
}

.imgBox {
  padding: 0;
}
@media all and (min-width: 993px) {
  .imgBox {
    height: 0;
  }
}
.imgBox > div {
  position: relative;
  z-index: 2;
  background-color: white;
  padding: 20px 40px 30px 40px;
  margin-left: -40px;
  display: inline-block;
}
@media all and (max-width: 992px) {
  .imgBox > div {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
  }
}

table {
  margin-bottom: 26px;
  color: #7d8d2e;
}

p, li {
  line-height: 1.7;
  font-family: "Noto Sans", serif;
  font-size: 17px;
  color: #706f6f;
  font-weight: normal;
}

h1, .h1 {
  display: block;
  font-family: "Noto Sans", serif;
  font-size: 29px;
  font-weight: 500;
  color: #0d6ca6;
  margin-bottom: 6px;
  line-height: 1;
}

h2, .h2 {
  display: block;
  text-transform: none;
  font-family: "Noto Sans", serif;
  font-weight: normal;
  line-height: 1.2;
  font-size: 23px;
  color: #0d6ca6;
  margin: 0 0 16px 0;
}
@media all and (max-width: 768px) {
  h2, .h2 {
    font-size: 24px;
  }
}

h3, .h3 {
  display: block;
  text-transform: none;
  font-family: "Noto Sans", serif;
  font-weight: bold;
  line-height: 1.2;
  font-size: 23px;
  color: #0d6ca6;
  margin: 0 0 16px 0;
}
@media all and (max-width: 768px) {
  h3, .h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  color: #7d8d2e;
}

/*
h2:before, .h2:before {
  content: "●";
  color: $primary-color;
  position: absolute;
  transform: translate(-70px, -30px);
  font-size: 100px;
  @media all and (max-width: $break-xs) {
    display: none;
  }
}
*/
@media all and (max-width: 992px) {
  #wrapper {
    background: none;
  }
}

a {
  color: #7d8d2e;
}

a:hover, a:focus {
  color: #626e24;
}

.redList {
  list-style: none;
}
.redList li {
  font-weight: bold;
}
.redList li:before {
  content: "●";
  color: #908f8f;
  position: absolute;
  transform: translate(-24px, -2px);
  font-size: 20px;
}
.box {
  display: flex;
  justify-content: center;
}
.box .h1 {
  font-weight: normal;
  text-align: center;
  padding: 24px 0 20px;
}

.buttonBoxBlue:hover {
  background-color: #0d6ca6;
  text-decoration: none;
}

/*
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  padding-left: 25px;
  padding-right: 25px;
}*/

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