/*!
 * CSS styling by Jason Wai-Ho Lo
 * All rights reserved 2017
 */

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
    min-width: 320px;
}

.text-vertical-center {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding-top: 25%;
    padding-right: 50%;
}

.text-vertical-center .h1-callout {
    margin: 0;
    padding: 0;
    font-size: 3.5em;
    font-weight: 700;
}

@media (max-width: 768px) {
    .text-vertical-center .h1-callout {
        font-size: 2.8em;
    }
}

.btn-dark {
    border-radius: 0;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    transition: all 0.6s ease;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    color: #fff;
    background-color: rgba(0,0,0,0.7);
}

.btn-light {
    border-radius: 0;
    color: #333;
    background-color: rgb(255,255,255);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    color: #333;
    background-color: rgba(255,255,255,0.8);
}

hr.small {
    max-width: 100px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    right: 0;
    width: 250px;
    height: 100%;
    transform: translateX(250px);
    overflow-y: auto;
    background: #222;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 55px;
    font-size: 18px;
    line-height: 55px;
}

.sidebar-nav > .sidebar-brand a {
    color: #999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

#menu-toggle {
    z-index: 1;
    position: fixed;
    top: 0;
    right: 0;
}

#sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.toggle {
    margin: 5px 5px 0 0;
}

.header {
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(135, 206, 250, 0.1), rgba(135, 206, 250, 0.1)), url(../img/newt.jpg) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

h1 {
  color: white;
}
h3 {
  color: white;
}

.about {
    padding: 50px 20px;
}

.about-p {
    text-indent: 50px;
    text-align: left;
}

#about-img {
  width: 85%;
  margin: auto;
  margin-bottom: 5px;
}

.callout-1 {
    display: table;
    width: 100%;
    height: 400px;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/office-essentials.jpg) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    -webkit-filter: grayscale(50%);
    -moz-filter: grayscale(50%);
    filter: grayscale(50%);
    -o-filter: grayscale(50%);
    opacity: 0.75;
}

.callout-2 {
    display: table;
    width: 100%;
    height: 400px;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/outdoor-essentials.JPG) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    -webkit-filter: grayscale(50%);
    -moz-filter: grayscale(50%);
    filter: grayscale(50%);
    -o-filter: grayscale(50%);
    opacity: 0.75;
}

.education {
    padding: 50px 20px;
}

.education a {
    color: #fff;
}

.education a:hover {
    color: #e5e5e5;
}

#education .timeline-item:hover .timeline-image {
    -webkit-filter: grayscale(50%) brightness(90%);
    -moz-filter: grayscale(50%) brightness(90%);
    filter: grayscale(50%) brightness(90%);
    -o-filter: grayscale(50%) brightness(90%);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    transition: 0.2s;
    -o-transition: 0.2s;
}

.timeline {
  list-style: none;
  padding: 0;
  position: relative;
}
.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #cccccc;
  left: 40px;
  margin-left: -1.5px;
}
.timeline > li {
  margin-bottom: 50px;
  position: relative;
  min-height: 50px;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li .timeline-panel {
  width: 100%;
  float: right;
  padding: 0 20px 0 100px;
  position: relative;
  text-align: left;
}
.timeline > li .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}
.timeline > li .timeline-image {
  left: 0;
  margin-left: 0;
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 100;
  background-color: #ffffff;
  color: white;
  border-radius: 100%;
  border: 6px solid #cccccc;
  text-align: center;
}
.timeline > li .timeline-image h4 {
  font-size: 10px;
  margin-top: 12px;
  line-height: 14px;
}
.timeline > li.timeline-inverted .timeline-panel {
  float: right;
  text-align: left;
  padding: 0 20px 0 100px;
}
.timeline > li.timeline-inverted .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timeline-heading h4 {
  margin-top: 0;
  color: inherit;
}
.timeline .timeline-heading h4.subheading {
  text-transform: none;
  font-weight: bold;
}
.timeline .timeline-body > p,
.timeline .timeline-body > ul {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    margin-bottom: 100px;
    min-height: 100px;
  }
  .timeline > li .timeline-panel {
    width: 41%;
    float: left;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    width: 100px;
    height: 100px;
    left: 50%;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 13px;
    margin-top: 16px;
    line-height: 18px;
  }
  .timeline > li.timeline-inverted .timeline-panel {
    float: right;
    text-align: left;
    padding: 0 30px 20px 20px;
  }
}
@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 20px 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 18px;
    margin-top: 30px;
    line-height: 26px;
  }
  .timeline > li.timeline-inverted .timeline-panel {
    padding: 20px 20px 20px;
  }
}
@media (min-width: 1200px) {
  .timeline > li {
    min-height: 170px;
  }
  .timeline > li .timeline-panel {
    padding: 40px 20px 20px 100px;
  }
  .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }
  .timeline > li .timeline-image h4 {
    margin-top: 40px;
  }
  .timeline > li.timeline-inverted .timeline-panel {
    padding: 40px 100px 20px 20px;
  }
}

