/*=================== fonts ======================*/
@font-face {
  font-family: Myriad-Apple-Bold;
  src: url("../fonts/Myriad-Apple-Bold.eot");
  src: url("../fonts/Myriad-Apple-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Myriad-Apple-Bold.woff") format("woff"), url("../fonts/Myriad-Apple-Bold.ttf") format("truetype"), url("../fonts/Myriad-Apple-Bold.svg#Myriad-Apple-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Myriad-Apple-Semibold;
  src: url("../fonts/Myriad-Apple-Semibold.eot");
  src: url("../fonts/Myriad-Apple-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Myriad-Apple-Semibold.woff") format("woff"), url("../fonts/Myriad-Apple-Semibold.ttf") format("truetype"), url("../fonts/Myriad-Apple-Semibold.svg#Myriad-Apple-Semibold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Myriad-Apple-Medium;
  src: url("../fonts/Myriad-Apple-Medium.eot");
  src: url("../fonts/Myriad-Apple-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Myriad-Apple-Medium.woff") format("woff"), url("../fonts/Myriad-Apple-Medium.ttf") format("truetype"), url("../fonts/Myriad-Apple-Medium.svg#Myriad-Apple-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Myriad-Apple-Text;
  src: url("../fonts/Myriad-Apple-Text.eot");
  src: url("../fonts/Myriad-Apple-Text.eot?#iefix") format("embedded-opentype"), url("../fonts/Myriad-Apple-Text.woff") format("woff"), url("../fonts/Myriad-Apple-Text.ttf") format("truetype"), url("../fonts/Myriad-Apple-Text.svg#Myriad-Apple-Text") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*=================== common layouts ======================*/
body, html {
  height: 100%;
}

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

a:hover, a:focus {
  text-decoration: none;
}

*:focus {
  outline: 0;
}

/* link style 1 */
p {
  font-size: 1.1rem;
}

p a {
  font-family: "Myriad-Apple-Bold";
  color: #997f38;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

p a:after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  margin-left: 10px;
  background: #997f38;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

p a:hover {
  color: #231f20;
}

p a:hover:after {
  content: '';
  margin-left: 25px;
}

.animateme {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

h1, h2, h3, h4, h5, h6, p, .card-title, .card-text {
  margin: 0;
  padding: 0;
}

.cleared {
  padding: 0;
}

.custom-margin {
  margin: 0 5%;
}

#page-wrap {
  position: relative;
  margin: 0 7%;
}

.parallax-window {
  min-height: 350px;
  background: transparent;
}

.parallax-mirror {
  z-index: 10 !important;
  height: 350px !important;
}

body {
  background: #e9e9e9;
}

.page-wrap-inner {
  width: 71%;
  margin: auto;
}

h1, h4 {
  font-family: "Myriad-Apple-Bold";
  text-transform: uppercase;
  font-size: 1rem;
  color: #997f38;
  letter-spacing: 0.2rem;
  padding-bottom: 15px;
}

h2 {
  font-family: "Myriad-Apple-Medium";
  color: #231f20;
  font-size: 2.2rem;
  padding-bottom: 1rem;
}

h2 strong {
  font-family: "Myriad-Apple-Bold";
  font-weight: normal;
}

h2 strong:before {
  content: '';
  display: block;
}

.c-offcanvas {
  left: 0;
  padding: 1rem;
  overflow-y: scroll;
}

.c-offcanvas.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  z-index: 150;
}

.js-offcanvas {
  color: #997f38;
  background: #231f20;
}

.js-offcanvas ul {
  padding-left: 0;
  margin-bottom: 0;
}

.js-offcanvas ul li {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.js-offcanvas ul li a {
  color: #997f38;
}

/* preloader  */
#hola {
  width: 100vw;
  height: 100vh;
  background-color: #252328;
  position: fixed;
  z-index: 999;
}

#preloader {
  position: relative;
  width: 80px;
  height: 80px;
  top: 45%;
  margin: 0 auto;
}

#preloader span {
  position: absolute;
  border: 8px solid #ffe066;
  border-top: 8px solid transparent;
  border-radius: 999px;
}

#preloader span:nth-child(1) {
  width: 80px;
  height: 80px;
  -webkit-animation: spin-1 2s infinite linear;
  animation: spin-1 2s infinite linear;
}

#preloader span:nth-child(2) {
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  -webkit-animation: spin-2 1s infinite linear;
  animation: spin-2 1s infinite linear;
}

@-webkit-keyframes spin-1 {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }
}

@keyframes spin-1 {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes spin-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes spin-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0.5;
  }
}

.home {
  position: relative;
}

.home.divide:before {
  -webkit-transition: all 0.6s 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.6s 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 0;
}

.home.divide:after {
  -webkit-transition: all 0.6s 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.6s 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 0;
}

.animate-border {
  border: 40px solid #EDEBE6;
  -webkit-transition: border .5s .2s ease;
  transition: border .5s .2s ease;
}

/* page overlay with grids */
.overlay .row {
  position: absolute;
  width: 100%;
  min-height: 100%;
  overflow-y: hidden;
  left: 15px;
}

