
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');

@font-face {
  font-family: 'Exemplar Pro';
  src: url('../fonts/font/ExemplarPro-Bold.eot');
  src: url('../fonts/font/ExemplarPro-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/font/ExemplarPro-Bold.woff2') format('woff2'),
      url('../fonts/font/ExemplarPro-Bold.woff') format('woff'),
      url('../fonts/font/ExemplarPro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Exemplar Pro';
  src: url('../fonts/font/ExemplarPro-Regular.eot');
  src: url('../fonts/font/ExemplarPro-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/font/ExemplarPro-Regular.woff2') format('woff2'),
      url('../fonts/font/ExemplarPro-Regular.woff') format('woff'),
      url('../fonts/font/ExemplarPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Exemplar Pro';
  src: url('../fonts/font/ExemplarPro-Light.eot');
  src: url('../fonts/font/ExemplarPro-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/font/ExemplarPro-Light.woff2') format('woff2'),
      url('../fonts/font/ExemplarPro-Light.woff') format('woff'),
      url('../fonts/font/ExemplarPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GE Dinar Two';
  src: url('../fonts/font/GEDinarTwo-Medium.eot');
  src: url('../fonts/font/GEDinarTwo-Medium.eot?#iefix') format('embedded-opentype'),
      url('../fonts/font/GEDinarTwo-Medium.woff2') format('woff2'),
      url('../fonts/font/GEDinarTwo-Medium.woff') format('woff'),
      url('../fonts/font/GEDinarTwo-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GE Dinar Two';
  src: url('../fonts/font/GEDinarTwo-Light.eot');
  src: url('../fonts/font/GEDinarTwo-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/font/GEDinarTwo-Light.woff2') format('woff2'),
      url('../fonts/font/GEDinarTwo-Light.woff') format('woff'),
      url('../fonts/font/GEDinarTwo-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.font-Exemplar_Pro{
    font-family: "Exemplar Pro", sans-serif;
}

.font-Exemplar_Pro {
  font-family: "Exemplar Pro", sans-serif;
}

.color-01 {
  color: #ffffff;
}

.color-02 {
  color: #e29820;
}

.color-03 {
  color: #363535;
}

.color-04 {
  color: #494949;
}

.color-white {
  color: #fff;
}

.bg-color-white {
  background-color: #fff;
}

.bg-color-white-light {
  background-color: #ffffff45 !important;
}

.top-bottom-padding {
  padding-top: 3vw;
  padding-bottom: 3vw;
}
.top-bottom-padding.small-padding {
  padding-top: 2vw;
  padding-bottom: 2vw;
}
@media only screen and (max-width: 1023px) {
  .top-bottom-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .top-bottom-padding.small-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .top-bottom-padding.mob-top-padding-0 {
    padding-top: 0;
  }
  .top-bottom-padding.mob-bottom-padding-0 {
    padding-bottom: 0;
  }
}

html{
  background-color: #000;
}
body {
  font-family: "Exemplar Pro", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  letter-spacing: 1px;
  position: relative;
  background-color: #000;
}
body:before {
  /* content: ""; */
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  z-index: -10;
  background-image: url("../images/main-bg.jpg");
  /* opacity: 0.4; */
    background-size: 100%;
    background-position: center center;
}

strong {
    color: #ffffff;
}

.btn {
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 24px 10px;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}

.btn span {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1500px) {
  .btn {
    font-size: 14px;
    padding: 10px 18px 8px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 12px;
  }
}
.btn:hover:after {
  height: 100%;
}

.btn.arrow {
  padding-right: 48px;
}

.btn.arrow:before {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 13px;
  height: 1px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #000;
  transition: all 0.3s ease;
}

.btn.arrow:after {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border-top: none;
  border-left: none;
  transition: all 0.3s ease;
}

.btn.arrow:hover::before {
  right: 12px;
}

.btn.arrow:hover::after {
  right: 12px;
}

@media screen and (max-width: 1500px) {
  .btn.arrow:before, .btn.arrow:after {
    top: 49%;
  }
}
.btn.arrow-btn {
  padding: 10px 14px;
  font-size: 14px;
}

.btn.arrow-btn i {
  margin-left: 6px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .btn.arrow-btn {
    padding: 8px 10px 7px;
    font-size: 14px;
  }
}
.btn-circle {
  position: relative;
  color: #34adc6;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 5vw;
  display: inline-block;
}
.btn-circle:before {
  content: "";
  width: 7vw;
  height: 7vw;
  border: 1px solid #34adc680;
  border-radius: 50%;
  position: absolute;
  right: -2.8vw;
  top: -2.7vw;
  z-index: 0;
}
@media only screen and (max-width: 1500px) {
  .btn-circle {
    font-size: 12px;
    margin-bottom: 5vw;
  }
}
@media only screen and (max-width: 1024px) {
  .btn-circle::before {
    right: -1.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .btn-circle {
    font-size: 9px;
  }
  .btn-circle:before {
    width: 60px;
    height: 60px;
    top: -24px;
    right: -14px;
  }
}

.tabcontent {
  display: none;
}

.letter-spacing-1 {
  letter-spacing: 1px !important;
}

.heading-01 {
  /* font-size: 42px; */
  font-size: 3vw;
  font-weight: 400;
  color: #ffffff;
}
.heading-01.margin-b {
  margin-bottom: 34px;
}
@media only screen and (max-width: 1700px) {
  .heading-01 {
    /* font-size: 36px; */
  }
  .heading-01.margin-b {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1500px) {
  .heading-01 {
    /* font-size: 22px; */
  }
  .heading-01.is-uppercase {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1023px) {
  .heading-01 {
    font-size: 7vw;
    line-height: normal;
  }
  .heading-01.margin-b {
    margin-bottom: 14px;
  }
}
.heading-02 {
  font-family: "Exemplar Pro", sans-serif;
  font-size: 4vw;
  line-height: 4vw;
  font-weight: 500;
  color: #e29820;
}
.heading-02.margin-b {
  margin-bottom: 34px;
}
@media only screen and (max-width: 1023px) {
  .heading-02.margin-b {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .heading-02 {
    font-size: 30px;
    line-height: 30px;
  }
}

.para-01 {
  font-size: 30px;
  line-height: 34px;
  color: #ffffff;
}
.para-01.margin-l {
  margin-right: 30%;
}
.para-01.margin-b {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1700px) {
  .para-01 {
    font-size: 24px;
    line-height: 28px;
  }
  .para-01.margin-b {
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 1500px) {
  .para-01 {
    font-size: 14px;
    line-height: 18px;
  }
  .para-01.margin-b {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .para-01 {
    font-size: 13px;
    line-height: 17px;
  }
  .para-01.is-uppercase {
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .para-01.margin-l {
    margin-right: 0%;
  }
}

.para-02 {
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
}
@media only screen and (max-width: 1700px) {
  .para-02 {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 1500px) {
  .para-02 {
    font-size: 12px;
    line-height: 16px;
  }
}

.heading-wrapper {
  width: 100%;
  margin: auto;
  padding: 6vw 0 4vw;
}
.heading-wrapper .anim_fade_in_wrp {
  animation-delay: 0.4s;
}
.heading-wrapper.center {
  text-align: center;
  max-width: 1000px;
}
@media only screen and (max-width: 1023px) {
  .heading-wrapper {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .heading-wrapper.center {
    padding: 0 10px 20px !important;
  }
}

.width-01 {
  width: 90.5%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .width-01 {
    width: 100%;
  }
}

.width-02 {
  width: 80.5%;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 767px) {
  .title {
    margin-bottom: 20px !important;
  }
}

option {
  color: #363535;
}

@media only screen and (min-width: 1500px) {
  .container:not(.is-max-desktop):not(.is-max-widescreen) {
    max-width: 1400px;
  }
}
.container.fullhd {
  width: 100%;
  max-width: none !important;
  padding-left: 12%;
}
@media only screen and (max-width: 1023px) {
  .container {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .container.fullhd {
    padding-right: 10px;
  }
}
.main-wrapper {
  width: 90vw;
  margin-left: auto;
}

.owl-nav-wrp .owl-nav [class*=owl-] {
  background: transparent;
  color: #34adc6;
  text-transform: uppercase;
  font-size: 0;
  font-weight: 600;
  letter-spacing: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav-wrp .owl-nav [class*=owl-]:before {
  content: "";
  width: 100px;
  height: 100px;
  border: 1px solid white;
  border-radius: 50%;
  position: absolute;
  right: -107px;
  top: -54px;
  z-index: 0;
}
.owl-nav-wrp .owl-nav [class*=owl-]:after {
  content: "";
  background: url("../images/right-arrow.jpg") center no-repeat;
  width: 33px;
  height: 16px;
  position: absolute;
  right: -70px;
  top: -10px;
}
.owl-nav-wrp .owl-nav [class*=owl-]:not(.disabled):hover {
  color: #3b95d1;
}
.owl-nav-wrp .owl-nav .owl-prev {
  left: -4%;
}
.owl-nav-wrp .owl-nav .owl-prev:before {
  left: -99px;
}
.owl-nav-wrp .owl-nav .owl-prev:after {
  transform: rotate(180deg);
  left: -70px;
}
.owl-nav-wrp .owl-nav .owl-next {
  right: -4%;
}
.owl-nav-wrp .owl-nav .disabled {
  opacity: 0 !important;
}
.owl-nav-wrp.white-btn .owl-nav [class*=owl-] {
  background-color: #fff;
  box-shadow: 0px 4px 20px 3px #ffffff85;
}
.owl-nav-wrp.white-btn .owl-nav [class*=owl-]:before {
  content: "";
  background-color: #555;
}
.owl-nav-wrp.white-btn .owl-nav [class*=owl-]:after {
  content: "";
  border: solid #555;
  border-width: 0 1px 0px 0;
}
.owl-nav-wrp.white-btn .owl-nav [class*=owl-]:not(.disabled):hover:before {
  background-color: #fff;
}
.owl-nav-wrp.white-btn .owl-nav [class*=owl-]:not(.disabled):hover:after {
  border: solid #fff;
  border-width: 0 1px 0px 0;
}
@media screen and (max-width: 1700px) {
  .owl-nav-wrp .owl-nav [class*=owl-] {
    font-size: 0;
  }
  .owl-nav-wrp .owl-nav [class*=owl-]:before {
    content: "";
    width: 80px;
    height: 80px;
    right: -47px;
    top: -46px;
  }
  .owl-nav-wrp .owl-nav [class*=owl-]:after {
    content: "";
    background-size: cover;
    width: 30px;
    height: 13px;
    right: -22px;
    top: -10px;
  }
  .owl-nav-wrp .owl-nav .owl-prev:before {
    left: -60px;
  }
  .owl-nav-wrp .owl-nav .owl-prev:after {
    left: -36px;
  }
}
@media screen and (max-width: 1500px) {
  .owl-nav-wrp .owl-nav [class*=owl-] {
    font-size: 0;
  }
  .owl-nav-wrp .owl-nav [class*=owl-]:before {
    content: "";
    width: 80px;
    height: 80px;
    right: -42px;
    top: -128px;
  }
  .owl-nav-wrp .owl-nav [class*=owl-]:after {
    content: "";
    width: 22px;
    height: 9px;
    right: -12px;
    top: -90px;
  }
  .owl-nav-wrp .owl-nav .owl-prev:before {
    left: -36px;
  }
  .owl-nav-wrp .owl-nav .owl-prev:after {
    left: -5px;
  }
}
@media screen and (max-width: 1280px) {
  .owl-nav-wrp .owl-nav .owl-prev {
    left: -1%;
  }
  .owl-nav-wrp .owl-nav .owl-next {
    right: -1%;
  }
}
@media screen and (max-width: 1024px) {
  .owl-nav-wrp .owl-nav [class*=owl-] {
    font-size: 0;
  }
  .owl-nav-wrp .owl-nav [class*=owl-]:before {
    content: "";
    width: 60px;
    height: 60px;
    right: -35px;
    top: -22px;
  }
  .owl-nav-wrp .owl-nav [class*=owl-]:after {
    content: "";
    width: 16px;
    height: 8px;
    right: -16px;
    top: 6px;
  }
}
@media screen and (max-width: 768px) {
  .owl-nav-wrp .owl-nav [class*=owl-] {
    font-size: 0;
  }
  .owl-nav-wrp .owl-nav .owl-prev {
    left: 4%;
  }
  .owl-nav-wrp .owl-nav .owl-next {
    right: 4%;
  }
}
@media screen and (max-width: 767px) {
  .owl-nav-wrp .owl-nav [class*=owl-] {
    font-size: 0;
  }
  .owl-nav-wrp .owl-nav [class*=owl-]:before {
    content: "";
    width: 40px;
    height: 40px;
    right: -35px;
    top: -22px;
  }
  .owl-nav-wrp .owl-nav [class*=owl-]:after {
    content: "";
    width: 16px;
    height: 8px;
    right: -22px;
    top: -5px;
  }
  .owl-nav-wrp .owl-nav .owl-prev:after {
    left: -22px;
  }
}
@media screen and (max-width: 480px) {
  .owl-nav-wrp .owl-nav .owl-prev {
    left: 4px;
  }
  .owl-nav-wrp .owl-nav .owl-next {
    right: 4px;
  }
}

.owl-carousel .owl-dots {
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 5px 14px;
}
.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #ffffff;
}
@media only screen and (max-width: 1700px) {
  .owl-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .owl-carousel .owl-dots {
    bottom: -15px !important;
  }
  .owl-carousel .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
  }
}

.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-] {
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  text-transform: uppercase;
  color: #ffffff80;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  border: 1px solid white;
  overflow: hidden;
}
.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:before {
  content: "";
  background-color: white;
  width: 22px;
  height: 3px;
  right: 4px;
  transform: translateX(20%);
}
.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:after {
  content: "";
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  transition: all 0.3s ease;
  transform: translate(-60%, 0%) rotate(-45deg);
}
.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
  left: -18%;
  transform: translate(60%, -50%) rotate(180deg);
}
.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
  left: -2.5%;
}
.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover:before {
  animation: 1s btn-arrow-before;
}
.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover:after {
  animation: 1s btn-arrow-after;
}
.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].disabled {
  opacity: 0;
}
.slider-btn-arrow-circle.dark.owl-theme .owl-nav [class*=owl-] {
  border-color: #2f2f2f66;
}
.slider-btn-arrow-circle.dark.owl-theme .owl-nav [class*=owl-]:before {
  background-color: #ffffff;
}
.slider-btn-arrow-circle.dark.owl-theme .owl-nav [class*=owl-]:after {
  border-color: #ffffff;
}
.slider-btn-arrow-circle.white.owl-theme .owl-nav [class*=owl-] {
  border-color: #fff;
}
.slider-btn-arrow-circle.white.owl-theme .owl-nav [class*=owl-]:before {
  background-color: #fff;
}
.slider-btn-arrow-circle.white.owl-theme .owl-nav [class*=owl-]:after {
  border-color: #fff;
}
.slider-btn-arrow-circle.left-right.owl-theme .owl-nav [class*=owl-].owl-prev {
  left: -8%;
}
.slider-btn-arrow-circle.left-right.owl-theme .owl-nav [class*=owl-].owl-next {
  left: inherit;
  right: -4%;
}
@keyframes btn-arrow-after {
  0%, 100% {
    transform: translate(-60%, 0%) rotate(-45deg);
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    transform: translate(60px, 0%) rotate(-45deg);
    opacity: 0;
  }
  51% {
    transform: translate(-60px, 0%) rotate(-45deg);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
}
@keyframes btn-arrow-before {
  0%, 100% {
    transform: translate(20%, 0);
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    transform: translate(60px, 0);
    opacity: 0;
  }
  51% {
    transform: translate(-60px, 0);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
}
@media only screen and (max-width: 1700px) {
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-] {
    transform: translateY(-50%) scale(0.7);
  }
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
    transform: translate(60%, -50%) rotate(180deg) scale(0.7);
  }
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
    left: -4%;
  }
}
@media only screen and (max-width: 1023px) {
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-] {
    transform: translateY(-50%) scale(0.5);
  }
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
    transform: translate(0%, -50%) rotate(180deg) scale(0.5);
    left: -24%;
  }
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
    left: -6%;
  }
  .slider-btn-arrow-circle.left-right.owl-theme .owl-nav [class*=owl-].owl-prev {
    left: -6.5%;
  }
  .slider-btn-arrow-circle.left-right.owl-theme .owl-nav [class*=owl-].owl-next {
    left: inherit;
    right: -6.5%;
  }
}
@media only screen and (max-width: 768px) {
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-] {
    transform: translateY(-50%) scale(0.5);
  }
}
@media only screen and (max-width: 767px) {
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-] {
    transform: translateY(-50%) scale(0.5);
  }
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
    left: -26%;
  }
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
    left: -8%;
  }
}
@media only screen and (max-width: 480px) {
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
    left: -13%;
    top: 36%;
  }
  .slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
    left: -13%;
    top: 63%;
  }
  .slider-btn-arrow-circle.left-right.owl-theme .owl-nav [class*=owl-] {
    top: 50%;
  }
  .slider-btn-arrow-circle.left-right.owl-theme .owl-nav [class*=owl-].owl-prev {
    left: -16.5%;
  }
  .slider-btn-arrow-circle.left-right.owl-theme .owl-nav [class*=owl-].owl-next {
    right: -16.5%;
  }
}

