@charset "UTF-8";

.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.fade-up__item {
  opacity: 0;
}

/*
* Body
*/

body {
  overflow-x: hidden;
  margin: 0;
}

body.ovrflw-hddn {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

*:focus {
  outline: none;
}

#app {
  min-height: 100vh;
}

.pointer-events-none {
  pointer-events: none;
}

/*
* Colors for Fonts and Backgrounds
* clr : uses for text colors
*/

.clr--orange {
  color: #E0AF3C;
}

.clr--green {
  color: #657008;
}

.clr--navy-blue {
  color: #2C4043;
}

.clr--maroon {
  color: #A74424;
}

.clr--gray {
  color: #2d2d2d;
}

.clr--light-gray {
  color: #BFBFBF;
}

.clr--black {
  color: #000000;
}

.clr--white {
  color: #FFFFFF;
}

/*
* Typography
* frm : frame
*/

.frm-title {
  font-size: 3.6em;
  line-height: 1em;
  font-family: "D-Din-Bold";
}

.frm-title.small {
  font-size: 2.6em;
}

.frm-title.x-small {
  font-size: 1.6em;
}

.frm-header {
  font-family: "D-Din-Regular";
  font-size: 1.2em;
  line-height: 1.5em;
}

.frm-header.bold {
  font-family: "D-Din-Bold";
}

.frm-description * {
  font-family: "WorkSans-Regular";
  font-size: 15px;
  line-height: 1.5em;
}

.frm-description strong {
  font-family: "WorkSans-Bold";
}

.frm-lbl__smll {
  font-family: "WorkSans-Regular";
  font-size: 12px;
  line-height: 1.5em;
}

.frm-lbl__smll strong,
.frm-lbl__smll b {
  font-family: "WorkSans-Bold";
}

p,
a {
  font-family: "WorkSans-Regular";
  line-height: 1.5em;
  font-size: 15px;
}

/*
* Frame Container
* frm-cntnr : frame contianer
*/

.frm-cntnr {
  position: relative;
  margin: auto;
  height: 100%;
  max-width: 1400px;
  box-sizing: border-box;
}

.frm-cntnr.align-r {
  margin: 0;
  margin-left: auto;
}

.frm-cntnr.align-l {
  margin: 0;
  margin-right: auto;
}

/** 
 * Frame Background
 * frm-bckgrnd : frame background
 */