.overlay .row .col {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.overlay .row .col:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

button.toggler {
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 16px;
  outline: 0;
  padding: 13px 8px 9px 46px;
  background: url("../icons/toggle-top.png");
  background-repeat: no-repeat;
}

/* mega menu */
.vcb-mega-menu {
  position: absolute;
  top: 48px;
  z-index: 120;
  background: #231f20;
  color: #fff;
  width: 100%;
  height: auto;
  display: none;
}

.vcb-mega-menu ul {
  list-style-type: none;
  padding: 0;
}

.vcb-mega-menu ul li {
  padding-bottom: .5rem;
  font-size: 1rem;
}

.vcb-mega-menu .col {
  padding: 3rem 0 3rem 3rem;
}

.vcb-mega-menu a {
  color: #c6d0da;
  text-decoration: none;
  font-family: "Myriad-Apple-Text";
}

.vcb-mega-menu h2 {
  font-family: "Myriad-Apple-Medium";
  font-size: 1.3rem;
}

.vcb-mega-menu h2 a {
  color: #997f38 !important;
}

.vcb-mega-menu .accordion {
  width: 100%;
  margin: 0;
}

.vcb-mega-menu .accordion .link {
  cursor: pointer;
  display: block;
  padding: .5rem .5rem 0rem 0;
  color: #c6d0da;
  font-size: 1rem;
  font-weight: normal;
  position: relative;
  font-family: "Myriad-Apple-Text";
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vcb-mega-menu .accordion li:last-child .link {
  border-bottom: 0;
}

.vcb-mega-menu .accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vcb-mega-menu .accordion li i.fa-chevron-down {
  right: auto;
  left: auto;
  font-size: 16px;
  top: 11px;
  margin-left: 11px;
}

.vcb-mega-menu .accordion li.open .link {
  color: #fff;
}

.vcb-mega-menu .accordion li.open i {
  color: #fff;
}

.vcb-mega-menu .accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.vcb-mega-menu .accordion li .submenu {
  display: none;
  font-size: 1rem;
  padding-left: 1.5rem;
}

.vcb-mega-menu .accordion li .submenu a {
  display: block;
  text-decoration: none;
  color: #c6d0da;
  padding: .5rem;
  padding-left: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.vcb-mega-menu .accordion li .submenu a:before {
  content: "\f04b";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 2em;
  color: #b18b25;
  font-size: .5rem;
  position: relative;
  top: -3px;
}

.vcb-mega-menu .accordion li .submenu a:hover {
  background: transparent;
  color: #c6d0da;
}

.vcb-mega-menu .row {
  padding-bottom: 3rem;
  background: #161415;
}

.vcb-mega-menu .row.search input {
  width: 100%;
  height: 70px;
  border: none;
  border-radius: 0;
  background: transparent;
  font-family: "Myriad-Apple-Text";
  font-size: 2.5rem;
  padding-left: 1.3rem;
  color: #cecece;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* btn-primary */
.btn-primary {
  background: #997f38;
  color: #fff;
  border-radius: 0;
  border: none;
  font-size: 1.35rem;
  padding: 0;
  outline: 0;
  height: 55px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.btn-primary:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
}

.btn-primary:before {
  content: url("../icons/arrow-left-2.png");
  display: inline-block;
  padding: 1rem 1rem .6rem 1rem;
  background: #b18b25;
  height: 55px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-primary span {
  position: relative;
  top: 0;
  padding: 0 15px;
  font-family: "Myriad-Apple-Text";
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-primary span strong {
  font-family: "Myriad-Apple-Bold";
  font-weight: normal;
}

.btn-primary:hover {
  background: #997f38;
}

.btn-primary:hover:before {
  margin-right: -100%;
  margin-left: 65%;
}

.btn-primary:hover span {
  margin-right: 0;
}

.btn-primary:focus {
  border: none;
  background: #997f38;
  outline: 0;
}

/* btn-info */
.btn-info {
  width: 65px;
  height: 65px;
  background: #231f20;
  border: none;
  border-radius: 0;
}

/* list item styles */
.list-type-1 li {
  list-style: none;
  font-size: 1.2rem;
  margin-left: -37px;
}

.list-type-1 li a,a.item-style {
  color: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.list-type-1 li a:hover,a.item-style:hover {
  color: #997f38;
}

.list-type-1 li:before,.item-style:before {
  content: url("../icons/li-image.png");
  display: inline-block;
  margin-right: 10px;
}
.item-style{
  display:block;
}
.grid-more.btn-primary{
  margin-top:1rem;
}
/* header */
header .nav-top {
  position: relative;
  background: #fff;
  padding: .8rem 2rem .6rem;
  border-bottom: 1px solid #ddd;
}

header .nav-top img {
  position: absolute;
  top: 15px;
  right: 35px;
}

header .nav-top .row > div:first-child p {
  font-family: "Myriad-Apple-Bold";
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .05rem;
}

header .nav-top .row > div:first-child p a {
  position: relative;
  top: -4px;
  color: #5a6771;
}

header .nav-top .row > div:first-child p a .fa-map-marker {
  position: relative;
  top: 2px;
  color: #997f38;
  font-size: 1.4rem;
  padding-right: .5rem;
}

header .nav-top .row > div:first-child p a:after {
  display: none;
}

header .nav-top .row > div:last-child p {
  position: absolute;
  right: 65px;
  top: 0;
  border: none;
  margin: 0px;
}

header .nav-top .row > div:last-child p a {
  font-family: "Myriad-Apple-Text";
}

header .nav-top .row > div:last-child p a:after {
  display: none;
}

header nav.bg-faded {
  position: relative;
  background: #fff;
  padding: 1.5rem 2rem;
  z-index: 1;
}

header nav.bg-faded .navbar-nav {
  position: relative;
  right: 0;
  top: .8rem;
}

header nav.bg-faded .navbar-nav .nav-item {
  font-family: "Myriad-Apple-Semibold";
  font-size: 1.29rem;
  padding-right: 2rem;
}

header nav.bg-faded .navbar-nav .nav-item .nav-link {
  padding: 0;
}

header nav.bg-faded .navbar-nav .nav-item a {
  color: #231f20;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header nav.bg-faded .navbar-nav .nav-item a:hover {
  color: #997f38;
}

header nav.bg-faded .navbar-nav .nav-item:last-child {
  padding-right: 0;
}

header nav.bg-faded .navbar-toggler {
  border: none;
  z-index: 100;
  background: #997f38;
  border-radius: 0;
  top: 36px;
  right: 25px;
  cursor: pointer;
}

header nav.bg-faded .navbar-toggler .navbar-toggler-icon {
  width: 2em;
  height: 2em;
}

/* footer */
footer {
  position: relative;
  background: #231f20;
  color: #fff;
  text-transform: uppercase;
}

footer h2 {
  font-family: "Myriad-Apple-Semibold";
  color: #fff;
  font-size: 1rem;
  letter-spacing: .1rem;
}

footer h2:before {
  font-family: FontAwesome;
  content: "\f041";
  color: #997f38;
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  margin-left: -15px;
  margin-right: 2px;
}

footer p {
  font-family: "Myriad-Apple-Text";
  color: #fff;
  font-size: .8rem;
  color: #cecece;
  letter-spacing: .06rem;
}

footer .row > div p:last-child {
  font-family: "Myriad-Apple-Bold";
  padding-top: 15px;
  font-size: 1.05rem;
  letter-spacing: .05rem;
}

footer .row > div:last-child img {
  display: block;
  margin: auto;
}

footer .row {
  padding: 3.5rem 0 3rem 5.2rem;
}

footer .copyright {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 4rem;
  background: #fff;
}

footer .copyright .row {
  padding: 1rem 0 0 1.1rem;
}

footer .copyright .row p {
  font-family: "Myriad-Apple-Text" !important;
  color: #231f20;
  font-size: .85rem !important;
  padding: 0 !important;
}

footer .copyright .row ul {
  text-align: right;
}

footer .copyright .row ul li {
  font-family: "Myriad-Apple-Text";
  display: inline-block;
  float: left;
  font-size: .81rem;
  padding-right: .6rem;
}

footer .copyright .row ul li a {
  color: #231f20;
}

/* feature slider - flexslider layout */
#vcb-feature-slider {
  position: relative;
}

#vcb-feature-slider .flexslider {
  width: 100%;
  margin: 0 auto;
  box-shadow: none;
  border: none;
}

#vcb-feature-slider .flexslider li {
  position: relative;
  float: left;
}

#vcb-feature-slider .flexslider li img {
  width: 100%;
}

#vcb-feature-slider .flexslider li .meta {
  position: absolute;
  bottom: 40%;
  left: 5%;
  color: white;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
}

#vcb-feature-slider .flexslider li h2 {
  background: rgba(51, 51, 51, 0.7);
  padding: .8rem;
  font-family: "Myriad-Apple-Bold";
  text-transform: uppercase;
  font-size: 1.5em;
  letter-spacing: .2rem;
  color: #b18b25;
  margin-bottom: 5px;
  font-weight: 300;
}

#vcb-feature-slider .flexslider li h3 {
  background: rgba(51, 51, 51, 0.7);
  padding: .8rem;
  font-family: "Myriad-Apple-Text";
  font-size: 3rem;
}

