/* ==========================================================================
	Global Settings
========================================================================== */
/*
* Boxsizing set to border box http://css-tricks.com/box-sizing/
*/
* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

/*
* Remove text-shadow in selection highlight: h5bp.com/i
* These selection rule sets have to be separate.
* Customize the background color to match your design.
*/
::-moz-selection {
  background: #6F8F9D;
  color: #fff;
}

::selection {
  background: #6F8F9D;
  color: #fff;
}

::-moz-selection {
  background: #6F8F9D;
  color: #fff;
}

*:focus {
  outline: none;
}

html {
  font-size: 16px;
  line-height: 20px;
  position: relative;
}

@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}

/*
* Body settings, change it as required
*/
body {
  font-family: "brix-sans-regular", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  background: #F7F7F7;
}

/*
* Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "brix-sans-bold", Arial, sans-serif;
  font-weight: 400;
  color: #4A4A4A;
  text-rendering: optimizeLegibility;
  margin-top: 0;
}

/*
* Paragraphs
*/
p {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #000000;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 25px;
}

/*
* Links
*/
a {
  color: #6F8F9D;
  line-height: inherit;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

a:hover {
  color: #8DADB7;
}

a:focus {
  color: #8DADB7;
  outline: none;
}

p a {
  line-height: inherit;
}

p a:visited {
  line-height: inherit;
}

strong {
  font-family: "brix-sans-medium", Arial, sans-serif;
  font-weight: 400;
}

/*
* A better looking default horizontal rule
*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
* Remove the gap between images and the bottom of their containers: h5bp.com/i/440
*/
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

img.full-width {
  width: 100%;
}

figure {
  margin: 0;
}

picture {
  display: block;
}

/*
* Remove default fieldset styles.
*/
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
* Allow only vertical resizing of textareas.
*/
textarea {
  resize: vertical;
}

/* ==========================================================================
	Helper classes
========================================================================== */
/*
* Floats
*/
.left {
  float: left;
}

.right {
  float: right;
}

/*
* Text Alignment
*/
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/*
* Item alignment, flex-grid
*/
.d-flex {
  display: flex !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

/*
* Image Alignment
*/
img.alignleft {
  float: left;
  margin: 0 20px 15px 0;
  display: inline;
}

img.alignright {
  float: right;
  margin: 0 0px 15px 10px;
  display: inline;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

/*
* Hide visually and from screenreaders, but maintain layout
*/
.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*/
/*
* More semantic version as described in http://css-tricks.com/snippets/css/clear-fix/
*/
.group:after {
  content: "";
  display: table;
  clear: both;
}

/*
* older method of adding empty tags for clearing
*/
.clear {
  clear: both;
  height: 1px;
  line-height: 1px;
}

/*
* Chromeframe
*/
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }

  .visible-mobile {
    display: block;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none;
  }

  .hidden-mobile {
    display: block;
  }
}

.building-category {
  color: #6F8F9D !important;
}

.civil-engineering-category {
  color: #6F8F9D !important;
}

.graphic-design-category {
  color: #6F8F9D !important;
}

/* ==========================================================================
	Common Functionalities & UI Elements
========================================================================== */
body.nav-active {
  overflow: hidden;
}

/*
* Container
*/
#container {
  min-width: 320px;
  overflow-x: hidden;
  padding-top: 72px;
}

body.layout1 #container {
  padding-top: 0px;
}

.wrapper {
  padding: 0px;
  margin: 0px 0px 85px;
}

#footer .wrapper {
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .wrapper {
    margin: 0px 0px 45px;
  }

  #footer .wrapper {
    margin-bottom: 40px;
  }
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 20px;
}

.container.header-container {
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .container {
    max-width: 950px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/*
* Header
*/
#header {
  margin: 0px;
  z-index: 9;
  width: 100% !important;
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  border-bottom: 1px solid #f7f7f7;
  background-color: white;
}

#header .logo {
  width: 200px;
  background: #FFFFFF;
  text-align: center;
  position: relative;
  margin: 20px 0;
}

#header .logo a {
  background: url(../images/logo.png) no-repeat center center;
  background-size: contain;
  display: block;
  height: 72px;
  margin: auto;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#header .logo a:hover {
  opacity: 0.7;
}

body.layout1 #header .logo {
  transition: margin 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: margin 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: margin 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: margin 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: margin 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

body.layout1 #header .logo.scrolled {
  width: 80px;
  margin: 0;
  margin-top: 0;
}

body.layout1 #header .logo a {
  height: 80px;
}

body.home #header .logo a {
  background-image: url(../images/logo2.png) !important;
}

body.civil-engineering-page #header .logo a {
  background-image: url(../images/logo3.png) !important;
}

body.building-page #header .logo a {
  background-image: url(../images/logo4.png) !important;
}

body.graphic-design-page #header .logo a {
  background-image: url(../images/logo5.png) !important;
}

body.versuchsanstalt-page #header .logo a {
  background-image: url(../images/logo6.png) !important;
}

@media screen and (max-width: 767px) {
  body.layout1 #header {
    background: #ffffff;
  }

  body.layout1 #header .logo.scrolled {
    margin-top: 0px;
  }

  body.layout1 #header .logo a {
    background-image: url(../images/mobile-logo.png) !important;
    background-position: left center;
  }

  body.layout1 .menu-btn span.icon-bar {
    background: #6F8F9D;
  }
}

#desktop-navigation #menu-main-menu {
  list-style: none;
}

#desktop-navigation #menu-main-menu li {
  position: relative;
  margin-right: 40px;
}

#desktop-navigation #menu-main-menu li a {
  color: black;
}

#desktop-navigation #menu-main-menu li a:hover {
  color: #6F8F9D;
}

#desktop-navigation #menu-main-menu li.menu-item-has-children:after {
  content: "";
  height: 0;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  position: absolute;
  top: 10px;
  right: -14px;
}

#desktop-navigation #menu-main-menu li .dropdown {
  list-style: none;
  padding-top: 16px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  opacity: 0;
  z-index: -999;
  visibility: hidden;
  transition: opacity 250ms cubic-bezier(0.15, 0.3, 0.2, 0.9), visibility 0s 250ms, z-index 0s 250ms;
  background-color: white;
}