.box-line {
  position: absolute;
  pointer-events: none;
}
.box-line span {
  position: absolute;
  background-color: #494949;
}
.box-line .hori-line {
  width: 100%;
  height: 1px;
}
.box-line .hori-line.top {
  top: 0;
}
.box-line .hori-line.bottom {
  bottom: 0;
}
.box-line .vert-line {
  width: 1px;
  height: 100%;
}
.box-line .vert-line.left {
  left: 0;
}
.box-line .vert-line.right {
  right: 0;
}
@media only screen and (max-width: 1023px) {
  .box-line span {
    background-color: #49494980;
  }
}

.icon-box-wrp {
  position: relative;
  display: flex;
  justify-content: center;
}
.icon-box-wrp .icon-box {
  width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 36px;
}
.icon-box-wrp .icon-box img {
  width: 71%;
  margin: auto 0;
}
.icon-box-wrp .icon-box p {
  width: 100%;
  text-align: center;
  height: 38px;
}
.icon-box-wrp .icon-box .tilt-line-01,
.icon-box-wrp .icon-box .tilt-line-02 {
  background-color: #494949;
  position: absolute;
  width: 86px;
  height: 1px;
  left: 0;
  transform: rotate(43deg);
  transform-origin: left;
}
.icon-box-wrp .icon-box:nth-child(1) {
  left: 2%;
  top: 29%;
}
.icon-box-wrp .icon-box:nth-child(2) {
  left: 22%;
  top: 47%;
}
.icon-box-wrp .icon-box:nth-child(2) .tilt-line-01 {
  top: 0;
}
.icon-box-wrp .icon-box:nth-child(2) .tilt-line-02 {
  top: 58%;
}
.icon-box-wrp .icon-box:nth-child(3) {
  left: 50%;
}
.icon-box-wrp .icon-box:nth-child(4) {
  left: 70%;
  top: 18%;
}
.icon-box-wrp .icon-box:nth-child(4) .tilt-line-01 {
  top: 0;
}
.icon-box-wrp .icon-box:nth-child(4) .tilt-line-02 {
  top: 58%;
}
.icon-box-wrp .vert-line {
  background-color: #3c3c3c98;
  width: 1px;
  height: 90px;
  display: inline-block;
  margin: auto 0;
}
@media only screen and (max-width: 1700px) {
  .icon-box-wrp .icon-box {
    width: 19vw;
    height: 19vw;
    padding: 2vw;
  }
  .icon-box-wrp .icon-box .tilt-line-01,
.icon-box-wrp .icon-box .tilt-line-02 {
    width: 4vw;
  }
  .icon-box-wrp .icon-box:nth-child(1) {
    left: 2vw;
    top: 9vw;
  }
  .icon-box-wrp .icon-box:nth-child(2) {
    left: 18vw;
    top: 14.5vw;
  }
  .icon-box-wrp .icon-box:nth-child(2) .tilt-line-02 {
    top: 10.6vw;
  }
  .icon-box-wrp .icon-box:nth-child(3) {
    left: 43vw;
  }
  .icon-box-wrp .icon-box:nth-child(4) {
    left: 59vw;
    top: 6vw;
  }
  .icon-box-wrp .icon-box:nth-child(4) .tilt-line-02 {
    top: 10.1vw;
  }
}
@media only screen and (max-width: 1200px) {
  .icon-box-wrp .icon-box {
    width: 23vw;
    height: 23vw;
    padding: 2vw;
  }
}
@media only screen and (max-width: 1023px) {
  .icon-box-wrp {
    flex-wrap: wrap;
  }
  .icon-box-wrp .icon-box {
    width: 42vw;
    height: 42vw;
  }
  .icon-box-wrp .vert-line:nth-child(4) {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .icon-box-wrp .icon-box {
    padding: 10px;
    padding: 10px 2px;
    width: 46vw;
    height: 46vw;
  }
  .icon-box-wrp .icon-box img {
    width: 50%;
  }
  .icon-box-wrp .icon-box p {
    padding: 0 12px;
  }
  .icon-box-wrp .icon-box .tilt-line-01,
.icon-box-wrp .icon-box .tilt-line-02 {
    width: 50px;
  }
  .icon-box-wrp .icon-box:nth-child(1) {
    left: 0;
    top: 40px;
  }
  .icon-box-wrp .icon-box:nth-child(2) {
    left: 140px;
    top: -80px;
  }
  .icon-box-wrp .icon-box:nth-child(2) .tilt-line-02 {
    top: 82px;
  }
  .icon-box-wrp .icon-box:nth-child(3) {
    left: 80px;
  }
  .icon-box-wrp .icon-box:nth-child(4) {
    left: 221px;
    top: -99px;
  }
  .icon-box-wrp .icon-box:nth-child(4) .tilt-line-02 {
    top: 62px;
  }
  .icon-box-wrp .vert-line {
    background-color: #3c3c3c8c;
    height: 70px;
  }
  .icon-box-wrp .vert-line:nth-child(4) {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .icon-box-wrp .icon-box img {
    width: 70%;
  }
  .icon-box-wrp .icon-box:nth-child(1) {
    left: -30px;
  }
  .icon-box-wrp .icon-box:nth-child(2) {
    left: 110px;
  }
  .icon-box-wrp .icon-box:nth-child(3) {
    left: 0px;
    top: -20px;
  }
  .icon-box-wrp .icon-box:nth-child(4) {
    left: 141px;
    top: -119px;
  }
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.98;
}

.intl-tel-input.separate-dial-code .selected-flag {
  background-color: transparent !important;
}

.section-pl {
  padding-left: 320px;
}

.section-dot {
  position: relative;
}
.section-dot:after {
  content: "";
  background-color: #ffffff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
}
@media only screen and (max-width: 1700px) {
  .section-dot:after {
    width: 7px;
    height: 7px;
  }
}

.section-line {
  position: relative;
}
.section-line:before {
  content: "";
  background-color: #cccccc;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translateX(-50%);
}
.section-line > * {
  position: relative;
  z-index: 2;
}

.golden-bg {
  background-color: #f8f3e5;
  background-image: url("../images/golden-bg.jpg");
  background-position: center;
  background-repeat: repeat;
  background-size: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0%;
  z-index: 0;
}

.left-right-wrp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1023px) {
  .left-right-wrp {
    flex-direction: column-reverse;
  }
}

.tab-wrp {
  text-align: center;
  margin: 0 0 70px 12.5%;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 40px;
}
.tab-wrp:before {
  height: 1px;
  width: 68%;
  background-color: #00000080;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
}
.tab-wrp span {
  color: #fff;
  font-size: 18px;
}
.tab-wrp .tab {
  background-color: transparent;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  padding: 16px 30px 12px;
  font-weight: 500;
  letter-spacing: 1px;
}
.tab-wrp .tab.active {
  color: #ffffff;
}
.tab-wrp.anim_fade_in_wrp {
  animation-delay: 0.6s;
}
@media only screen and (max-width: 1700px) {
  .tab-wrp span {
    font-size: 12px;
  }
  .tab-wrp .tab {
    font-size: 14px;
    padding: 12px 24px 12px;
  }
}
@media only screen and (max-width: 1500px) {
  .tab-wrp span {
    font-size: 10px;
  }
  .tab-wrp .tab {
    font-size: 12px;
    padding: 8px 20px 8px;
  }
}
@media only screen and (max-width: 1023px) {
  .tab-wrp {
    margin: 0 0 30px 12.5%;
  }
  .tab-wrp .tab {
    font-size: 10px;
    padding: 6px 12px 6px;
  }
}

.box-shadow, .single-image-slider .owl-item .item .img-01, .two-image-slider .owl-item .item .img-01 {
  box-shadow: 6px 11px 40px 5px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1700px) {
  .box-shadow, .single-image-slider .owl-item .item .img-01, .two-image-slider .owl-item .item .img-01 {
    box-shadow: 6px 11px 30px 0px rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (max-width: 1023px) {
  .box-shadow, .single-image-slider .owl-item .item .img-01, .two-image-slider .owl-item .item .img-01 {
    box-shadow: 6px 11px 20px 0px rgba(0, 0, 0, 0.2);
  }
}

.counter {
  position: absolute;
  left: -10.5%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media only screen and (max-width: 1700px) {
  .counter {
    left: -8.2%;
  }
}
@media only screen and (max-width: 1023px) {
  .counter {
    left: -12%;
  }
}
@media only screen and (max-width: 480px) {
  .counter {
    left: -15%;
  }
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.artist-impression {
  position: relative;
}
.artist-impression:after {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.artist-impression span {
  font-size: 8px;
  color: #fff;
  position: absolute;
  right: 10px;
  bottom: 4px;
  z-index: 1;
}

.artistic-caption {
  position: absolute;
  right: 8px;
  font-size: 10px;
}

.divider {
  text-align: center;
}
.divider svg {
  width: 80px;
  fill: #e29820;
}
@media only screen and (max-width: 1023px) {
  .divider {
    padding: 30px 0;
  }
  .divider svg {
    width: 40px;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*background-color: #3c3c3c99;
  justify-content: center;*/
}
.header.header--hidden {
  -webkit-transform: translateY(-171px);
  -ms-transform: translateY(-171px);
  transform: translateY(-171px);
}
.header.nav-down {
  background-color: #e29820;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.header.navbar.is-dark {
  background-color: #3b3948;
}
.header .navbar-item img {
  width: 208px;
  max-height: none;
  transition: all 0.3s ease;
	filter: invert(1);
}
.header .navbar-item .field.is-grouped {
  align-items: center;
}
.header .navbar-start {
  display: none;
  margin-left: 0;
  margin-right: 0;
}
.header .navbar-end {
  margin-left: 0;
}
.header .navbar-end .navbar-item .control {
  margin: 0;
}
.header .navbar-end .navbar-item a, .header .navbar-end .navbar-item p {
  font-family: "Exemplar Pro", sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
}
.header .navbar-end .navbar-item a img, .header .navbar-end .navbar-item p img {
  margin-right: 14px;
  width: 12px;
}
.header .navbar-end .nav-divider {
  margin: 0 20px;
}
.header .navbar-brand {
  align-items: center;
  transition: all 0.3s ease;
}
.header .enquire-button:before {
  content: "";
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: relative;
  left: 100px;
  transition: all 0.3s ease;
}
.header .enquire-button:hover {
  text-decoration: underline;
}
.header .navbar-phone-icon {
  background-color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .navbar-phone-icon a {
  display: flex;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.header .navbar-phone-icon img {
  width: 22px !important;
  margin: auto !important;
  transition: none;
}
.header .navbar-phone-icon:hover {
  background-color: #e29820;
}
.header .navbar-phone-icon:hover img {
  filter: invert(93%) sepia(94%) saturate(37%) hue-rotate(218deg) brightness(117%) contrast(100%);
}
.header .navbar-menu {
  flex-grow: inherit;
  transition: all 0.3s ease;
  margin-left: auto;
}
.header .navbar-menu .navbar-item {
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  padding-left: 15px;
  padding-right: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.header .navbar-menu .navbar-item:not(:last-child):after {
  background: #5a5671;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  right: -3px;
}
.header .navbar-menu .navbar-item:hover, .header .navbar-menu .navbar-item:focus {
  background-color: transparent;
  color: #ffffff;
}
.header .navbar-menu.is-active {
  background-color: #e29820;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  transition: all 0.3s ease;
}
.header .navbar-menu.is-active .navbar-start {
  display: block;
}
.header .navbar-menu.is-active .navbar-end {
  display: none;
}
.header .navbar-menu.is-active .navbar-item {
  font-size: 20px;
}
.header .navbar-burger {
  z-index: 99;
  display: block;
  margin: 0 70px 0 0;
}
.header .navbar-burger span {
  color: #fff;
}
.header .navbar-burger.text-circle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-right: 110px;
  cursor: pointer;
}
.header .navbar-burger.text-circle:before {
  content: "";
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 1;
}
.header .navbar-burger.text-circle p {
  font-family: "Exemplar Pro", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
}
.header .navbar-burger.text-circle p:first-child {
  display: block;
}
.header .navbar-burger.text-circle p:last-child {
  display: none;
}
.header .navbar-burger:hover.text-circle p:first-child {
  text-decoration: underline;
}
.header .navbar-burger.is-active span {
  color: #000;
}
.header .navbar-burger.is-active.text-circle {
  background-color: transparent;
  position: absolute;
  right: 3vw;
  top: 3vw;
}
.header .navbar-burger.is-active.text-circle p:first-child {
  display: none;
}
.header .navbar-burger.is-active.text-circle p:last-child {
  display: block;
}
.header .navbar-whatsapp img {
  filter: invert(1);
}
.header .navbar-whatsapp:hover img {
  filter: invert(0);
}
.header.active {
  background-color: #000;
  height: 100px;
}
.header.active .navbar-item img {
  width: 140px;
  transition: all 0.3s ease;
}
.header.active .enquire-button:before {
  opacity: 0;
}
@media only screen and (max-width: 1700px) {
  .header .navbar-item img {
    width: 140px;
  }
  .header .navbar-menu .navbar-item {
    font-size: 10px;
  }
  .header .navbar-menu .navbar-item:not(:last-child):after {
    width: 5px;
    height: 5px;
  }
  .header .navbar-end .navbar-item {
    display: flex;
    align-items: center;
  }
  .header .navbar-end .navbar-item a, .header .navbar-end .navbar-item p {
    font-size: 10px;
  }
  .header .navbar-end .navbar-item a img, .header .navbar-end .navbar-item p img {
    width: 10px;
    margin-right: 10px;
  }
  .header .navbar-end .control {
    margin: 0 !important;
  }
  .header .navbar-end .nav-divider {
    margin: 0 14px;
  }
  .header .navbar-burger {
    margin: 0 10px 0 0;
  }
  .header .navbar-burger.text-circle {
    padding-right: 90px;
  }
  .header .navbar-burger.text-circle:before {
    width: 10px;
    height: 10px;
    right: -10px;
  }
  .header .navbar-burger.text-circle p {
    font-size: 10px;
  }
  .header .enquire-button:before {
    width: 70px;
    height: 70px;
    left: 50px;
  }
  .header .navbar-phone-icon {
    width: 38px;
    height: 38px;
  }
  .header .navbar-phone-icon img {
    width: 40% !important;
    margin: auto;
  }
  .header.active {
    height: 70px;
  }
  .header.active .navbar-item img {
    width: 110px;
  }
  .header.active .enquire-button:before {
    width: 70px;
    height: 70px;
    left: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .header .navbar-menu {
    display: block;
    background-color: transparent;
    box-shadow: none;
  }
  .header .navbar-menu.is-active .navbar-item {
    font-size: 16px;
  }
  .header .navbar-burger {
    margin: 0 20px 0 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .header .navbar-menu .navbar-item {
    font-size: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .header {
    /* background-color: #ffffff; */
    justify-content: center;
  }
  .header .navbar-burger {
    display: block;
    margin: 0 20px 0 0;
  }
  .header .navbar-menu .navbar-item {
    font-size: 14px;
    padding: 10px 10px;
  }
  .header .navbar-menu .navbar-item:after {
    display: none;
  }
  .header .navbar-start,
.header .navbar-end {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 0 10px;
  }
  .header .navbar-item img {
    width: 120px;
  }
  .header .navbar-burger {
    margin: 0 10px 0 0;
  }
  .header .navbar-burger.text-circle:before {
    width: 6px;
    height: 6px;
    right: 0px;
  }
  .header .navbar-burger.text-circle p {
    font-size: 10px;
  }
  .header .navbar-end .navbar-item .nav-divider:nth-child(2) {
    display: none;
  }
  .header .navbar-end .navbar-item .control:nth-child(3) {
    display: none;
  }
  .header .enquire-button {
    border: 1px solid #dabf76;
    padding: 6px 10px;
    border-radius: 8px;
  }
  .header .enquire-button:hover {
    text-decoration: none;
  }
  .header .enquire-button:before {
    display: none;
  }
}

.enquire-button-fixed {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 9;
  transform: rotate(90deg) translate(0, -116px);
  background: #e29820;
  color: #fff;
  padding: 14px 22px 12px;
  font-size: 20px;
  line-height: 26px;
  border: none;
  border-radius: 0px 0px 10px 10px;
  height: auto;
}
@media only screen and (max-width: 1700px) {
  .enquire-button-fixed {
    transform: rotate(90deg) translate(0, -82px);
    padding: 12px 24px 11px;
    font-size: 12px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .enquire-button-fixed {
    transform: rotate(90deg) translate(0, -67px);
    padding: 9px 24px 8px;
    font-size: 18px;
    line-height: 18px;
  }
}

.brochure-btn {
  background: #e29820;
  color: #ffffff;
  padding: 22px 28px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 0;
}
.brochure-btn:hover {
  background: #ffffff;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .brochure-btn {
    padding: 16px 26px;
    font-size: 12px;
    line-height: 15px;
  }
}

.three-img-slider-wrp {
  position: relative;
}

.two-image-slider-wrp {
  width: 90%;
  padding: 0 7%;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .two-image-slider-wrp {
    padding: 0;
  }
}

.two-image-slider {
  width: 50%;
  margin-right: auto;
}
.two-image-slider .owl-stage-outer {
  overflow: visible;
}
.two-image-slider .owl-item .item {
  position: relative;
  padding: 4vw 0;
  transform: scale(0.9);
  opacity: 0;
}
.two-image-slider .owl-item .item .play-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  display: block;
  margin: auto;
}
.two-image-slider .owl-item .item .img-01 {
  filter: grayscale(1);
}
.two-image-slider .owl-item .item.text-wrp a {
  position: relative;
  text-align: left;
}
.two-image-slider .owl-item .item.text-wrp a:before {
  content: "";
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
  height: 40%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.two-image-slider .owl-item .item.text-wrp .para-02 {
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
}
.two-image-slider .owl-item.active .item {
  transform: scale(1);
  opacity: 1;
}
.two-image-slider .owl-item.active .item .img-01 {
  filter: grayscale(0);
}
.two-image-slider .owl-item.active ~ .owl-item .item {
  opacity: 1;
}
.two-image-slider .owl-item.active ~ .owl-item ~ .owl-item .item {
  opacity: 0;
}
.two-image-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
  left: -16%;
}
.two-image-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
  right: -116%;
}
.two-image-slider.owl-carousel .owl-dots {
  width: 200%;
}
@media only screen and (max-width: 1023px) {
  .two-image-slider .owl-item .item {
    padding: 30px 0;
  }
  .two-image-slider .owl-item .item .play-btn {
    width: 40px;
  }
  .two-image-slider .owl-item .item.text-wrp .para-02 {
    left: 12px;
    bottom: 12px;
  }
  .two-image-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
    left: -22%;
  }
  .two-image-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
    right: -124%;
  }
}
@media only screen and (max-width: 767px) {
  .two-image-slider {
    width: 100%;
  }
  .two-image-slider .owl-item .item {
    padding: 20px 0 40px;
    transform: scale(1);
    opacity: 1;
  }
  .two-image-slider .owl-item .item .play-btn {
    width: 30px;
  }
  .two-image-slider.owl-carousel .owl-dots {
    width: 100%;
    bottom: 0px !important;
  }
}

.single-image-slider {
  width: 76%;
  margin: auto;
  padding: 0 20px;
}
.single-image-slider .owl-item .item {
  position: relative;
  padding: 4vw 0;
}
.single-image-slider .owl-item .item .play-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  display: block;
  margin: auto;
}
.single-image-slider .owl-item .item.text-wrp a {
  position: relative;
  text-align: left;
}
.single-image-slider .owl-item .item.text-wrp a:before {
  content: "";
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
  height: 40%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.single-image-slider .owl-item .item.text-wrp .para-02 {
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  .single-image-slider .owl-item .item .play-btn {
    width: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .single-image-slider {
    width: 100%;
  }
  .single-image-slider .owl-item .item {
    padding: 20px 0 40px;
    transform: scale(1);
    opacity: 1;
  }
  .single-image-slider .owl-item .item .play-btn {
    width: 30px;
  }
  .single-image-slider.owl-carousel .owl-dots {
    width: 100%;
    bottom: 0px !important;
  }
}

.normal-video {
  position: relative;
}
.normal-video .iframe-wrp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.normal-video .iframe-wrp iframe {
  width: 100%;
  height: 100%;
}
.normal-video .video-thumb {
  display: block;
  cursor: pointer;
  position: relative;
}
.normal-video .video-thumb:before {
  content: "";
  background-color: #00000033;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.normal-video .thumb {
  display: block;
}
.normal-video .play-btn-wrp {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.normal-video .play-btn-wrp.btn-01 {
  width: 27px;
}
.normal-video .pause-button {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.normal-video .pause-button:before {
  position: absolute;
  right: 14px;
  top: 14px;
  background-color: #fff;
  color: #563636;
  font-size: 2vw;
  line-height: 0vw;
  padding: 1.2% 0.5%;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: none;
  transition-delay: 0s;
}
.normal-video.active .iframe-wrp {
  display: block;
}
.normal-video.active .video-thumb {
  opacity: 0;
  pointer-events: none;
}
.normal-video.active .pause-button {
  pointer-events: all;
}
.normal-video.active .pause-button:before {
  opacity: 1;
  transition: all 0.3s ease;
  transition-delay: 1s;
}
@media only screen and (max-width: 1700px) {
  .normal-video .play-btn-wrp.btn-01 {
    width: 16px;
  }
}

.play-btn-circle {
  position: relative;
  width: 11vw;
  height: 11vw;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.play-btn-circle ~ .para-02 {
  transition: all 0.3s ease;
}
.play-btn-circle span {
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  display: inline-block;
}
.play-btn-circle:hover {
  background-color: #e29820;
}
.play-btn-circle:hover ~ .para-02 {
  transform: translateX(7%);
}
@media only screen and (max-width: 1700px) {
  .play-btn-circle {
    width: 7vw;
    height: 7vw;
  }
  .play-btn-circle span {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid #fff;
  }
}
@media only screen and (max-width: 1023px) {
  .play-btn-circle {
    width: 10vw;
    height: 10vw;
  }
}
@media only screen and (max-width: 767px) {
  .play-btn-circle {
    width: 70px;
    height: 70px;
  }
  .play-btn-circle span {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    margin-left: 2px;
  }
}

.home-banner-wrp {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100vh;
}

.home-banner-wrp .content-wrp {
  width: 50%;
  padding: 0 60px;
}
.home-banner-wrp .content-wrp .heading-01 {
  /* margin-bottom: 40px; */
    /* font-size: 3vw; */
}
.home-banner-wrp .content-wrp .heading-01.email-not-found {
  border: 1px solid red;
  padding: 10px;
  margin: 0 0 30px;
  font-size: 2vw;
}
.home-banner-wrp .content-wrp .heading-01.email-not-found:hover {
  color: #e29820;
}
.home-banner-wrp .content-wrp a {
  display: flex;
  align-items: center;
}
.home-banner-wrp .content-wrp img {
  width: 14px;
  margin: 0 0 0px 10px;
}

.home-banner-wrp .content-wrp a.already-registered{
    justify-content: center;
    width: 100%;
    margin: 10px 0 0;
}
.home-banner-wrp .content-wrp a.already-registered:hover {
    color: #e29820;
}

.home-banner-wrp .scroll-down {
  z-index: 1;
  position: absolute;
  bottom: 0;
  text-align: center;
}
.home-banner-wrp .scroll-down svg {
  width: 50px;
}
.home-banner-wrp .scroll-down .mouse-circle {
  background: #fff;
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 13px;
  border-radius: 10px;
  animation: mouse-circle 1.6s ease infinite;
}
@keyframes mouse-circle {
  0% {
    height: 4px;
  }
  25% {
    height: 10px;
  }
  50% {
    height: 4px;
  }
  100% {
    height: 4px;
  }
}
@media only screen and (min-width: 1400px) and (min-height: 750px) {
  .home-banner-wrp {
    /* height: 90vh; */
  }
}
@media only screen and (max-width: 1200px) {
  .home-banner-wrp {
    /* height: 63vh; */
  }
}
@media only screen and (device-width: 1024px) and (min-height: 1365px) {
  .home-banner-wrp {
    /* height: 34vh; */
  }
}
@media only screen and (max-width: 1023px) {
  .home-banner-wrp {
    /*margin-top: 50px;*/
    height: auto;
    min-height: 80vh;
    align-items: flex-start;
  }
  .home-banner-wrp > div{
    width: 100%;
  }
  .home-banner-wrp .content-wrp {
    padding: 50px 10px;
    width: 90%;
  }
  .home-banner-wrp .content-wrp .heading-01.email-not-found {
    font-size: 4vw;
  }
}
@media only screen and (device-width: 690px) and (min-height: 829px) {
  .home-banner-wrp {
    height: 47vh;
  }
}
@media only screen and (max-width: 767px) {
  .home-banner-wrp {
    /* height: 200px; */
    /* margin-top: 64px; */
  }
}

.home-banner-slider {
  width: 50%;
  height: 100%;
}
.home-banner-slider .owl-stage-outer,
.home-banner-slider .owl-stage,
.home-banner-slider .owl-item {
  width: 100%;
  height: 100%;
}
.home-banner-slider .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.home-banner-slider .item .desktop-video{
  display: block;
}
.home-banner-slider .item .mobile-video{
  display: none;
}
.home-banner-slider .item iframe{
  width: 150%;
  height: 160%;
  transform: translate(-50%, -36%);
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;

  /* width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none; */
}
.home-banner-slider .item h3 {
  font-size: 60px;
  letter-spacing: 0;
}
.home-banner-slider .item p {
  font-size: 18px;
}
.home-banner-slider .item .pricing-section {
  border-top: 1px solid white;
  margin: 2vw 0;
  padding: 2vw 0;
}
.home-banner-slider .item .pricing-section .pricing-content {
  font-size: 2.5vw;
}
.home-banner-slider .item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.home-banner-slider .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}
.home-banner-slider .item .rera-line {
    color: #ffffff;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    font-size: 11px;
}
.home-banner-slider .b2 {
  background-image: url("../images/webp/top-banners/desktop/2.jpg");
}
.home-banner-slider .b3 {
  background-image: url("../images/webp/top-banners/desktop/3.jpg");
}
.home-banner-slider .b4 {
  background-image: url("../images/webp/top-banners/desktop/4.jpg");
}
.home-banner-slider .b5 {
  background-image: url("../images/webp/top-banners/desktop/5.jpg");
}
.home-banner-slider .b6 {
  background-image: url("../images/webp/top-banners/desktop/6.jpg");
}
.home-banner-slider .b7 {
  background-image: url("../images/webp/top-banners/desktop/7.jpg");
}
.home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-] {
  height: 18vw;
  width: 18vw;
}
.home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:before {
  transform: translateX(-400%);
}
.home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:after {
  transform: translate(-760%, 0%) rotate(-45deg);
}
.home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
  left: 0%;
  top: inherit;
  bottom: 6%;
  transform: translate(-60%, 0%) rotate(180deg);
}
.home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
  left: inherit;
  right: 0%;
  top: inherit;
  bottom: 6%;
  transform: translateX(60%);
}
.home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover:before {
  animation: 1s home-btn-arrow-before;
}
.home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover:after {
  animation: 1s home-btn-arrow-after;
}
.home-banner-slider.owl-carousel .owl-dots {
  bottom: 15px !important;
}
@keyframes home-btn-arrow-after {
  0%, 100% {
    transform: translate(-760%, 0%) rotate(-45deg);
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    transform: translate(-100%, 0%) rotate(-45deg);
    opacity: 0;
  }
  51% {
    transform: translate(-1460%, 0%) rotate(-45deg);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
}
@keyframes home-btn-arrow-before {
  0%, 100% {
    transform: translate(-400%, 0);
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    transform: translate(0, 0);
    opacity: 0;
  }
  51% {
    transform: translate(-800%, 0);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1300px) {
  .home-banner-slider .b1 {
    background-position: 0px -40px;
  }
}
@media only screen and (device-width: 1366px) and (min-height: 1023px) {
  .home-banner-slider .b1 {
    background-position: center;
  }
}
@media only screen and (max-width: 1700px) {
  .home-banner-slider .item h3 {
    font-size: 40px;
    line-height: 3vw;
  }
  .home-banner-slider .item .pricing-section {
    margin: 1.5vw 0;
    padding: 1.5vw 0;
  }
  .home-banner-slider .item .pricing-section .pricing-content {
    font-size: 2vw;
  }
  .home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:before {
    transform: translateX(-300%);
  }
  .home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:after {
    transform: translate(-600%, 0%) rotate(-45deg);
  }
  @keyframes home-btn-arrow-after {
    0%, 100% {
      transform: translate(-600%, 0%) rotate(-45deg);
      opacity: 1;
    }
    49% {
      opacity: 1;
    }
    50% {
      transform: translate(-100%, 0%) rotate(-45deg);
      opacity: 0;
    }
    51% {
      transform: translate(-1460%, 0%) rotate(-45deg);
      opacity: 0;
    }
    52% {
      opacity: 1;
    }
  }
  @keyframes home-btn-arrow-before {
    0%, 100% {
      transform: translate(-300%, 0);
      opacity: 1;
    }
    49% {
      opacity: 1;
    }
    50% {
      transform: translate(0, 0);
      opacity: 0;
    }
    51% {
      transform: translate(-800%, 0);
      opacity: 0;
    }
    52% {
      opacity: 1;
    }
  }
}
@media only screen and (max-width: 1024px) {
  .home-banner-slider .item h3 {
    font-size: 30px;
  }
  .home-banner-slider.owl-theme .owl-nav [class*=owl-].owl-prev {
    left: -6%;
  }
  .home-banner-slider.owl-theme .owl-nav [class*=owl-].owl-next {
    right: -6%;
  }
}
@media only screen and (max-width: 1023px) {
  .home-banner-slider {
    margin-top: 0%;
  }
  .home-banner-slider .item h3 {
    font-size: 34px;
    line-height: 4.5vw;
  }
  .home-banner-slider .item iframe {
    width: 130%;
    height: 130%;
    transform: translate(-50%, -50%);
}
  .home-banner-slider .item .desktop-video{
    display: none;
  }
  .home-banner-slider .item .mobile-video{
    display: block;
  }
  .home-banner-slider .item .pricing-section .pricing-content {
    font-size: 2.5vw;
  }
	.home-banner-slider .item .rera-line {
		right: auto;
		left: auto;
		bottom: 3px;
		font-size: 9px;
	}
  .home-banner-slider .b1 {
    background-position: center;
  }
  .home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-] {
    height: 50px;
    width: 50px;
  }
  .home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:before {
    width: 18px;
    height: 2px;
    transform: translateX(50%);
  }
  .home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-]:after {
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: translate(-60%, 0%) rotate(-45deg);
  }
  .home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-prev {
    bottom: 43%;
    transform: translate(10%, 0%) rotate(180deg);
  }
  .home-banner-slider.slider-btn-arrow-circle.owl-theme .owl-nav [class*=owl-].owl-next {
    bottom: 43%;
    transform: translateX(-20%);
  }
  .home-banner-slider.owl-carousel .owl-dots {
    bottom: -3% !important;
  }
  @keyframes home-btn-arrow-after {
    0%, 100% {
      transform: translate(-460%, 0%) rotate(-45deg);
      opacity: 1;
    }
    49% {
      opacity: 1;
    }
    50% {
      transform: translate(-100%, 0%) rotate(-45deg);
      opacity: 0;
    }
    51% {
      transform: translate(-1460%, 0%) rotate(-45deg);
      opacity: 0;
    }
    52% {
      opacity: 1;
    }
  }
  @keyframes home-btn-arrow-before {
    0%, 100% {
      transform: translate(-200%, 0);
      opacity: 1;
    }
    49% {
      opacity: 1;
    }
    50% {
      transform: translate(0, 0);
      opacity: 0;
    }
    51% {
      transform: translate(-800%, 0);
      opacity: 0;
    }
    52% {
      opacity: 1;
    }
  }
}
@media only screen and (device-width: 690px) and (min-height: 829px) {
  .home-banner-slider .item .desktop-video {
    display: block;
  }
  .home-banner-slider .item .mobile-video {
    display: none;
  }
  .home-banner-slider .item iframe {
    transform: translate(-50%, -50%);
    top: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .home-banner-slider {
    width: 100%;
  }
  .home-banner-slider .item h3 {
    font-size: 32px;
    line-height: 5vw;
  }
  .home-banner-slider .item .pricing-section .pricing-content {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .home-banner-slider .item > div .digit {
    font-size: 6vw !important;
  }
  .home-banner-slider .item h3 {
    font-size: 22px;
    line-height: 25px;
  }
  .home-banner-slider .item h2 img {
    width: 80% !important;
    margin: 0 auto;
  }
  .home-banner-slider .item p {
    padding: 0px 30px;
  }
  .home-banner-slider .item .pricing-section .pricing-content {
    font-size: 16px;
  }
}

.enquire-now-section {
  position: relative;
  background-size: cover;
}
.enquire-now-section .heading-wrapper .para-01 {
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: "Raleway", system-ui;
}
.enquire-now-section .heading-wrapper .para-01 img {
  width: 16px;
  margin-right: 10px;
}
.enquire-now-section .heading-wrapper .para-01 a {
    color: #ffffff;
}
.enquire-now-section .heading-wrapper .para-01 a:hover {
    text-decoration: underline;
}
.enquire-now-section .heading-wrapper .para-01 a img{
    margin: 0px 3px -3px 4px;
}
.enquire-now-section .heading-wrapper .para-01 a.link-icon{
  text-decoration: underline;
}
.enquire-now-section .heading-wrapper .para-01 a.link-icon:hover{
  text-decoration: none;
}
.enquire-now-section .radiobtn-wrp {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.enquire-now-section .radiobtn-wrp .radiobtn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.enquire-now-section .radiobtn-wrp .radiobtn label {
  display: flex;
  align-items: center;
  margin: 10px 26px 0 0;
}
.enquire-now-section .radiobtn-wrp .radiobtn label span {
  margin-left: 6px;
}
.enquire-now-section .radiobtn-wrp .radiobtn input[type=radio] {
  min-height: auto;
  width: auto;
}
.enquire-now-section .radiobtn-wrp input[type=text] {
  width: 48%;
}
.enquire-now-section .radiobtn-wrp.guests-radiobtn-wrp {
  align-items: flex-start;
}
.enquire-now-section .radiobtn-wrp.guests-radiobtn-wrp .radiobtn {
  margin-top: -3px;
}
@media only screen and (max-width: 1700px) {
  .enquire-now-section .content-wrp {
    background-size: 56%;
    padding-bottom: 190px;
  }
  .enquire-now-section .content-wrp .wrp-01 .p1 {
    font-size: 20px;
  }
  .enquire-now-section .content-wrp .wrp-01 .p2 {
    font-size: 20px;
  }
  .enquire-now-section .content-wrp .wrp-02 {
    padding: 4vw 0;
  }
  .enquire-now-section .content-wrp .wrp-02 p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .enquire-now-section .content-wrp .wrp-02 img {
    width: 200px;
  }
}
@media only screen and (max-width: 1200px) {
  .enquire-now-section .content-wrp {
    background-size: 50%;
    padding-bottom: 150px;
  }
  .enquire-now-section .content-wrp .wrp-01 .p1 {
    font-size: 16px;
  }
  .enquire-now-section .content-wrp .wrp-01 .p2 {
    font-size: 16px;
  }
  .enquire-now-section .content-wrp .wrp-02 {
    padding: 50px 0 30px;
  }
  .enquire-now-section .content-wrp .wrp-02 p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .enquire-now-section .content-wrp .wrp-02 img {
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .enquire-now-section .content-wrp .wrp-01 > div {
    margin-bottom: 10px;
  }
  .enquire-now-section .content-wrp .wrp-01 > div:after {
    content: "";
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .enquire-now-section .heading-wrapper .para-01 {
    align-items: flex-start;
  }
  .enquire-now-section .heading-wrapper .para-01:nth-child(4) img {
    margin-right: 6px;
    /*transform: translateX(16px);*/
    width: 13px;
  }
}

.end-section {
  padding-top: 5vw;
  padding-bottom: 5vw;
}
.end-section p {
  color: #797979;
  font-weight: 400;
  text-transform: none;
}
.end-section .heading-wrapper > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.end-section .heading-wrapper > div > div > div > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 10px 0;
}
.end-section .heading-wrapper > div > div > div > div .img-wrp {
  display: flex;
  width: 16px;
  margin: 0 10px;
}
.end-section .heading-wrapper > div > div > div > div .para-02 {
  width: calc(100% - 16px);
}
.end-section .heading-wrapper > div > div p:first-child {
  margin: 50px 0 20px;
}
.end-section .heading-wrapper .follow-us {
  display: flex;
  align-items: center;
}
.end-section .heading-wrapper .follow-us a {
  margin-left: 4vw;
}
.end-section .heading-wrapper .follow-us a img {
  filter: invert(1);
}
.end-section .end-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid;
  padding-top: 5vw;
  margin-top: 6vw;
}
.end-section .end-content .img-wrp {
  width: 216px;
}
@media only screen and (max-width: 1700px) {
  .end-section .heading-wrapper > div > div p:first-child {
    margin: 30px 0 10px;
  }
  .end-section .heading-wrapper .follow-us a {
    margin-left: 1.2vw;
    width: 30px;
  }
  .end-section .end-content {
    padding-top: 1vw;
    margin-top: 2vw;
  }
  .end-section .end-content p {
    font-size: 11px;
  }
  .end-section .end-content .img-wrp {
    width: 136px;
  }
}
@media only screen and (max-width: 767px) {
  .end-section {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .end-section .heading-wrapper > div {
    flex-wrap: wrap;
  }
  .end-section .heading-wrapper .follow-us {
    width: 100%;
    justify-content: center;
  }
  .end-section .heading-wrapper .follow-us a {
    margin: 10px 15px 0 0;
  }
  .end-section .end-content {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
  }
  .end-section .end-content p {
    margin-bottom: 20px;
  }
  .end-section .end-content .img-wrp {
    display: none;
  }
}

/**/
.follow-us {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0;
}
.follow-us a {
    margin: 0 0 0 16px;
    display: flex;
}
.follow-us a:first-child {
    margin: 0;
}
.follow-us a img {
    width: 20px;
    filter: invert(0);
    margin: 0 !important;
}
/**/

.media-section .container {
  padding: 0;
}
.media-section .heading-wrapper {
  text-align: center;
}
.media-section .media-logo {
  justify-content: flex-start;
  width: 150%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.media-section .media-logo a {
  padding: 0 10px;
  margin: 0 30px;
  width: 200px;
}
.media-section .media-logo img {
  width: 100%;
}
.media-section .media-logo > div {
  display: flex;
  align-items: center;
  animation: logoloop 60s linear infinite;
}
@media only screen and (max-width: 1023px) {
  .media-section .media-logo {
    width: 100%;
  }
  .media-section .media-logo a {
    padding: 0 4px;
    margin: 0 10px;
    width: 100px;
  }
}

@keyframes logoloop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.eq-btn-mobile,
.call-btn-mobile {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .eq-btn-mobile,
.call-btn-mobile {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 14px;
    color: #fff;
    background: #ffffff;
    width: 50%;
    padding: 10px 0;
    text-align: center;
    z-index: 999;
  }
}

.call-btn-mobile {
  left: 50%;
  border-left: 1px solid #fff;
  display: none;
}
.call-btn-mobile span {
  padding: 0 10px;
}

.mobile-cta-wrp {
  display: none;
  background: #dcc277;
  align-items: center;
  justify-content: space-evenly;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #2c2e2e;
  padding: 12px 0;
  z-index: 999;
}
.mobile-cta-wrp a {
  padding: 10px;
  display: flex;
  border: 1px solid #2b2f3059;
  border-radius: 50%;
}
.mobile-cta-wrp a img {
  width: 20px;
  filter: brightness(0);
}
.mobile-cta-wrp a:first-child img {
  width: 22px;
}
@media only screen and (max-width: 1023px) {
  .mobile-cta-wrp {
    display: flex;
    background-color: transparent;
    border: none;
  }
  .mobile-cta-wrp a:first-child {
    display: none;
  }
  .mobile-cta-wrp a:nth-child(2) {
    display: flex;
    background-color: #dcc277;
    position: absolute;
    right: 24px;
    bottom: 210px;
  }
  .mobile-cta-wrp a:nth-child(3) {
    display: none;
  }
}

.dwnBro {
  width: 165px;
  height: 34px;
  display: flex;
  background-repeat: no-repeat;
  background-color: #232e5b;
  position: fixed;
  right: 0;
  top: 50%;
  transform: rotate(-90deg) translateY(66px);
  z-index: 11;
  align-items: center;
  justify-content: center;
  background-position: 6px 6px;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #fff;
}




.tab-accordion {
  padding: 20px 0;
  border-bottom: 1px solid #969696;
  position: relative;
}
.tab-accordion .accordion-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.tab-accordion .accordion-section-title:after {
  content: "";
  display: none;
}
.tab-accordion .accordion-section-title p, .tab-accordion .accordion-section-title .para-03, .tab-accordion .accordion-section-title .footer .p-text, .footer .tab-accordion .accordion-section-title .p-text, .tab-accordion .accordion-section-title .footer .a-link, .footer .tab-accordion .accordion-section-title .a-link, .tab-accordion .accordion-section-title h2 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 1px;
  pointer-events: none;
}
.tab-accordion .accordion-section-title .icon {
  width: 40px;
  height: 20px;
  position: absolute;
  right: 0;
  display: inline-flex;
}
.tab-accordion .accordion-section-title .icon:after {
  content: "+";
  font-size: 60px;
  position: absolute;
  top: 0;
  transform: translateY(0);
}
.tab-accordion .accordion-section-title.active p {
  pointer-events: none;
}
.tab-accordion .accordion-section-title.active .icon {
  pointer-events: none;
}
.tab-accordion .accordion-section-title.active .icon:after {
  content: "-";
}
.tab-accordion .accordion-section-content {
  display: none;
  padding: 2vw 0 10px;
  font-size: 20px !important;
  color: #575757;
}
.tab-accordion .accordion-section-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 12px;
}
.tab-accordion .accordion-section-content ul li {
  line-height: 1.4;
  color: #575757;
}
.tab-accordion .accordion-section-content p {
  margin-bottom: 10px;
  line-height: 1.4;
  display: initial;
}
.tab-accordion .accordion-section-content li, .tab-accordion .accordion-section-content p {
  font-size: 20px !important;
}
.tab-accordion .accordion-section-content.open {
  display: block;
}
.tab-accordion:last-child {
  border-bottom: 0;
}
.tab-accordion.question {
  padding-left: 60px;
}
.tab-accordion.question:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 18px;
  background-color: #67ae45;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
}
.tab-accordion.plus-minus-bg .accordion-section-title {
  padding-right: 50px;
}
.tab-accordion.plus-minus-bg .accordion-section-title .icon {
  background-color: transparent;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tab-accordion.plus-minus-bg .accordion-section-content {
  padding-right: 50px;
}
.tab-accordion.plus-minus-bg .accordion-section-content a:hover{
  color: #fff;
}
.tab-accordion.plus-minus-bg.is-primary .accordion-section-title .icon {
  background-color: transparent;
  color: #363636;
}
.tab-accordion.plus-minus-bg.is-dark .accordion-section-title .icon {
  background-color: #1f1f1f;
  color: #fff;
}
.tab-accordion.plus-minus-bg.is-white .accordion-section-title .icon {
  background-color: transparent;
  color: #fff;
}
.tab-accordion.border-light {
  border-color: #969696;
}
@media screen and (max-width: 1700px) {
  .tab-accordion .accordion-section-title p, .tab-accordion .accordion-section-title .para-03, .tab-accordion .accordion-section-title .footer .p-text, .footer .tab-accordion .accordion-section-title .p-text, .tab-accordion .accordion-section-title .footer .a-link, .footer .tab-accordion .accordion-section-title .a-link, .tab-accordion .accordion-section-title h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .tab-accordion .accordion-section-title .icon:after {
    font-size: 30px;
    line-height: 30px;
  }
  .tab-accordion .accordion-section-content {
    font-size: 16px !important;
  }
  .tab-accordion .accordion-section-content li, .tab-accordion .accordion-section-content p {
    font-size: 16px !important;
  }
  .tab-accordion.question {
    padding-left: 46px;
  }
  .tab-accordion.question:before {
    top: 14px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .tab-accordion.plus-minus-bg .accordion-section-title .icon {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .tab-accordion .accordion-section-title p, .tab-accordion .accordion-section-title .para-03, .tab-accordion .accordion-section-title .footer .p-text, .footer .tab-accordion .accordion-section-title .p-text, .tab-accordion .accordion-section-title .footer .a-link, .footer .tab-accordion .accordion-section-title .a-link, .tab-accordion .accordion-section-title h2 {
    font-size: 16px;
    line-height: 20px;
  }
  .tab-accordion .accordion-section-title .icon:after {
    font-size: 22px;
  }
  .tab-accordion .accordion-section-content {
    font-size: 13px !important;
  }
  .tab-accordion .accordion-section-content li, .tab-accordion .accordion-section-content p {
    font-size: 13px !important;
  }
  .tab-accordion.question {
    padding-left: 38px;
  }
  .tab-accordion.question:before {
    top: 18px;
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tab-accordion .accordion-section-title .icon:after {
    font-size: 18px;
  }
  .tab-accordion .accordion-section-content ul li {
    line-height: 1.8;
  }
  .tab-accordion .accordion-section-content p {
    line-height: 1.8;
  }
  .tab-accordion.question {
    padding-left: 34px;
  }
  .tab-accordion.question:before {
    width: 20px;
    height: 21px;
    font-size: 12px;
  }
  .tab-accordion.plus-minus-bg .accordion-section-title {
    padding-right: 40px;
  }
  .tab-accordion.plus-minus-bg .accordion-section-content {
    padding-right: 40px;
  }
}

/****************************************************** Animation Start */
.anim_r_t_l_wrp {
  transform: translateX(10%);
  opacity: 0;
}

.anim_r_t_l {
  animation: anim_r_t_l 2s ease forwards;
}

@keyframes anim_r_t_l {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.anim_l_t_r_wrp {
  transform: translateX(-10%);
  opacity: 0;
}

.anim_l_t_r {
  animation: anim_l_t_r 2s ease forwards;
}

@keyframes anim_l_t_r {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.anim_t_t_b_wrp {
  transform: translateY(-10%);
  opacity: 0;
}

.anim_t_t_b {
  animation: anim_t_t_b 2s ease forwards;
}

@keyframes anim_t_t_b {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.anim_b_t_t_wrp {
  transform: translateY(10%);
  opacity: 0;
}

.anim_b_t_t {
  animation: anim_b_t_t 2s ease forwards;
}

@keyframes anim_b_t_t {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.anim_t_t_t_wrp {
  transform: translateY(-10%);
  opacity: 0;
}

.anim_t_t_t {
  animation: anim_t_t_t 2s ease forwards;
}

@keyframes anim_t_t_t {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.anim_fade_in_wrp {
  opacity: 0;
}

.anim_fade_in {
  animation: anim_fade_in 2s ease forwards;
}

@keyframes anim_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mask-wrp {
  background-size: 0;
  position: relative;
}

.mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #2c2e2e;
  position: absolute;
  top: 0;
}

.mask-wrp .mask.hide {
  -webkit-mask: url("../images/mask-sprite.png");
  mask: url("../images/mask-sprite.png");
  -webkit-mask-size: 2300% 100%;
  mask-size: 2300% 100%;
  -webkit-animation: mask-play 1.4s steps(22) forwards;
  animation: mask-play 1.4s steps(22) forwards;
}

@-webkit-keyframes mask-play {
  from {
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@keyframes mask-play {
  from {
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
.anim_splitting_wrp .char,
.anim_splitting_wrp .word {
  opacity: 0;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char,
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word {
  animation: slide-in 0.5s cubic-bezier(0.3, 0, 0.7, 1) both 0.5s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+1),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+1) {
  animation-delay: 0.1s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+2),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+2) {
  animation-delay: 0.2s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+3),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+3) {
  animation-delay: 0.3s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+4),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+4) {
  animation-delay: 0.4s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+5),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+5) {
  animation-delay: 0.5s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+6),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+6) {
  animation-delay: 0.6s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+7),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+7) {
  animation-delay: 0.7s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+8),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+8) {
  animation-delay: 0.8s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+9),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+9) {
  animation-delay: 0.9s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+10),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+10) {
  animation-delay: 1s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+11),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+11) {
  animation-delay: 1.1s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+12),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+12) {
  animation-delay: 1.2s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+13),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+13) {
  animation-delay: 1.3s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+14),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+14) {
  animation-delay: 1.4s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+15),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+15) {
  animation-delay: 1.5s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+16),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+16) {
  animation-delay: 1.6s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+17),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+17) {
  animation-delay: 1.7s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+18),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+18) {
  animation-delay: 1.8s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+19),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+19) {
  animation-delay: 1.9s;
}
.anim_splitting_wrp.slide-in.anim_splitting.splitting .char:nth-child(1n+20),
.anim_splitting_wrp.slide-in.anim_splitting.splitting .word:nth-child(1n+20) {
  animation-delay: 2s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char,
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word {
  animation: left-to-right 0.5s cubic-bezier(0.3, 0, 0.7, 1) both 0.5s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+1),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+1) {
  animation-delay: 0.1s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+2),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+2) {
  animation-delay: 0.2s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+3),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+3) {
  animation-delay: 0.3s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+4),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+4) {
  animation-delay: 0.4s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+5),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+5) {
  animation-delay: 0.5s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+6),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+6) {
  animation-delay: 0.6s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+7),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+7) {
  animation-delay: 0.7s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+8),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+8) {
  animation-delay: 0.8s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+9),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+9) {
  animation-delay: 0.9s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+10),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+10) {
  animation-delay: 1s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+11),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+11) {
  animation-delay: 1.1s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+12),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+12) {
  animation-delay: 1.2s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+13),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+13) {
  animation-delay: 1.3s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+14),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+14) {
  animation-delay: 1.4s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+15),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+15) {
  animation-delay: 1.5s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+16),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+16) {
  animation-delay: 1.6s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+17),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+17) {
  animation-delay: 1.7s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+18),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+18) {
  animation-delay: 1.8s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+19),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+19) {
  animation-delay: 1.9s;
}
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .char:nth-child(1n+20),
.anim_splitting_wrp.left-to-right.anim_splitting.splitting .word:nth-child(1n+20) {
  animation-delay: 2s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char,
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word {
  animation: right-to-left 0.5s cubic-bezier(0.3, 0, 0.7, 1) both 0.5s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+1),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+1) {
  animation-delay: 0.1s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+2),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+2) {
  animation-delay: 0.2s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+3),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+3) {
  animation-delay: 0.3s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+4),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+4) {
  animation-delay: 0.4s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+5),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+5) {
  animation-delay: 0.5s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+6),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+6) {
  animation-delay: 0.6s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+7),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+7) {
  animation-delay: 0.7s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+8),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+8) {
  animation-delay: 0.8s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+9),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+9) {
  animation-delay: 0.9s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+10),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+10) {
  animation-delay: 1s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+11),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+11) {
  animation-delay: 1.1s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+12),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+12) {
  animation-delay: 1.2s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+13),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+13) {
  animation-delay: 1.3s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+14),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+14) {
  animation-delay: 1.4s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+15),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+15) {
  animation-delay: 1.5s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+16),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+16) {
  animation-delay: 1.6s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+17),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+17) {
  animation-delay: 1.7s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+18),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+18) {
  animation-delay: 1.8s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+19),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+19) {
  animation-delay: 1.9s;
}
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .char:nth-child(1n+20),
.anim_splitting_wrp.right-to-left.anim_splitting.splitting .word:nth-child(1n+20) {
  animation-delay: 2s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char,
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word {
  animation: bottom-to-top 0.5s cubic-bezier(0.3, 0, 0.7, 1) both 0.5s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+1),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+1) {
  animation-delay: 0.1s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+2),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+2) {
  animation-delay: 0.2s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+3),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+3) {
  animation-delay: 0.3s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+4),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+4) {
  animation-delay: 0.4s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+5),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+5) {
  animation-delay: 0.5s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+6),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+6) {
  animation-delay: 0.6s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+7),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+7) {
  animation-delay: 0.7s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+8),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+8) {
  animation-delay: 0.8s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+9),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+9) {
  animation-delay: 0.9s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+10),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+10) {
  animation-delay: 1s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+11),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+11) {
  animation-delay: 1.1s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+12),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+12) {
  animation-delay: 1.2s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+13),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+13) {
  animation-delay: 1.3s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+14),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+14) {
  animation-delay: 1.4s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+15),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+15) {
  animation-delay: 1.5s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+16),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+16) {
  animation-delay: 1.6s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+17),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+17) {
  animation-delay: 1.7s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+18),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+18) {
  animation-delay: 1.8s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+19),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+19) {
  animation-delay: 1.9s;
}
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .char:nth-child(1n+20),
.anim_splitting_wrp.bottom-to-top.anim_splitting.splitting .word:nth-child(1n+20) {
  animation-delay: 2s;
}