#vcb-feature-slider .flexslider li .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

#vcb-feature-slider .flexslider li h1,
#vcb-feature-slider .flexslider li h2,
#vcb-feature-slider .flexslider li .category p,
#vcb-feature-slider .flexslider li .category span {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

#vcb-feature-slider .flexslider li.flex-active-slide .meta h2,
#vcb-feature-slider .flexslider li.flex-active-slide .meta h3,
#vcb-feature-slider .flexslider li.flex-active-slide .meta .category p,
#vcb-feature-slider .flexslider li.flex-active-slide .meta .category span {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

#vcb-feature-slider .flexslider li.flex-active-slide .meta h2 {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

#vcb-feature-slider .flexslider li.flex-active-slide .meta .category h3 {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

#vcb-feature-slider .flex-direction-nav {
  position: absolute;
  top: 0;
  left: 30px;
}

#vcb-feature-slider .flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #333;
  margin: -20px 0 0;
  position: absolute;
  top: 50px;
  z-index: 10;
  overflow: hidden;
  opacity: .5;
  cursor: pointer;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#vcb-feature-slider .flex-direction-nav .flex-prev {
  text-align: left;
  left: -10px;
}

#vcb-feature-slider .flex-direction-nav .flex-next {
  text-align: right;
  left: 30px;
}

#vcb-feature-slider .flexslider:hover .flex-prev {
  left: -10px;
}

#vcb-feature-slider .flexslider:hover .flex-next {
  left: 30px;
}

#vcb-feature-slider .flexslider:hover .flex-next:hover,
#vcb-feature-slider .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

#vcb-feature-slider .flex-direction-nav a:before {
  font-family: FontAwesome;
  content: '\f104';
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: 0;
  padding: 2px;
  font-size: 19px;
  line-height: 27px;
}

#vcb-feature-slider .flex-direction-nav a.flex-next:before {
  content: '\f105';
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* page intro */
.page-intro {
  position: relative;
  height: auto;
  background: #fff;
  padding: 4.2rem;
}

.page-intro h2 {
  font-size: 2.6rem;
}

.page-intro p {
  width: 75%;
}

.page-intro .box-wrap {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 86px;
  min-height: 43px;
  color: #fff;
  padding: 1.2rem;
  background: #231f20;
  position: absolute;
  right: 80px;
  height: 144px;
  bottom: -50px;
  -webkit-box-shadow: 9px -9px 0px 0px #9e7f23;
  -moz-box-shadow: 9px -9px 0px 0px #9e7f23;
}

.page-intro .box-wrap a {
  color: #fff;
  box-shadow: 9px -9px 0px 0px #9e7f23;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.page-intro .box-wrap a h3 {
  font-size: 1.2rem;
  text-transform: capitalize;
  padding-top: 2rem;
  color: inherit;
}

.page-intro .box-wrap a p {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: .5rem;
}

.page-intro .box-wrap a p:after {
  display: none;
}

.page-intro .box-wrap a:hover p {
  padding-left: 1.5rem;
}

.page-intro.main-top p {
  text-align: justify;
}

.page-intro.extended {
  background: transparent;
  min-height: 0;
  padding-bottom: 0;
  text-align: center;
}

.page-intro.extended p {
  font-family: "Myriad-Apple-Medium";
  color: #8d959a;
  font-size: 2.5rem;
  padding-bottom: 0;
  width: 100%;
  line-height: 3rem;
  padding-bottom: 1rem;
}

.page-intro.extended p strong {
  color: #231f20;
  font-family: "Myriad-Apple-Bold";
  font-weight: normal;
  font-size: 2.8rem;
}

.page-intro.extended p strong:before {
  content: '';
  display: block;
}

.page-intro.extended p:after {
  display: none;
}

.page-intro.extended-1 h2 {
  color: #231f20;
}

.page-intro.extended-1 h2 strong:before {
  display: none;
}

.page-intro.extended-2 h2 {
  padding: 0;
}

.page-intro .list-type-1 {
  margin-left: 2rem;
}

#search-bar {
  right: 30px;
  position: relative;
  top: -35px;
}

#search-bar .search-cont {
  position: relative;
  z-index: 12;
  width: 60%;
}