#desktop-navigation #menu-main-menu li .dropdown li {
  border-bottom: 1px solid grey;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
}

#desktop-navigation #menu-main-menu li .dropdown li a {
  color: black;
}

#desktop-navigation #menu-main-menu li .dropdown li a:hover {
  color: #6F8F9D;
}

#desktop-navigation #menu-main-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 999;
  transition: opacity 250ms cubic-bezier(0.15, 0.3, 0.2, 0.9), visibility 0s 0s, z-index 0s 0s;
}

.search-form-desktop {
  display: none;
}

.search-form-desktop {
  background-color: white;
  color: #6F8F9D;
  height: 150px;
  padding-bottom: 50px;
  margin-top: 50px;
}

.search-form-desktop form {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
}

.search-form-desktop form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #6F8F9D;
  position: relative;
}

.search-form-desktop .search-button {
  background: url("../images/search-icon.svg") no-repeat center;
  width: 24px;
  height: 51px;
  border: none;
  z-index: 99;
  left: 0;
  top: 0;
  margin-top: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #6F8F9D;
}

.search-button-desktop {
  width: 118px;
  height: 42px;
  border: 1px solid #6F8F9D;
  position: relative;
  color: #6F8F9D;
  background-color: transparent;
  padding-right: 25px;
}

.search-button-desktop .search-icon {
  background: url("../images/search-icon.svg") no-repeat center;
  width: 24px;
  height: 24px;
  border: none;
  position: absolute;
  z-index: 99;
  right: 8px;
  top: 50%;
  margin-top: -12px;
}

.menu-btn {
  display: none;
  position: absolute;
  z-index: 999;
  left: 537px;
  top: 19px;
  background: rgba(0, 0, 0, 0);
  padding: 0px;
  height: 32px;
  width: 43px;
  border: 0px;
}

.menu-btn span.icon-bar {
  background: #6F8F9D;
  display: block;
  cursor: pointer;
  height: 6px;
  width: 43px;
  margin-top: 7px;
  position: relative;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

.menu-btn span.icon-bar:first-child {
  margin-top: 0px;
}

.menu-btn span.icon-bar:first-child,
.menu-btn span.icon-bar:last-child {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.menu-btn.active span.icon-bar {
  background: #6F8F9D;
}

.menu-btn.active span.icon-bar:first-child+span {
  background-color: transparent;
  opacity: 0;
}

.menu-btn.active span.icon-bar:first-child {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 0px;
  top: 13px;
}

.menu-btn.active span.icon-bar:last-child {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 0px;
  top: -13px;
}

body.layout1 .menu-btn {
  top: 33px;
}

body.layout1 .menu-btn.scrolled span.icon-bar {
  background: #6F8F9D;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

@media screen and (max-width: 1199px) {
  .menu-btn {
    left: 412px;
  }

  .menu-btn {
    display: block;
  }

  #btnnavi,
  .search-button-desktop,
  .search-form-desktop,
  #desktop-navigation {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .menu-btn {
    left: 297px;
  }
}

@media screen and (max-width: 767px) {
  .menu-btn {
    left: auto;
    right: 20px;
  }
}

/*
* Main Navigation
*/
#main-navigation {
  max-width: 510px;
}

#main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main-navigation li {
  border-top: 1px solid rgba(111, 143, 157, 0.2);
  color: #6F8F9D;
}

#main-navigation li.parent a {
  position: relative;
}

#main-navigation li.parent a:before {
  display: block;
  content: "";
  background: url(../images/arrow1.svg);
  width: 12px;
  height: 6px;
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -3px;
}

#main-navigation li.parent.active a:before {
  background-image: url(../images/arrow2.svg);
}

#main-navigation li a {
  font-family: "brix-sans-bold", Arial, sans-serif;
  font-size: 2rem;
  line-height: 2.375rem;
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 25px 0px 27px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#main-navigation .dropdown {
  display: none;
}

#main-navigation .dropdown li {
  padding-left: 45px;
}

#main-navigation .dropdown li a {
  font-size: 1.375rem;
  line-height: 1.75rem;
  padding: 15px 0px 17px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#main-navigation .dropdown li a:before {
  background-image: url(../images/arrow3.svg) !important;
  right: auto;
  left: 0;
  width: 6px;
  height: 9px;
  margin-top: -5px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#main-navigation .dropdown li a:hover {
  padding-left: 15px;
}

#main-navigation .dropdown li a:hover:before {
  opacity: 1;
}

#main-navigation>ul>li>a:hover {
  color: #8DADB7;
}

@media (max-width: 1199px) {
  #main-navigation li a {
    font-size: 1.75rem;
    line-height: 2.125rem;
  }
}

@media screen and (max-width: 640px) {
  #main-navigation li a {
    font-size: 1.375rem;
    line-height: 1.75rem;
    padding: 14px 0px 13px;
  }

  #main-navigation .dropdown li {
    padding-left: 25px;
  }

  #main-navigation .dropdown li a {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}

ul.sociable {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.sociable li {
  display: inline-block;
  vertical-align: top;
}

ul.sociable li:hover {
  opacity: 0.7;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

ul.sociable li.facebook {
  background: url(../images/facebook.svg);
}

ul.sociable li a {
  display: block;
  width: 21px;
  height: 21px;
}

/*
* overlay
*/
#overlay {
  position: fixed;
  z-index: -1;
  opacity: 0;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#overlay.show {
  z-index: 99;
  opacity: 1;
}

/*
* Sidebar
*/
#sidebar {
  position: fixed;
  z-index: 999;
  right: 0px;
  top: 0px;
  width: 50%;
}

#sidebar .inner-wrap {
  overflow: auto;
  position: fixed;
  z-index: 99;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  background: #ffffff;
  padding: 72px 20px 24px 70px;
  transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#sidebar.show .inner-wrap,
#sidebar.show .title {
  right: 0px;
}

