*,
:after,
:before {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  outline:none;
}

html {
    overflow-x:hidden;
}
body,
html {
  position: relative;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 15px;
  font-style: normal;
  background: #fff;
  color: #4c0404;
  margin:0;
  padding:0;
  line-height: 25px;
  /* height: 100%;  */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing:grayscsale;
}

.site-container {
  /* min-height: 100%; */
}

.site-container-inner {
  /* padding-bottom: 100px; */
}

.site-content{
  padding-top: 110px;
}

/* fix safari grid issue */
.row:before, .row:after {
  display: none !important;
}

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

  .site-content{
    padding-top: 80px;
  }
}


/*****************************/
/*       Typography          */
/*****************************/
h1,h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.778em;
  line-height: 60px;
  margin-bottom: 35px !important;
}

h3,h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.667em;
  margin-bottom: 25px !important;
}

h4 {
  margin-bottom: 15px !important;
}

p{
  font-size: 1em;
  margin-bottom: 2em;
}

a {
  color: #b69d74;
}
a:hover{
  color: #4c0404;
  text-decoration: none;
  opacity: 0.9;
}

ul {
  padding: 0;
  margin: 0 0 0 18px;
}

.site-content ul li {
  padding: 10px 20px 0;
}


.f-regular {
  font-weight: 400 !important;
}

@media (min-width: 768px) {
  .pt-md-4-5 {
    padding-top: 2.6em;
  }
}


@media (max-width: 767px) {
  h1,h2 {
    font-size: 2.25em;
    line-height: 40px;
    margin-bottom: 20px !important;
  }

  h3 {
    font-size: 1.25em;
    margin-bottom: 10px !important;
  }

  p {
    margin-bottom: 1.2em;
  }

}

/*****************************/
/*          General          */
/*****************************/
.wrapper {
	max-width: 1280px;
	padding:0px 92px;
	margin: 0 auto !important;
}

header {
  background: #4c0404;
  padding: 20px 0 30px;
  width: 100%;
  position: fixed;
  /*top: 0;*/
  z-index: 99;
  /* transition: all 200ms cubic-bezier(0.55, 0, 0.1, 1); */
  -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;
  /* transition: all 500ms cubic-bezier(0.55, 0, 0.1, 1); */
}
header #topheader{
    margin-bottom: 20px !important;
    display: flex;
    flex-direction: row-reverse;
}
@media (max-width: 991px){
header #topheader{
  display:none;
}
.switcher{
 margin-bottom:50px;
}
.switcher .option{
  position:relative !important;

}
}
header ul li {
  display: inline-block;
}

header ul li a {
  color: #FFF;
  font-size: 1.111em;
  padding: 10px 19px;
  display: block;
  margin-top: 0;
  transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-weight: 400;
}


header.sticky{
  /* position: fixed;
  top: 0;
  z-index: 99; */
  padding: 15px 0;
  /* transition: all 200ms cubic-bezier(0.55, 0, 0.1, 1); */
  /* animation: smoothScroll 0.5s linear; */
  box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}

header ul li.menu-item-has-children{
  position:relative;
}

header ul li.menu-item-has-children > a:after{
  font-family: 'FontAwesome';
  content: "\f0d7";
  font-size: 13px;
  color: #ffffff;
  position: absolute;
  right: 5px;
  top: 12px;
}

header ul li.current-menu-item a,
header ul li a:hover {
  color: #b69d74 !important;
}

header ul li.bordered a,
.btn a,
.gform_footer.top_label {
  border: 3px solid #b69d74;
  position: relative;
  display: inline-block;
  z-index: 1;
}

header ul li.bordered a {
  margin-left: 20px;
  padding: 8px 17px 11px;
}
header ul li.bordered a:hover {
  color: #FFF !important;
}

header ul li.bordered a:before,
.btn a:before,
.gform_footer.top_label:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #b69d74;
}
header ul li.bordered a:after,
.btn a:after,
.gform_footer.top_label:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #b69d74;
}

header ul li.bordered a:hover:before,
.btn a:hover:before,
.gform_footer.top_label:hover:before {
  width: 51%;
  opacity: 1;
}
header ul li.bordered a:hover:after,
.btn a:hover:after,
.gform_footer.top_label:hover:after {
  width: 51%;
  opacity: 1;
}

header ul ul.sub-menu {
  background-color:#4C0408;
  left: -9999%;
  padding: 10px;
  position: absolute;
  text-align: left;
  top: 45px;
  width: 210px;
  z-index: 9999;
  border: 1px solid #5a1813;

}