.searchbox {
  position: relative;
  min-width: 75px;
  width: 0%;
  height: 70px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.searchbox .searchbox-input {
  top: 0;
  right: 0;
  border: 0;
  outline: 0;
  background: #fff;
  width: 100%;
  height: 70px;
  font-size: 20px;
  color: #949494;
  padding-left: 20px;
}

.searchbox-icon,
.searchbox-submit {
  width: 75px;
  height: 70px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #997f38;
}

.searchbox-icon img {
  padding-top: 15px;
}

.searchbox-open {
  width: 100%;
}

/* homepage intro */
.vcb-wrap-0 {
  position: relative;
}

.vcb-wrap-0 .page-wrap-inner {
  width: 80%;
  margin: 80px auto 0;
  padding-left: 7.3rem;
}

.vcb-wrap-0 .page-wrap-inner h3 {
  text-transform: uppercase;
}

.vcb-wrap-0 .page-wrap-inner p {
  font-family: "Myriad-Apple-Medium";
  font-size: 4rem;
  color: #5a6771;
  line-height: 4rem;
}

.vcb-wrap-0 .page-wrap-inner p span {
  color: #231f20;
  font-family: "Myriad-Apple-Bold";
}

.vcb-wrap-0 .page-wrap-inner p span:after {
  content: '';
  display: block;
}

.vcb-wrap-0 .page-wrap-inner p a:after {
  display: none;
}

.vcb-wrap-0 .btn-info {
  margin-bottom: 5rem;
  margin-top: 2rem;
  margin-left: 5px;
  padding-top: 1.4rem;
}

.vcb-wrap-0 .btn-info:hover {
  background: #231f20;
}

.vcb-wrap-0 .hvr-sweep-to-right:before {
  background: #5a6771;
}

/* vcb-top */
.vcb-top {
  position: relative;
  min-height: 600px;
  margin-bottom: 0;
}

.vcb-top .page-wrap-inner {
  width: 80%;
  margin: 80px auto 0;
}

.vcb-top .page-wrap-inner .row .card {
  background: transparent;
  border: none;
  position: relative;
}

.vcb-top .page-wrap-inner .row .card .title {
  position: absolute;
  bottom: 48px;
  padding: 1.2rem 2rem;
  background: #997f38;
  z-index: 20;
}

.vcb-top .page-wrap-inner .row .card .title h3 {
  font-size: 1.5rem;
  color: #fff;
  font-family: "Myriad-Apple-Text";
}

.vcb-top .page-wrap-inner .row .card .title h3 strong {
  font-family: "Myriad-Apple-Bold";
  font-weight: normal;
}

.vcb-top .page-wrap-inner .row .card .text {
  background: white;
  position: absolute;
  bottom: -65px;
  right: 50px;
  width: 93%;
  padding: 3rem .5rem 0 3rem;
  min-height: 140px;
  -webkit-box-shadow: 0px 53px 152px -44px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 53px 152px -44px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 53px 152px -44px rgba(0, 0, 0, 0.4);
}

.vcb-top .page-wrap-inner .row .card .text p {
  font-family: "Myriad-Apple-Text";
}

.vcb-top .page-wrap-inner .row > div .link-1 {
  position: absolute;
  bottom: -45px;
  right: 135px;
}

.vcb-top .page-wrap-inner .row > div .link-1 img {
  width: auto !important;
}

.vcb-top .page-wrap-inner .row > div:first-child {
  position: relative;
}

.vcb-top .page-wrap-inner .row > div:first-child img {
  position: absolute;
  width: 94%;
}

.vcb-top .page-wrap-inner .row > div:last-child {
  position: relative;
  right: -25px;
  top: 60px;
}

.vcb-top .page-wrap-inner .row > div:last-child .link-1 {
  bottom: -85px;
  right: 80px;
}

.vcb-top .page-wrap-inner .row > div a p {
  color: #231f20;
}

.vcb-top .page-wrap-inner .col-xl-12 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  text-align: center;
}

.vcb-top .page-wrap-inner .col-xl-12 p {
  padding-bottom: 1rem;
}

.vcb-top .page-wrap-inner .col-xl-12 p a {
  color: #997f38;
  font-family: "Myriad-Apple-Bold";
}

.vcb-top .page-wrap-inner .col-xl-12 p a:after {
  background: #997f38;
}

/* vcb-mid */
.vcb-mid {
  display: flex;
  position: relative;
  left: 2rem;
  margin-bottom: 2rem;
  min-height: 340px;
}

.vcb-mid .page-wrap-inner .row > div h3, .vcb-mid .page-wrap-inner .row > div p {
  color: #231f20;
  padding-bottom: 15px;
}

.vcb-mid .page-wrap-inner .row > div p {
  width: 70%;
  text-align: justify;
}

.vcb-mid .page-wrap-inner .row > div p a {
  color: #997f38;
  font-family: "Myriad-Apple-Bold";
}

.vcb-mid .page-wrap-inner .row > div p a:after {
  background: #997f38;
}

/* vcb-btm */
.vcb-btm {
  position: relative;
  left: 2rem;
  min-height: 27rem;
  margin: 5rem 5rem 2rem;
}

.vcb-btm img {
  width: 100%;
}

.vcb-btm .row > div:last-child {
  background: white;
  flex-direction: column;
  justify-content: center;
  height: 90%;
  position: absolute;
  bottom: 0;
  right: 7rem;
  padding: 2.5rem 8rem 3rem 3rem;
  -webkit-box-shadow: -67px 102px 177px -54px rgba(117, 116, 117, 0.5);
  -moz-box-shadow: -67px 102px 177px -54px rgba(117, 116, 117, 0.5);
  box-shadow: -67px 102px 177px -54px rgba(117, 116, 117, 0.5);
}

.vcb-btm .row > div:last-child h3, .vcb-btm .row > div:last-child p {
  color: #231f20;
}

.vcb-btm .row > div:last-child p {
  text-align: justify;
}

.vcb-btm .row {
  position: relative;
}

.vcb-btm .btn-primary {
  font-family: "Myriad-Apple-Text";
  position: absolute;
  bottom: 0;
  left: -57px;
}