#sidebar .title {
  background: #fff;
  position: fixed;
  z-index: 8;
  right: -50%;
  top: 0px;
  padding-top: 12px;
  padding-left: 70px;
  width: 50%;
  transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: right 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#sidebar .title:after {
  display: block;
  content: "";
  background: rgba(111, 143, 157, 0.2);
  max-width: 510px;
  height: 1px;
  margin-right: 20px;
}

#sidebar .title a {
  display: inline-block;
  background: #F5F7F8;
  font-family: "brix-sans-bold", Arial, sans-serif;
  font-size: 18px;
  line-height: 21px;
  color: #6F8F9D;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 20px 14px;
  margin-bottom: 12px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#sidebar .title a:hover,
#sidebar .title a:focus {
  background: rgba(245, 247, 248, 0.7);
}

#sidebar .search-form {
  position: relative;
  max-width: 510px;
  border-top: 1px solid rgba(111, 143, 157, 0.2);
  border-bottom: 1px solid rgba(111, 143, 157, 0.2);
}

#sidebar .search-form input[type=text] {
  display: block;
  border: 0px;
  padding: 25px 0px 27px;
  font-family: "brix-sans-light", Arial, sans-serif;
  font-size: 2rem;
  line-height: 2.375rem;
  color: #6F8F9D;
  font-weight: 400;
}

#sidebar .search-form input[type=text]:focus {
  color: #ccc;
}

#sidebar .search-form input[type=text]::-webkit-input-placeholder {
  opacity: 1;
  color: #6F8F9D;
}

#sidebar .search-form input[type=text]:-moz-placeholder {
  opacity: 1;
  color: #6F8F9D;
}

#sidebar .search-form input[type=text]::-moz-placeholder {
  opacity: 1;
  color: #6F8F9D;
}

#sidebar .search-form input[type=text]:-ms-input-placeholder {
  opacity: 1;
  color: #6F8F9D;
}

#sidebar .search-form input[type=text]::-webkit-input-placeholder:focus {
  color: #ccc;
}

#sidebar .search-form input[type=text]:-moz-placeholder:focus {
  color: #ccc;
}

#sidebar .search-form input[type=text]::-moz-placeholder:focus {
  color: #ccc;
}

#sidebar .search-form input[type=text]:-ms-input-placeholder:focus {
  color: #ccc;
}

#sidebar .search-form .search-button {
  display: block;
  background: url("../images/search-icon.svg") no-repeat center;
  width: 24px;
  height: 24px;
  border: none;
  position: absolute;
  z-index: 99;
  right: 7px;
  top: 50%;
  margin-top: -12px;
}

#sidebar .contact-info {
  position: relative;
  max-width: 530px;
  padding-top: 40px;
  margin: 0px -10px;
}

body.layout1 #sidebar .inner-wrap {
  padding-top: 96px;
}

body.layout1 #sidebar .title {
  padding-top: 24px;
}

body.layout1 #sidebar .title a {
  margin-bottom: 24px;
}

@media (max-width: 1199px) {

  #main-navigation,
  #sidebar .title:after,
  #sidebar .search-form,
  #sidebar .contact-info {
    max-width: 425px;
  }

  #sidebar .inner-wrap {
    padding-left: 30px;
  }

  #sidebar .title {
    padding-left: 30px;
  }
}

@media screen and (max-width: 991px) {

  #main-navigation,
  #sidebar .title:after,
  #sidebar .search-form,
  #sidebar .contact-info {
    max-width: 310px;
  }
}

@media screen and (max-width: 767px) {

  #main-navigation,
  #sidebar .title:after,
  #sidebar .search-form,
  #sidebar .contact-info {
    max-width: 343px;
  }

  #sidebar .inner-wrap {
    padding-left: 20px;
  }

  #sidebar .title {
    padding-left: 20px;
  }
}

@media (max-width: 640px) {

  #main-navigation,
  #sidebar .title:after,
  #sidebar .search-form {
    max-width: 100%;
  }

  #sidebar .inner-wrap,
  #sidebar .title {
    right: -95%;
    width: 95%;
  }

  #sidebar .inner-wrap {
    padding-left: 20px;
  }

  #sidebar .title {
    padding-left: 20px;
  }

  #sidebar .search-form input[type=text] {
    padding: 14px 0px 16px;
  }

  #sidebar .contact-info {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  #sidebar .contact-info p {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 375px) {
  #sidebar .search-form input[type=text] {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}

/*
*footer
*/
#footer {
  background: #ffffff;
  padding: 40px 0;
}

#footer h3 {
  font-size: 1rem;
  line-height: 1.625rem;
  text-transform: uppercase;
}

#footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

#footer li {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #858585;
  margin: 0px;
}

#footer li:hover,
#footer li:focus {
  color: #ccc;
}

#footer li.no-click:hover {
  color: #858585;
}

#footer li.no-click>a {
  pointer-events: none;
}

#footer li.no-click>a:hover {
  padding-left: 0px;
}

#footer li a {
  text-decoration: none;
  display: inline-block;
  padding: 0px;
  position: relative;
  transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#footer li a:hover {
  padding-left: 10px;
}

#footer li ul {
  margin-left: 20px;
  margin-bottom: 0px;
}

#footer .contact-info {
  padding-top: 25px;
  margin-bottom: 25px;
}

#footer .service-menu li {
  font-family: "brix-sans-bold", Arial, sans-serif;
}

#footer .service-menu li li {
  font-family: "brix-sans-regular", Arial, sans-serif;
}

#footer ul.sociable li a {
  display: block;
}

#footer ul.sociable li a:hover {
  padding-left: 10px;
}

.contact-info address {
  font-style: normal;
}

.contact-info h4,
.contact-info p {
  color: #6F8F9D;
  font-size: 0.8125rem;
  line-height: 1.25rem;
}

.contact-info h4 a,
.contact-info p a {
  color: inherit;
  text-decoration: none;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info h4 {
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  #footer {
    padding-bottom: 0px;
  }
}

/*
* notification
*/
.show-notification .notification {
  display: block;
}

.show-notification #header,
.show-notification #sidebar .menu-btn,
.show-notification #sidebar .inner-wrap,
.show-notification #sidebar .title {
  margin-top: 145px;
}

