/*     Navigation       */
.header-bg {
    height: 20px;
    width: 100vw;
    z-index: 9991;
    background-color: #091a4f;
    position: absolute;
}
.header {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 20px;
    width: 100%;
    z-index: 9000;
}
.header.scrolled {
    -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.header a {
    text-decoration: none;
    color: #091a4f;
    margin-top: 1em;
}
.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: transparent;
}
.header ul a {
    display: block;
    text-decoration: none;
    opacity: 0.99;
    letter-spacing: 3px;
}
.header .logo {
    float: left;
    display: block;
    width: 30%;
    height: auto;
    padding-left: 2em;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
.header .logo img {
    position: absolute;
    height: 3.0em;
    width: auto;
    top: .5em;
}
.header .menu {
    clear: both;
    max-height: 0;
    height: 100vh;
    -webkit-transition: max-height 0.2s ease-out;
    -o-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
}
.header .menu-icon {
    padding: 1.83em 1.5em;
    margin: 0;
    position: relative;
    float: right;
    cursor: pointer;
}
.header .menu-icon .nav-icon {
    background-color: black;
    display: block;
    height: 2px;
    width: 18px;
    position: relative;
    -webkit-transition: background .2s ease-out;
    -o-transition: background .2s ease-out;
    transition: background .2s ease-out;
}
.header .menu-icon .nav-icon:before {
    background-color: black;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    top: 5px;
}
.header .menu-icon .nav-icon:after {
    background-color: black;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    top: -5px;
}
.header .menu-btn {
    display: none;
}
.header .menu-btn:checked ~ .menu {
    max-height: 100vh;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon {
    background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:before {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 0px;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:after {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 0px;
}
.menu-list {
    position: relative;
    width: 100%;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.header .menu-btn:checked ~ .menu .menu-list {
  position: absolute;
}
.btn-nav {		
    position: relative;	
    color: #091a4f;
    text-transform: uppercase;
    -webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);	
    -webkit-user-select: none;	
       -moz-user-select: none;	
        -ms-user-select: none;	
            user-select: none;
}
.btn-nav:before, .btn-nav:after {
    content: '';
    position: absolute;	
    -webkit-transition: inherit;	
    -o-transition: inherit;	
    transition: inherit;
    z-index: -1;
}
.btn-nav:hover {
    color: #091a4f;
    -webkit-transition-delay: 100.5s;
         -o-transition-delay: 100.5s;
            transition-delay: 100.5s;
}
.btn-nav:hover:before {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
}
.btn-nav:hover:after {
    -webkit-transition-delay: .35s;
         -o-transition-delay: .35s;
            transition-delay: .35s;
}
.btn-nav.active {
    color: #de2e24;
}
.btn-navC:before {
    top: 0;
    left: 50%;
    height: 100%;
    width: 0;
    border: 1px solid #de2e24;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}
.btn-navC:after {
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
}
.btn-navC:hover:before {
    left: 0;
    width: 100%;
}
.btn-navC:hover:after {
    top: 0;
    height: 100%;
}


/*     Home        */
.home {
  position: relative;
  z-index: 99;
  width: 100vw;
  background-color: white;
}
.home-start {
  margin-bottom: 0;
}
.home-start img {
  width: 100%;
  height: auto;
  max-height: 100vh;
}
.exhibition {
  padding: 0 1em 0 0;
  margin: 0 0 1em 0;
}
.exh-wrap {
  position: relative;
}
.exh-upp {
  -webkit-animation: 1s zoomIn .25s ease;
          animation: 1s zoomIn .25s ease;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
.exh-inner {
  position: absolute;
  max-width: 30rem;
  top: -4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  transition: 1s ease;
  -webkit-animation: 1s moveUp .30s ease;
          animation: 1s moveUp .30s ease;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
.home-intro {
  position: relative;
}
.home-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-hero {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem 0;
  overflow: hidden;
  color: #091a4f;
  white-space: nowrap;
  -webkit-animation: type 3s steps(20, end) .5s;
          animation: type 3s steps(20, end) .5s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@-webkit-keyframes type {
  0% { width: 0 }
  100% { width: 100% }
}
@keyframes type {
  0% { width: 0 }
  100% { width: 100% }
}
#home a {
  color: black;
}
#home a:hover {
  text-decoration: none;
  color: #091a4f;
}
.home-container {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.home-box {
  position: relative;
}
.home-img {
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  cursor: pointer;
}
.home-txt {
  padding: 1.5rem 1rem .5rem 1rem;
  text-align: justify;
}
.home-txt p {
  font-size: 120%;
}
.home-txt-left{
  background: -o-linear-gradient(rgba(230, 112, 112, 0.9), rgba(230, 112, 112, 0.9)), url(../assets/design_consulting.jpg);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(230, 112, 112, 0.9)), to(rgba(230, 112, 112, 0.9))), url(../assets/design_consulting.jpg);
  background: linear-gradient(rgba(230, 112, 112, 0.9), rgba(230, 112, 112, 0.9)), url(../assets/design_consulting.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-txt-middle {
  background: -o-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../assets/graphics_decor_3.jpg);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url(../assets/graphics_decor_3.jpg);
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../assets/graphics_decor_3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-txt-right {
  background: -o-linear-gradient(rgba(12, 235, 212, 0.8), rgba(12, 235, 212, 0.8)), url(../assets/production_building.jpg);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(12, 235, 212, 0.8)), to(rgba(12, 235, 212, 0.8))), url(../assets/production_building.jpg);
  background: linear-gradient(rgba(12, 235, 212, 0.8), rgba(12, 235, 212, 0.8)), url(../assets/production_building.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-title {
  width: 100%;
  text-align: right;
  font-size: 160%;
  padding: .2rem 0;
  margin-bottom: 0;
}
.home-icon {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  margin-top: -1.5rem;
  text-align: center;
  width: 5rem;
  height: 5rem;
  left: 1rem;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.home-icon img {
  max-height: 70%;
  width: auto;
  margin-top: 15%;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.home-icon:hover {
  -webkit-box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.home-bg {
  position: relative;
  background-image: url(../assets/parking-lot.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  width: 100%;
  min-height: 50vh;
  z-index: -100;
}
.home-white {
  position: relative;
  z-index: -98;
  background-color: white;
  top: -200px;
  width: 100%;
  height: 300px;
}
#homeDC {
  background-image: url(../assets/design_consulting.jpg);
}
#homeGD {
  background-image: url(../assets/graphics_decor_3.jpg);
}
#homePB {
  background-image: url(../assets/production_building.jpg);
}
/*     Animations       */
@-webkit-keyframes moveUp {
  0% {
      -webkit-transform: translate(-50%, 200px);
              transform: translate(-50%, 200px);
      opacity: 0;
  }
  100% {
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      opacity: 1;
  }
}
@keyframes moveUp {
  0% {
      -webkit-transform: translate(-50%, 200px);
              transform: translate(-50%, 200px);
      opacity: 0;
  }
  100% {
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 0;
  }
  100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 0;
  }
  100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
  }
}
@-webkit-keyframes animated-text{
  from {
      width: 0;
  }
  to {
      width: 100%;
  }
}
@keyframes animated-text{
  from {
      width: 0;
  }
  to {
      width: 100%;
  }
}

.about-bg {
  margin-top: -6em;
  padding: 0;
  width: 100vw;
  min-height: 45vh;
  background-image: url(../assets/team_work.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0px;
}
.about-title {
  font-size: 400%;
}
.about-ceo {
  margin-top: 3em;
}
.about-ceo img {
  margin-left: 2em;
}
.team-bg {
  width: 100vw;
  min-height: 50vh;
  height: auto;
  background-image: url(../assets/team_table.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
}
.about-img {
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
}
.ceo-img {
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
}
.about-team {
  margin-top: 5em;
  margin-bottom: 5em;
}
.about-team h3 {
  margin-bottom: 1em;
}
.about-employee {
  position: relative;
  margin-bottom: 5em;
  padding: 0;
}
.employee_wrapper {
  position: relative;
}
.employee-inner {
  position: relative;
}
.about-employee h4 {
  margin-bottom: .1em;
}
.about-employee p {
  color: #555555;
  font-size: 120%;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: .4em;
  margin-bottom: .4em;
  border-bottom: 1px solid black;
}
.about-employee span {
  color: #555555;
}
.about-partners h3 {
  margin-bottom: .5em;
}
.partners {
  text-align: center;
}
.partners img {
  max-height: 10rem;
  width: auto;
  margin-top: 4rem;
}

.projects {
  position: relative;
}
.projects-wrap {
  margin-left: .5em !important;
}
.projects-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  cursor: pointer;
  z-index: 120;
  padding: 0;
}
.projects-content {
  margin: 0 .5em .5em 0;
}
.projects-about {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 !important;
}
.projects-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
  opacity: 0;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  background-color: rgba(255, 255, 255, 0.8);
}
.projects-img:hover .projects-overlay {
  opacity: 1;
}
.projects-img:hover .projects-txt h4 {
  margin-top: 0;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.projects-txt {
  color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.projects-txt h4 {
  margin-top: 2em;
  font-size: 180%;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.projects img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}
.modal-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 2rem 0 !important;
}
.btn-mod {
  background-color: transparent;
  color: black;
  border: 0;
  font-size: 400%;
  opacity: .6;
}
.btn-mod:before {
  content: '←';
}
.btn-mod:hover {
  opacity: 1;
}
.btn-mod:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal {
  width: 100vw !important;
  min-height: 100vh;
  padding: 0 !important;
  margin: 0;
  z-index: 9999;
  overflow-y: auto;
}
.modal .close {
  padding: .8em 1em;
  font-size: 250%;
}
.modal .close:focus {
  outline: none;
}
.modal-dialog {
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
}
.modal-content {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: 0;
  border-radius: 0
}
.modal-header {
  border: 0;
}
.modal-txt {
  padding: 0;
}


/*      Services       */
#services {
  padding-top: 0 !important;
}
.services {
  height: 100%;
  z-index: 23;
}
.service {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-txt {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  -moz-text-align-last: center;
       text-align-last: center;
  padding: 2em 0;
  right: -20%;
  opacity: 0;
  text-align: center;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}
.service-txt h3 {
  margin-top: 10%;
  font-size: 240%;
  word-spacing: 1000px;
}
.service-btnWrap {
  position: absolute;
  bottom: 10%;
  width: 100%;
  left: 0;
}
.btn-service {
  display: inline-block;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  background-color: white;
  padding: .8em;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.btn-service:focus {
  outline:none;
}
.btn-service img {
  width: 4rem;
  
}
.btn-service:hover {
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
/*     Thin-slider    */
#service .container-fluid {
  background-color: white;
  z-index: 5000;
  padding-top: 0 !important;
}
#service .container {
  background-color: white;
  padding-top: 1rem;
  z-index: 5001;
}
.thin-slider {
  position: relative;
  height: 55vh;
  min-height: 400px;
  margin-top: 0;
}
.thin-img {
  height: 55vh;
  min-height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}
.slide-overlay {
  height: 45vh;
  width: 100%;
  background-color: transparent;
}
.slide-overlay h3 {
  text-align: left;
  font-family: 'work sans', sans-serif;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem 1rem;
  margin-bottom: 0;
  word-spacing: 9999px;
  letter-spacing: .15rem;
  color: #091a4f;
  font-size: 230%;
  line-height: .925em;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.8);
}
.slide-overlay h4 {
  opacity: 0;
  visibility: hidden;
}
.slide-icon {
  opacity: 0;
  visibility: hidden;
}
.slide-icon img {
  width: 2rem;
  opacity: 0;
  visibility: hidden;
}
.mobile-header {
  position: relative;
  margin-bottom: 3rem;
}
.mobile-header h4 {
  position: relative;
  word-spacing: 9999px;
  letter-spacing: .5rem;
  text-transform: uppercase;
  color: #091a4f;
  font-size: 150%;
  font-family: 'erdexxFont', sans-serif;
  margin: 0 auto;
  padding-top: .5rem;
  line-height: 1em;
}
.mobile-header-icon {
  position: relative;
  background-color: white;
  border-radius: 50%;
  padding: .8rem;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.3);
  color: #091a4f;
  margin-left: 1rem;
}
.mobile-header-icon img {
  width: 4rem;
}
/*     Design Consulting           */
#dc {
 padding-bottom: 3rem;
}
.dc-content h3 {
  font-family: 'calibri', sans-serif !important;
  color: rgba(9, 26, 79, 0.8);
  padding: 1rem;
  margin-bottom: 0;
}
.dc-content img {
  width: 100%;
  min-height: 100%;
}
.dc-bg {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: .8em;
}
.dc-content h4 {
  font-weight: bold;
  position: relative;
  color: #091a4f;
  font-size: 200%;
  bottom: 0;
  margin-bottom: 0;
}
/*     Graphics Decor           */
#gd {
  padding-bottom: 3rem; 
  font-family: 'calibri', sans-serif;
}
.gd-content h3 {
  font-size: 250%;
  text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.9);
  background-color: #091a4f;
  color: white;
  padding: .5em;
  margin-bottom: 0;
}
.gd-content img {
  width: 100%;
  margin-top: 1rem;
}
.gd-content h4 {
  font-size: 180%;
  font-weight: bold;
  margin-top: 2rem;
  padding-left: 1rem;
  text-transform: uppercase;
  color: #989898;
}
.gd-content p {
  font-size: 110%;
  padding: 0 1em;
  color: #091a4f;
}
.gd-content ul li {
  font-size: 110%;
  list-style: square;
  color: #091a4f;
}
.p-link:link,
.p-link:visited {
  text-decoration: underline;
  color: #091a4f;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.p-link:hover {
  text-decoration: none;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
/*     Production Building           */
#pb {
  padding-bottom: 3rem;
  font-family: 'calibri', sans-serif;
}
.pb-img {
  max-height: 100%;
}
.pb-content h3 {
  font-size: 250%;
  text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.9);
  background-color: #091a4f;
  color: white;
  padding: .5em;
  margin-bottom: 0;
}
.pb-content img {
  width: 100%;
  margin-top: 1rem;
}
.pb-content h4 {
  display: block;
  font-size: 200%;
  font-weight: bold;
  margin-top: 1rem;
  color: #989898;
}
.pb-text-left {
  padding: 0 2rem;
}
.pb-text-right {
  padding: 0 2rem;
}
.pb-text p {
  font-size: 90%;
}
#pb-video {
  position: absolute;
  top: 1rem;
  left: 70%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: calc(100% - 1rem);
  width: 100%;
}
/*     Logistics           */
#log {
 padding-bottom: 3em; 
}
.log h2 {
  text-align: center;
  font-size: 300%;
  margin: 1em 0;
}
/*     Furniture Rent           */
#fro {
 padding-bottom: 3em; 
}
.fro h2 {
  text-align: center;
  font-size: 300%;
  margin: 1em 0;
}
/*     Bado           */
#bado {
  padding-bottom: 3em; 
}
.bado h2 {
  text-align: center;
  font-size: 300%;
  margin: 1em 0;
}
.bado-title h3 {
  font-size: 250%;
  text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.9);
  background-color: #091a4f;
  color: white;
  padding: .5em;
  margin-bottom: 0;
}
.bado-title h4 {
  display: block;
  font-size: 200%;
  font-weight: bold;
  margin-top: 1rem;
  padding-left: 1.5rem;
  color: #989898;
}
.bado-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 .4rem;
}
.bado-column {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  max-width: 100%;
  padding: 0 .4rem;
}
.bado-content img {
  margin-top: .8rem;
  vertical-align: middle;
  width: 100%;
}
.bold {
  font-weight: bold;
}