/* vcb-btm-2 */
.vcb-btm-2 {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.vcb-btm-2 .row img {
  width: 100%;
}

.vcb-btm-2 .row .text-wrapper {
  position: relative;
  top: 150px;
  left: 5rem;
  width: 42%;
  line-height: 4rem;
  z-index: 15;
}

.vcb-btm-2 .row .text-wrapper h2, .vcb-btm-2 .row .text-wrapper p {
  color: #fff;
}

.vcb-btm-2 .row .text-wrapper h2 {
  font-family: "Myriad-Apple-Text";
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

.vcb-btm-2 .row .text-wrapper p {
  font-family: "Myriad-Apple-Bold";
  color: #997f38;
  font-size: 5rem;
}

.vcb-btm-2 .row .text-wrapper p:last-child {
  font-size: 1.2rem;
}

.vcb-btm-2 .row .text-wrapper p:last-child a {
  color: #fff;
}

.vcb-btm-2 .row .text-wrapper p:last-child a:after {
  background: #fff;
}

/*=================== page layouts ======================*/
/* page-intro */
.page-intro {
  position: relative;
}

.page-intro h2 {
  color: #8d959a;
  padding-bottom: 2rem;
}

.page-intro h2 strong {
  color: #231f20;
}

.page-intro p:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #231f20;
  margin-top: 3rem;
}

/* content-wrapper-1 */
.vcb-content-wrapper-1 {
  position: relative;
  padding: 4rem 0;
}

.vcb-content-wrapper-1 h2 {
  font-family: "Myriad-Apple-Bold";
}

.vcb-content-wrapper-1 p {
  width: 90%;
  text-align: justify;
}

.vcb-content-wrapper-1 p:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #231f20;
  margin-top: 3rem;
}

/* content-wrapper-2 */
.vcb-content-wrapper-2 {
  position: relative;
}

.vcb-content-wrapper-2 .row .card-block {
  padding: 0;
}

.vcb-content-wrapper-2 .row .card-block .ih-item {
  width: auto;
  height: auto;
  border: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.vcb-content-wrapper-2 .row .card-block .ih-item:hover .text-wrapper {
  left: -100%;
}

.vcb-content-wrapper-2 .row .card-block .ih-item .text-wrapper {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 50%;
  height: 100%;
  background: #a38526;
  display: flex;
  align-items: center;
  color: #fff;
  padding-left: .8rem;
  top: 0;
  left: 0;
}

.vcb-content-wrapper-2 .row .card-block .ih-item .text-wrapper h3 {
  font-size: 1.5rem;
}

.vcb-content-wrapper-2 .row .card-block .ih-item .text-wrapper h3:before, .vcb-content-wrapper-2 .row .card-block .ih-item .text-wrapper h3:after {
  content: '';
  display: block;
  width: 90%;
  height: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.vcb-content-wrapper-2 .row .card-block .ih-item .text-wrapper h3:before {
  margin-bottom: 20px;
}

.vcb-content-wrapper-2 .row .card-block .ih-item .text-wrapper h3:after {
  margin-top: 20px;
}

.vcb-content-wrapper-2 .row .card-block .ih-item .info h3 {
  position: relative;
  top: 35%;
  margin: 0;
  background: transparent;
  text-transform: none;
  font-family: "Myriad-Apple-Text";
  font-size: 1.8rem;
  text-align: left;
  padding-left: 15px;
}

.vcb-content-wrapper-2 .row .card-block .ih-item .info p {
  position: relative;
  top: 37%;
  text-align: left;
  padding: 0 20px 20px;
}

.vcb-content-wrapper-2 .row .card-block .ih-item .info p img {
  width: auto;
}

.vcb-content-wrapper-2 .row .card-block .ih-item .info p:before {
  content: '';
  display: block;
  width: 100%;
  height: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* bottom carousel */
#vcb-carousel-2 {
  position: relative;
  padding: 5rem 0;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-item img {
  width: 67%;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-item,
#vcb-carousel-2 .carousel-fade .carousel-inner .active.left,
#vcb-carousel-2 .carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .active,
#vcb-carousel-2 .carousel-fade .carousel-inner .next.left,
#vcb-carousel-2 .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .next,
#vcb-carousel-2 .carousel-fade .carousel-inner .prev,
#vcb-carousel-2 .carousel-fade .carousel-inner .active.left,
#vcb-carousel-2 .carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-caption {
  padding: 3rem;
  right: 0;
  left: 0;
  margin-right: 0;
  margin-left: auto;
  width: 36%;
  color: #231f20;
  text-align: left;
  background: #fff;
  top: 0;
  height: 80%;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-caption h3 {
  font-family: "Myriad-Apple-Text";
  text-transform: uppercase;
  font-size: 1.2rem;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-caption h3:after {
  content: '';
  display: block;
  width: 100%;
  height: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-caption p {
  font-family: "Myriad-Apple-Text";
  font-size: 2.5rem;
  line-height: 3.3rem;
  text-transform: capitalize;
  padding-top: 3rem;
  color: #8d959a;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-caption p:after {
  content: '';
  display: block;
}

#vcb-carousel-2 .carousel-fade .carousel-inner .carousel-caption p strong {
  font-size: 3rem;
  font-weight: normal;
  font-family: "Myriad-Apple-Bold";
  color: #231f20;
}

#vcb-carousel-2 .carousel-control {
  z-index: 2;
}

#vcb-carousel-2 .carousel-control-prev-icon {
  background-image: url("../icons/arrow-3.png");
}

#vcb-carousel-2 .carousel-control-next-icon {
  background-image: url("../icons/arrow-4.png");
}

#vcb-carousel-2 .carousel-control-next-icon,
#vcb-carousel-2 .carousel-control-prev-icon {
  width: 35px;
}

#vcb-carousel-2 .carousel-control-next,
#vcb-carousel-2 .carousel-control-prev {
  width: auto;
  opacity: 1;
  top: 12rem;
}

#vcb-carousel-2 .carousel-control-prev {
  left: 68%;
}

#vcb-carousel-2 .carousel-control-next {
  right: 25%;
}

/* top 1 section */
.vcb-top-1 {
  position: relative;
  margin-top: 2rem;
}

.vcb-top-1 .row > div:first-child img {
  width: 100%;
}

.vcb-top-1 .row > div:last-child {
  position: absolute;
  right: 45px;
  background: #fff;
  height: 80%;
  padding: 3rem;
  -webkit-box-shadow: -67px 102px 177px -54px rgba(117, 116, 117, 0.5);
  -moz-box-shadow: -67px 102px 177px -54px rgba(117, 116, 117, 0.5);
  box-shadow: -67px 102px 177px -54px rgba(117, 116, 117, 0.5);
}

.vcb-top-1 .custom-margin {
  margin: 0 9%;
}