.show-notification #sidebar .inner-wrap {
  padding-bottom: 145px;
}

.notification {
  display: none;
  background: #6F8F9D;
}

.notification .container {
  display: table;
  height: 145px;
}

.notification .container .column {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  padding-right: 50px;
}

.notification .close-btn {
  position: absolute;
  z-index: 999;
  right: 0px;
  top: 50%;
  margin-top: -16px;
  background: rgba(0, 0, 0, 0);
  padding: 0px;
  height: 32px;
  width: 42px;
  border: 0px;
}

.notification .close-btn span.icon-bar {
  background: #FFFFFF;
  display: block;
  cursor: pointer;
  height: 6px;
  width: 43px;
  margin-top: 7px;
  position: relative;
}

.notification .close-btn span.icon-bar:first-child+span {
  background-color: transparent;
  opacity: 0;
}

.notification .close-btn span.icon-bar:first-child {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 0px;
  top: 13px;
  margin-top: 0px;
}

.notification .close-btn span.icon-bar:last-child {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 0px;
  top: -13px;
}

.notification p {
  font-size: 1.25rem;
  line-height: 1.4375rem;
  color: #ffffff;
  margin-bottom: 0px;
}

.notification p a {
  color: inherit;
  text-decoration: underline;
}

/*
* Post
*/
.post dl,
.post dt,
.post dd,
.post ul,
.post ol,
.post li,
.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6,
.post pre,
.post p,
.post blockquote,
.post th,
.post td {
  margin: 0;
  padding: 0;
  font-size: 14px;
  direction: ltr;
}

.post p,
p {
  font-size: 1rem;
  line-height: 1.5625rem;
  color: #4A4A4A;
  font-weight: 400;
  margin-bottom: 25px;
}

.post p.metadata,
p.metadata {
  margin-bottom: 0px;
}

.post p a,
p a {
  color: inherit;
  border-bottom: 1px solid #4A4A4A;
}

.post p a:hover,
p a:hover {
  opacity: 0.7;
}

.post p.lead,
p.lead {
  font-family: "brix-sans-medium", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.40625;
  color: #4A4A4A;
  font-weight: 400;
  width: 80%;
  margin-bottom: 30px;
}

.post p.lead strong,
p.lead strong {
  font-family: "brix-sans-medium", Arial, sans-serif;
  font-weight: 400;
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-family: "brix-sans-bold", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4A4A4A;
  text-rendering: optimizeLegibility;
  line-height: 1.1;
  margin-bottom: 15px;
}

.post h1 small,
.post h2 small,
.post h3 small,
.post h4 small,
.post h5 small,
.post h6 small {
  font-size: 60%;
  color: #4A4A4A;
  line-height: 0;
}

.post h1,
h1 {
  font-size: 1.875rem;
  line-height: 2.125rem;
  color: #6F8F9D;
  margin: 0 0 15px;
}

.post h2,
h2 {
  font-family: "brix-sans-medium", Arial, sans-serif;
  font-size: 1.6875rem;
  line-height: 2rem;
  color: #6F8F9D;
  margin: 0 0 40px;
  text-transform: uppercase;
}

.post h3,
h3 {
  font-size: 1.5rem;
  line-height: 1.8125rem;
  margin: 0 0 10px;
  text-transform: none;
}

.post h4,
h4 {
  font-size: 1rem;
  line-height: 1.5625rem;
  margin: 0 0 5px;
}

.post h5,
h5 {
  font-size: 1rem;
  line-height: 1.3125rem;
  margin: 0 0 5px;
}

.post h6,
h6 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0 0 5px;
}

.post code {
  font-weight: 400;
  font-family: "brix-sans-bold", Arial, sans-serif;
  background: #ffff99;
}

.post ul,
.post ol,
.post dl {
  font-size: 1rem;
  line-height: 1.5625rem;
  margin-bottom: 30px;
  list-style-position: outside;
}

.post ul li ul,
.post ul li ol {
  margin-left: 20px;
  margin-bottom: 0;
}

.post ol li ul,
.post ol li ol {
  margin-left: 20px;
  margin-bottom: 0;
}

.post ul,
.post ol {
  margin-left: 20px;
}

.post ul li,
.post ol li {
  font-size: 1rem;
  line-height: 1.5625rem;
}

.post blockquote {
  margin: 0 0 25px;
  padding: 0;
  font-style: normal;
  font-family: "brix-sans-regular-italic-italic", Arial, sans-serif;
}

.post blockquote p {
  font-size: 18px;
  line-height: 1.3125rem;
  font-style: normal;
  font-family: "brix-sans-regular-italic-italic", Arial, sans-serif;
  margin: 0 0 5px;
}

.post blockquote cite {
  display: block;
  color: #808382;
  font-style: normal;
}

.post blockquote cite a {
  color: #808382;
}

.post blockquote cite a:visited {
  color: #808382;
}

.post figure figcaption {
  margin: 10px 0px 20px;
}

@media screen and (max-width: 767px) {

  .post h2,
  h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin: 0 0 30px;
  }
}

@media screen and (max-width: 640px) {

  .post h2,
  h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0 0 20px;
  }

  .post h3,
  h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .post p.lead,
  p.lead {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/*
* pagination
*/
.pagination {
  margin-top: 40px;
}

.pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5625rem;
  color: #4A4A4A;
  margin-right: 10px;
  text-decoration: none;
}

.pagination span.current {
  font-family: "brix-sans-bold", Arial, sans-serif;
}

.pagination a:hover,
.pagination a:focus {
  color: #ccc;
}

.popouterbox {
  display: none !important;
}

/*
* banner
*/
#banner {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#banner #headerimage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
}

#banner #headermobile {
  display: none;
}

#banner video {
  background: #B3DBC9;
  height: 100%;
  width: 100%;
}

#banner .image {
  display: none;
}