header ul li.menu-item-has-children:hover > ul.sub-menu{
  left:-20px !important;
}

header ul li.menu-item-has-children > ul.sub-menu li:hover a {
  text-decoration: none;
  color: #b69d74;
}


header ul ul.sub-menu li{
  display:block;
  padding: 0;
}
header ul ul.sub-menu li:last-child a{
  border-bottom:0px;
}
header ul ul.sub-menu li a {
  color: #fff;
  display: block;
  font-weight: 400;
  font-size: 0.972em;
  background: #4c0404 !important;
  padding: 5px 10px;
}

header .logo img{
  width: 200px;
}

footer {
  background: #4c0404;
  /* height: 100px; */
  /* margin-top: -100px; */
  padding: 85px 0 30px;
}

footer * {
  font-weight: 600;
  color: #FFF;
}

footer a:hover{
  color: #b69d74 !important;
}

footer i {
  background: #ffffff;
  color: #4c0404;
  padding: 2px 3px;
  border-radius: 3px;
  margin-right: 3px;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.copyright {
  width: 100%;
  background: #FFF;
  text-align: center;
}

.copyright p {
  padding: 17px 0;
  margin: 0;
  font-weight: 600;
}

footer .row div[class^='col-']:nth-child(2){
  padding-left: 65px;
}

footer .row div[class^='col-']:nth-child(3){
  padding-left: 95px;
}


footer .widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.200em;
  font-weight: 400;
  margin-bottom: 20px;
}

footer .cd-top {
  position: fixed;
  width: 41px;
  right: 15px;
  bottom: 30px;
  margin: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

footer .cd-top .icon-stack{
  position: relative;
  display: block;
  width: 39px;
  height: 39px;
  line-height: 33px;
  font-size: 15px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #b69d73;
  overflow: hidden;
  -webkit-transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
  -moz-transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
  transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
}

footer .cd-top .icon-stack i{
  position: relative;
  color: #b69d73;
  z-index: 5;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  transition: .2s ease;
  background: transparent;
  margin: 0 !important;
}

footer .cd-top:hover .icon-stack{
  background: #000;
}
footer .cd-top:hover .icon-stack i{
  color: #FFF;
}

footer .cd-top.cd-is-visible,
footer .cd-top
footer .cd-fade-out,
footer .no-touch
footer .cd-top:hover {
  transition: opacity 0.3s ease 0s, visibility 0s ease 0s;
}

footer .cd-top.cd-is-visible {
	opacity: 1;
	visibility: visible;
}

footer .cd-top.cd-fade-out {
  opacity: 0.5;
}

#pagebanner{
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-color: #666;
  background-repeat: no-repeat;
}

.side-menu ul {
  margin: 0;
}

.side-menu ul li{
  list-style: none;
  border-bottom: 1px solid #d8e1ee;
  padding: 10px 0;
}

.side-menu ul li a{
  border-left: 3px solid #b69d74;
  padding: 8px 10px 8px 40px;
  display: block;
  color: #4c0404;
  font-weight: 700;
  font-size: 1.111em;
  transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.side-menu ul li.current-menu-item a,
.side-menu ul li a:hover{
  background: #b69d74;
  color: #FFF;
}

.moving-box {
  position: relative;
}

.moving-box:before {
  position: absolute;
  content: '';
  width: 85%;
  height: 108%;
  left: -15%;
  top: 0;
  z-index: 1;
  -webkit-animation: 5s move-box-animation linear infinite;
  animation: 5s move-box-animation linear infinite;
  border: 15px solid #b69d74;
  background-color: transparent;
}

.moving-box .vc_single_image-wrapper {
  z-index: 2;
  position: relative;
}

.notary-bg {
  background: url(img/noraty-bg-2.png) no-repeat 100% 100%;
}

.appointment-bg {
  background: url(img/appointment-bg-2.png) no-repeat 100% 100%;
}

.services-bg {
  background: url(img/services-bg.png) no-repeat 100% 100%;
}
.contact-bg {
  background: url(img/contact-bg-2.png) no-repeat 100% 100%;
}

.service-listing .pl-15.vc_column_container>.vc_column-inner {
  padding: 0 !important;
}
.service-listing ul {
  margin: 0;
}
.service-listing ul li {
  list-style: none;
  font-size: 1.05em;
  position: relative;
  padding-left: 40px;
  padding-right: 0;
  margin: 20px 0;
}

.service-listing ul li:after{
  content: "";
  display: inline-block;
  width: 26px;
  height: 24px;
  background: url(img/flaticon-checkmark.png) no-repeat;
  margin-right: 10px;
  position: absolute;
  top: 14px;
  left: 0;
}

.bg-bottom-right {
  background-position: bottom right !important;
  background-repeat: no-repeat !important;
}

.water-bg .wpb_single_image:before{
  content: "";
  position: absolute;
  width: 86px;
  height: 102px;
  background: url(img/water-bg.png) no-repeat center center;
  top: 50%;
  transform: translateY(-50%);
}
.steps-with-arrow .vc_column_container>.vc_column-inner>.wpb_wrapper {
  padding-left: 20px;
  border-left: 3px solid #b69d74;
}
.steps-with-arrow ul {
  margin: 0;
}
.steps-with-arrow ul li {
  list-style: none;
  position: relative;
  padding: 0 0 20px;
  font-size: 1.111em;
}

.steps-with-arrow ul li:after{
  content: "\f063";
  font-family: "FontAwesome";
  color: #b69d74;
  position: absolute;
  bottom: -3px;
  left: 0;
  font-size: 13px;
  font-weight: 400;
}
.steps-with-arrow ul li:last-child:after{
  content: "";
}

/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  /* background-position:center 20%; */
  /* background-repeat:no-repeat; */
  /* change if the mask should have another color then white */
  z-index: 99999;
  /* makes sure it stays on top */
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one the screen */
  background-image: url('img/preloading.gif');
  /* path to your loading animation */
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
  /* is width and height divided by two */
}