.vcb-top-1 .btn-primary {
  position: absolute;
  left: 0;
  bottom: 0;
}

.vcb-top-1 .btn-primary:hover {
  background: #997f38;
}

.vcb-top-1 .btn-primary:hover:before {
  margin-right: -107%;
  margin-left: 65%;
}

.vcb-top-1 .btn-primary:hover span {
  margin-left: 30px;
  margin-right: -15px;
}

.vcb-top-1.extended-1 {
  margin-top: 5rem;
}

.vcb-top-1.extended-1 .title h4 {
  padding-bottom: 0;
}

.vcb-top-1.extended-1 .title h5 {
  font-size: 2rem;
}

.vcb-top-1.extended-1 .title p {
  text-transform: uppercase;
  font-family: "Myriad-Apple-Semibold";
  font-size: 1.2rem;
  padding-top: .4rem;
}

.vcb-top-1.extended-1 .title p:after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.vcb-top-1.extended-1 .office h6 {
  font-family: "Myriad-Apple-Bold";
  font-size: 1.4rem;
}

.vcb-top-1.extended-1 .office p {
  font-size: 1.05rem;
}

.vcb-top-2 {
  position: relative;
  padding-top: 4rem;
}

.vcb-top-2 .page-wrap-inner {
  width: 80%;
}

.vcb-top-2 h2 {
  padding-bottom: 5rem;
}

.vcb-top-2 h2 strong:before {
  display: none;
}

.vcb-top-2 .box-wrap-2 {
  position: relative;
  background: #fff;
  padding: 2.5rem;
  width: 95%;
}

.vcb-top-2 .box-wrap-2 h3 {
  padding-bottom: 1rem;
}

.vcb-top-2 .box-wrap-2 h3 span {
  color: #8d959a;
}

.vcb-top-2 .box-wrap-2:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  left: -15px;
  top: -15px;
  background: #997f38;
  z-index: -1;
  opacity: 1;
  transform: translate3d(0px, 2px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
}

.vcb-top-2 .box-wrap-2 p {
  padding-bottom: 20px;
}

.vcb-top-2 .box-wrap-2 .icon-wrapper {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  top: -40px;
  left: -40px;
  text-align: center;
}

.vcb-top-2 .box-wrap-2 .icon-wrapper img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

/* mid section 1 */
.vcb-mid-1 {
  position: relative;
  padding-top: 4rem;
}

/* mid section 2 */
.vcb-mid-2 {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.vcb-mid-2 .page-wrap-inner {
  width: 80%;
}

.vcb-mid-2 .page-wrap-inner .row > div h2 {
  padding-top: 2.5rem;
}

.vcb-mid-2 .page-wrap-inner .row > div p {
  padding-bottom: 20px;
  text-align: justify;
}

/* mid section 3 */
.vcb-mid-3 {
  position: relative;
  margin: 4rem 0;
}

.vcb-mid-3 h4, .vcb-mid-3 h5 {
  text-align: center;
}

.vcb-mid-3 h5 {
  font-size: 3.5rem;
  font-family: "Myriad-Apple-Bold";
  padding-bottom: 2.5rem;
}

.vcb-mid-3 .container-fluid {
  background: #fff;
  padding: 4rem 5rem;
}

.vcb-mid-3 .container-fluid .row .card-block {
  padding: 0;
  border: none;
  margin-bottom: 2rem;
}

.vcb-mid-3 .container-fluid .row .card-block img {
  border-radius: 5px;
}

.vcb-mid-3 .container-fluid .row .card-block h3 {
  font-family: "Myriad-Apple-Bold";
  font-size: 1.3rem;
  padding: .5rem 0;
}

.vcb-mid-3 .container-fluid .row .card-block p {
  font-family: "Myriad-Apple-Semibold";
  font-size: .9rem;
  text-transform: uppercase;
  color: #997f38;
}

/* vcb top 0 */
.vcb-top-0 {
  position: relative;
  text-align: center;
  padding: 6rem 0;
}

.vcb-top-0 h1 {
  font-family: "Myriad-Apple-Bold";
  font-size: 4rem;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #231f20;
}

.vcb-top-0 h1:after {
  content: '';
  display: block;
  width: 50px;
  height: 20px;
  border-bottom: 2px solid #231f20;
  margin: auto;
}

.vcb-top-0 h4 {
  font-family: "Myriad-Apple-Bold";
  text-transform: uppercase;
  font-size: 1rem;
  padding-top: 1rem;
  color: #997f38;
  letter-spacing: 0.2rem;
  padding-bottom: 15px;
}

.vcb-top-0 p {
  font-size: 1.8rem;
  font-family: "Myriad-Apple-Medium";
}

.vcb-top-0 p strong {
  font-family: "Myriad-Apple-Bold";
  font-weight: normal;
}

/* vcb-address-wrap */
#vcb-address-wrap {
  position: relative;
  padding: 5rem 0;
  background: #fff;
}

#vcb-address-wrap .row .col-xl-4 {
  border-right: 1px dashed #cdcdcd;
}

#vcb-address-wrap .row .col-xl-4:last-child {
  border-right: none;
}

#vcb-address-wrap .row address {
  padding-left: 15%;
}

#vcb-address-wrap .row address p {
  font-family: "Myriad-Apple-Semibold";
  text-transform: uppercase;
  font-size: .95rem;
  color: #8d959a;
}

#vcb-address-wrap .row address p:last-child {
  font-family: "Myriad-Apple-Bold";
  font-size: 1.5rem;
  padding-top: 1rem;
  color: #231f20;
}

#vcb-address-wrap .row .locator {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  margin-left: 13%;
  -webkit-box-shadow: 6px 3px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 6px 3px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 6px 3px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#vcb-address-wrap .row .locator:after {
  content: '\f041';
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  font-size: 1.4rem;
  padding-top: 4px;
  color: #997f38;
}

#vcb-address-wrap .row .locator:hover {
  background: #231f20;
}

/* vcb-contact-form */
#vcb-contact-form {
  position: relative;
  margin-top: 5rem;
  text-align: center;
}

#vcb-contact-form h4 {
  padding-bottom: 0;
}

#vcb-contact-form p {
  font-family: "Myriad-Apple-Bold";
  font-size: 3rem;
  padding-bottom: 4rem;
}