#banner .scroll-btn {
  background: url("../images/scroll-btn.svg") no-repeat;
  display: block;
  width: 68px;
  height: 68px;
  z-index: 9;
  position: absolute;
  bottom: 55px;
  left: 50%;
  margin-left: -34px;
  /* For Firefox 15 and below */
  /* For Internet Explorer 9 to 11 */
  /* For Opera and Opera Mobile */
  /* For Safari 3.1 to 6.0 and Android Browser 4.1 and 4.3 */
  transform: translateX(-50%);
  /* IE don't have support for CSS based animations at all :( */
  /* For Firefox 15 and below */
  /* For Opera and Opera Mobile */
  /* For Safari 3.1 to 6.0 and Android Browser 4.1 and 4.3 */
  transition: opacity 0.1s ease;
}

#banner .description {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#banner .description p.lead {
  font-size: 2.625rem;
  line-height: 1.2142857143;
  color: #ffffff;
  margin: 0px;
}

#banner .inner-wrap {
  display: table;
  width: 100%;
  height: 100%;
}

#banner .inner {
  display: table-cell;
  vertical-align: middle;
  padding-top: 100px;
}

.home #banner {
  height: auto !important;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    /* For Firefox 15 and below */
    /* For Internet Explorer 9 to 11 */
    /* For Opera and Opera Mobile */
    /* For Safari 3.1 to 6.0 and Android Browser 4.1 and 4.3 */
    transform: translateY(0);
  }

  40% {
    /* For Firefox 15 and below */
    /* For Internet Explorer 9 to 11 */
    /* For Opera and Opera Mobile */
    /* For Safari 3.1 to 6.0 and Android Browser 4.1 and 4.3 */
    transform: translateY(-30px);
  }

  60% {
    /* For Firefox 15 and below */
    /* For Internet Explorer 9 to 11 */
    /* For Opera and Opera Mobile */
    /* For Safari 3.1 to 6.0 and Android Browser 4.1 and 4.3 */
    transform: translateY(-15px);
  }
}

.bounce {
  /* Safari 4+ */
  /* Fx 5+ */
  /* Opera 12+ */
  animation: bounce 2s infinite;
  /* IE 10+, Fx 29+ */
}

@media screen and (max-width: 1199px) {
  #banner .description p.lead {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  #header .logo {
    margin: 20px 0px;
  }

  #header .logo a {
    height: 65px;
  }
}

/*@media screen and (min-width: 768px) {
    body.home {
        #banner {
            background-image: none !important;
        }
    }
}*/
@media screen and (max-width: 767px) {
  #banner .scroll-btn {
    bottom: 18px;
    width: 48px;
    height: 48px;
    margin-left: -24px;
    background-size: contain;
    opacity: 1 !important;
  }

  #banner .description p.lead {
    font-size: 1.5rem;
    line-height: 2.125rem;
  }

  body.home #banner video {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  #banner .scroll-btn {
    bottom: 12px;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    background-size: contain;
  }

  #banner .description p.lead {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  #banner #headerimage {
    display: none;
  }

  #banner #headermobile {
    display: block !important;
    margin-top: 100px;
  }
}

/*
* slideshow
*/
.slideshow {
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.slideshow .slide {
  width: 100%;
}

.slideshow .slide img {
  width: 100%;
  height: 370px;
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

.slideshow .cycle-next,
.slideshow .cycle-prev {
  display: block;
  width: 24px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.slideshow .cycle-next:hover,
.slideshow .cycle-prev:hover {
  opacity: 0.7;
}

.slideshow .cycle-next {
  background-image: url("../images/next-arrow.svg");
  right: 30px;
}

.slideshow .cycle-prev {
  background-image: url("../images/previous-arrow.svg");
  left: 30px;
}

@media screen and (max-width: 991px) {

  .slideshow .cycle-next,
  .slideshow .cycle-prev {
    width: 17px;
    height: 36px;
  }
}

@media screen and (max-width: 767px) {
  .slideshow .slide img {
    height: 270px;
  }
}

/*
* Column-Grids
*/
.one-half {
  display: inline-block;
  vertical-align: top;
  margin-left: -3px;
  width: 50%;
  padding: 0 10px;
}

.one-half.right {
  float: right;
}

.one-half.table-hours p {
  max-width: 75%;
  font-size: 1.125rem;
  line-height: 1.5625rem;
}

.one-fourth,
ul.columns-wrap .one-fourth,
#footer .one-fourth {
  float: left;
  width: 25%;
  padding: 0 10px;
}

.one-third,
ul.columns-wrap .one-third {
  float: left;
  width: 33.33%;
  padding: 0 10px;
}

.columns-wrap,
ul.columns-wrap {
  margin-left: -10px;
  margin-right: -10px;
}

.columns-wrap.inline-wrap .one-third {
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-left: -2px;
  margin-right: -2px;
}

.one-half,
.one-fourth,
.one-third {
  list-style: none;
}

@media screen and (max-width: 991px) and (min-width: 641px) {
  .posts .one-half {
    display: block;
    margin-left: 0px;
    width: 100%;
  }

  .one-third.one-half-sm {
    width: 50%;
  }

  .one-third.full-sm {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {

  .one-fourth,
  ul.columns-wrap .one-fourth,
  #footer .one-fourth {
    width: 50%;
  }

  .one-half.full-xs {
    display: block;
    margin-left: 0px;
    width: 100%;
  }

  .one-half.full-xs.table-hours p {
    max-width: 95%;
    font-size: 1rem;
    line-height: 1.3125rem;
  }
}

@media screen and (max-width: 640px) {

  .one-half,
  .one-fourth,
  .one-third {
    float: none;
    display: block;
    margin-left: 0px;
    width: 100%;
  }

  ul.columns-wrap .one-half,
  ul.columns-wrap .one-fourth,
  ul.columns-wrap .one-third {
    float: none;
    width: 100%;
  }

  .one-half.right {
    float: none;
  }

  .columns-wrap .post {
    margin-bottom: 20px;
  }

  .columns-wrap.inline-wrap .one-third {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
}

/*
* buttons
*/
.button1,
.button2,
.button3,
.button4,
.button5 {
  font-family: "brix-sans-medium", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 15px 35px;
  transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.button1:hover,
.button1:focus,
.button2:hover,
.button2:focus,
.button3:hover,
.button3:focus,
.button4:hover,
.button4:focus,
.button5:hover,
.button5:focus {
  color: #ffffff;
}

.button1 {
  background: #6F8F9D;
}

.button1:hover,
.button1:focus {
  background: rgba(111, 143, 157, 0.7);
}

.button2 {
  background: #6F8F9D;
}

.button2:hover,
.button2:focus {
  background: rgba(111, 143, 157, 0.7);
}

.button3 {
  background: #6F8F9D;
}

.button3:hover,
.button3:focus {
  background: rgba(111, 143, 157, 0.7);
}

.button4 {
  background: #6F8F9D;
}

.button4:hover,
.button4:focus {
  background: rgba(111, 143, 157, 0.7);
}

.button5 {
  background: #ffffff;
  color: #6F8F9D;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.button5:hover,
.button5:focus {
  color: #ffffff;
  background: #6F8F9D;
}

.button5.right {
  margin-top: -5px;
}

.page-template-school-categories .button1:hover,
.page-template-school-categories .button1:focus,
.page-template-school-categories .button2:hover,
.page-template-school-categories .button2:focus,
.page-template-school-categories .button3:hover,
.page-template-school-categories .button3:focus,
.page-template-school-categories .button4:hover,
.page-template-school-categories .button4:focus,
.page-template-school-categories .button5:hover,
.page-template-school-categories .button5:focus {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .button5.right {
    float: none;
    clear: both;
    display: block;
    max-width: 190px;
    text-align: center;
    margin: 0px auto 10px;
  }
}

/*
* navbar
*/
#navbar {
  background: #FFFFFF;
  padding: 10px 0px;
  margin-top: 43px;
}

body.layout1 #navbar {
  padding: 25px 0px;
  width: 100%;
  position: relative;
  z-index: 9;
}

body.layout1 #navbar.scrolled .button1.right,
body.layout1 #navbar.scrolled .button2.right,
body.layout1 #navbar.scrolled .button3.right,
body.layout1 #navbar.scrolled .button4.right,
body.layout1 #navbar.scrolled .button5.right {
  right: 70px;
  transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

body.layout1 #navbar .button1.right,
body.layout1 #navbar .button2.right,
body.layout1 #navbar .button3.right,
body.layout1 #navbar .button4.right,
body.layout1 #navbar .button5.right {
  right: 0px;
  position: relative;
}

@media screen and (max-width: 767px) {

  #navbar .button1.right,
  #navbar .button2.right,
  #navbar .button3.right,
  #navbar .button4.right,
  #navbar .button5.right {
    display: block;
    float: none;
    max-width: 200px;
    text-align: center;
    margin: 0px auto 0px;
  }

  #navbar .button1.right {
    max-width: 100%;
  }

  #navbar .breadcrumbs {
    margin-bottom: 10px;
  }

  body.layout1 #navbar {
    z-index: 8;
  }

  body.layout1 #navbar.scrolled .button1.right,
  body.layout1 #navbar.scrolled .button2.right,
  body.layout1 #navbar.scrolled .button3.right,
  body.layout1 #navbar.scrolled .button4.right,
  body.layout1 #navbar.scrolled .button5.right {
    right: 0px;
  }

  #navbar-sticky-wrapper.is-sticky #navbar {
    position: relative !important;
  }
}