.frm-bckgrnd {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.frm-bckgrnd.bring-front {
  z-index: -1;
}

.frm-bckgrnd.bring-back {
  z-index: -2;
}

.frm-bckgrnd.size-cover {
  background-size: cover;
}

.frm-bckgrnd.size-contain {
  background-size: contain;
}

.frm-bckgrnd.align-r {
  right: 0;
}

.frm-bckgrnd.align-l {
  left: 0;
}

.frm-bckgrnd.align-c {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.frm-bckgrnd.align-t {
  background-position: top center;
}

/** 
 * Button
 * frm-btn : frame button
 */

.frm-btn {
  text-align: center;
  display: inline-block;
  min-width: 200px;
  padding: 15px 15px;
  border-radius: 5px;
  font-size: 1.2em;
  line-height: 1em;
  font-family: "D-Din-Regular";
  border: none;
  text-decoration: none !important;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: bold;
}

.frm-btn.green {
  background: #657008;
  color: #FFFFFF;
}

.frm-btn.green:hover {
  background: #474E09;
}

.frm-btn.orange {
  background: #E0AF3C;
  color: #FFFFFF;
}

.frm-btn.orange:hover {
  background: #B58B2A;
}

.frm-btn.disabled {
  cursor: auto;
  background: #BFBFBF;
  color: #888888;
}

.frm-btn.gray {
  background: #777777;
  color: #FFFFFF;
}

.frm-btn.gray:hover {
  background: #4a4a4a;
}

.frm-btn.facebook {
  background: #44609d;
  color: #FFFFFF;
}

.frm-btn.facebook:hover {
  background: #2b406d;
}

.frm-btn.google {
  background: #ea4335;
  color: #FFFFFF;
}

.frm-btn.google:hover {
  background: #bb382d;
}

/** 
 * Input, Textarea, Select
 * frm-inpt : frame input
 */

.frm-inpt {
  position: relative;
}

.frm-inpt input,
.frm-inpt select,
.frm-inpt textarea {
  font-size: 1.2em;
  line-height: 1.5em;
  padding: 10px;
  height: 50px;
  min-height: 50px;
  min-width: 280px;
  border: none;
  color: #000000;
  background: #FFFFFF;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 0px 0px 1px #B3B3B3;
  font-family: "D-Din-Regular";
}

.frm-inpt input:focus,
.frm-inpt select:focus,
.frm-inpt textarea:focus {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.frm-inpt input::-webkit-input-placeholder, .frm-inpt select::-webkit-input-placeholder, .frm-inpt textarea::-webkit-input-placeholder {
  color: #000000;
}

.frm-inpt input::-moz-placeholder, .frm-inpt select::-moz-placeholder, .frm-inpt textarea::-moz-placeholder {
  color: #000000;
}

.frm-inpt input:-ms-input-placeholder, .frm-inpt select:-ms-input-placeholder, .frm-inpt textarea:-ms-input-placeholder {
  color: #000000;
}

.frm-inpt input::-ms-input-placeholder, .frm-inpt select::-ms-input-placeholder, .frm-inpt textarea::-ms-input-placeholder {
  color: #000000;
}

.frm-inpt input::placeholder,
.frm-inpt select::placeholder,
.frm-inpt textarea::placeholder {
  color: #000000;
}

/*
* Header Frame
* hdr-frm : header frame
*/

.hdr-frm {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hdr-frm .hdr-frm__nav-col {
  width: 14.2%;
  padding: 15px 0px;
}

.hdr-frm .hdr-frm__nav-col .hdr-frm__nav-link {
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 15px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.65);
}

.hdr-frm .hdr-frm__nav-col .hdr-frm__nav-link:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -7px;
  width: 100%;
  height: 4px;
  opacity: 0;
  border-radius: 5px;
  background: #657008;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hdr-frm .hdr-frm__nav-col .hdr-frm__nav-link:hover,
.hdr-frm .hdr-frm__nav-col .hdr-frm__nav-link.active {
  color: #E0AF3C;
  text-shadow: none;
}

.hdr-frm .hdr-frm__nav-col .hdr-frm__nav-link:hover:after,
.hdr-frm .hdr-frm__nav-col .hdr-frm__nav-link.active:after {
  opacity: 1;
}

.hdr-frm .hdr-frm__nav-col .hdr-frm__nav-link-img {
  max-width: 18px;
  margin-right: 5px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.hdr-frm .hdr-frm__nav-col .hdr-frm__nav-logo {
  width: auto;
  height: 60px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hdr-frm .hdr-frm__nav-col .frm-btn {
  min-width: 100%;
}

.hdr-frm.scroll {
  background: #FFFFFF;
  box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, 0.08);
}

.hdr-frm.scroll .hdr-frm__nav-logo {
  height: 45px;
}

.hdr-frm.scroll .hdr-frm__nav-link-img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}

.hdr-frm.scroll .hdr-frm__nav-link {
  color: #2d2d2d;
  text-shadow: none;
}

.hdr-frm.active {
  background: #FFFFFF !important;
  box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, 0.08);
}

.hdr-frm.active .hdr-frm__nav-link {
  color: #2d2d2d !important;
  text-shadow: none !important;
}

.hdr-frm.active .hdr-frm__nav-link.active {
  color: #657008 !important;
}

.hdr-frm.active .hdr-frm__nav-link-img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}

/*
* Footer Frame
* ftr-frm : footer frame
*/

.ftr-frm {
  position: relative;
  width: 100%;
  padding: 30px 0px;
  background: #E0AF3C;
}

.ftr-frm p {
  margin-bottom: 0px !important;
}

.ftr-frm .frm-cntnr__nav-logo {
  width: auto;
  height: 60px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.ftr-frm .frm-cntnr__nav-link {
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.ftr-frm .frm-cntnr__nav-link.bold {
  font-family: "WorkSans-Bold";
}

.ftr-frm .frm-cntnr__nav-link:hover {
  color: #657008;
}

.ftr-frm .ftr-frm_img {
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  opacity: 1;
  cursor: pointer;
}

.ftr-frm .ftr-frm_img:hover {
  opacity: 0.5;
}

.ftr-frm .ftr-frm_img img {
  max-width: 18px;
  margin: 5px;
}

.ftr-frm .ftr-frm_img.big img {
  max-width: 22px;
}

/*
* General Slider
* gnrl-frm--sldr : general frame slider
*/

.gnrl-frm--sldr__container .gnrl-frm--sldr {
  margin-bottom: 0px;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-next,
.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-prev {
  position: absolute;
  z-index: 2;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-next:before,
.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-prev:before {
  display: none;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-next {
  top: 0px;
  bottom: 0px;
  right: 5%;
  margin: auto;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-next img {
  position: absolute;
  right: -5px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: auto;
  height: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-next img:hover {
  opacity: 0.5;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-prev {
  top: 0px;
  bottom: 0px;
  left: 5%;
  margin: auto;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-prev img {
  position: absolute;
  left: -5px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: auto;
  height: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-prev img:hover {
  opacity: 0.5;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr .slick-dots {
  bottom: 20%;
  z-index: 2;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr li {
  margin: 2px 4px;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr li:before {
  visibility: hidden;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr li.slick-active button:before {
  color: #657008;
  background: #657008;
  opacity: 1;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr li button:before {
  position: absolute;
  top: 3px;
  left: 2px;
  content: "\2022";
  width: 10px;
  height: 10px;
  font-family: "slick";
  font-size: 0px;
  line-height: 20px;
  text-align: center;
  color: transparent;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr li:only-child {
  display: none;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr__item {
  position: relative;
  width: 100%;
  height: 100vh;
}

.gnrl-frm--sldr__container .gnrl-frm--sldr__item .frm-title {
  max-width: 500px;
  margin: auto;
  margin-bottom: 40px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.gnrl-frm--sldr__container .gnrl-frm--sldr__item .frm-header {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

/*
* General Remodal
* gnrl-rmdl : general remodal
*/

#gnrl-rmdl .gnrl-rmdl__img-icon {
  max-width: 75px;
  margin: auto;
  margin-bottom: 20px;
}

#gnrl-rmdl .frm-description {
  height: 300px;
  padding-right: 10px;
  overflow-y: auto;
}

#gnrl-rmdl .frm-description.no-height {
  height: auto;
  padding-right: 0px;
}

#gnrl-rmdl .frm-description.custom-description {
  height: 400px;
  margin-top: 14%;
  padding-left: 5%;
}

#gnrl-rmdl .gnrl-rmdl__close-btn {
  position: absolute;
  top: 8%;
  right: 5%;
  border: none;
  padding: 0px;
  z-index: 2;
  background: transparent;
}

#gnrl-rmdl .gnrl-rmdl__close-btn .gnrl-rmdl__close-btn-img {
  width: auto;
  height: 40px;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

#gnrl-rmdl .gnrl-rmdl__close-btn .gnrl-rmdl__close-btn-img:hover {
  opacity: 0.5;
}

#gnrl-rmdl .gnrl-rmdl__btn-holder {
  height: 400px;
  padding-right: 10px;
  overflow-y: auto;
  border-right: 1px solid #BFBFBF;
}

#gnrl-rmdl .gnrl-rmdl__btn-holder .gnrl-rmdl__btn {
  font-family: "D-Din-Bold";
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.5em;
  color: #BFBFBF;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

#gnrl-rmdl .gnrl-rmdl__btn-holder .gnrl-rmdl__btn:hover {
  color: #2d2d2d;
}

#gnrl-rmdl .gnrl-rmdl__btn-holder .gnrl-rmdl__btn.active {
  color: #657008;
}

.remodal.custom-width {
  max-width: 1000px !important;
}

.remodal.custom-width__small {
  max-width: 350px !important;
  border-radius: 10px;
  padding: 30px 0px;
}

/*
* General Scroll
* gnrl-scrll : general scroll
*/

.gnrl-scrll {
  /* Track */
  /* Handle */
}

.gnrl-scrll::-webkit-scrollbar {
  width: 8px;
  height: 0px;
}

.gnrl-scrll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
  overflow: hidden;
}

.gnrl-scrll::-webkit-scrollbar-thumb {
  background: #E0AF3C;
}

.error-show {
  color: #f12727;
}

/*
* Loading Screen
* ldng-scrn : loading screen
*/

.ldng-scrn {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  z-index: 99999;
  background: #FFFFFF;
}

.ldng-scrn .loader,
.ldng-scrn .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.ldng-scrn .loader {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 41vh;
  margin: auto;
  font-size: 6px;
  text-indent: -9999em;
  border-top: 1.1em solid #E0AF3C;
  border-right: 1.1em solid #657008;
  border-bottom: 1.1em solid #657008;
  border-left: 1.1em solid #657008;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ldng-scrn .ldng-scrn__text {
  position: absolute;
  text-align: center;
  top: 52vh;
  left: 0px;
  right: 0px;
  margin: auto;
}

.ldng-scrn .ldng-scrn__text .frm-header {
  font-weight: bold;
  color: #E0AF3C;
}

/*
* Vertical
*/

.vertical-parent {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
}

.vertical-align {
  display: table-cell;
  vertical-align: middle;
}

.vertical-align.align-t {
  vertical-align: top;
}

.vertical-align.align-b {
  vertical-align: bottom;
}

/*
* Inline
*/

.inlineBlock-parent > * {
  display: inline-block;
  vertical-align: middle;
}

.inlineBlock-parent > *.align-t {
  vertical-align: top;
}

.inlineBlock-parent > *.align-b {
  vertical-align: bottom;
}

/*
* Text Align
*/

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

.align-c {
  text-align: center;
}

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

/*
* Margin
*/

.margin-a {
  margin: auto;
}

.margin-l-a {
  margin-left: auto;
}

.s-margin {
  margin: 10px;
}

.m-margin {
  margin: 20px;
}

.l-margin {
  margin: 40px;
}

.s-margin-l {
  margin-left: 10px;
}

.m-margin-l {
  margin-left: 20px;
}

.l-margin-l {
  margin-left: 40px;
}

.s-margin-r {
  margin-right: 10px;
}

.m-margin-r {
  margin-right: 20px;
}

.l-margin-r {
  margin-right: 40px;
}

.s-margin-lr {
  margin: 0 10px;
}

.m-margin-lr {
  margin: 0 20px;
}

.l-margin-lr {
  margin: 0 40px;
}

.s-margin-t {
  margin-top: 10px;
}

.m-margin-t {
  margin-top: 20px;
}

.l-margin-t {
  margin-top: 40px;
}

.s-margin-b {
  margin-bottom: 10px;
}

.m-margin-b {
  margin-bottom: 20px;
}

.l-margin-b {
  margin-bottom: 40px;
}

.s-margin-tb {
  margin: 10px 0;
}

.m-margin-tb {
  margin: 20px 0;
}

.l-margin-tb {
  margin: 40px 0;
}

/*
* Width
*/

.width--5 {
  width: 5%;
}

.width--10 {
  width: 10%;
}

.width--15 {
  width: 15%;
}

.width--20 {
  width: 20%;
}

.width--25 {
  width: 25%;
}

.width--30 {
  width: 30%;
}

.width--33 {
  width: 33.33%;
}

.width--35 {
  width: 35%;
}

.width--40 {
  width: 40%;
}

.width--45 {
  width: 45%;
}

.width--50 {
  width: 50%;
}

.width--55 {
  width: 55%;
}

.width--60 {
  width: 60%;
}

.width--65 {
  width: 65%;
}

.width--70 {
  width: 70%;
}

.width--75 {
  width: 75%;
}

.width--80 {
  width: 80%;
}

.width--85 {
  width: 85%;
}

.width--90 {
  width: 90%;
}

.width--95 {
  width: 95%;
}

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

/*
* Home Frame
* hm-frm : home frame
*/

.hm-frm2 {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #657008;
}

.hm-frm2 .hm-frm2__tabbing {
  max-width: 500px;
  margin: auto;
  margin-bottom: 20px;
}

.hm-frm2 .hm-frm2__tabbing .hm-frm2__tabbing-btn {
  position: relative;
  line-height: 1.5em;
  margin: 20px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.2em;
  font-family: "D-Din-Regular";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hm-frm2 .hm-frm2__tabbing .hm-frm2__tabbing-btn:hover {
  opacity: 0.5;
}

.hm-frm2 .hm-frm2__tabbing .hm-frm2__tabbing-btn.active {
  font-family: "D-Din-Bold";
}

.hm-frm2 .hm-frm2__tabbing .hm-frm2__tabbing-btn.active:after {
  position: absolute;
  content: "";
  width: -webkit-fill-available;
  height: 4px;
  border-radius: 5px;
  left: 0px;
  right: 0px;
  bottom: -5px;
  margin: auto;
  background: #E0AF3C;
}

.hm-frm2 .hm-frm2__tabbing-content {
  max-width: 700px;
  margin: auto;
  height: 200px;
  display: none;
}

.hm-frm3 {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #2d2d2d;
}

.hm-frm3 .hm-frm3__img {
  width: auto;
  height: 400px;
}

.hm-frm4 {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #A74424;
}

.hm-frm4 .hm-frm4__img {
  width: auto;
  height: 400px;
}

.hm-frm6 {
  position: relative;
  height: 100vh;
  width: 100%;
  padding-top: 40px;
}

.hm-frm6 .frm-inpt input,
.hm-frm6 .frm-inpt select,
.hm-frm6 .frm-inpt textarea {
  width: 100%;
}

.hm-frm6 .cntct-frm1__img {
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  opacity: 1;
  cursor: pointer;
}

.hm-frm6 .cntct-frm1__img:hover {
  opacity: 0.5;
}

.hm-frm6 .cntct-frm1__img img {
  max-width: 18px;
  margin: 5px;
}

.hm-frm6 .cntct-frm1__img img:nth-child(1n) {
  margin-left: 0px;
}

.hm-frm6 .cntct-frm1__img.big img {
  max-width: 22px;
}

/*
* About Frame
* abt-frm : about frame
*/

.abt-frm1 {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 40px;
}

.abt-frm1 .abt-frm1__container {
  height: auto;
  padding: 40px 0px;
  background: rgba(0, 0, 0, 0.5);
}

.abt-frm1 .abt-frm1__container .frm-description {
  overflow-y: auto;
  padding-right: 5px;
  height: 30vh;
}

.abt-frm2 {
  position: relative;
  padding: 10vh 0vh;
  width: 100%;
  background: #657008;
}

.abt-frm2 .abt-frm2__tabbing {
  max-width: 500px;
  margin: auto;
  margin-bottom: 20px;
}

.abt-frm2 .abt-frm2__tabbing .abt-frm2__tabbing-btn {
  position: relative;
  line-height: 1.5em;
  margin: 20px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.2em;
  font-family: "D-Din-Regular";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.abt-frm2 .abt-frm2__tabbing .abt-frm2__tabbing-btn:hover {
  opacity: 0.5;
}

.abt-frm2 .abt-frm2__tabbing .abt-frm2__tabbing-btn.active {
  font-family: "D-Din-Bold";
}

.abt-frm2 .abt-frm2__tabbing .abt-frm2__tabbing-btn.active:after {
  position: absolute;
  content: "";
  width: -webkit-fill-available;
  height: 4px;
  border-radius: 5px;
  left: 0px;
  right: 0px;
  bottom: -5px;
  margin: auto;
  background: #E0AF3C;
}

.abt-frm2 .abt-frm2__tabbing-content {
  width: 100%;
  margin: auto;
  display: none;
}

.abt-frm2 .abt-frm2__tabbing-slider {
  width: 100%;
  margin: auto;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-next,
.abt-frm2 .abt-frm2__tabbing-slider .slick-prev {
  position: absolute;
  z-index: 2;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-next:before,
.abt-frm2 .abt-frm2__tabbing-slider .slick-prev:before {
  display: none;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-next {
  top: 0px;
  bottom: 0px;
  right: -5%;
  margin: auto;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-next img {
  position: absolute;
  right: -5px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: auto;
  height: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-next img:hover {
  opacity: 0.5;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-prev {
  top: 0px;
  bottom: 0px;
  left: -5%;
  margin: auto;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-prev img {
  position: absolute;
  left: -5px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: auto;
  height: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-prev img:hover {
  opacity: 0.5;
}

.abt-frm2 .abt-frm2__tabbing-slider .slick-dots {
  bottom: 20%;
  z-index: 2;
}

.abt-frm2 .abt-frm2__tabbing-slider li {
  margin: 2px 4px;
}

.abt-frm2 .abt-frm2__tabbing-slider li:before {
  visibility: hidden;
}

.abt-frm2 .abt-frm2__tabbing-slider li.slick-active button:before {
  color: #E0AF3C;
  background: #E0AF3C;
  opacity: 1;
}

.abt-frm2 .abt-frm2__tabbing-slider li button:before {
  position: absolute;
  top: 3px;
  left: 2px;
  content: "\2022";
  width: 10px;
  height: 10px;
  font-family: "slick";
  font-size: 0px;
  line-height: 20px;
  text-align: center;
  color: transparent;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
}

.abt-frm2 .abt-frm2__tabbing-slider li:only-child {
  display: none;
}

.abt-frm2 .abt-frm2__tabbing-slider-items {
  position: relative;
  width: 33.33%;
  text-align: center;
}

.abt-frm2 .abt-frm2__tabbing-slider-items .frm-header {
  width: 85%;
  margin: auto;
  margin-bottom: 20px;
}

.abt-frm2 .abt-frm2__tabbing-slider-items .frm-description {
  overflow-y: auto;
  height: 120px;
  width: 90%;
  margin: auto;
  padding-right: 5px;
}

.abt-frm2 .abt-frm2__tabbing-slider-items .abt-frm2__tabbing-slider-img {
  position: relative;
  width: 175px;
  height: 175px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 100%;
}

.abt-frm3 .abt-frm3__item {
  position: relative;
  width: 33.33%;
  height: 70vh;
  text-align: center;
}

.abt-frm3 .abt-frm3__item .abt-frm3__item-title {
  opacity: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.abt-frm3 .abt-frm3__item .abt-frm3__item-title-small,
.abt-frm3 .abt-frm3__item .abt-frm3__item-desc {
  opacity: 0;
  -webkit-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
}

.abt-frm3 .abt-frm3__item .abt-frm3__item-desc {
  position: relative;
  overflow-y: auto;
}

.abt-frm3 .abt-frm3__item:hover .abt-frm3__item-title {
  opacity: 0;
}

.abt-frm3 .abt-frm3__item:hover .abt-frm3__item-title-small,
.abt-frm3 .abt-frm3__item:hover .abt-frm3__item-desc {
  opacity: 1;
}

.abt-frm3 .abt-frm3__item:hover .abt-frm3__item-overlay {
  opacity: 1;
}

.abt-frm3 .abt-frm3__item-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*
* Destinations Frame
* dstntns-frm : destinations frame
*/

.dstntns-frm1 {
  position: relative;
  width: 100%;
  margin-top: 40px;
  background: #FFFFFF;
}

.dstntns-frm1 .dstntns-frm1__col {
  height: 100vh;
}

.dstntns-frm1 .dstntns-frm1__bgOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.dstntns-frm1 .dstntns-frm1__slider-item {
  position: relative;
  width: 100%;
  height: 100vh;
  border: none !important;
}

.dstntns-frm1 .dstntns-frm1__slider-item-info-holder {
  height: 100%;
}

.dstntns-frm1 .dstntns-frm1__slider-item-info {
  position: relative;
  z-index: 1;
  margin-bottom: 10vh;
}

.dstntns-frm1 .dstntns-frm1__slider-item-info .frm-title,
.dstntns-frm1 .dstntns-frm1__slider-item-info .frm-description * {
  -webkit-transform: translateX(0px) translateY(0px) !important;
          transform: translateX(0px) translateY(0px) !important;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.dstntns-frm1 .dstntns-frm1__slider-item-info .frm-description {
  width: 50%;
}

.dstntns-frm1 .dstntns-frm1__col-inner-holder {
  position: relative;
  height: 100%;
}

.dstntns-frm1 .dstntns-frm1__search-holder {
  padding-top: 20vh;
}

.dstntns-frm1 .dstntns-frm1__search button {
  position: absolute;
  padding: 0px 10px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  border: none;
  background: transparent;
  cursor: pointer;
}

.dstntns-frm1 .dstntns-frm1__search img {
  max-width: 18px;
}

.dstntns-frm1 .dstntns-frm1__slider-thumbnail-holder {
  position: absolute;
  width: 135%;
  right: 0%;
  bottom: 5vh;
}

.dstntns-frm1 .dstntns-frm1__slider-thumbnail-item {
  position: relative;
  width: 28%;
  margin-right: 15px;
  margin-left: 15px;
  cursor: pointer;
  z-index: 2;
}

.dstntns-frm1 .dstntns-frm1__slider-thumbnail-item:hover .frm-bckgrnd:before,
.dstntns-frm1 .dstntns-frm1__slider-thumbnail-item.active .frm-bckgrnd:before {
  height: 0%;
}

.dstntns-frm1 .dstntns-frm1__slider-thumbnail-item.active .frm-header {
  font-weight: bolder;
}

.dstntns-frm1 .dstntns-frm1__slider-thumbnail-item .frm-header {
  margin-bottom: 0px !important;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.dstntns-frm1 .dstntns-frm1__slider-thumbnail-item-img {
  position: relative;
  width: 100%;
  height: 45vh;
  background: #FFFFFF;
  box-shadow: 0 11px 7px -7px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.dstntns-frm1 .dstntns-frm1__slider-thumbnail-item-img .frm-bckgrnd:before {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.45);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.dstntns-frm1 .dstntns-frm1__slider,
.dstntns-frm1 .dstntns-frm1__slider-thumbnail {
  margin-bottom: 0px;
}

.dstntns-frm1__slider-thumbnail .slick-next {
  top: 0px;
  bottom: 0px;
  right: -3%;
  margin: auto;
  opacity: 1;
}

.dstntns-frm1__slider-thumbnail .slick-next::before {
  content: "";
  border-right: 5px solid #E0AF3C;
  border-top: 5px solid #E0AF3C;
  width: 18px;
  height: 18px;
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 5px;
}

.dstntns-frm1__slider-thumbnail .slick-next img {
  display: none;
}

.dstntns-frm1__slider-thumbnail .slick-prev {
  top: 0px;
  bottom: 0px;
  left: -3%;
  margin: auto;
  opacity: 1;
}

.dstntns-frm1__slider-thumbnail .slick-prev::before {
  content: "";
  border-right: 5px solid white;
  border-top: 5px solid white;
  width: 18px;
  height: 18px;
  display: block;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border-radius: 5px;
}

.dstntns-frm1__slider-thumbnail .slick-prev img {
  display: none;
}

.dstntns-inf-frm1 {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.dstntns-inf-frm1 .gnrl-frm--sldr__item .frm-title {
  margin-bottom: 10px !important;
  text-shadow: none;
  max-width: 100%;
}

.dstntns-inf-frm1 .dstntns-inf-frm1__container {
  padding: 5vh 0vh;
  background: rgba(0, 0, 0, 0.5);
}

.dstntns-inf-frm1 .dstntns-inf-frm1__container .dstntns-inf-frm1__location-img {
  max-width: 18px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: text-bottom;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.dstntns-inf-frm2 {
  position: relative;
  padding: 10vh 0vh;
}

.dstntns-inf-frm2 .dstntns-inf-frm2__btn-holder {
  height: 400px;
  padding-right: 10px;
  overflow-y: auto;
  border-right: 1px solid #BFBFBF;
}

.dstntns-inf-frm2 .dstntns-inf-frm2__btn {
  font-family: "D-Din-Bold";
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.5em;
  color: #BFBFBF;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.dstntns-inf-frm2 .dstntns-inf-frm2__btn:hover {
  color: #2d2d2d;
}

.dstntns-inf-frm2 .dstntns-inf-frm2__btn.active {
  color: #657008;
}

.dstntns-inf-frm2 .dstntns-inf-frm2__content-inner {
  position: relative;
}

.dstntns-inf-frm2 .dstntns-inf-frm2__content-inner .frm-description {
  height: 100vh;
  padding-left: 5%;
  padding-right: 10px;
  padding-bottom: 5%;
  overflow-y: auto;
}

.dstntns-inf-frm2 .dstntns-inf-frm2__content-inner .frm-description figure.image {
  text-align: center;
}

.dstntns-inf-frm2 .dstntns-inf-frm2__content-inner .frm-description iframe {
  width: 100%;
  height: 60vh;
}

/*
* Faqs Frame
* fqs-frm : faqs frame
*/

.fqs-frm1 {
  position: relative;
  margin-top: 40px;
  padding-top: 15vh;
  padding-bottom: 10vh;
  min-height: 100vh;
}

.fqs-frm1 .fqs-frm1__selection {
  border-radius: 10px;
  background: #f3f3f3;
  width: 28%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  height: 200px;
  cursor: pointer;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.fqs-frm1 .fqs-frm1__selection .frm-description * {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fqs-frm1 .fqs-frm1__selection.active,
.fqs-frm1 .fqs-frm1__selection:hover {
  background: #FFFFFF;
}

.fqs-frm1 .fqs-frm1__selection-icon {
  max-width: 50px;
  vertical-align: text-bottom;
}

.fqs-frm1 .fqs-frm1__cards {
  padding: 20px 0px;
  width: 85%;
  margin: auto;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.fqs-frm1 .fqs-frm1__cards .frm-header {
  margin-bottom: 0px !important;
}

.fqs-frm1 .fqs-frm1__cards .fqs-frm1__cards-icon {
  position: relative;
  margin: 5px;
  vertical-align: text-bottom;
  cursor: pointer;
}

.fqs-frm1 .fqs-frm1__cards .fqs-frm1__cards-icon:before {
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background: #000000;
}

.fqs-frm1 .fqs-frm1__cards .fqs-frm1__cards-icon:after {
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 18px;
  background: #000000;
}

.fqs-frm1 .fqs-frm1__cards .fqs-frm1__cards-icon.show:after {
  opacity: 0;
}

.fqs-frm1 .fqs-frm1__cards-holder {
  display: none;
}

.fqs-frm1 .fqs-frm1__cards-content {
  margin: 10px 0px;
  padding: 20px 0px;
  background: #f3f3f3;
  display: none;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description ul {
  font-size: 1em;
  width: 100%;
  padding-left: 15px;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description ol {
  font-size: 1em;
  width: 100%;
  padding-left: 15px;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description ol strong {
  font-size: 1em;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description li {
  display: list-item;
  padding-bottom: 5px;
  list-style-position: inside;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description p a {
  font-size: 0.9em;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description p p {
  font-size: 1em;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description p strong {
  font-family: "WorkSans-Bold";
  font-size: 1em;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description p strong u {
  font-family: "WorkSans-Bold";
  font-size: 1em;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description ul li li {
  font-size: 1em;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description b {
  font-family: "WorkSans-Bold";
  font-size: 1em;
}

.fqs-frm1 .fqs-frm1__cards-content .frm-description img {
  width: 100%;
}

/*
* Contact Us Frame
* cntct-frm : cntct frame
*/

.cntct-frm1 {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: 40px;
}

.cntct-frm1 .frm-inpt input,
.cntct-frm1 .frm-inpt select,
.cntct-frm1 .frm-inpt textarea {
  width: 100%;
}

.cntct-frm1 .cntct-frm1__img {
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  opacity: 1;
  cursor: pointer;
}

.cntct-frm1 .cntct-frm1__img:hover {
  opacity: 0.5;
}

.cntct-frm1 .cntct-frm1__img img {
  max-width: 18px;
  margin: 5px;
}

.cntct-frm1 .cntct-frm1__img img:nth-child(1n) {
  margin-left: 0px;
}

.cntct-frm1 .cntct-frm1__img.big img {
  max-width: 22px;
}

.cntct-frm__number {
  position: relative;
}

.cntct-frm__number::after {
  position: absolute;
  top: 12px;
  left: 10px;
  display: block;
  content: "+63";
  font-size: 1.2em;
  font-family: "D-Din-Regular";
  opacity: 0;
}

.cntct-frm__number input[name=contact_number] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cntct-frm__number input[name=contact_number]::-webkit-outer-spin-button,
.cntct-frm__number input[name=contact_number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.cntct-frm__number.focus::after,
.cntct-frm__number.active::after {
  opacity: 1;
}

.cntct-frm__number.focus input[name=contact_number],
.cntct-frm__number.active input[name=contact_number] {
  padding-left: 35px;
}

/*
* Login Frame
* lgn-frm : login frame
*/

.lgn-frm1 {
  position: relative;
  width: 100%;
  margin-top: 88px;
}

.lgn-frm1 .lgn-frm1__col {
  position: relative;
  height: 105vh;
}

.lgn-frm1 .lgn-frm1__col-header {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.lgn-frm1 .lgn-frm1__col-label {
  margin-bottom: 5vh;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.lgn-frm1 .lgn-frm1__form-title {
  position: relative;
}

.lgn-frm1 .lgn-frm1__form-title:after {
  content: "";
  position: absolute;
  width: 40px;
  bottom: -15px;
  left: 0px;
  right: 0px;
  margin: auto;
  height: 4px;
  background: #E0AF3C;
}

.lgn-frm1 .lgn-frm1__inpt input {
  width: 100%;
  min-width: 100%;
}

.lgn-frm1 .lgn-frm1__login-scl-btn {
  margin-left: 5px;
  margin-right: 5px;
}

.lgn-frm1 .lgn-frm1__sign-up-holder p {
  font-size: 16px;
  margin-bottom: 0px !important;
}

.lgn-frm1 .lgn-frm1__frgt-psswrd,
.lgn-frm1 .lgn-frm1__sign-up {
  font-family: "D-Din-Regular";
  font-size: 16px;
  line-height: 1.5em;
  color: #657008;
  border-bottom: 1px solid #657008;
  text-decoration: none;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.lgn-frm1 .lgn-frm1__frgt-psswrd:hover,
.lgn-frm1 .lgn-frm1__sign-up:hover {
  color: #474E09;
}

.lgn-frm1 .lgn-frm1__frgt-psswrd.bold,
.lgn-frm1 .lgn-frm1__sign-up.bold {
  font-family: "D-Din-Bold";
}

.lgn-frm1 .frm-btn img {
  vertical-align: text-bottom;
  max-width: 18px;
  margin-right: 10px;
}

/*
* Request Frame
* rqst-frm : request frame
*/

.rqst-frm1 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin-top: 40px;
  padding-top: 15vh;
  padding-bottom: 10vh;
}

.rqst-frm1 .rqst-frm1__steps-header {
  position: relative;
  width: 100%;
  top: 0px;
  margin-bottom: 15vh;
  background: #FFFFFF;
}

.rqst-frm1 .rqst-frm1__steps-header.scroll {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0px;
  left: 0px;
  padding-left: 7.5%;
  padding-right: 7.5%;
  height: 77px;
  padding-top: 7px;
  margin-bottom: 0vh;
  box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.rqst-frm1 .rqst-frm1__steps-header.scroll .rqst-frm1__steps-holder {
  margin-top: 0px;
}

.rqst-frm1 .rqst-frm1__steps-header.scroll .rqst-frm1__steps-col.active .rqst-frm1__steps {
  width: 35px;
  height: 35px;
}

.rqst-frm1 .rqst-frm1__steps-header.scroll .rqst-frm1__steps-col.active .rqst-frm1__steps p {
  font-size: 1.1em;
  color: #FFFFFF;
}

.rqst-frm1 .rqst-frm1__steps-header.scroll .rqst-frm1__steps-label {
  margin-top: 10px;
  font-size: 0.8em;
}

.rqst-frm1 .rqst-frm1__steps-header.scroll .rqst-frm1__breadcrumbs p {
  margin-top: 15px;
}

.rqst-frm1 .rqst-frm1__steps-header.scroll .rqst-frm1__steps-header-logo {
  opacity: 1;
  margin-top: 10px;
}

.rqst-frm1 .rqst-frm1__steps-header .rqst-frm1__steps-header-logo {
  opacity: 0;
  width: auto;
  height: 45px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.rqst-frm1 .rqst-frm1__breadcrumbs * {
  font-size: 1.1em;
  line-height: 1.5em;
  font-family: "D-Din-Regular";
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.rqst-frm1 .rqst-frm1__breadcrumbs *.active {
  color: #657008;
  border-bottom: 1px solid #657008;
}

.rqst-frm1 .rqst-frm1__breadcrumbs p {
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__steps-holder {
  position: relative;
  margin-top: 10vh;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.rqst-frm1 .rqst-frm1__steps-col {
  position: relative;
  width: 25%;
}

.rqst-frm1 .rqst-frm1__steps-col:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  top: 0px;
  left: 50%;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 0;
  background: #BFBFBF;
}

.rqst-frm1 .rqst-frm1__steps-col:last-child:before {
  width: 0%;
}

.rqst-frm1 .rqst-frm1__steps-col.active .rqst-frm1__steps {
  width: 50px;
  height: 50px;
  background: #657008;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.rqst-frm1 .rqst-frm1__steps-col.active .rqst-frm1__steps p {
  font-size: 1.6em;
  color: #FFFFFF;
}

.rqst-frm1 .rqst-frm1__steps-col.active .rqst-frm1__steps-label {
  font-family: "D-Din-Bold";
}

.rqst-frm1 .rqst-frm1__steps-col.done:before {
  background: #657008;
}

.rqst-frm1 .rqst-frm1__steps-col.done .rqst-frm1__steps {
  background: #657008;
}

.rqst-frm1 .rqst-frm1__steps-col.done .rqst-frm1__steps p {
  font-size: 1.1em;
  color: #FFFFFF;
}

.rqst-frm1 .rqst-frm1__steps-col.done .rqst-frm1__steps-label {
  font-family: "D-Din-Bold";
}

.rqst-frm1 .rqst-frm1__steps {
  position: relative;
  width: 35px;
  height: 35px;
  z-index: 2;
  margin: auto;
  border-radius: 100%;
  background: #BFBFBF;
}

.rqst-frm1 .rqst-frm1__steps p {
  color: #9e9e9e;
  font-size: 1.1em;
  margin-bottom: 0px !important;
  font-family: "D-Din-Bold" !important;
}

.rqst-frm1 .rqst-frm1__steps-label {
  position: absolute;
  margin-top: 20px;
  font-size: 1.1em;
  color: #2d2d2d;
  left: 0px;
  right: 0px;
  font-family: "D-Din-Regular";
}

.rqst-frm1 .rqst-frm1__steps-form-cards {
  border: 1px solid #BFBFBF;
  width: 395px;
  top: auto;
  padding: 20px 0px;
  display: inline-block;
  background: #FFFFFF;
}

.rqst-frm1 .rqst-frm1__steps-form-cards.scroll {
  position: fixed;
  top: 97px;
  margin-left: -12.5rem;
}

.rqst-frm1 .rqst-frm1__steps-form-cards .rqst-frm1__steps-form-cards-container {
  position: relative;
  height: 300px;
  overflow-y: auto;
  padding-right: 10px;
  padding-left: 10px;
}

.rqst-frm1 .rqst-frm1__steps-form-cards .frm-inpt input,
.rqst-frm1 .rqst-frm1__steps-form-cards .frm-inpt select,
.rqst-frm1 .rqst-frm1__steps-form-cards .frm-inpt textarea {
  min-width: 100%;
  width: 100%;
}

.rqst-frm1 .rqst-frm1__steps-form-cards .rqst-frm1__steps-form-cards-icon {
  max-width: 18px;
  margin: 5px;
  cursor: pointer;
  vertical-align: text-bottom;
  display: none;
}

.rqst-frm1 .rqst-frm1__steps-form-cards .rqst-frm1__steps-form-cards-icon.show {
  display: inline-block;
}

.rqst-frm1 .rqst-frm1__steps-form-cards .frm-btn {
  min-width: 100%;
}

.rqst-frm1 .rqst-frm1__step-1,
.rqst-frm1 .rqst-frm1__step-2,
.rqst-frm1 .rqst-frm1__step-3,
.rqst-frm1 .rqst-frm1__step-4 {
  position: relative;
  display: inline-block;
  width: 100%;
}

.rqst-frm1 .rqst-frm1__step-1-content {
  text-align: initial;
}

.rqst-frm1 .rqst-frm1__step-1-content .rqst-frm1__step-1-content-img {
  position: relative;
  width: 100%;
  height: 60vh;
}

.rqst-frm1 .rqst-frm1__step-1-content .rqst-frm1__step-1-content-icon {
  max-width: 18px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: text-bottom;
}

.rqst-frm1 .rqst-frm1__step-1-content .frm-description hr {
  border-top: 1px solid #BFBFBF;
}

.rqst-frm1 .rqst-frm1__step-1-content .frm-description iframe {
  width: 100%;
  height: 60vh;
}

.rqst-frm1 .rqst-frm1__step-2-content .frm-inpt input,
.rqst-frm1 .rqst-frm1__step-2-content .frm-inpt select,
.rqst-frm1 .rqst-frm1__step-2-content .frm-inpt textarea {
  min-width: 100%;
  width: 100%;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-col {
  width: 30.5%;
  margin-right: 4%;
  vertical-align: top;
  margin-bottom: 20px;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-col:nth-child(3n) {
  margin-right: 0px;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-card {
  border-radius: 10px;
  background: #FFFFFF;
  padding: 20px 0px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-card p {
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-card .rqst-frm1__step-3-content-card-edit-btn,
.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-card .rqst-frm1__step-3-content-card-remove-btn {
  max-width: 20px;
  margin: 5px;
  cursor: pointer;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-add-guest-holder {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-add-guest-btn {
  max-width: 28px;
  margin: 5px;
  cursor: pointer;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-add-guest-btn-label {
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-guest-card {
  display: inline-block;
  width: 100%;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-guest-card.hide {
  display: none;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-guest-form {
  display: none;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-guest-form.show {
  width: 100%;
  display: inline-block;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-guest-form .frm-inpt input,
.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-guest-form .frm-inpt select,
.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-guest-form .frm-inpt textarea {
  min-width: 100%;
  width: 100%;
}

.rqst-frm1 .rqst-frm1__step-3-content .rqst-frm1__step-3-content-guest-form .rqst-frm1__step-3-content-guest-checkbox-label {
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__step-4-content .sublabel {
  font-size: 1rem;
}

.rqst-frm1 .rqst-frm1__step-4-content .frm-inpt input,
.rqst-frm1 .rqst-frm1__step-4-content .frm-inpt select,
.rqst-frm1 .rqst-frm1__step-4-content .frm-inpt textarea {
  min-width: 100%;
  width: 100%;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox {
  width: 102%;
  max-height: 500px;
  padding: 1%;
  margin: 0 -1%;
  overflow-y: auto;
  overflow-x: hidden;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a green background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Style the checkmark/indicator */
  /* Show the checkmark when checked */
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container {
  display: block;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 4px 0px;
  border-radius: 10px;
  border: 2px solid transparent;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container.active {
  border: 2px solid #657008 !important;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container.active .frm-header {
  font-family: "D-Din-Bold" !important;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container .width--10,
.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container .width--70 {
  position: relative;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container p {
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-img {
  width: 90%;
  max-width: 200px;
  height: 90%;
  max-height: 60px;
  margin-right: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .checkmark {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container input:checked ~ .checkmark {
  background-color: #657008;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .checkmark:after,
.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .checkmark:before {
  content: "";
  position: absolute;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container .checkmark:after {
  left: -5px;
  top: -5px;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 2px solid #BFBFBF;
  border-radius: 100%;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container input:checked ~ .checkmark:after {
  border: 2px solid #657008;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-select-holder {
  width: 100%;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-select {
  position: relative;
  padding: 10px 0px;
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  background: #FFFFFF;
  z-index: 2;
  box-shadow: 0px 0px 0px 1px #B3B3B3;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-select p {
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-select:after {
  position: absolute;
  content: "\25BC";
  right: 4px;
  font-size: 0.95em;
  bottom: 36%;
  margin: auto;
  color: #000;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-select-option {
  position: relative;
  padding: 10px 0px;
  width: 100%;
  min-height: 50px;
  margin-top: -1px;
  border-radius: 5px;
  cursor: pointer;
  background: #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0px 0px 0px 1px #B3B3B3;
  display: none;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-select-option p {
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-select-option .rqst-frm1__step-4-content-option {
  margin-top: 10px;
  margin-bottom: 10px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder {
  position: relative;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder .rqst-frm1__step-4-content-info-icon {
  max-width: 18px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder .rqst-frm1__step-4-content-info-position {
  position: absolute;
  top: 10px;
  margin: auto;
  -webkit-transform: translateX(30px) translateY(-50%);
          transform: translateX(30px) translateY(-50%);
  display: none;
  z-index: 9;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder .rqst-frm1__step-4-content-info {
  position: relative;
  width: 350px;
  position: relative;
  padding: 10px 0px;
  border-radius: 10px;
  background: #657008;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder .rqst-frm1__step-4-content-info:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 8px solid transparent;
  border-right: 10px solid #657008;
  border-bottom: 8px solid transparent;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder .rqst-frm1__step-4-content-info .frm-description * {
  font-size: 12px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-subtotal p {
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description {
  text-align: initial;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description ul {
  font-size: 1em;
  width: 100%;
  padding-left: 15px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description ol {
  font-size: 1em;
  width: 100%;
  padding-left: 15px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description ol strong {
  font-size: 1em;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description li {
  display: list-item;
  padding-bottom: 5px;
  list-style-position: inside;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description p a {
  font-size: 0.9em;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description p p {
  font-size: 1em;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description p strong {
  font-family: "WorkSans-Bold";
  font-size: 1em;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description p strong u {
  font-family: "WorkSans-Bold";
  font-size: 1em;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description a {
  color: #657008;
  text-decoration: underline;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description ul li li {
  font-size: 1em;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description ul li strong {
  font-size: 1em;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-description b {
  font-family: "WorkSans-Bold";
  font-size: 1em;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms input {
  width: auto;
  margin-right: 10px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-header {
  width: 90%;
  margin-bottom: 0px;
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-header strong {
  font-family: "D-Din-Bold";
}

.rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-header a {
  font-family: "D-Din-Bold";
  text-decoration: underline;
  color: #2d2d2d;
  font-size: 0.95em;
}

/*
* Dashboard Frame
* dshbrd-frm : dashboard frame
*/

.dshbrd-frm1 {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.dshbrd-frm1 .dshbrd-frm1__btn-holder {
  min-height: 100vh;
  padding-top: 15vh;
  padding-bottom: 5vh;
}

.dshbrd-frm1 .dshbrd-frm1__btn-list {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  text-decoration: none;
}

.dshbrd-frm1 .dshbrd-frm1__btn-icon {
  max-width: 18px;
  margin-right: 10px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  opacity: 0.4;
}

.dshbrd-frm1 .dshbrd-frm1__btn-icon.active {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  opacity: 1;
}

.dshbrd-frm1 .dshbrd-frm1__btn {
  font-family: "D-Din-Bold";
  font-size: 1.2em;
  line-height: 1.5em;
  margin-bottom: 0px;
  color: #BFBFBF;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.dshbrd-frm1 .dshbrd-frm1__btn:hover {
  color: #2d2d2d;
}

.dshbrd-frm1 .dshbrd-frm1__btn.active {
  color: #657008;
}

.dshbrd-frm1 .dshbrd-frm1__content-holder {
  min-height: 100vh;
  padding-top: 15vh;
  padding-bottom: 5vh;
  border-left: 1px solid #BFBFBF;
}

.dshbrd-frm1 .dshbrd-frm1__content-holder .frm-inpt__filter select {
  min-width: 150px !important;
}

.dshbrd-frm1 .dshbrd-frm1__content-holder .frm-inpt input,
.dshbrd-frm1 .dshbrd-frm1__content-holder .frm-inpt select {
  min-width: 100%;
  width: 100%;
}

.dshbrd-frm1 .dshbrd-frm1__content-card {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 20px;
  padding: 20px 0px;
  border-radius: 10px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  vertical-align: top;
}

.dshbrd-frm1 .dshbrd-frm1__content-card:nth-child(3n) {
  margin-right: 0%;
}

.dshbrd-frm1 .dshbrd-frm1__content-card .frm-header {
  margin-bottom: 0px;
}

.dshbrd-frm1 .dshbrd-frm1__content-card-book-status {
  text-align: center;
  width: auto;
  padding: 0px 10px;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  border-radius: 4px;
  color: #FFFFFF;
}

.dshbrd-frm1 .dshbrd-frm1__content-card-book-status.pending {
  background: #434244;
}

.dshbrd-frm1 .dshbrd-frm1__content-card-book-status.confirmed {
  background: #657008;
}

.dshbrd-frm1 .dshbrd-frm1__content-card-book-status.for-approval {
  background: #E0AF3C;
}

.dshbrd-frm1 .dshbrd-frm1__content-card-book-status.payment-pending {
  background: #434244;
}

.dshbrd-frm1 .dshbrd-frm1__content-card-book-status.rejected {
  background: #A74424;
}

/*
* Privacy Frame
* prvcy-plcy-frm : privacy policy frame
*/

.prvcy-plcy-frm {
  margin-top: 40px;
  padding-top: 15vh;
  padding-bottom: 10vh;
}

.prvcy-plcy-frm .frm-description {
  text-align: initial;
}

.prvcy-plcy-frm .frm-description strong,
.prvcy-plcy-frm .frm-description b,
.prvcy-plcy-frm .frm-description p {
  font-size: 1em;
  color: #2d2d2d;
}

.prvcy-plcy-frm .frm-description a {
  color: blue;
}

.mbl-hdr-frm__nav-holder,
.mbl-hdr-frm__nav-links-holder,
.mbl-abt-frm1,
.mbl-dstntns-inf-frm1 {
  display: none;
}

@media screen and (max-width: 1024px) {
  body {
    overflow-y: auto !important;
  }

  body.overflow-hidden {
    overflow: auto !important;
  }

  /*
  * Header Frame
  * hdr-frm : header frame
  */

  .hdr-frm {
    background: #FFFFFF;
  }

  .hdr-frm__nav-logo {
    height: 45px !important;
  }

  /*
  * Mobile Header Frame
  * mbl-hdr-frm : mobile header frame
  */

  .mbl-hdr-frm__nav-col {
    display: none;
  }

  .mbl-hdr-frm__nav-holder {
    position: absolute;
    display: inline-block;
    right: -10px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    padding: 10px;
    cursor: pointer;
  }

  .mbl-hdr-frm__nav-holder .mbl-hdr-frm__nav {
    position: relative;
    width: 20px;
    border: 2px solid #2d2d2d;
    border-radius: 5px;
  }

  .mbl-hdr-frm__nav-holder .mbl-hdr-frm__nav:before {
    position: absolute;
    content: "";
    right: -2px;
    top: -9px;
    width: 25px;
    border: 2px solid #2d2d2d;
    border-radius: 5px;
  }

  .mbl-hdr-frm__nav-holder .mbl-hdr-frm__nav:after {
    position: absolute;
    content: "";
    right: -2px;
    top: 5px;
    width: 25px;
    border: 2px solid #2d2d2d;
    border-radius: 5px;
  }

  .mbl-hdr-frm__nav-links-holder {
    display: block;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: #FFFFFF;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .mbl-hdr-frm__nav-links-holder.show {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  .mbl-hdr-frm__nav-links-holder .mbl-hdr-frm__link-holder-btn {
    position: absolute;
    top: 30px;
    right: -15px;
    width: auto;
    height: 20px;
    margin: 15px;
    cursor: pointer;
  }

  .mbl-hdr-frm__nav-links-holder .mbl-hdr-frm__nav-logo {
    width: auto;
    height: 50px;
    margin-bottom: 40px;
  }

  .mbl-hdr-frm__nav-links-holder .mbl-hdr-frm__nav-link {
    position: relative;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    cursor: pointer;
    margin: 20px 0px;
    font-size: 1.1em;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  /*
  * Footer Frame
  * ftr-frm : footer frame
  */

  .frm-cntnr__nav-col.width--33 {
    width: 100%;
    text-align: center;
  }

  .frm-cntnr__nav-col .frm-cntnr__nav-logo {
    margin-bottom: 20px;
  }

  .ftr-frm p {
    margin-bottom: 20px !important;
  }

  .ftr-frm .frm-cntnr__nav-link {
    font-size: 1em;
  }

  .ftr-frm .ftr-frm_img img {
    max-width: 15px;
  }

  .ftr-frm .ftr-frm_img.big img {
    max-width: 19px;
  }

  /*
  * Typography
  * frm : frame
  */

  .frm-title {
    font-size: 2em;
  }

  .frm-title.small {
    font-size: 1.3em;
  }

  .frm-title.x-small {
    font-size: 1.2em !important;
  }

  .frm-header {
    font-size: 1.1em !important;
  }

  .frm-description * {
    font-size: 14px !important;
  }

  .frm-description figure img {
    width: 100%;
  }

  /*
  * Frame Button
  * frm-btn : frame button
  */

  .frm-btn {
    font-size: 1em;
    min-width: 170px;
  }

  /*
  * Home Frame
  * hm-frm : home frame
  */

  .hm-frm2,
  .hm-frm3,
  .hm-frm4,
  .hm-frm6 {
    height: auto !important;
    padding: 10vh 0vh;
  }

  .hm-frm2__tabbing-btn {
    font-size: 1em !important;
  }

  .hm-frm2__tabbing-content {
    height: auto !important;
  }

  .hm-frm3 .width--50,
  .hm-frm4 .width--50 {
    width: 100%;
  }

  .hm-frm3 .align-l,
  .hm-frm4 .align-l {
    text-align: center !important;
  }

  .hm-frm3 .hm-frm3__col-holder,
  .hm-frm4 .hm-frm3__col-holder {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .hm-frm3__img,
  .hm-frm4__img {
    height: 200px !important;
    margin-bottom: 40px;
  }

  .hm-frm6 .width--50,
  .hm-frm6 .width--95 {
    width: 100% !important;
  }

  .hm-frm6 .frm-inpt:nth-child(3n) {
    margin-bottom: 0px;
  }

  /*
  * About Frame
  * abt-frm : about frame
  */

  .abt-frm1 {
    height: 50vh;
  }

  .abt-frm1__container {
    display: none;
  }

  .mbl-abt-frm1 {
    margin: 10vh 0 !important;
    display: inline-block;
  }

  .abt-frm2__tabbing-btn {
    font-size: 1em !important;
  }

  .abt-frm2__tabbing-slider-items .frm-header {
    font-size: 1em !important;
  }

  .abt-frm2__tabbing-slider-items .abt-frm2__tabbing-slider-img {
    width: 130px !important;
    height: 130px !important;
  }

  .abt-frm2__tabbing-slider .slick-dots {
    bottom: -10% !important;
  }

  .abt-frm3__item {
    width: 100% !important;
    height: 50vh !important;
  }

  .abt-frm3__item-title {
    opacity: 0 !important;
  }

  .abt-frm3 .abt-frm3__item-overlay,
  .abt-frm3__item-title-small,
  .abt-frm3__item-desc {
    opacity: 1 !important;
  }

  /*
  * Destinations Frame
  * dstntns-frm : destinations frame
  */

  .dstntns-frm1__container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .dstntns-frm1__col {
    width: 100% !important;
  }

  .dstntns-frm1__col.width--45 {
    height: auto;
    padding: 15vh 0 0 0;
  }

  .dstntns-frm1__col.width--55 {
    height: auto !important;
  }

  .dstntns-frm1__search-holder {
    padding-top: 0vh !important;
    width: 85% !important;
    margin: auto !important;
  }

  .dstntns-frm1__caption {
    width: 85% !important;
    margin: auto !important;
  }

  .dstntns-frm1__slider-thumbnail-holder {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 20px !important;
    width: 100% !important;
  }

  .dstntns-frm1__slider-thumbnail-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .dstntns-frm1__slider-thumbnail-item .frm-header {
    display: none;
  }

  .dstntns-frm1__slider-thumbnail-item .frm-bckgrnd:before {
    display: none !important;
  }

  .dstntns-frm1__slider-thumbnail-item-img {
    margin-bottom: 0px !important;
  }

  .dstntns-frm1__slider {
    background: #2d2d2d;
  }

  .dstntns-frm1__col-inner-holder {
    width: 100% !important;
  }

  .dstntns-frm1__slider-thumbnail .slick-next,
  .dstntns-frm1__slider-thumbnail .slick-prev {
    position: absolute;
    z-index: 2;
  }

  .dstntns-frm1__slider-thumbnail .slick-next:before,
  .dstntns-frm1__slider-thumbnail .slick-prev:before {
    display: none;
  }

  .dstntns-frm1__slider-thumbnail .slick-next {
    right: 5%;
  }

  .dstntns-frm1__slider-thumbnail .slick-next img {
    display: block;
    position: absolute;
    right: -5px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: auto;
    height: 25px;
    opacity: 1;
  }

  .dstntns-frm1__slider-thumbnail .slick-prev {
    left: 5%;
  }

  .dstntns-frm1__slider-thumbnail .slick-prev img {
    display: block;
    position: absolute;
    left: -5px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: auto;
    height: 25px;
    opacity: 1;
  }

  .dstntns-frm1__slider .slick-dots {
    bottom: 5vh !important;
    z-index: 2;
  }

  .dstntns-frm1__slider li {
    margin: 2px 4px;
  }

  .dstntns-frm1__slider li:before {
    visibility: hidden;
  }

  .dstntns-frm1__slider li.slick-active button:before {
    color: #657008;
    background: #657008;
    opacity: 1;
  }

  .dstntns-frm1__slider li button:before {
    position: absolute;
    top: 3px;
    left: 2px;
    content: "\2022";
    width: 10px;
    height: 10px;
    font-family: "slick";
    font-size: 0px;
    line-height: 20px;
    text-align: center;
    color: transparent;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
  }

  .dstntns-frm1__slider li:only-child {
    display: none;
  }

  .dstntns-frm1__slider-item {
    height: auto !important;
    padding: 10vh 0 15vh 0 !important;
  }

  .dstntns-frm1__slider-item .frm-bckgrnd {
    display: none;
  }

  .dstntns-frm1__slider-item-info-holder .vertical-align.align-b {
    vertical-align: middle !important;
  }

  .dstntns-frm1__slider-item-info {
    margin-bottom: 0 !important;
    text-align: center !important;
  }

  .dstntns-frm1__slider-item-info .frm-description {
    width: 100% !important;
  }

  .dstntns-frm1__slider-item-info .frm-btn:nth-child(1n) {
    display: block;
    margin-right: 0px;
    margin: auto;
    width: 170px;
    margin-bottom: 20px;
  }

  .dstntns-frm1__slider-item-info .frm-btn:nth-child(2n) {
    display: block;
    margin: auto;
    width: 170px;
  }

  .dstntns-frm1 .dstntns-frm1__slider-item-info .frm-title,
  .dstntns-frm1 .dstntns-frm1__slider-item-info .frm-description * {
    text-shadow: none !important;
  }

  .dstntns-inf-frm1 .gnrl-frm--sldr__item {
    height: 55vh;
  }

  .dstntns-inf-frm1__container {
    display: none;
  }

  .mbl-dstntns-inf-frm1 {
    display: block;
    height: auto;
    margin: 10vh 0vh;
    text-align: center;
  }

  .mbl-dstntns-inf-frm1 .dstntns-inf-frm1__location-img {
    max-width: 15px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: text-bottom;
  }

  .dstntns-inf-frm2 {
    padding: 0vh 0 10vh 0 !important;
  }

  .dstntns-inf-frm2 .width--70 {
    width: 100%;
  }

  .dstntns-inf-frm2 .dstntns-inf-frm2__btn-holder {
    height: auto;
    padding-right: 0px;
    width: 100%;
    margin-bottom: 20px;
    border-right: none;
  }

  .dstntns-inf-frm2__content-inner .frm-description {
    height: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
  }

  .dstntns-inf-frm2__content-inner .frm-description iframe {
    height: 45vh !important;
  }

  .dstntns-inf-frm2__btn {
    font-size: 1.1em !important;
  }

  /*
  * Faqs Frame
  * fqs-frm : faqs frame
  */

  .fqs-frm1__selection-icon {
    max-width: 40px;
  }

  .fqs-frm1__selection {
    width: 100% !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 20px !important;
  }

  .fqs-frm1 .fqs-frm1__cards {
    width: 100% !important;
  }

  .fqs-frm1__cards .fqs-frm1__cards-icon {
    margin: 0px;
  }

  .fqs-frm1 .fqs-frm1__cards .fqs-frm1__cards-icon:before {
    width: 10px !important;
  }

  .fqs-frm1 .fqs-frm1__cards .fqs-frm1__cards-icon:after {
    height: 10px !important;
  }

  .fqs-frm1__cards-header .width--95 {
    width: 85% !important;
  }

  .fqs-frm1__cards-header .width--5 {
    width: 15% !important;
  }

  /*
  * Contact Us Frame
  * cntct-frm : cntct frame
  */

  .cntct-frm1 {
    height: auto;
    padding-top: 15vh;
    padding-bottom: 10vh;
  }

  .cntct-frm__animation-form,
  .cntct-frm__animation-form .width--50,
  .cntct-frm__animation-form .width--95 {
    width: 100%;
  }

  .cntct-frm__animation-form .frm-inpt:nth-child(3n) {
    margin-bottom: 0px;
  }

  /*
  * Login Frame
  * lgn-frm : login frame
  */

  .lgn-frm1 {
    margin-top: 70px;
  }

  .lgn-frm1 .lgn-frm1__col {
    width: 100%;
  }

  .lgn-frm1 .lgn-frm1__col.width--55 {
    display: none;
  }

  .lgn-frm1 .lgn-frm1__col.width--45 {
    height: auto;
    padding: 5vh 0vh;
  }

  .lgn-frm1 .lgn-frm1__col .frm-btn {
    width: 100% !important;
  }

  .lgn-frm1 .lgn-frm1__col .frm-btn img {
    max-width: 15px;
  }

  .lgn-frm1__col .width--100 {
    text-align: center;
  }

  .lgn-frm1 .lgn-frm1__frgt-psswrd,
  .lgn-frm1 .lgn-frm1__sign-up {
    font-size: 1em !important;
  }

  .lgn-frm1__col .width--50,
  .lgn-frm1__col .width--95 {
    width: 100% !important;
  }

  /*
  * Dashboard Frame
  * dshbrd-frm : dashboard frame
  */

  .dshbrd-frm1__btn-holder {
    width: 100%;
    min-height: auto !important;
    padding-bottom: 10px !important;
  }

  .dshbrd-frm1__btn-holder .width--65 {
    width: 85% !important;
  }

  .dshbrd-frm1 .dshbrd-frm1__btn {
    font-size: 1em !important;
  }

  .dshbrd-frm1 .dshbrd-frm1__btn-icon {
    max-width: 13px !important;
  }

  .dshbrd-frm1 .dshbrd-frm1__content-holder {
    min-height: auto !important;
    width: 95%;
    padding-top: 20px !important;
    border-top: 1px solid #BFBFBF;
    border-left: none;
  }

  .dshbrd-frm1__content-holder .width--50 {
    text-align: left;
    width: 100% !important;
  }

  .dshbrd-frm1__content-holder .width--33,
  .dshbrd-frm1__content-holder .width--95 {
    width: 100% !important;
  }

  .dshbrd-frm1__content-holder .frm-inpt__filter {
    width: 100% !important;
  }

  .dshbrd-frm1__content-holder .frm-inpt__filter select {
    width: 100% !important;
  }

  .dshbrd-frm1 .dshbrd-frm1__content-card {
    width: 100% !important;
    margin-bottom: 20px;
    margin-right: 0px !important;
  }

  .prfl-btn__holder {
    text-align: center;
  }

  .prfl-btn__holder .frm-btn {
    margin: auto;
    margin-bottom: 20px;
  }

  /*
  * Request Frame
  * rqst-frm : request frame
  */

  .rqst-frm1__steps-header,
  .rqst-frm1__steps-header.scroll {
    position: relative !important;
    width: 100% !important;
    margin: auto !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    height: auto !important;
    margin-bottom: 10vh !important;
    box-shadow: none !important;
    z-index: 1 !important;
  }

  .rqst-frm1__steps-header .rqst-frm1__steps-header-logo {
    display: none !important;
  }

  .rqst-frm1__breadcrumbs p {
    font-size: 1em !important;
  }

  .rqst-frm1__steps-header-col.width--25,
  .rqst-frm1__steps-header-col.width--50 {
    width: 100% !important;
  }

  .rqst-frm1__steps-header-col.width--25 {
    margin-bottom: 20px;
  }

  .rqst-frm1__steps-header-col:nth-child(3n) {
    display: none;
  }

  .rqst-frm1__steps-col.active .rqst-frm1__steps {
    width: 35px !important;
    height: 35px !important;
  }

  .rqst-frm1__steps-col.active .rqst-frm1__steps p {
    font-size: 1.1em !important;
  }

  .rqst-frm1__steps-label {
    margin-top: 10px !important;
    font-size: 0.9em !important;
  }

  .rqst-frm1__steps-form .width--60,
  .rqst-frm1__steps-form .width--40,
  .rqst-frm1__steps-form .width--90 {
    width: 100% !important;
    display: inline-block !important;
  }

  .rqst-frm1__step-1-content .rqst-frm1__step-1-content-icon {
    max-width: 15px !important;
    margin-bottom: 5px !important;
    vertical-align: text-bottom !important;
  }

  .rqst-frm1__step-1-content .rqst-frm1__step-1-content-img,
  .rqst-frm1__step-1-content .frm-description iframe {
    height: 45vh !important;
  }

  .rqst-frm1 .rqst-frm1__steps-form-cards {
    width: 100%;
  }

  .rqst-frm1__steps-form-cards.scroll {
    position: relative !important;
    margin-left: 0px !important;
    top: 0px !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .rqst-frm1__steps-form-cards .rqst-frm1__steps-form-cards-container {
    width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  .rqst-frm1__steps-form-cards .inlineBlock-parent .width--50,
  .rqst-frm1__steps-form-cards .inlineBlock-parent .width--95 {
    width: 100% !important;
  }

  .rqst-frm1__steps-form-cards .inlineBlock-parent .width--45 {
    width: 90% !important;
    margin: auto;
  }

  .rqst-frm1__steps-form-cards .inlineBlock-parent .frm-btn:first-child {
    margin-bottom: 20px;
  }

  .rqst-frm1__step-2-content .width--50,
  .rqst-frm1__step-2-content .width--95 {
    width: 100% !important;
  }

  .rqst-frm1__step-2-content .width--30 {
    padding-right: 5% !important;
  }

  .rqst-frm1__step-3-content .rqst-frm1__step-3-content-col {
    width: 100% !important;
    margin-right: 0 !important;
  }

  .rqst-frm1__step-3-content-card .width--90 {
    width: 90% !important;
    margin-left: 5%;
  }

  .rqst-frm1__step-3-content-card .width--40 {
    margin-bottom: 10px;
  }

  .rqst-frm1__step-3-content-guest-form h5 {
    margin-bottom: 0px !important;
  }

  .rqst-frm1__step-3-content-guest-form .inlineBlock-parent:first-child {
    margin-bottom: -15px !important;
  }

  .rqst-frm1__step-3-content-guest-form .width--50,
  .rqst-frm1__step-3-content-guest-form .width--95 {
    width: 100% !important;
  }

  .rqst-frm1__step-3-content-guest-form .width--30 {
    padding-right: 5% !important;
  }

  .rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-checkbox {
    max-height: 400px;
    padding-right: 10px;
  }

  .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container {
    padding: 5px 2.5% !important;
  }

  .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container .width--50 {
    width: 85% !important;
  }

  .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container .width--40 {
    width: 100% !important;
    margin-top: 20px;
    margin-bottom: 5px;
  }

  .rqst-frm1__step-4-content-checkbox .rqst-frm1__step-4-content-checkbox-container .width--40 img {
    width: 80% !important;
    max-width: unset !important;
    margin-right: 10% !important;
  }

  .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .frm-header,
  .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .inlineBlock-parent {
    display: inline-block !important;
  }

  .rqst-frm1__step-4-content .rqst-frm1__step-4-content-terms .inlineBlock-parent {
    width: 100% !important;
  }

  .rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1--row {
    position: relative;
  }

  .rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder {
    position: unset;
    display: none;
  }

  .rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder .rqst-frm1__step-4-content-info-position {
    top: 40px;
    left: 0;
    width: 100%;
    -webkit-transform: unset;
            transform: unset;
  }

  .rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder .rqst-frm1__step-4-content-info {
    width: 100%;
    padding: 10px;
  }

  .rqst-frm1 .rqst-frm1__step-4-content .rqst-frm1__step-4-content-info-holder .rqst-frm1__step-4-content-info:before {
    display: none;
  }

  /*
  * General Remodal
  * gnrl-rmdl : general remodal
  */

  #gnrl-rmdl .gnrl-rmdl__btn {
    font-size: 1.1em;
  }

  #gnrl-rmdl .gnrl-rmdl__img-icon {
    max-width: 65px !important;
  }

  #gnrl-rmdl.custom-width .gnrl-rmdl__close-btn {
    top: 3%;
  }

  #gnrl-rmdl.custom-width .gnrl-rmdl__col {
    width: 100% !important;
  }

  #gnrl-rmdl.custom-width .gnrl-rmdl__btn-holder {
    border-right: none !important;
    height: auto !important;
  }

  #gnrl-rmdl.custom-width .custom-description {
    margin-top: 20px !important;
    height: 300px !important;
    padding-left: 0px !important;
  }

  #gnrl-rmdl .gnrl-rmdl__close-btn-img {
    height: 35px !important;
  }

  .remodal {
    padding: 25px;
  }

  /** 
   * Input, Textarea, Select
   * frm-inpt : frame input
   */

  .frm-inpt input,
  .frm-inpt select,
  .frm-inpt textarea {
    min-width: 100% !important;
  }

  .frm-inpt input,
  .frm-inpt select {
    min-height: 45px !important;
    font-size: 1em !important;
  }

  .cntct-frm__number ::after {
    top: 15px;
    font-size: 1em !important;
  }

  .cntct-frm__number.active input[name=contact_number],
  .cntct-frm__number.focus input[name=contact_number] {
    padding-left: 31px;
  }
}

html {
  font-size: 14px;
}