#vcb-contact-form .col-lg-10 {
  background: #fff;
  padding: 4rem;
}

#vcb-contact-form .col-lg-10 .col-xl-6:after, #vcb-contact-form .col-lg-10 .col-xl-12:after {
  content: '';
  display: block;
  position: relative;
  top: -20px;
  left: 20px;
  width: 20px;
  height: 3px;
  background: #231f20;
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

#vcb-contact-form .col-lg-10 .col-xl-12:after {
  top: -25px;
}

#vcb-contact-form .col-lg-2 {
  border-right: 15px solid #fff;
}

#vcb-contact-form .col-lg-2 .row > div:first-child {
  background: #231f20;
  color: #fff;
  text-align: left;
  z-index: 10;
}

#vcb-contact-form .col-lg-2 .row > div:first-child h5 {
  padding-top: 5rem;
}

#vcb-contact-form .col-lg-2 .row > div:first-child p {
  font-size: 1.1rem;
  font-family: "Myriad-Apple-Text";
  text-transform: uppercase;
  padding-bottom: 1rem;
}

#vcb-contact-form .col-lg-2 .row > div:last-child {
  background: #997f38;
  position: absolute;
  height: 100%;
}

#vcb-contact-form .col-lg-2 .row > div:last-child ul {
  padding-top: 10rem;
  padding-left: 0;
}

#vcb-contact-form .col-lg-2 .row > div:last-child ul li {
  display: block;
  margin: auto;
  font-size: 2rem;
}

#vcb-contact-form .col-lg-2 .row > div:last-child ul li a {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#vcb-contact-form .col-lg-2 .row > div:last-child ul li a:hover {
  color: #231f20;
}

#vcb-contact-form .col-lg-2 .row > div:last-child ul li:after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  margin: 10px auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

#vcb-contact-form .col-lg-2 .row > div:last-child ul li:last-child:after {
  display: none;
}

#vcb-contact-form input, #vcb-contact-form textarea {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 2px solid rgba(35, 31, 32, 0.3);
  border-radius: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin: 0 auto 1rem;
  font-family: "Myriad-Apple-Text";
  font-size: 1.3rem;
}

#vcb-contact-form input {
  height: 70px;
  width: 90%;
  margin: 0;
}

#vcb-contact-form label {display: none !important;}

#vcb-contact-form textarea {
  margin-top: 1rem;
  margin: 0;
}

#vcb-contact-form .btn-primary {margin-left: 0 !important;}

#vcb-contact-form input:focus .col-xl-6:after {
  width: 100%;
}

.vcb-mega-menu ul li.strong{
  color: #997f38 !important;
  font-size: 1.3rem;
}

.vcb-mega-menu ul li.strong a{
  color: #997f38 !important;
}

header nav.bg-faded .navbar-nav .nav-item.current-menu-item a {
  color: #997f38;
}

#vcb-contact-form textarea {
  width: 95%;
  height: 200px;
  margin-top: 1rem;
}

#vcb-contact-form .btn-primary {
  height: 55px;
  margin-left: 2.4rem;
  margin-top: 10px;
}

#vcb-contact-form .btn-primary:before {
  height: 55px;
}

.overlay .row .col {
  z-index: -1;
}

/* search results */
#search-results {background: rgba(255,255,255,.8);}
#search-results .result-item {
  margin-bottom: 1rem; 
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 1rem;
}

#search-results .result-item:last-child {border-bottom: none;}
#search-results a{color: #997f38;}
#search-results a h3 {font-size: 1.4rem;}
.result-number {font-size: 1.8rem; padding-bottom: 1.5rem;}
header.page-header h1{margin-left: -13px;padding-top: 2rem;}

/*=================== media queries ======================*/
@media (max-width: 1475px) {
  #page-wrap {
    margin: 0 3%;
  }
}

@media (max-width: 1350px) {
  #page-wrap {
    margin: 0 3%;
  }
  header nav.bg-faded .navbar-nav .nav-item {
    padding-right: 1.2rem;
  }
}