/*
* secondary-menu
*/
.secondary-menu {
  float: left;
}

.secondary-menu ul {
  margin: 0px;
  padding: 15px 0px;
  list-style: none;
}

.secondary-menu li {
  font-family: "brix-sans-light", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  color: #6F8F9D;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  margin-right: 35px;
}

.secondary-menu li:last-child {
  margin-right: 0px;
}

.secondary-menu li.active,
.secondary-menu li:hover {
  font-family: "brix-sans-medium", Arial, sans-serif;
}

.secondary-menu li a {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .secondary-menu {
    display: none;
  }
}

/*
@media screen and (max-width: 480px) {
    .secondary-menu {
        ul {
            padding: $padding-base * 0 $padding-base * 0;
        }
        li {
            display: block;
            margin-right: $margin-base * 0;
        }
    }
}
*/
/*
* breadcrumbs
*/
.breadcrumbs {
  float: left;
}

.breadcrumbs ul {
  margin: 0px;
  padding: 15px 0px;
  list-style: none;
}

.breadcrumbs li {
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #4A4A4A;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  padding-left: 20px;
  background: url("../images/arrow4.svg") no-repeat left 5px;
}

.breadcrumbs li:first-child {
  padding-left: 0px;
  background: none;
}

.breadcrumbs li:last-child {
  margin-right: 0px;
}

.breadcrumbs li.active {
  font-family: "brix-sans-bold", Arial, sans-serif;
}

.breadcrumbs li a {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    float: none;
    width: 80%;
  }

  .breadcrumbs ul {
    padding: 10px 0px;
  }
}

/*
* content
*/
#content {
  padding: 50px 0px 0px;
}

#content .single-post p.lead {
  max-width: 40%;
}

#content .single-post p,
#content .single-post ul,
#content .single-post ol,
#content .single-post h1,
#content .single-post h2,
#content .single-post h3,
#content .single-post h4,
#content .single-post h5,
#content .single-post h6 {
  max-width: 50%;
}

@media screen and (max-width: 992px) {

  #content .single-post p,
  #content .single-post p.lead,
  #content .single-post ul,
  #content .single-post ol,
  #content .single-post h1,
  #content .single-post h2,
  #content .single-post h3,
  #content .single-post h4,
  #content .single-post h5,
  #content .single-post h6 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  #content {
    padding: 30px 0px 0px;
  }
}

.columnizer .column {
  padding-right: 60px;
}

@media screen and (max-width: 767px) {
  .columnizer .column {
    padding-right: 10px;
  }
}

.view-all {
  font-family: "brix-sans-medium", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.125rem;
  color: #6F8F9D;
  text-transform: uppercase;
  text-decoration: none;
}

.view-all:hover,
.view-all:focus {
  color: #8DADB7;
}

