/* SASS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap");
@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 2140px) {
  .container {
    max-width: 1900px;
  }
}
.text-center {
  text-align: center;
}

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

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

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: 700;
}

.bg-primary {
  background: #ff8e20 !important;
}

.bg-secondary {
  background: #2e2e2e !important;
}

.bg-tertiary {
  background: #171717 !important;
}

.color-primary {
  color: #ff8e20;
}

.color-secondary {
  color: #2e2e2e;
}

.color-tertiary {
  color: #171717;
}

.color-white {
  color: white;
}

.color-type {
  color: #2e2e2e;
}

.img-responsive {
  width: 100%;
  max-width: 100%;
}

.w-33 {
  width: 33.333333%;
}

.flex-column-reverse .split-item:first-child {
  margin-bottom: 0;
}
.flex-column-reverse .split-item:nth-child(2) {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .flex-column-reverse .split-item:nth-child(2) {
    margin-bottom: 0px;
  }
}

hr {
  margin: 30px 0;
}

html, body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75em;
  color: #2e2e2e;
  -webkit-font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}
@media (min-width: 2140px) {
  html, body {
    font-size: 130%;
  }
}

p {
  margin: 15px 0;
}

a {
  color: #ff8e20;
  transition: all 0.25s ease;
  text-decoration: none !important;
}
a:hover, a:focus a:active {
  color: #2e2e2e;
}

ul li, ol li {
  padding: 5px 0;
}

ul a, li a {
  text-decoration: underline !important;
  font-weight: bold;
}

ol {
  font-weight: 700;
}
ol span {
  font-weight: 300;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
}

h1, .h1 {
  font-size: 36px;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 60px;
  }
}

h2, .h2 {
  font-size: 24px;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 48px;
  }
}

h3, .h3 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  h3, .h3 {
    font-size: 36px;
  }
}

h4, .h4 {
  font-size: 18px;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  h4, .h4 {
    font-size: 24px;
  }
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

.page-container {
  overflow: hidden;
  position: relative;
  border: 15px solid white;
}
@media (min-width: 992px) {
  .page-container {
    border: 30px solid white;
  }
}

.sub-heading {
  font-weight: 300 !important;
  display: block;
  width: 100%;
}

.title {
  margin-top: 0;
}
.title-secondary {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.title-sub {
  font-weight: 300;
  text-transform: capitalize !important;
  font-size: 75%;
  display: block;
}

.margin-none, .no-margin {
  margin: 0;
}

.padding-none, .no-padding {
  padding: 0;
}

.btn-grouping {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.btn {
  border-radius: 0px;
  transition: all 0.25s ease;
  padding: 10px 20px;
  border: 1px solid;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 18px;
}
.btn .fa {
  padding: 0;
  margin: 0 0 0 8px;
}
.btn-primary {
  background-color: #ff8e20;
  border-color: #ff8e20;
  color: white;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: white;
  color: #ff8e20;
  border-color: #ff8e20;
}
.btn-secondary {
  background-color: #2e2e2e;
  border-color: #2e2e2e;
  color: #2e2e2e;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background-color: white;
  color: #2e2e2e;
  border-color: #2e2e2e;
}
.btn-tertiary {
  background-color: #171717;
  border-color: #171717;
  color: #2e2e2e;
}
.btn-tertiary:hover, .btn-tertiary:focus, .btn-tertiary:active {
  background-color: white;
  color: #171717;
  border-color: #171717;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-outline {
  border-color: white;
  color: white !important;
  background-color: transparent;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  background-color: #ff8e20;
  border-color: #ff8e20;
  color: white !important;
}

.backToTop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: 1px solid lightgray;
  background-color: white;
  color: #202020;
  font-size: 18px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  z-index: 5001;
}
@media (min-width: 992px) {
  .backToTop {
    bottom: 30px;
    right: 30px;
  }
}

@keyframes animateDown {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animateDown {
  animation: animateDown 0.5s 1;
}

.fadeIn {
  animation: fadeIn 0.75s 1;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-menu {
  width: 220px;
  padding: 15px;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
.dropdown-menu a {
  text-decoration: none !important;
}

.nav-wrapper .navbar {
  background-color: #ff8e20;
  padding: 15px;
  transition: background-color 0.25s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  border: 15px solid white;
  border-bottom: 0 !important;
}
@media (min-width: 992px) {
  .nav-wrapper .navbar {
    padding: 30px;
    background-color: transparent;
    border: 30px solid white;
  }
}
.nav-wrapper .navbar-toggler {
  outline: none !important;
  border: none !important;
  background-color: #ff8e20;
  padding: 15px 10px;
  width: 60px;
  border-radius: 0;
  margin: 0;
  right: 0;
  height: 60px;
  position: relative;
}
.nav-wrapper .navbar-toggler.collapsed .toggler-icon:nth-child(1), .nav-wrapper .navbar-toggler.collapsed .toggler-icon:nth-child(2), .nav-wrapper .navbar-toggler.collapsed .toggler-icon:nth-child(3) {
  width: 30px !important;
}
.nav-wrapper .navbar-toggler .toggler-icon {
  background-color: white;
  height: 3px;
  left: 15px;
  position: absolute;
  transition: all 0.25s ease;
}
.nav-wrapper .navbar-toggler .toggler-icon:nth-child(1) {
  top: 33%;
  transform: translateY(-50%);
  width: 15px;
}
.nav-wrapper .navbar-toggler .toggler-icon:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
}
.nav-wrapper .navbar-toggler .toggler-icon:nth-child(3) {
  bottom: 28%;
  transform: translateY(-50%);
  width: 20px;
}
.nav-wrapper .navbar-nav .nav-item {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.25s ease;
  text-decoration: none !important;
}
.nav-wrapper .navbar-nav .nav-item:hover, .nav-wrapper .navbar-nav .nav-item:focus, .nav-wrapper .navbar-nav .nav-item:active, .nav-wrapper .navbar-nav .nav-item.active {
  color: #ff8e20 !important;
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-nav .nav-item {
    font-size: 14px;
    padding-top: 6px;
  }
}
@media (min-width: 1500px) {
  .nav-wrapper .navbar-nav .nav-item {
    margin-right: 12px;
    font-size: 16px;
  }
}
@media (min-width: 1680px) {
  .nav-wrapper .navbar-nav .nav-item {
    margin-right: 15px;
    font-size: 18px;
  }
}
.nav-wrapper .navbar-nav .nav-item.btn-quote {
  color: white !important;
  padding: 10px 15px;
}
@media (min-width: 992px) {
  .nav-wrapper .navbar-nav .nav-item.btn-quote {
    margin-left: 20px;
  }
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-nav li:last-child .nav-item {
    margin-right: 0;
  }
}
.nav-wrapper .navbar-brand {
  max-width: 170px;
  width: 100%;
  margin: 0;
  transition: all 0.25s ease;
}
.nav-wrapper .navbar-brand img {
  width: 100%;
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-brand {
    max-width: 270px;
  }
}
.nav-wrapper .navbar-btn-group {
  position: absolute;
  right: 8px;
  top: 12px;
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-btn-group {
    position: relative;
    top: unset;
    right: unset;
  }
}
.nav-wrapper .navbar-btn-group .btn {
  font-size: 11px;
  padding: 7px 12px;
}
@media (min-width: 576px) {
  .nav-wrapper .navbar-btn-group .btn {
    font-size: 14px;
    padding: 5px 14px;
  }
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-btn-group .btn {
    padding: 7px 20px;
  }
}
@media (min-width: 1500px) {
  .nav-wrapper .navbar-btn-group .btn {
    font-size: 16px;
  }
}
@media (min-width: 1680px) {
  .nav-wrapper .navbar-btn-group .btn {
    font-size: 18px;
  }
}
.nav-wrapper .navbar-btn-group .btn:first-child {
  margin-right: 5px;
  padding: 9px;
}
@media (min-width: 576px) {
  .nav-wrapper .navbar-btn-group .btn:first-child {
    padding: 8px;
  }
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-btn-group .btn:first-child {
    margin-right: 10px;
    padding: 10px;
  }
}
@media (min-width: 1500px) {
  .nav-wrapper .navbar-btn-group .btn:first-child {
    margin-right: 15px;
  }
}
.nav-wrapper .navbar-social {
  margin-right: 40px;
}
.nav-wrapper .navbar-social .social-item {
  color: white;
  font-size: 24px;
  margin-right: 10px;
  transition: all 0.25s ease;
  margin-right: 15px;
}
.nav-wrapper .navbar-social .social-item:hover, .nav-wrapper .navbar-social .social-item:focus, .nav-wrapper .navbar-social .social-item:active, .nav-wrapper .navbar-social .social-item.active {
  color: #2e2e2e;
}
.nav-wrapper .navbar-social .social-item:last-child {
  margin-right: 0;
}

.section {
  padding: 45px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.row-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .row-bg {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .row-bg {
    margin-top: 30px;
  }
}

.content-block {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  width: 100%;
  color: white;
}
.content-block .btn {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .content-block {
    padding: 80px 60px;
    max-width: 700px;
  }
  .content-block.add-border-left {
    border-left: 30px solid white;
  }
  .content-block.add-border-right {
    border-right: 30px solid white;
  }
}

.split-item {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .split-item {
    margin-bottom: 0;
  }
}
.split-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .add-border-split .split-item:first-child {
    border-right: 15px solid white;
  }
  .add-border-split .split-item:last-child {
    border-left: 15px solid white;
  }
}

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

.add-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-block-wrapper {
  margin-bottom: 15px;
  padding-right: 15px;
}
.image-block-wrapper:nth-child(3), .image-block-wrapper:nth-child(4) {
  margin-bottom: 0;
}
.image-block-wrapper:nth-child(2), .image-block-wrapper:nth-child(4) {
  padding-right: 0;
}
@media (min-width: 768px) {
  .image-block-wrapper {
    margin-bottom: 0;
    padding-right: 15px;
  }
  .image-block-wrapper:nth-child(2) {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .image-block-wrapper {
    padding-right: 30px;
  }
  .image-block-wrapper:nth-child(2) {
    padding-right: 30px;
  }
  .image-block-wrapper:nth-child(4) {
    padding-right: 0;
  }
}

.image-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.image-block img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: auto;
  height: 100%;
  transition: transform 20s ease;
}
@media (min-width: 992px) {
  .image-block img {
    min-width: 450px;
    width: 100%;
    height: auto;
  }
}

#homeRow3 .image-block {
  cursor: pointer;
}
#homeRow3 .image-block:hover img, #homeRow3 .image-block:focus img, #homeRow3 .image-block:active img {
  transform: translate(-50%, -50%) scale(2);
}

.carousel .carousel-item {
  width: 100%;
}
.carousel .carousel-item .carousel-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 450px;
}

.modal-backdrop {
  z-index: 9999;
  border: 15px solid white;
}
@media (min-width: 992px) {
  .modal-backdrop {
    border: 30px solid white;
  }
}

.modal {
  z-index: 10000;
  padding: 0 !important;
}
.modal .close {
  background: transparent;
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 24px;
  transition: all 0.25s ease;
  z-index: 8000;
  opacity: 1;
}
.modal .close .fa {
  transform: rotate(0);
  transition: all 0.25s ease;
}
.modal .close:hover .fa, .modal .close:focus .fa, .modal .close:active .fa {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .modal .close {
    top: 60px;
    right: 60px;
  }
}
.modal .modal-dialog {
  max-width: 750px;
  margin: 15px;
}
@media (min-width: 768px) {
  .modal .modal-dialog {
    margin: 60px auto;
  }
}
@media (min-width: 992px) {
  .modal .modal-dialog {
    margin: 120px auto;
  }
}
.modal .modal-content {
  border: none;
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
  background-color: #2e2e2e !important;
}

.project-btn:hover, .project-btn:focus, .project-btn:active {
  background-color: #2e2e2e !important;
  color: white;
}

.team-members .team-member {
  position: relative;
  min-height: 335px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 0;
}
.team-members .team-member .team-member-text {
  background: rgba(255, 142, 32, 0.8);
  color: white;
  position: absolute;
  width: auto;
  bottom: 0;
  left: 0;
  padding: 15px;
}
.team-members .team-member .team-member-text .title {
  font-size: 18px;
}
@media (min-width: 768px) {
  .team-members .team-member .team-member-text .title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .team-members .team-member .team-member-text .title {
    font-size: 24px;
  }
}
.team-members .team-member .team-member-text p {
  font-size: 14px;
}
@media (min-width: 768px) {
  .team-members .team-member .team-member-text p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .team-members .team-member .team-member-text p {
    font-size: 18px;
  }
}

.process-step {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
}
@media (min-width: 992px) {
  .process-step {
    width: 50%;
  }
}
.process-step .process-inner {
  padding: 60px 30px;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  color: white;
}
@media (min-width: 992px) {
  .process-step .process-inner {
    width: 50%;
  }
}
.process-step:nth-child(1), .process-step:nth-child(2) {
  justify-content: flex-start;
}
.process-step:nth-child(3), .process-step:nth-child(4) {
  justify-content: flex-end;
}

.section-top {
  position: relative;
}
.section-top .header-image {
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 450px;
  position: relative;
  height: 96vh;
}
@media (min-width: 768px) {
  .section-top .header-image {
    height: 94vh;
    background-attachment: fixed;
  }
}
@media (min-width: 1200px) {
  .section-top .header-image {
    min-height: 650px;
  }
}
.section-top .header-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.75);
}
.section-top .header-image-caption {
  color: white;
  position: absolute;
  max-width: 750px;
  width: 100%;
  padding: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 250;
}
.section-top .header-image-home {
  background-image: url("images/img-hotel-1.jpg");
}
@keyframes bounce {
  0% {
    bottom: 30px;
  }
  50% {
    bottom: 45px;
  }
  100% {
    bottom: 30px;
  }
}
.section-top .header-image .scroll-down {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 500px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  cursor: pointer;
  transition: all 0.25s ease;
  animation-name: bounce;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.section-top .header-image .scroll-down .fa {
  margin: 0;
  padding: 0;
  font-size: 20px;
}
.section-top .header-image .scroll-down:hover, .section-top .header-image .scroll-down:focus {
  transform: translateX(-50%) scale(1.35);
}

.page-content-block {
  padding: 60px 30px;
}
@media (min-width: 1200px) {
  .page-content-block {
    padding: 80px 40px;
  }
}
@media (min-width: 1500px) {
  .page-content-block {
    padding: 120px 60px;
  }
}
.page-content-block-inner {
  max-width: 900px;
}

form .field-group {
  display: flex;
  flex-wrap: nowrap;
}
form .field-group input:first-child {
  margin-right: 7.5px;
}
form .field-group input:last-child {
  margin-left: 7.5px;
}
form input, form textarea {
  padding: 10px 15px;
  border-radius: 0px;
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border: 1px solid lightgray;
  transition: all 0.25s ease;
}
form input:focus, form textarea:focus {
  outline: none !important;
  border-color: lightgray;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.team-member {
  margin-bottom: 30px;
  display: inline-block;
}
.team-member h4 {
  font-size: 24px;
  margin-top: 15px;
}
.team-member span {
  font-size: 16px;
}

#contactForm .split-item:first-child span {
  display: block;
}
#contactForm .split-item:first-child span .fa {
  margin-right: 10px;
  text-align: center;
  min-width: 20px;
}
#contactForm .split-item:first-child a {
  color: white;
}
#contactForm .split-item:first-child a:hover, #contactForm .split-item:first-child a:focus, #contactForm .split-item:first-child a:active {
  color: #2e2e2e;
}

form ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
form .hide {
  display: none;
}
form .form-control {
  display: block;
  padding: 0;
  border: 0;
  margin-bottom: 15px;
  height: auto !important;
}
@media (min-width: 992px) {
  form .form-control {
    margin-bottom: 30px;
  }
}
form .form-control label {
  display: none;
}
form .form-control input, form .form-control select, form .form-control textarea {
  padding: 10px;
  border: 1px solid lightgray;
  border-radius: 0;
  font-weight: 300;
  width: 100%;
}
form .btn {
  box-shadow: none !important;
  outline: 0 !important;
  border: 1px solid #ff8e20 !important;
  margin-bottom: 0;
}

.footer-image {
  background-image: url(images/img-footer-banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 450px;
}
@media (min-width: 1200px) {
  .footer-image {
    height: 550px;
    background-attachment: fixed;
  }
}

footer {
  background: #2e2e2e;
  color: white;
  padding: 80px 15px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  footer {
    margin-top: 30px;
  }
}
footer a {
  color: white;
}
footer a:hover, footer a:focus, footer a:active {
  color: #ff8e20;
}
footer hr {
  background-color: white;
}
footer .footer-logo {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  footer .footer-logo {
    max-width: 370px;
    margin-bottom: 0;
  }
}
footer .footer-menu a, footer .footer-contact a {
  display: block;
  font-size: 14px;
}
@media (min-width: 992px) {
  footer .footer-menu a, footer .footer-contact a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  footer .footer-menu a, footer .footer-contact a {
    font-size: 18px;
  }
}

.footer-social a:nth-child(2) {
  margin: 0 10px;
}

.copyright {
  background-color: #2e2e2e;
  color: white;
  font-size: 14px;
}

.news-link {
  background: #232323;
  display: block;
  color: #fff;
}
.news-link:hover {
  color: #ff8e20;
}
.news-link:hover figure img {
  transform: scale(1.1);
}
.news-link figure {
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0;
}
.news-link figure img {
  transition: 0.25s all linear;
}
.news-link .post-details {
  padding: 15px 20px;
}
.news-link .post-details h3 {
  margin-bottom: 0;
  font-size: 1.1em;
  text-transform: none;
}
.news-link .post-details p {
  color: #ff8e20;
  margin: 0;
  font-size: 0.8em;
}

.breadcrumbs {
  color: #fff;
  margin-bottom: 30px;
  font-size: 1em;
}
.breadcrumbs a {
  font-weight: 900;
}
.breadcrumbs a i {
  margin: 0 10px;
}
.breadcrumbs a:hover {
  color: #ff8e20;
}

#recents-wrapper {
  background: #232323;
}
#recents-wrapper h3 {
  padding: 15px;
  margin: 0;
  background: #ff8e20;
  color: #fff;
  font-size: 1.1em;
}
#recents-wrapper .sidebar-link {
  padding: 15px;
  border: 1px solid #363636;
  border-top: none;
  display: block;
}
#recents-wrapper .sidebar-link h4 {
  font-size: 1.1em;
  line-height: 1.4;
  margin: 0 0 5px;
  font-weight: 700;
  color: #fff;
  text-transform: none;
}
#recents-wrapper .sidebar-link .date {
  font-size: 0.8em;
  color: #ff8e20;
}
#recents-wrapper .sidebar-link:hover {
  background: #121212;
}
#recents-wrapper .sidebar-link:hover h4 {
  color: #ff8e20;
}
#recents-wrapper .sidebar-link:hover .date {
  color: #ff8e20;
}

.article-seperator {
  width: 100%;
  display: block;
  background: #efefef;
  height: 1px;
  margin: 35px 0;
}
@media (min-width: 768px) {
  .article-seperator {
    margin: 60px 0;
  }
}

h1.blog-title {
  text-transform: none;
  font-size: 30px;
}
@media (min-width: 768px) {
  h1.blog-title {
    font-size: 50px;
  }
}

.blog-container {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .blog-container {
    padding: 100px 0;
  }
}
.blog-container p strong {
  font-weight: 900;
}
.blog-container p {
  margin-bottom: 35px;
}
.blog-container h2,
.blog-container h3,
.blog-container h4 {
  text-transform: none;
  margin-bottom: 35px;
}

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