@media (min-width: 1200px) and (max-width: 1275px) {
  header nav.bg-faded .navbar-nav .nav-item {
    padding-right: 1rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 1264px) {
  .vcb-wrap-0 .page-wrap-inner {
    padding-left: 0;
  }
  .vcb-wrap-0 .page-wrap-inner p {
    font-size: 3rem;
  }
}

@media (max-width: 1218px) {
  .vcb-wrap-0 .page-wrap-inner {
    padding-left: 0;
  }
  .vcb-wrap-0 .page-wrap-inner p {
    font-size: 3rem;
  }
}

@media (max-width: 1199px) {
  .vcb-btm-2 .row .text-wrapper p {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

@media (max-width: 1116px) {
  #vcb-contact-form .col-lg-2 .row > div:last-child ul {
    padding-top: 13rem;
  }
}

@media (max-width: 767px) {
  .vcb-top-2 .box-wrap-2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .vcb-top-2 .box-wrap-2::before {
    display: none;
  }
  .vcb-top-2 .box-wrap-2 .icon-wrapper {
    display: none;
  }
  .vcb-top-2 .page-wrap-inner {
    width: 100%;
  }
  footer .row > div:last-child img {
    display: inline-block;
    margin-left: -17px;
    margin-top: 2rem;
  }
  #vcb-address-wrap {
    text-align: center;
  }
  #vcb-address-wrap .row .locator {
    margin: .5rem auto 4rem !important;
  }
  #vcb-feature-slider .flexslider li .meta {
    bottom: 40px !important;
  }
  header .nav-top .row > div:last-child select {
    position: relative;
    right: 0;
    top: 2px;
  }
  .vcb-btm-2 .row .text-wrapper {
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
  }
  .vcb-btm-2 .row .text-wrapper h2 {
    padding-bottom: 0;
  }
  #vcb-feature-slider .flexslider li.flex-active-slide .meta h2 {
    font-size: .8rem;
  }
  #vcb-feature-slider .flexslider li h3 {
    font-size: 2rem;
  }
  .page-intro.extended p strong {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .overlay .row {
    display: none;
  }
  .scrollme.animateme {
    transform: none !important;
  }
  .vcb-top .page-wrap-inner .row > div:first-child img {
    position: relative;
    width: 100%;
  }
  .vcb-top .page-wrap-inner {
    width: 100%;
    margin: 80px auto 0;
  }
  .vcb-top .page-wrap-inner .row .card .text {
    background: white;
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .page-intro .box-wrap {
    position: relative;
    right: 0;
    height: 100px;
    bottom: -29px;
  }
  .page-intro .box-wrap a h3 {
    padding-top: 0;
  }
  #vcb-contact-form .col-lg-2 .row > div:last-child {
    position: relative;
    height: auto;
  }
  #vcb-contact-form .col-lg-2 .row > div:last-child ul {
    padding-top: 20px;
  }
  #vcb-contact-form .col-lg-2 .row > div:last-child ul li {
    display: inline-block;
  }
  #vcb-contact-form .col-lg-2 .row > div:last-child ul {
    text-align: left;
  }
  #vcb-contact-form .col-lg-2 .row > div:last-child ul li {
    padding-right: 15px;
  }
  #vcb-contact-form .col-lg-2 .row > div:last-child ul {
    padding-top: 0;
  }
  #vcb-contact-form .col-lg-2 .row > div:last-child ul {
    margin-bottom: 0;
  }
  #vcb-contact-form .col-lg-2 .row > div:last-child ul li::after {
    display: none;
  }
  #vcb-contact-form .col-lg-2 .row > div:first-child h5 {
    padding-top: 1rem;
  }
  header .nav-top .row > div:last-child select {
    right: 0;
  }
  header nav.bg-faded .navbar-nav {
    display: none;
  }
  button.toggler {
    display: none;
  }
  .vcb-mega-menu .col {
    padding: 3rem 0 0rem 2rem;
  }
  .vcb-mega-menu ul li {
    padding-bottom: .1rem;
  }
  .vcb-wrap-0 .page-wrap-inner p {
    font-size: 2rem;
    line-height: 2rem;
  }
  .vcb-wrap-0 .page-wrap-inner p span::after {
    display: inline-block;
  }
  .vcb-top .page-wrap-inner .row .card .title {
    position: absolute;
    bottom: 140px;
  }
  .vcb-top .page-wrap-inner .row > div {
    margin-bottom: 20px;
  }
  .vcb-top-1 .row > div:last-child {
    position: relative;
    right: 0;
    height: auto;
    min-height: 300px;
  }
  #vcb-address-wrap {
    padding: 1rem 0;
  }
  #vcb-contact-form {
    margin-top: 2rem;
  }
  #vcb-contact-form p {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
  footer .copyright .row ul {
    padding-left: 0;
    padding-top: 10px;
  }
  footer .copyright {
    padding: 1.5rem 1rem;
  }
  footer .row {
    padding: 2.5rem;
  }
  #vcb-contact-form .col-lg-10 {
    padding: 1rem;
  }
  #vcb-contact-form .col-lg-10 .col-xl-12::after {
    top: -20px;
  }
  #vcb-address-wrap .row address {
    padding-left: 0;
    padding-bottom: 0;
  }
  #vcb-address-wrap .row .locator {
    margin-left: 0;
    margin-bottom: 3rem;
  }
  #vcb-feature-slider .flexslider li .meta {
    bottom: 100px;
  }
  .vcb-top-1 .row > div:first-child {
    padding: 0;
  }
  .vcb-top-1 .custom-margin {
    margin: 0;
  }
  .vcb-top .page-wrap-inner .row > div:last-child {
    right: 0;
    top: 0;
  }
  .vcb-top .page-wrap-inner .row > div:last-child img {
    width: 100%;
  }
  .page-wrap-inner {
    width: 100%;
  }
  .vcb-btm {
    left: 0;
    margin: 0;
  }
  .vcb-btm .row > div:last-child {
    height: auto;
    position: relative;
    bottom: 0;
    right: 0;
    padding: 2.5rem 0rem 3rem 3rem;
    min-height: 275px;
    margin-bottom: 20px;
  }
  .vcb-btm .btn-primary {
    bottom: 0;
    left: 0;
  }
  .vcb-btm .row > div:last-child {
    max-width: 97%;
    margin-left: 15px;
  }
  .vcb-top .page-wrap-inner .row > div .link-1 {
    bottom: 0 !important;
    right: 15px !important;
  }
  .vcb-top .page-wrap-inner .row > div:last-child .link-1 {
    bottom: 0;
    right: 15px;
  }
  .vcb-top .page-wrap-inner .col-xl-12 {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }
  .vcb-mid-2 .page-wrap-inner {
    width: 100%;
  }
  .page-intro {
    padding: 1.2rem;
  }
  .page-intro p {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1249px) {
  .vcb-btm .row > div:last-child {
    padding: 1rem 0 0 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }
  .vcb-top {
    min-height: 500px;
  }
  .vcb-mid {
    margin-bottom: 1rem;
  }
  .vcb-btm {
    margin: 0;
    margin-bottom: 1rem;
  }
  .vcb-mid .page-wrap-inner .row > div p {
    width: 90%;
  }
}

@media (max-width: 630px) {
  #search-bar {
    right: -15px;
    top: 0px;
  }
  #search-bar .search-cont {
    width: 100%;
  }
  .vcb-wrap-0 h1 {
    padding-top: 24px;
  }
  .vcb-top .page-wrap-inner {
    margin: 40px auto 0;
  }
}

@media (max-width: 590px) {
  .vcb-btm-2 .row .text-wrapper p {
    font-size: 2rem;
    line-height: 1.9rem;
  }
}

@media (max-width: 530px) {
  #vcb-feature-slider .flexslider li .meta {
    bottom: 10px !important;
  }
  #vcb-feature-slider .flexslider li h3 {
    font-size: 1.2rem;
  }
  .navbar-brand img {
    width: 200px;
  }
  header nav.bg-faded .navbar-toggler {
    top: 23px;
  }
}

@media (max-width: 494px) {
  #vcb-contact-form p {
    line-height: 2rem;
  }
}

@media (max-width: 400px) {
  #vcb-feature-slider .flexslider li h3, #vcb-feature-slider .flexslider li h2 {
    padding: .2rem;
  }
}

@media (max-width: 360px) {
  .vcb-btm-2 .row .text-wrapper p {
    font-size: 1.2rem;
  }
}

@media (max-width: 350px) {
  .navbar-brand img {
    width: 157px;
  }
}