/*
* posts
*/
.posts .post {
  background: #ffffff;
  margin-bottom: 20px;
  transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.posts .post:hover {
  background: #6F8F9D;
}

.posts .post:hover figure span {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.posts .post:hover .details h4,
.posts .post:hover .details p,
.posts .post:hover .details .metadata,
.posts .post:hover .details .metadata span,
.posts .post:hover .details .metadata a {
  color: #ffffff !important;
}

.posts .post>a {
  min-height: 119px;
  display: block;
  text-decoration: none;
}

.posts .post figure {
  float: left;
  width: 178px;
  height: 119px;
  overflow: hidden;
}

.posts .post figure span {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.posts .post .details {
  margin-left: 178px;
  padding: 15px 25px 5px 15px;
}

.posts .post .details h4,
.posts .post .details p,
.posts .post .details .metadata,
.posts .post .details .metadata span {
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.posts .post .details h4,
.posts .post .details p,
.posts .post .details .metadata {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin: 0px;
}

.posts .post .details .metadata {
  color: #6F8F9D;
}

.posts .post .details h4 {
  color: #000000;
  max-height: 40px;
  overflow: hidden;
}

.posts .post .details h4 a {
  color: inherit;
}

.posts .post .details p {
  color: #979797;
  max-height: 39px;
  overflow: hidden;
}

@media screen and (max-width: 560px) {
  .posts .post figure {
    float: none;
    width: 100%;
    height: 220px;
  }

  .posts .post figure img {
    width: 100%;
  }

  .posts .post .details {
    margin-left: 0px;
    padding-bottom: 10px;
  }

  .posts .post .details h4,
  .posts .post .details p,
  .posts .post .details .metadata {
    font-size: 1.0625rem;
  }

  .posts .post .details p {
    max-height: 50px;
  }
}

/*
* table
*/
.table {
  margin-bottom: 40px;
  overflow: auto;
}

.table.highlight tr:hover td:first-child a {
  padding-left: 30px;
}

.table.highlight tr:hover:nth-child(2n+1) td,
.table.highlight tr:hover td {
  background: #6F8F9D;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.table.highlight tr:hover:nth-child(2n+1) td span,
.table.highlight tr:hover:nth-child(2n+1) td a,
.table.highlight tr:hover td span,
.table.highlight tr:hover td a {
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.table table {
  width: 100%;
}

.table tr:nth-child(2n+1) td {
  background: #ffffff;
}

.table td {
  font-family: "brix-sans-bold", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.4375rem;
  color: #000000;
  background: #F7F7F7;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.table td span {
  color: #858585;
}

.table td.event-date {
  color: #6F8F9D;
  width: 215px;
  font-family: "brix-sans-regular", Arial, sans-serif;
}

.table td.event-time {
  font-family: "brix-sans-regular", Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  width: 200px;
  color: #858585;
}

.table td .inner {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 25px 20px;
  position: relative;
  transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: padding 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.table td a {
  color: inherit;
}

@media screen and (max-width: 480px) {
  .table td {
    display: block;
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .table td.event-date,
  .table td.event-time {
    width: 100%;
  }

  .table td .inner {
    padding: 0px 15px 10px;
  }

  .table td.event-date .inner {
    padding-top: 10px;
  }
}

/*
* next-page, previous-page
*/
.next-page,
.previous-page {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.125rem;
  color: #6F8F9D;
  text-decoration: none;
  text-transform: uppercase;
}

.next-page:hover,
.next-page:focus,
.previous-page:hover,
.previous-page:focus {
  color: #6F8F9D;
  border-bottom: 1px solid #6F8F9D;
}

.next-page {
  background: url(../images/next-page-arrow.svg) no-repeat right center;
  padding-right: 30px;
  float: right;
}

.previous-page {
  background: url(../images/previous-page-arrow.svg) no-repeat left center;
  padding-left: 30px;
  float: left;
}

/*
* featured-section
*/
#featured-section {
  margin-bottom: 40px;
}

#featured-section .post {
  display: table;
}

#featured-section .post .column {
  display: table-cell;
  vertical-align: middle;
  padding: 110px;
}

#featured-section .post .column .featured-btn {
  min-width: 260px;
  margin-left: 20px;
  text-align: center;
}

#featured-section .post p {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 20px;
}

#featured-section .post p.lead {
  font-size: 2.25rem;
  line-height: 1.2222222222;
  color: #6F8F9D;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  #featured-section .post {
    display: block;
  }

  #featured-section .post .column {
    display: block;
  }

  #featured-section .post p.lead {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  #featured-section .post p.lead {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

@media screen and (max-width: 767px) {
  #featured-section .post p {
    margin-bottom: 20px;
  }

  #featured-section .post p.lead {
    font-size: 1.75rem;
    line-height: 2.25rem;
    width: 100%;
  }
}

/*
* introduction
*/
#introduction {
  margin-bottom: 115px;
}

#introduction .building-category h2,
#introduction .building-category p {
  color: #6F8F9D;
}

#introduction .building-category .read-more-btn {
  background: #6F8F9D;
}

#introduction .building-category .read-more-btn:hover,
#introduction .building-category .read-more-btn:focus {
  background: rgba(111, 143, 157, 0.7);
}

#introduction .civil-engineering-category h2,
#introduction .civil-engineering-category p {
  color: #6F8F9D;
}

#introduction .civil-engineering-category .read-more-btn {
  background: #6F8F9D;
}

#introduction .civil-engineering-category .read-more-btn:hover,
#introduction .civil-engineering-category .read-more-btn:focus {
  background: rgba(111, 143, 157, 0.7);
}

#introduction .graphic-design-category h2,
#introduction .graphic-design-category p {
  color: #6F8F9D;
}

#introduction .graphic-design-category .read-more-btn {
  background: #6F8F9D;
}

#introduction .graphic-design-category .read-more-btn:hover,
#introduction .graphic-design-category .read-more-btn:focus {
  background: rgba(111, 143, 157, 0.7);
}

#introduction .columns-wrap {
  display: table;
}

#introduction .one-third {
  display: table-cell;
  vertical-align: top;
  float: none;
  padding-right: 50px;
}

#introduction .wrapper {
  padding-bottom: 50px;
  position: relative;
}

#introduction .wrapper .read-more-btn {
  position: absolute;
  bottom: 0;
  left: 10px;
}