/*      Blog       */
#blog {
  min-height: 100vh;
}
.blog-bg {
  width: 100vw;
  height: 35vh;
  background-image: url(../assets/blog.jpg);
  background-size: 100% calc(35vh + 8em);
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.search-field {
  position: relative;
  z-index: 2000;
  margin-top: 3.5em;
}
.search-input {
  position: relative;
  display: inline-block;
  top: 0;
  color: black;
  background-color: white;
  width: 100%;
  z-index: 2001;
  height: 50px;
  padding-left: 2.25em;
  border: 1px solid black;
  border-radius: 0;
}
.search-input:focus {
  outline: none;
}
.search-icon {
  position: absolute;
  left: 1.3em;
  top: 0.4em;
  z-index: 2002;
  color: black;
  font-size: 120%;
}
.btn-search {
  position: relative;
  display: inline-block;
  margin-left: -1px;
  height: 50px;
  width: 100%;
  border-radius: 0;
  background-color: #091a4f;
  color: white;
  font-size: 120%;
  border: 1px solid #091a4f;
}
.btn-search:hover {
  color: #091a4f;
  background-color: white;
  border: 1px solid #091a4f;
  cursor: pointer;
}
.blog-cat {
  padding: 2em 0;
}
.blog-slider {
  position: relative;
  margin-top: 0;
}
.post {
  position: relative;
  width: 100%;
  padding: 0 .8em;
}
.post-img {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding: 0;
}
.post-info {
  color: black;
  margin: 0 auto;
  padding: .5em 0;
}
.post-info .post-tag {
  font-size: 90%;
  color: black;
}
.post-info .post-tag:hover {
  text-decoration: none;
  color: #de2e24;
  cursor: pointer;
} 
.post-info .post-sep {
  color: black;
}
.post-info .post-date {
  font-size: 90%;
  color: black;
  display: inline-block;
  margin-bottom: 0;
}
.post-info .post-title {
  font-size: 140%;
  color: #091a4f;
  display: block;
}
.post-info .post-title:hover {
  text-decoration: none;
  color: #de2e24;
  cursor: pointer;
}
/*     Posts        */
.blog-link {
  color: #091a4f;
}
.blog-link:hover {
  color: #091a4f;
}
.view-post {
  border: 2px solid rgba(9, 26, 79, 0.2);
  border-radius: 0;
  color: #091a4f;
}
.post-header {
  text-align: center;
}
.post-header i {
  display: inline-block;
}
.post-header p {
  display: inline-block;
}
.post-header span {
  display: inline-block;
}
.post-body h2{
  margin: 1em 0;
}
.post-body p {
  margin-bottom: 1rem;
}
.post-body span {
  text-align: justify;
  font-size: 150%;
  display: block;
  color: white;
  padding: .5em;
  margin-bottom: 1rem;
  line-height: 1em;
  border-left: 5px solid #091a4f;
  background-color: rgba(9, 26, 79, 0.5);
}
.post-body img {
  width: 100%;
  margin-bottom: 1rem;
}
.similar-posts {
  border: 2px solid rgba(9, 26, 79, 0.2);
  border-radius: 0;
  color: #091a4f;
  padding: 1em 1.5em 2em 1.5em;
}
.similar-posts h3 {
  margin: 1em 0 1em 1rem;
}
.similar-slider {
  position: relative;
  margin-top: 0;
}

/*     Contact        */
.contact-bg {
  position: fixed;
  left: 0;
  top: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 26, 79, 0.6)), to(rgba(9, 26, 79, 0.6))), url(../assets/contact_background.jpg);
  background-image: -o-linear-gradient(rgba(9, 26, 79, 0.6), rgba(9, 26, 79, 0.6)), url(../assets/contact_background.jpg);
  background-image: linear-gradient(rgba(9, 26, 79, 0.6), rgba(9, 26, 79, 0.6)), url(../assets/contact_background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 20%;
  height: 100vh;
  min-width: 100vw;
}
.contact {
  position: relative;
  background: transparent;
}
.contact-box {
  position: relative;
  background-color: transparent;
}
.contact-box h3 {
  color: white;
  text-transform: uppercase;
  padding-left: .1em;
  font-size: 300%;
}
.contact-field {
  position: relative;
  z-index: 2000;
}
.contact-input {
  position: relative;
  color: black;
  background-color: white;
  width: 100%;
  z-index: 2001;
  height: 2em;
  padding-left: 4em;
  border: 1px solid #091a4f;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: -2px 2px 1px 2px #091a4f;
          box-shadow: -2px 2px 1px 2px #091a4f;
}
.contact-input:focus {
  color: white;
  outline: none;
  border: 1px solid #091a4f;
  -webkit-box-shadow: -2px 2px 1px 2px #091a4f;
          box-shadow: -2px 2px 1px 2px #091a4f;
  background-color: rgba(9, 26, 79, 0.3);
}
.contact-name,
.contact-email,
.contact-subject,
.contact-message {
  position: absolute;
  left: .5em;
  top: .25em;
  z-index: 2002;
  color: black;
}
.contact-input:focus + .contact-name,
.contact-input:focus + .contact-email,
.contact-input:focus + .contact-subject,
.contact-input:focus + .contact-message {
  color: white;
}
.contact-accept {
  position: relative;
  color: black;
  background-color: white;
  width: 100%;
  border: 1px solid #091a4f;
  -webkit-box-shadow: -2px 2px 1px 2px #091a4f;
          box-shadow: -2px 2px 1px 2px #091a4f;
  padding-left: .5em;
}
.contact-policy {
  color: #091a4f;
  text-decoration: none;
}
.contact-policy:hover {
  color: #091a4f;
  text-decoration: underline;
}
.btn-contact{
  position: relative;
  color: black;
  background-color: white;
  border: 1px solid #091a4f;
  -webkit-box-shadow: -2px 2px 1px 2px #091a4f;
          box-shadow: -2px 2px 1px 2px #091a4f;
  font-size: 150%;
  padding: .1em 1em;
}
.btn-contact:hover{
  cursor: pointer;
  color: white;
  background-color: rgba(9, 26, 79, 0.3);
  border: 1px solid #091a4f;
}
.btn-contact:focus {
  outline: none;
}
.btn-contact:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  left: -2px;
  bottom: -2px;
}
.contact-footer {
  z-index: 8000;
  background-color: transparent;
  color: white;
  padding-top: 2em;
}
.contact-wrap {
  display: inline-block;
  width: 100%;
  margin-bottom: 3em;
}
.contact-wrap span {
  display: block;
  font-size: 150%;
  margin-bottom: .5em;
  border-bottom: 1px solid white;
}
.contact-wrap p {
  margin-bottom: 0;
  font-size: 120%;
  letter-spacing: 1.5px;
}
.contact-wrap a {
  color: white;
}
.contact-wrap a:hover {
  color: white;
}
.input-error {
  -webkit-box-shadow: 0 0 1rem .5rem rgba(209, 10, 0, 0.5);
          box-shadow: 0 0 1rem .5rem rgba(209, 10, 0, 0.5);
}
#success {
  text-align: center;
  color: #091a4f;
  min-height: 60vh;
  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;
}
.success-title {
  font-size: 300%;
}
.success-msg {
  font-size: 150%;
}
/*     Footer       */
.footer-contact {
    padding: 0;
}
.footer-wrap {
    position: relative;
    background-color: #091a4f;
    color: white;
    padding-top: 1em;
}
.footer-content {
    margin-left: auto;
    margin-right: auto;
}
footer h5 {
    font-size: 200%;
    text-shadow: 0px 0px 5px white;
    margin-bottom: 0;
    -webkit-transition: .1s ease;
    -o-transition: .1s ease;
    transition: .1s ease;
}
footer h5 a {
    color: white;
    text-decoration: none;
}
footer h5 a:hover {
    color: white;
    text-decoration: none;
    text-shadow: 0px 0px 10px white;
    -webkit-transition: .1s ease;
    -o-transition: .1s ease;
    transition: .1s ease;
}
.footer-company {
    position: relative;
    text-align: center;
}
.footer-company p {
    margin-bottom: 0;
}
.company-wrap {
    position: relative;
    padding-top: 1rem;
    bottom: 0;
    width: 100%;
    text-align: center;
}
.footer-social {
    position: relative;
}
.footer-social a {
    position: relative;
    opacity: .8;
    margin-left: .5em;
    color: white;
    bottom: 0;
}
.footer-social a:hover {
    opacity: 1;
}
.social-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-copy {
    width: 100%;
    position: relative;
    right: 0;
    bottom: 0;
}
.footer-copy p {
    float: right;
    font-size: 90%;
    margin: .5em 0;
}
.footer-copy a {
    color: white;
}
.services-footer div {
    padding: 0;
}
.services-icon {
    background-color: white;
    text-align: center;
    display: inline-block;
    width: 1.5rem;
    height: 100%;
    border-radius: 50%;
    margin-bottom: .25em;
}
.services-icon img {
    padding-top: .1rem;
    position: relative;
    width: 80%;
    height: 80%;
}
.other-serv {
    text-align: center;
    padding: .825em 0;
    z-index: -17;
    color: white;
    width: 100%;
    max-width: 150%;
    background-color: rgb(9, 26, 79);
}
.other-serv h4 {
    font-size: 150%;
    margin-bottom: .5rem;
}
.our-services {
    margin-bottom: .5rem;
}
.our-services a {
    margin: 0 .25rem 0 .25rem;
    color: white;
    opacity: .8;
    letter-spacing: 2px;
    font-size: 110%;
    display: inline-block;
}
.our-services a:hover {
    text-decoration: none;
    color: white;
    opacity: 1;
}