@keyframes slide-in {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes left-to-right {
  from {
    transform: translateX(-10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes right-to-left {
  from {
    transform: translateX(10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bottom-to-top {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.sec-eq {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0 !important;
  background: #232e5b;
  width: 100%;
  z-index: 111;
  padding: 8px 0;
}

.sec-eq .btn-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-eq .btn {
  background-color: #fff;
  color: #363535;
  font-weight: 400;
  font-family: "Exemplar Pro", sans-serif;
}

.sec-eq .btn.arrow:before {
  background: #363535;
}

.sec-eq .btn.arrow:after {
  border: 1px solid #363535;
  border-top: none;
  border-left: none;
}

.sec-eq .btn.arrow:hover::before {
  right: 12px;
}

.sec-eq .btn.arrow:hover::after {
  right: 12px;
}

.sec-eq form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.eqTitle {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 15px;
  color: #fff;
}

.sec-eq .eqTitle {
  margin-left: 0;
}

.formControl {
  margin: 0 15px;
  width: 250px;
}

.formControl:last-child {
  width: auto;
  margin-right: 0;
}

.formControl input,
.formControl select {
  width: 100%;
  min-height: 70px;
  outline: 0;
  padding: 0 10px 0 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff4d;
  border-radius: 0px;
  color: #a4997b;
  font-family: "Exemplar Pro", sans-serif !important;
  letter-spacing: 1px;
  font-weight: 100 !important;
}

.formControl select:focus{
    box-shadow: none;
}

.formControl input.error_new,
.formControl select.error_new {
  border-bottom-color: red;
}

.formControl .select:not(.is-multiple):not(.is-loading)::after {
  border-color: #e29820;
}
.formControl .select:not(.is-multiple):not(.is-loading)::after:hover {
  border-color: #e29820;
}

.formControl.btn {
  width: 100px;
}

.subBtn {
  border: 0;
  outline: 0;
  font-weight: bold;
  cursor: pointer;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.error_bottom {
  border-bottom: 2px solid red !important;
}

.mobEq {
  display: none;
}

.closeBtn {
  display: none;
}

.sec-eq .intl-tel-input {
  width: 100%;
  color: #232e5b;
}

.selected-dial-code {
  color: #fff;
}

.iti-mobile .intl-tel-input.iti-container {
  z-index: 99999;
}

.sec-eqMobile {
  display: none;
}

.closeIcon {
  display: none;
}

.sec-eq.show {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999999999;
}

@keyframes upSlide {
  from {
    transform: translate(-50%, -50%) scale(1.2);
    transform-origin: center;
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.sec-eq.show .container {
  transform-origin: center;
  position: absolute;
  width: 400px;
  background: #e29820;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  animation-name: upSlide;
  -webkit-animation-name: upSlide;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

.sec-eq.show .closeIcon {
  display: flex;
  position: absolute;
  right: 15px;
  font-size: 18px;
  top: 10px;
  color: #fff;
  transform: rotate(45deg);
  background: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffff;
  cursor: pointer;
}

.sec-eq.show .eqTitle {
  margin: 15px 0;
}

.sec-eq.show form {
  flex-direction: column;
}

.sec-eq.show .formControl {
  width: 100%;
  margin: 0 0 15px 0;
}

.sec-eq.show .formControl input,
.sec-eq.show .formControl select {
  color: #fff;
  min-height: 40px;
}

.sec-eq.static {
  position: relative;
  background-color: transparent;
}

.sec-eq.static .container {
  padding-right: 0;
  padding-left: 0;
}

.sec-eq.static .eqTitle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 600;
  font-size: 25px;
  color: #e29820;
  display: none;
}

.sec-eq.static .formControl {
  margin: 1vw 0px;
  width: 48%;
}

.sec-eq.static .formControl input,
.sec-eq.static .formControl select,
.sec-eq.static .formControl select {
  border-block-color: #ffffff;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

.sec-eq.static .intl-tel-input {
  width: 100%;
}

.sec-eq.static .selected-dial-code {
  color: #ffffff;
}

.sec-eq.static .btn-wrp {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* margin: 30px 0 10px; */
}

.sec-eq.static .btn-wrp p{
  width: 100%;
}

.sec-eq.static .btn-wrp .btn {
  background-color: #e29820;
  color: #fff;
  padding: 16px 30px;
  font-size: 24px;
  margin: 10px 0 0;
  transition: all 0.3s ease;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sec-eq.static .btn-wrp .btn:before, .sec-eq.static .btn-wrp .btn:after {
  display: none;
}

.sec-eq.static .btn-wrp .btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #e29820;
}

.sec-eq .intl-tel-input .selected-flag .iti-arrow {
  right: 1px;
}

@media only screen and (max-width: 1700px) {
  .formControl input, .formControl select {
    min-height: 50px;
  }

  .sec-eq.static .eqTitle {
    font-size: 16px;
  }

  .sec-eq.static .btn-wrp .btn {
    padding: 14px 40px;
    font-size: 28px;
  }

  .sec-eq.static .formControl input,
.sec-eq.static .formControl select {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1500px) {
  .sec-eq.static .btn-wrp .btn {
    font-size: 14px;
  }

  .sec-eq.static .formControl input,
.sec-eq.static .formControl select {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .eqTitle {
    font-size: 16px;
  }

  .formControl {
    width: 180px;
    margin: 0 8px;
  }

  .sec-eq.static .btn-wrp .btn {
    /* margin-top: 18px; */
  }
}
@media only screen and (max-width: 1023px) {
  .sec-eq.show .container {
    width: 300px;
  }
}
@media only screen and (max-width: 800px) {
  .formControl {
    width: 140px;
    margin: 0 8px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-eq.static .container {
    padding: 0 20px;
  }

  .sec-eq.static .formControl {
    width: 100%;
    margin: 10px 0px;
  }

  .sec-eq.static .formControl input,
  .sec-eq.static .formControl select {
    font-size: 11px;
    min-height: 30px;
  }
	
  .sec-eq.static .formControl .select:after {
    top: 40%;
  }

  .sec-eq form {
    flex-direction: column;
  }

  .formControl {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .sec-eqMobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 20px;
    color: #000;
    background: #fff;
    width: 100%;
    padding: 10px 0 6px;
    text-align: center;
    z-index: 99;
  }

  .closeIcon {
    display: flex;
    display: none;
  }
  .sec-eq.static .btn-wrp .btn{
    width: 100%;
  }
}
input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.sec-eq.static input::-webkit-input-placeholder {
  color: #ffffff;
}

.sec-eq.static input::-moz-placeholder {
  color: #ffffff;
}

.sec-eq.static input:-ms-input-placeholder {
  color: #ffffff;
}

.sec-eq.static input:-moz-placeholder {
  color: #ffffff;
}

.loader {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  max-width: 70px;
  animation: none;
  border: none;
  width: 100%;
  height: 100%;
  max-height: 120px;
}

.overlay {
  z-index: 99999;
  top: 0px;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #00000087;
  opacity: 1;
  cursor: pointer;
}

/* CTAs */
.mobile-cta-wrp-01 {
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 50%;
  height: 60px;
  background: white;
  max-width: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.19);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.mobile-cta-wrp-01.cta-active {
  bottom: 0;
}

.mobile-cta-wrp-01 a {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-cta-wrp-01 a img {
  width: 40px;
}

body #kenytChatBubble.style1 {
  position: fixed;
  right: 0;
  bottom: 0px;
  width: 50%;
  background: white;
  max-width: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  height: 60px;
  box-shadow: 8px 0 10px 0px rgba(0, 0, 0, 0.19);
  transition: all 0.3s ease-in-out;
}

body #kenytChatBubble.style1:hover {
  /*     box-shadow: none; */
  box-shadow: 8px 0 10px 0px rgba(0, 0, 0, 0.19);
}

body #kenytChatBubble.style1 #kenytBubbleContainer {
  width: 50%;
  position: static;
}

body #kenytChatBubble.style1 #kenytBubbleContainer .kchannel-group {
  display: flex;
  justify-content: center;
}

body #kenytChatBubble.style1 .kbubble-container {
  width: 50%;
  position: static;
  background-color: transparent !important;
  border-color: transparent !important;
}

body #kenytChatBubble.style1:not(.k-hide) .chatWithUsMessageWrapper {
  display: none;
}

body #kenytChatBubble.style1.unreadcount[data-unreadcount]:after {
  right: 20%;
}

body.cta-active #kenytChatBubble.style1 {
  bottom: 0px;
}

@media only screen and (max-width: 759px) {
  body #kenytChatBubble.style1.unreadcount[data-unreadcount]:after {
    right: 10%;
  }
}

/*# sourceMappingURL=main.css.map */