#introduction .wrapper p {
  min-height: 190px;
}

#introduction .post h2 {
  font-size: 2rem;
  line-height: 2.375rem;
  margin-bottom: 20px;
}

#introduction .post h2 a {
  color: inherit;
}

#introduction .post h2 a:hover,
#introduction .post h2 a:focus {
  opacity: 0.7;
}

#introduction .post p {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 60px;
}

#introduction .post p.lead {
  font-size: 2.875rem;
  line-height: 3.375rem;
  color: #6F8F9D;
  margin-bottom: 60px;
}

#introduction .read-more-btn {
  display: inline-block;
  font-family: "brix-sans-medium", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 25px 14px;
  transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  #introduction .wrapper p {
    min-height: 264px;
  }

  #introduction .read-more-btn {
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 12px 15px 14px;
  }
}

@media screen and (max-width: 767px) {
  #introduction {
    margin-bottom: 0px;
  }

  #introduction .columns-wrap {
    display: block;
  }

  #introduction .one-third {
    display: block;
  }

  #introduction .wrapper {
    margin-bottom: 45px;
  }

  #introduction .one-third {
    padding-right: 0px;
    float: none;
    width: 100%;
  }

  #introduction .wrapper p {
    min-height: 45px;
  }

  #introduction .post h2 {
    font-size: 1.75rem;
    line-height: 2.125rem;
  }

  #introduction .post p {
    margin-bottom: 20px;
  }
}

/*
* contact-person
*/
.contact-person .image1 {
  float: left;
}

.contact-person .details {
  padding-left: 195px;
  margin-left: 20px;
}

.contact-person .details h4 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #000000;
  margin: 0px;
}

.contact-person .details p {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #858585;
  margin-bottom: 20px;
}

@media screen and (max-width: 375px) {
  .contact-person .image1 {
    float: none;
    margin-bottom: 10px;
  }

  .contact-person .details {
    padding-left: 0px;
  }
}

/*========================================================================
                      Contact-Us Specific
====================================================================*/
.contact-us h2,
.contact-us h3 {
  margin-bottom: 35px;
}

.contact-us h3 {
  font-family: "brix-sans-light", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.4375rem;
  text-transform: uppercase;
}

.contact-us h4,
.contact-us p {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #000000;
}

.contact-us h4 {
  margin: 0px;
}

.contact-us p {
  margin-bottom: 30px;
}

.contact-us p a {
  color: inherit;
  text-decoration: none;
}

.contact-us p span {
  color: #9B9B9B;
}

@media screen and (max-width: 640px) {

  .contact-us h2,
  .contact-us h3 {
    margin-bottom: 20px;
  }
}

/*========================================================================
                      Forms Specific
====================================================================*/
.forms h4 {
  font-size: 1.125rem;
  line-height: 1.25rem;
  color: #000000;
  margin-bottom: 40px;
}

.forms h5 {
  font-size: 0.9375rem;
  line-height: 2.5rem;
  color: #858585;
}

.list1,
.post .list1 {
  margin: 0px 0px 55px;
  padding: 0px;
  list-style: none;
  max-width: 280px;
}

.list1 li,
.post .list1 li {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #858585;
  margin-bottom: 25px;
}

.list1 li a,
.post .list1 li a {
  color: inherit;
  text-decoration: underline;
}

.list1 li a:hover,
.list1 li a:focus,
.post .list1 li a:hover,
.post .list1 li a:focus {
  color: #ccc;
}

.sponsors li {
  text-align: center;
}

.sponsors li a {
  display: block;
  line-height: 130px;
  background: #fff;
}

.sponsors li img {
  vertical-align: middle;
}

@media screen and (max-width: 1199px) {
  .sponsors li a {
    line-height: 73px;
  }
}

@media screen and (max-width: 767px) {
  .sponsors li a {
    line-height: 134px;
  }
}

/*========================================================================
                      logged-in Specific
====================================================================*/
html.user-logged-in {
  margin-top: 32px !important;
}

html.user-logged-in #sidebar,
html.user-logged-in #sidebar .title,
html.user-logged-in #sidebar .inner-wrap,
html.user-logged-in #header,
html.user-logged-in .is-sticky #navbar {
  margin-top: 32px !important;
}

@media screen and (max-width: 782px) {
  html.user-logged-in {
    margin-top: 46px !important;
  }

  html.user-logged-in #sidebar,
  html.user-logged-in #sidebar .title,
  html.user-logged-in #sidebar .inner-wrap,
  html.user-logged-in #header,
  html.user-logged-in .is-sticky #navbar {
    margin-top: 46px !important;
  }

  html.user-logged-in .is-sticky #navbar {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

/*========================================================================
                      IE Specific
====================================================================*/
.ie body {
  width: 100%;
}

/*========================================================================
                      New Css
====================================================================*/
object {
  pointer-events: none;
}

#footer {
  padding-bottom: 0px;
}

#exit-footer {
  background: #F7F7F7;
  padding: 16px 0px 12px;
  margin-top: 20px;
}

/*
* Image Link Block
*/
#image-link-blocks-section {
  margin-top: 150px;
  padding: 30px 0;
  background: #fff;
}

#image-link-blocks-section .columns-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

#image-link-blocks-section .one-third {
  width: 33.33%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #image-link-blocks-section .one-third {
    width: 100%;
    margin-bottom: 25px;
  }

  #image-link-blocks-section .one-third:last-child {
    margin-bottom: 0;
  }
}

.image-link-block {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.image-link-block:hover {
  opacity: 0.85;
}

.image-link-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.image-link-block__title {
  font-family: "brix-sans-medium", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  color: #6F8F9D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.image-link-block__arrow {
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url(../images/arrow3.svg) no-repeat center;
  background-size: contain;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.image-link-block:hover .image-link-block__arrow {
  transform: translateX(4px);
}

.image-link-block__figure {
  margin: 0;
  overflow: hidden;
}

.image-link-block__figure img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.image-link-block:hover .image-link-block__figure img {
  transform: scale(1.05);
}

@media screen and (max-width: 767px) {
  .image-link-block__title {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}

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