body.admin-bar header,
body.admin-bar header.sticky {
  top: 32px !important;
}

@media (max-width: 1280px){
  .wrapper {
    max-width: 100%;
    padding:0px 60px;
  }
}

@media (max-width: 991px){
  .wrapper {
    padding:0px 30px;
  }

  header {
    position: fixed;
    padding: 15px 0;
    z-index: 99;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
  }

  footer .row div[class^='col-']:nth-child(2),
  footer .row div[class^='col-']:nth-child(3){
    padding-left: 15px;
  }
}

@media (max-width: 767px){

  body.admin-bar header {
    top: 46px !important;
  }

  .wrapper {
    padding:0px 20px;
  }

  header .logo img{
    width: 130px;
  }

  footer {
    padding: 35px 0 15px;
  }

  footer .widget-title {
    font-size: 2em;
  }

  footer .widget_text{
    margin-bottom: 25px;
  }
  #pagebanner{
    height: 200px;
  }

  .moving-box {
    margin-bottom: 50px;
  }

  .moving-box:before {
    left: 0;
  }

  .service-listing .pl-15.vc_column_container>.vc_column-inner {
    padding: 0 15px !important;
  }

  .service-listing ul li {
    margin: 10px 0;
  }

}

/*****************************/
/*        Morph Menu         */
/*****************************/
.morph-header-bar,
.morph-logo-wrapper {
  display:none !important;
}

.morph-menu-wrapper {
  top: 100px !important;
}

.morph-menu-wrapper ul li a {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}
.morph-menu-wrapper ul li.current-menu-item a {
  color: #b69d74 !important;
}

.morph-main-menu-button-wrapper {
  top: 30px !important;
  left: 15px !important;
}

.morph-menu-button-right {
  right: 30px !important;
}

.menu-toggle-div {
  display: block;
  cursor: pointer;
  margin-top: -58px;
  margin-left: 10px;
}

@media (min-width: 992px) {
  .morph-main-menu-button-wrapper,
  .menu-toggle-div {
    display:none !important;
  }
}

@media (max-width: 991px) {
  .morph-heading-overlay,
  .morph-heading-wrapper,
  .morph-heading-image,
  .morph-heading-inner {
    height: 0 !important;
    border: 0 !important;
  }
}

@media (max-width: 767px){
  .morph-menu-button-right{
    right: 20px !important;
    top: 15px !important;
  }
}

/*****************************/
/*          Slick            */
/*****************************/
.slick-next{
  right: 0;
}
.slick-prev{
  left: 0;
}