.employments {
    padding: 50px 20px;
}

#employments .timeline-item:hover .timeline-image {
    -webkit-filter: brightness(110%);
    -moz-filter: brightness(110%);
    filter: brightness(110%);
    -o-filter: brightness(110%);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    transition: 0.2s;
    -o-transition: 0.2s;
}

.involvements {
    padding: 50px 0;
}

.involvements a {
    text-decoration: none;
}

.involvements-item {
    margin-bottom: 30px;
    position: relative;
}

.involvements-title {
    color: #337ab7;
}

.involvements-item:hover .involvements-title {
    color: #23527c;
}

.involvements-item:hover .img-involvements {
    opacity: 0.8;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    transition: 0.2s;
    -o-transition: 0.2s;
}

.img-involvements {
    margin: 0 auto;
    box-shadow: 5px 5px 3px #ccc
}

.float-more-white {
    font-weight: bold;
    position: absolute;
    bottom: -12px;
    right: 5px;
    color: white;
}

.float-more-black {
    font-weight: bold;
    position: absolute;
    bottom: -12px;
    right: 5px;
    color: black;
}

#involvement-more {
    padding-left: 50px;
    padding-right: 50px;
}

.modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  min-height: 100%;
  padding: 100px 0;
  text-align: center;
}

.modal-content h2 {
  margin: 0;
  font-size: 3em;
}

.img-centered {
  margin: 0 auto;
}

.modal-content img {
  margin-bottom: 30px;
}

.modal-content .img-div {
  padding-left: 0px;
}

@media (max-width: 992px) {
  .modal-content .img-div {
    padding-right: 0px;
  }

  .modal-content .p-img {
    margin-bottom: 0px;
  }
}

@media (min-width: 992px) {
  .modal-content .bottom-p {
    margin-bottom: 25px;
  }
}

.modal-content .modal-p {
    text-indent: 30px;
    text-align: left;
}

.modal-content .modal-more-h4 {
    text-align: left;
    text-indent: 80px;
}

@media (max-width: 768px) {
    .modal-content .modal-more-h4 {
        text-indent: 20px;
    }
}

.modal-content .logo {
  margin-top: 20px;
  width: 50px;
  height: auto;
}

.modal-content .logo-lg {
  margin-top: 20px;
  width: 80px;
  height: auto;
}

.modal-content .item-details {
  margin: 30px 0;
}

.modal-content .quote {
  display: inline;
}

.modal-content .modal-list {
  text-align: left;
  float: none;
  margin: 0 auto;
  padding-left: 20px;
  margin-bottom: 30px;
}

.modal-content .modal-list-item {
  margin-bottom: 10px;
}

.close-modal {
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: transparent;
  top: 25px;
  right: 25px;
  cursor: pointer;
}

.close-modal:hover {
  opacity: 0.3;
}

.close-modal .lr {
  height: 75px;
  width: 1px;
  margin-left: 35px;
  background-color: #2C3E50;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1051;
}

.close-modal .lr .rl {
  height: 75px;
  width: 1px;
  background-color: #2C3E50;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  z-index: 1052;
}

.modal-backdrop {
  opacity: 0;
  display: none;
}

.call-to-action {
    padding: 50px 0;
}

.call-to-action .btn {
    margin: 10px;
}

.contact {
    padding: 50px 0;
}

.contact .btn {
    margin: 10px;
}

footer {
    padding: 50px 0;
}

#to-top {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 5px;
}