/*****************************/
/*      VC Custom Class      */
/*****************************/
.visual-wrapper > .vc_row {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.vc_row.vc_row-no-padding .vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner {
  padding-top: 0 !important;
}

.visual-wrapper > .vc_row.p-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.visual-wrapper > .vc_row.pt-0 {
  padding-top: 0 !important;
}
.visual-wrapper > .vc_row.pb-0 {
  padding-bottom: 0 !important;
}

.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid>li{
  margin-bottom: 0 !important;
}

/* .wpb_single_image{
  margin-bottom: 10px !important;
} */

.wpb_single_image .vc_figure-caption {
  display: none !important;
}

@media (max-width: 767px){
  .visual-wrapper > .vc_row{
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .vc_row.reverse-md{
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

}

/*****************************/
/*      Gravity Form        */
/*****************************/

.gfield.w-100 input{
  width: 100% !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper textarea {
  border: 3px solid #b69d74 !important;
  padding: 12px 15px !important;
  font-size: 1.111em;
  font-weight: 600;
  color: #b69d74 !important;
  background: transparent;
}

.gform_wrapper textarea {
  margin-top: 10px;
  height: 195px !important;
}

.gform_wrapper ::-webkit-input-placeholder { /* Edge */
  color: #b69d74;
}

.gform_wrapper :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b69d74;
}

.gform_wrapper ::placeholder {
  color: #b69d74;
}

.gform_wrapper ul li.gfield {
  margin-top: 20px !important;
  padding: 0 8px !important;
  position: relative;
}

.gform_wrapper div.validation_error{
  border: none !important;
  background-color: #f8d7da;
  border-color: #f5c6cb
}

.gform_wrapper li.gfield.gfield_error{
  border: none !important;
  background: none !important;
}

.gform_wrapper li.gfield_error input[type="text"],
.gform_wrapper li.gfield_error textarea{
  border: 1px solid #790000 !important;
}

.gform_wrapper li.gfield_error .gform_fileupload_multifile .gform_drop_area{
  border: 1px dashed #790000 !important;
}

.gform_wrapper .field_description_below .gfield_description{
  padding-top: 5px !important;
  position: absolute;
  bottom: -23px;
}



.gform_wrapper .gform_fileupload_multifile .gform_drop_area{
  margin-bottom: 0 !important;
}

.gform_confirmation_wrapper {
  margin: 30px 0;
  text-align: center;
  padding: 20px 0;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.gform_wrapper .top_label .gfield_label {
  display: none !important;
}

.ginput_recaptcha > div{
  margin:0 auto;
}

@media only screen and (min-width: 641px) {
  .gform_wrapper form {
    margin-top: -20px !important;
  }

  .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half,
  .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {
    max-width: 50% !important;
  }
  .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half {
    margin-right: 0 !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 640px) {
  .gform_wrapper ul li.gfield {
    padding: 0 !important;
  }
}

/*****************************/
/*    Extra Custom Class     */
/*****************************/
.d-table-v{
  display: table;
  height: 100%;
  width: 100%;
}

.d-table-cell-v{
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

table{
  border: 1px solid #4c0404;
  margin-bottom: 1em;
}

table tr td {
  padding: 5px;
}

.no-results.not-found{
  margin: 20px 0
}

.social-sharing ul {
  display: inline-block;
}
.social-sharing ul li{
  display: inline-block;
  margin: 0 5px;
}

.btn {
  display: inline;
  position: relative;
}

.btn p {
  text-align: left;
}

.btn a,
.gform_footer.top_label {
  background: #b69d74;
  color: #FFF;
  font-weight: 600;
  font-size: 1.111em !important;
  padding: 15px 25px;
  transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  cursor: pointer !important;
  border: none;
}


/* .gform_footer input[type=submit] {
  min-width: 140px;
  display: block !important;
  margin: 0 auto !important;
} */

.gform_footer.top_label {
  width: 145px !important;
  margin: 25px auto 0 !important;
  height: 55px !important;
  padding: 0 !important;
  display: block;
  cursor: pointer;
}

.gform_footer.top_label input {
  background: transparent;
  border: none;
  outline: none;
  width: 100% !important;
  height: 100% !important;
  font-weight: 600;
  font-size: 1.111em !important;
  color: #FFF;
  cursor: pointer !important;
}

.btn a:before,
.gform_footer.top_label:before {
  background-color: #4c0404;
}

.btn a:after,
.gform_footer.top_label:after {
  background-color: #4c0404;
}

.btn a:hover,
.gform_footer.top_label:hover{
  border-color: #4c0404 !important;
}

.max-790 {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px){
  .social-sharing {
    text-align: left !important;
    margin-top: 10px;
  }
}

@media (max-width: 640px){
  .gform_footer.top_label {
    width: 100% !important;
  }
}


/*****************************/
/*        Custom Page        */
/*****************************/

/*** Home Page ***/
body.home {
  background: #4c0404;
}

.home-banner.vc_row.vc_row-no-padding .vc_column-inner{
  padding-top: 30px !important;
}

.home-banner .btn p{
  float: left;
}

.home-banner .btn a {
  font-size: 1.111em;
  font-weight: 600;
  padding: 20px;
  border: 3px solid #b69d74;
  background: none;
  color: #FFF;
}

.home-banner .btn a:before {
  background-color: #b69d74;
}

.home-banner .btn a:after {
  background-color: #b69d74;
}

.home-banner .btn i {
  font-size: 14px;
  display: inline-block;
  position: relative;
  top: -1px;
  left: 5px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.home-banner .btn a:hover i {
  left: 0;
}

@media (min-width: 1441px) {
  .home-banner .wrapper {
    padding-top: 3rem !important;
  }
}

@media (max-width: 1440px) {
  .home-banner .wrapper {
    padding-top: 0 !important;
  }
}

@media (max-width:991px) {
  .home-banner .banner-img {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media (max-width:767px) {
  .home-banner .banner-img {
    position: relative;
  }

  .home-banner.vc_row.vc_row-no-padding .vc_column-inner {
    padding-top: 0 !important;
  }

  .home-banner .wpb_single_image.vc_align_right {
    text-align: center !important;
  }
}

/*** Services ***/

.contact-info i.fa-map-marker,
.contact-info i.fa-phone {
  font-size: 19px;
}

.contact-info ul {
  margin: 0;
}

.contact-info ul li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  font-size: 1.042em;
  color: #b69d74;
  font-weight: 600;
  margin: 15px 0;
}

.contact-info ul li i {
  position: absolute;
  left: 0;
  top: 14px;
}

@media (max-width: 767px) {
  .contact-info ul li {
    margin: 7px 0;
  }
}

/*** FAQ ***/
/* Accordion styles */
.faq-tabs {
  overflow: hidden;
}
.faq-tabs .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}

.faq-tabs .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #b69d74;
  color: #4c0404;
  -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;
  margin-top: 30px;
}

.faq-tabs .tab:first-child .tab-label {
  margin-top: 0;
}


/* Icon */
.faq-tabs .tab-label:hover {
  background: #b69d74;
  color: #FFF;
}

.faq-tabs .tab-label:hover::after {
  color: #FFF;
}

.faq-tabs .tab-label::after {
  font-family: "FontAwesome";
  content: "\f067";
  width: 1em;
  height: 1em;
  text-align: center;
  -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;
  color: #b69d74;
}

.faq-tabs .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #4c0404;
  background: white;
  -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;
  font-size: 0.972em;
}

.faq-tabs .tab-content p {
  margin-bottom: 1em;
}
.faq-tabs .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #b69d74;
  cursor: pointer;
}
.faq-tabs .tab-close:hover {
  background: #b69d74;
}

.faq-tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-tabs input:checked + .tab-label {
  background: #b69d74;
  color: #FFF;
}
.faq-tabs input:checked + .tab-label::after {
  font-family: "FontAwesome";
  content: "\f068";
  color: #FFF;
}
.faq-tabs input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em 1em 15px 1em;
}

@media (max-width: 767px) {
  .faq-tabs .tab-label {
    margin-top: 20px;
  }
}

/*** Contact Us ***/

.gmap iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; /* IE 6-9 */
}

/*****************************/
/*        Animation         */
/*****************************/
@keyframes stickySlideDown {
  0% {
      opacity: 0.7;
      transform: translateY(-100%);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes move-box-animation {
  0% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(30px, 0);
  }
  100% {
      transform: translate(0, 0);
  }
}






.announcement {
    background: #e8c381;
    width: 100%;
    /*padding: 15px 45px;*/
    text-align: center;

}

.announcement .slick-slide
{
    color:#4c0404;
}

.announcement-btn
{
    background-color:#4c0404;
    color:#fff;
    margin-left:50px;
    padding:6px 15px;
    border-radius:6px;
    border:2px solid #fff;
    display:inline-block;
    max-height: 49px;
    min-width: 150px;
}

.announcement .announcementslider{padding:15px 45px;}

@media (min-width: 768px) {


.announcement .slick-track {
  display: flex;
}
.announcement .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
}


@media (max-width: 767px) {
.announcement .announcementslider {

    padding:5px;
}
   .announcement-btn
{
    background-color:#4c0404;
    color:#fff;
    padding:6px 15px;
    border-radius:6px;
    border:2px solid #fff;
    display:inline-block;
    margin-top:20px;
    width:50%;
    margin-left:0px;
}

.announcement .slick-slide {
    text-align: center;
}

.announcement .slick-slide::before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

  .m_br
  {
      display:block;
  }

}

.notopheader
{
    top:0px !important;
}

.announcement-btn:hover
{
    background-color: #b69d74;
    color:#4c0404;
}
.announcement-btn:before
 {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #fff;
}


.announcement-btn:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #fff;
}


