@charset "UTF-8";
/*======================================================================== 
               								SASS FILES
========================================================================*/
/*======================================================================== 
               							HTML/CSS RESET
========================================================================*/
/* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.dpt-0 {
  padding-top: 1 !important;
}

/*======================================================================== 
               						HTML BASE STYLES
========================================================================*/
/*======================================================================== 
													Global Styles
========================================================================*/
@font-face {
  font-family: "assassinregular";
  src: url("../fonts/assassin-webfont.woff2") format("woff2"), url("../fonts/assassin-webfont.woff") format("woff"), url("../fonts/assassin-webfont.ttf") format("truetype"), url("../fonts/assassin-webfont.svg#assassinregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  width: 100% !important;
  font-family: "Encode Sans", sans-serif;
  letter-spacing: 0.5px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

input:-webkit-autofill,
input:-webkit-autofill:focus input:-webkit-autofill {
  box-shadow: 0 0 0px 50px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

button:focus, button:hover, button:active {
  outline: 0;
}

/*======================================================================== 
               								GRID 
========================================================================*/
/*======================================================================== 
               								PLUGINS
========================================================================*/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
      This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
      calculation of the height of the owl-item that breaks page layouts
     */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
/*
 *  Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**
 * 
 * AOS
 * 
 */
[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translate(0);
}

[data-aos=fade-up] {
  transform: translateY(100px);
}

[data-aos=fade-down] {
  transform: translateY(-100px);
}

[data-aos=fade-right] {
  transform: translate(-100px);
}

[data-aos=fade-left] {
  transform: translate(100px);
}

[data-aos=fade-up-right] {
  transform: translate(-100px, 100px);
}

[data-aos=fade-up-left] {
  transform: translate(100px, 100px);
}

[data-aos=fade-down-right] {
  transform: translate(-100px, -100px);
}

[data-aos=fade-down-left] {
  transform: translate(100px, -100px);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translateY(100px) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translateY(-100px) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate(-100px) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate(100px) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translateY(100px) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translateY(-100px) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate(-100px) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate(100px) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translate(0);
}

[data-aos=slide-up] {
  transform: translateY(100%);
}

[data-aos=slide-down] {
  transform: translateY(-100%);
}

[data-aos=slide-right] {
  transform: translateX(-100%);
}

[data-aos=slide-left] {
  transform: translateX(100%);
}

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

.magnifier-thumb-wrapper {
  position: relative;
  display: block;
  top: 0;
  left: 0;
}

.magnifier-lens {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 425px !important;
  height: 280px !important;
  background: none !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.magnifier-loader {
  position: absolute;
  top: 0;
  left: 0;
  border: solid 1px #ccc;
  color: #fff;
  text-align: center;
  background: transparent;
  background: rgba(50, 50, 50, 0.5);
  z-index: 1000;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F323232,endColorstr=#7F323232)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F323232,endColorstr=#7F323232);
}

.magnifier-loader-text {
  font: 13px Arial;
  margin-top: 10px;
}

.magnifier-large {
  position: absolute;
  z-index: 100;
}

.magnifier-preview {
  position: absolute;
  top: 0;
  left: 108%;
  width: 95.5%;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.magnifier-preview img {
  position: absolute;
  top: 0;
  left: 0;
}

.hidden {
  display: none;
}

.exzoom {
  box-sizing: border-box;
  width: 100%;
}
.exzoom * {
  box-sizing: border-box;
}
.exzoom .exzoom_img_box {
  position: relative;
  height: 100% !important;
}
.exzoom .exzoom_img_box .exzoom_main_img {
  display: block;
  width: 100%;
}
.exzoom .exzoom_img_box span {
  background: url("../images/whitebg.png") repeat;
}
.exzoom .exzoom_preview {
  display: none;
  position: absolute;
  top: 0;
  left: 108% !important;
  width: 95.5% !important;
  height: 100% !important;
  margin: 0;
  overflow: hidden;
  z-index: 999;
}
.exzoom .exzoom_preview .exzoom_preview_img {
  position: relative;
  max-width: initial !important;
  max-height: initial !important;
  left: 0;
  top: 0;
}
.exzoom .exzoom_nav {
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  left: 15px;
}
.exzoom .exzoom_nav .exzoom_nav_inner {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
}
.exzoom .exzoom_nav .exzoom_nav_inner span {
  border: 1px solid #ddd;
  overflow: hidden;
  position: relative;
  float: left;
}
.exzoom .exzoom_nav .exzoom_nav_inner span.current {
  border: 1px solid #f60;
}
.exzoom .exzoom_nav .exzoom_nav_inner span img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
}
.exzoom .exzoom_btn a {
  display: block;
  text-align: center;
}
.exzoom .exzoom_zoom {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  z-index: 5;
  cursor: pointer;
}
.exzoom .exzoom_img_ul_outer {
  position: absolute;
  overflow: hidden;
  height: 100% !important;
}
.exzoom .exzoom_img_ul_outer .exzoom_img_ul {
  position: absolute;
  height: 100% !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.exzoom .exzoom_img_ul_outer .exzoom_img_ul li {
  height: 100% !important;
  list-style: none;
  display: inline-block;
  text-align: center;
  float: left;
}
.exzoom .exzoom_img_ul_outer .exzoom_img_ul li img {
  width: 100%;
  margin-top: 0 !important;
}
.exzoom .exzoom_zoom_outer {
  top: 0 !important;
  height: 100% !important;
}

/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir=rtl] .slick-prev {
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

@keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  direction: ltr;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
}

.plyr audio, .plyr video {
  border-radius: inherit;
  height: auto;
  vertical-align: middle;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *, .plyr--full-ui ::after, .plyr--full-ui ::before {
  box-sizing: inherit;
}

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5764;
  border-radius: 2px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__captions .plyr__caption div {
  display: inline;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px;
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

a.plyr__control {
  text-decoration: none;
}

a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed {
  display: none;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: #fff;
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: #fff;
}

.plyr__control--overlaid {
  background: rgba(0, 179, 255, 0.8);
  border: 0;
  border-radius: 100%;
  color: #fff;
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  background: #00b3ff;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr__controls .plyr__controls__item.plyr__volume {
  padding-right: 5px;
}

.plyr__controls .plyr__controls__item.plyr__volume:first-child {
  padding-right: 0;
}

.plyr__controls:empty {
  display: none;
}

.plyr--audio .plyr__controls {
  background: #fff;
  border-radius: inherit;
  color: #4a5764;
  padding: 10px;
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px;
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr [data-plyr=airplay], .plyr [data-plyr=captions], .plyr [data-plyr=fullscreen], .plyr [data-plyr=pip] {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay], .plyr--captions-enabled [data-plyr=captions], .plyr--fullscreen-enabled [data-plyr=fullscreen], .plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 16px;
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: "";
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
}

.plyr__menu__container [role=menuitem], .plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child, .plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5764;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(74, 87, 100, 0.8);
  right: 5px;
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: calc(100% - 14px);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(74, 87, 100, 0.8);
  left: 7px;
}

.plyr__menu__container .plyr__control--back::before {
  background: #c1c9d1;
  box-shadow: 0 1px 0 #fff;
  content: "";
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after, .plyr__menu__container .plyr__control[role=menuitemradio]::before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #00b3ff;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  color: #00b3ff;
  display: block;
  height: 19px;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  -webkit-appearance: none;
  margin-top: -4px;
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  height: 5px;
}

.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  margin-top: 0;
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr__time {
  font-size: 14px;
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: 10px;
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0, 0) scale(1);
}

.plyr--video {
  background: #000;
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%;
}

.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr__progress {
  left: 6.5px;
  margin-right: 13px;
  position: relative;
}

.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -6.5px;
  margin-right: -6.5px;
  width: calc(100% + 13px);
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 5px;
  left: 0;
  margin-top: -2.5px;
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--video .plyr__progress__buffer {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25);
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 201, 209, 0.66);
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 41, 47, 0.6) 25%, transparent 25%, transparent 50%, rgba(35, 41, 47, 0.6) 50%, rgba(35, 41, 47, 0.6) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr__volume {
  align-items: center;
  display: flex;
  flex: 1;
  position: relative;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px;
  }
}
@media (min-width: 768px) {
  .plyr__volume {
    max-width: 110px;
  }
}
.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important;
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }

  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-moz-full-screen video {
  height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div, .plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads::after {
  background: rgba(35, 41, 47, 0.8);
  border-radius: 2px;
  bottom: 10px;
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3;
}

.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  left: 0;
  margin: -2.5px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c9d1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/*======================================================================== 
               								UI ELEMENTS
========================================================================*/
body.fixed_body {
  position: fixed;
  overflow: hidden;
}

/*======================================================================== 
										Helper Classes
========================================================================*/
.gap {
  float: left;
  width: 100%;
}
.gap.one {
  height: 10px;
}
.gap.two {
  height: 20px;
}
.gap.three {
  height: 30px;
}
.gap.four {
  height: 40px;
}
.gap.five {
  height: 50px;
}
.gap.six {
  height: 60px;
}
.gap.seven {
  height: 70px;
}
.gap.eight {
  height: 80px;
}
.gap.nine {
  height: 90px;
}
.gap.ten {
  height: 100px;
}

.mr_0 {
  margin: 0 !important;
}

.mt_0 {
  margin-top: 0 !important;
}

.mr_0 {
  margin-right: 0 !important;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.ml_0 {
  margin-left: 0 !important;
}

.pd_0 {
  padding: 0 !important;
}

.pt_0 {
  padding-top: 0 !important;
}

.pr_0 {
  padding-right: 0 !important;
}

.pb_0 {
  padding-bottom: 0 !important;
}

.pl_0 {
  padding-left: 0 !important;
}

.before_none::before {
  display: none !important;
}

.after_none::after {
  display: none !important;
}

.light_color {
  color: #ffffff !important;
}

.dark_color {
  color: #2b2b2b !important;
}

.yellow_color {
  color: #eeb91b !important;
}

/*======================================================================== 
										Loader Styles
========================================================================*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: #ffffff;
  opacity: 1;
  z-index: 1050;
  transition: all 0.5s ease 0s;
}
.loader.loaded {
  opacity: 0;
  z-index: -1;
}

#overlay_body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1d1d1d;
  overflow: hidden;
  z-index: 10000;
}
#overlay_body .load_img {
  position: absolute;
  bottom: 0;
  width: 60%;
  opacity: 0;
}
#overlay_body .load_img.left {
  height: 52%;
  left: 0;
  background: url("../images/loader/load-left.png") no-repeat;
  background-position: bottom left;
  background-size: contain;
}
#overlay_body .load_img.right {
  height: 68%;
  right: 0;
  background: url("../images/loader/load-right.png") no-repeat;
  background-position: bottom right;
  background-size: contain;
}
#overlay_body #loading-items {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translatey(-50%);
  z-index: 2;
}
#overlay_body .logo-loading {
  position: relative;
  display: block;
  width: 172px;
  height: 125px;
  margin: auto;
  z-index: 1;
}
#overlay_body .logo-loading .img_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1s ease-in-out 0s;
}
#overlay_body .logo-loading .img_overlay::before, #overlay_body .logo-loading .img_overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1d1d1d;
}
#overlay_body .logo-loading .img_overlay::after {
  background: url(../images/loader/logo_dull.png) no-repeat;
  z-index: 2;
}
#overlay_body #progstat {
  margin-top: 150px;
  margin-bottom: 40px;
  font-size: 15px;
  font-family: "assassinregular";
  letter-spacing: 6px;
  color: #eeb91b;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: all 1s ease-in-out 0s;
}
#overlay_body .load_line {
  display: block;
  width: 55px;
  height: 1px;
  margin: auto;
  background-color: #eeb91b;
  transform: scalex(0);
  transform-origin: center;
}

#content-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

#progress-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #eeb91b;
  z-index: 9999;
}

#inside_page_loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  opacity: 1;
  z-index: 1050;
}

/*======================================================================== 
										Typography Styles
========================================================================*/
.heading {
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.heading.type_one {
  font-family: "assassinregular";
  font-size: 50px;
  letter-spacing: 1px;
  line-height: 70px;
}
.heading.type_one.has_mt_top {
  margin-top: 100px;
}
.heading.type_two {
  font-family: "Encode Sans", sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}
.heading.sub_heading {
  position: relative;
  margin-left: 75px;
  padding-left: 120px;
  font-family: "assassinregular";
  font-size: 24px;
}
.heading.sub_heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 1px;
}
.heading.sub_heading.before_dark::before {
  background-color: #2b2b2b;
}
.heading.sub_heading.before_light::before {
  background-color: #ffffff;
}
.heading.sub_heading.has_top {
  top: 20px;
}
.heading .tag_line {
  margin-left: 30px;
  font-size: 14px;
  font-family: "Encode Sans", sans-serif;
  text-transform: initial;
}
.heading.has_after::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 118px;
  height: 2px;
  background-color: #eeb91b;
  transform: scale(0);
  transform-origin: left;
  transition: all 0.7s ease-in-out 0s;
}
.heading.has_after.scale_none::after {
  transform: scale(1);
}
.heading.has_pad_left {
  padding-left: 75px;
}
.heading.aos-animate.has_after::after {
  transform: scale(1);
  transition-delay: 0.5s;
}

.body_p {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #2b2b2b;
}
.body_p.bold {
  font-weight: bold;
}
.body_p.semi_bold {
  font-weight: 600;
}
.body_p.italic {
  font-style: italic;
}
.body_p.small {
  font-size: 15px;
}

span.special_ampersand {
  font-family: "Encode Sans", sans-serif;
}

/*======================================================================== 
										Button Styles
========================================================================*/
.brand_btn {
  position: relative;
  display: inline-block;
  padding: 16px 50px;
  font-family: "assassinregular";
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #2b2b2b;
  transition: color 0.7s ease-in-out 0s;
}
.brand_btn.yellow_btn_color::before, .brand_btn.yellow_btn_color::after {
  background-color: #eeb91b;
}
.brand_btn.yellow_btn_color .outer::before, .brand_btn.yellow_btn_color .outer::after {
  background-color: #eeb91b;
}
.brand_btn.white_btn_color {
  color: #ffffff;
}
.brand_btn.white_btn_color::before, .brand_btn.white_btn_color::after {
  background-color: #ffffff;
}
.brand_btn.white_btn_color .outer::before, .brand_btn.white_btn_color .outer::after {
  background-color: #ffffff;
}
.brand_btn::before, .brand_btn::after {
  content: "";
  position: absolute;
  background-color: #2b2b2b;
  animation: 0.5s cubic-bezier(0.7, 0, 0.3, 1) both;
}
.brand_btn::before {
  height: 1px;
  top: 0;
  left: 0;
  right: 0;
  transform-origin: 100% 0;
  animation-delay: 0.2s;
}
.brand_btn::after {
  width: 1px;
  top: 0;
  right: 0;
  bottom: 0;
  transform-origin: 0 0;
  animation-delay: 0.2s;
}
.brand_btn .outer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.brand_btn .outer::before, .brand_btn .outer::after {
  content: "";
  position: absolute;
  background-color: #2b2b2b;
  animation: 0.5s cubic-bezier(0.7, 0, 0.3, 1) both;
}
.brand_btn .outer::before {
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: 100% 0;
}
.brand_btn .outer::after {
  width: 1px;
  top: 0;
  left: 0;
  bottom: 0;
  transform-origin: 0 0;
}
.brand_btn .text {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.brand_btn:hover {
  color: #eeb91b;
}
.brand_btn:hover.btn_light {
  color: #ffffff;
}
.brand_btn:hover.btn_dark {
  color: #2b2b2b;
}
.brand_btn:hover::before, .brand_btn:hover .outer::before {
  animation-name: contactX;
}
.brand_btn:hover::after, .brand_btn:hover .outer::after {
  animation-name: contactY;
}
.brand_btn:focus {
  color: inherit;
}
@keyframes contactX {
  50% {
    transform: scaleX(0);
    transform-origin: 100% 0;
  }
  51% {
    transform-origin: 0 0;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}
@keyframes contactY {
  50% {
    transform: scaleY(0);
    transform-origin: 0 0;
  }
  51% {
    transform-origin: 0 100%;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0 100%;
  }
}

/********** Close Button *****************/
.close_button {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  overflow: hidden;
}
.close_button > div {
  position: relative;
}
.close_button_block {
  width: 40px;
  height: 20px;
  position: relative;
  overflow: hidden;
}
.close_button_block:before, .close_button_block:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(55% - 3px);
  display: block;
  width: 2px;
  height: 20px;
  background: #2b2b2b;
  transform-origin: bottom center;
  transition: all ease-out 280ms;
}
.close_button_block:last-of-type {
  transform: rotate(180deg);
}
.close_button .in .close_button_block:before {
  transform: translateX(20px) translateY(-20px) rotate(45deg);
}
.close_button .in .close_button_block:after {
  transform: translateX(-22px) translateY(-22px) rotate(-45deg);
}
.close_button .out {
  position: absolute;
  top: 0;
  left: 0;
}
.close_button .out .close_button_block:before {
  transform: translateX(-5px) translateY(5px) rotate(45deg);
}
.close_button .out .close_button_block:after {
  transform: translateX(5px) translateY(5px) rotate(-45deg);
}
.close_button:hover .in .close_button_block:before {
  transform: translateX(-5px) translateY(5px) rotate(45deg);
}
.close_button:hover .in .close_button_block:after {
  transform: translateX(5px) translateY(5px) rotate(-45deg);
}
.close_button:hover .out .close_button_block:before {
  transform: translateX(-20px) translateY(20px) rotate(45deg);
}
.close_button:hover .out .close_button_block:after {
  transform: translateX(20px) translateY(20px) rotate(-45deg);
}

.box_before {
  position: relative;
}
.box_before::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: #f2f2f3;
  transition: all 0.7s ease-in-out 0s;
}

/*======================================================================== 
													Header Styles
========================================================================*/
.main_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: #ffffff;
  text-align: center;
  z-index: 100;
}
.main_header::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 90%;
  height: 1px;
  background-color: #ececec;
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transition: all 0.8s ease-in-out 0s;
}
.main_header .menu_container {
  position: relative;
  display: block;
}
.main_header .menu_holder {
  width: 100%;
  display: block;
  margin-top: 55px;
}
.main_header .navbar-collapse {
  padding-right: 0px;
  padding-left: 0px;
}
.main_header .menu {
  position: relative;
  transition: all 0.6s ease-in-out 0s;
}
.main_header .menu .both_sides {
  display: block;
  width: 50%;
  float: left;
}
.main_header .menu .both_sides.left div {
  float: right;
}
.main_header .menu .both_sides .custom_margin_left {
  padding-left: 150px;
}
.main_header .menu .both_sides .custom_margin_right {
  padding-right: 150px;
}
.main_header .menu.scroll_in .both_sides .custom_margin_left {
  padding-left: 90px;
}
.main_header .menu.scroll_in .both_sides .custom_margin_right {
  padding-right: 90px;
}
.main_header .menu .menu_item {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 30px;
  transition: all 0.6s ease-in-out 0s;
}
.main_header .menu .menu_item a {
  position: relative;
  display: block;
  padding: 10px 25px;
  font-family: "assassinregular";
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 28px;
  text-transform: uppercase;
  text-align: center;
  color: #2b2b2b;
}
.main_header .menu .menu_item a span {
  position: relative;
}
.main_header .menu .menu_item a span::before {
  content: attr(data-text);
  position: absolute;
  top: -4px;
  left: 0;
  bottom: 100%;
  overflow: hidden;
  color: #eeb91b;
  transition: all 0.8s ease-in-out 0s;
}
.main_header .menu .menu_item a:hover span::before {
  bottom: 0;
}
.main_header .menu .menu_item a:hover span::after {
  transform: scale(1);
}
.main_header .menu .menu_item a.active span::before {
  bottom: 0;
}
.main_header .logo_holder {
  position: absolute;
  display: block;
  top: 10px;
  left: 50%;
  transform-origin: top;
  transform: translatex(-50%);
  transition: all 0.6s ease-in-out 0s;
}
.main_header .logo_holder a {
  display: block;
  padding: 0;
  line-height: 0;
  transform-origin: top;
  transition: all 0.6s ease-in-out 0s;
}
.main_header.scrolled .logo_holder a {
  transform: scale(0.55);
}
.main_header.scrolled_line::after {
  transform: scale(1);
  transition-delay: 0s;
}

.explore_menu_btn_holder {
  position: fixed;
  top: 62px;
  right: 35px;
  width: 30px;
  height: auto;
  cursor: pointer;
  z-index: 120;
}
.explore_menu_btn_holder .line {
  display: block;
  width: 30px;
  height: 2px;
  margin: auto;
  margin-bottom: 8px;
  background-color: #2b2b2b;
  transform: scale(1);
  transform-origin: center;
  transition: all 0.4s ease-in-out 0s;
}
.explore_menu_btn_holder .line.middle {
  position: absolute;
  top: 10px;
  left: 0px;
}
.explore_menu_btn_holder.is_open .line.one, .explore_menu_btn_holder.is_open .line.three {
  transform: scale(0);
}
.explore_menu_btn_holder.is_open .line.two {
  transform: rotate(45deg);
}
.explore_menu_btn_holder.is_open .line.middle {
  transform: rotate(-45deg);
}

.explore_menu_holder {
  position: fixed;
  top: 0;
  right: -25%;
  width: 25%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 110;
  transition: all 0.4s ease-in-out 0s;
}
.explore_menu_holder ul {
  margin-top: 140px;
  margin-left: 50px;
}
.explore_menu_holder li {
  margin-bottom: 10px;
}
.explore_menu_holder li:last-child {
  margin-bottom: 0px;
}
.explore_menu_holder li a {
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  font-family: "assassinregular";
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 28px;
  text-transform: uppercase;
  color: #2b2b2b;
  transform: translateX(50px);
  opacity: 0;
}
.explore_menu_holder li a span {
  position: relative;
}
.explore_menu_holder li a span::before {
  content: attr(data-text);
  position: absolute;
  top: -4px;
  left: 0;
  bottom: 100%;
  overflow: hidden;
  color: #eeb91b;
  transition: all 0.8s ease-in-out 0s;
}
.explore_menu_holder li a:hover span::before {
  bottom: 0;
}
.explore_menu_holder li a:hover span::after {
  transform: scale(1);
}
.explore_menu_holder li a.active span::before {
  bottom: 0;
}
.explore_menu_holder.active {
  right: 0;
}
.explore_menu_holder.active li:nth-child(1) a {
  transition-delay: 0.3s;
}
.explore_menu_holder.active li:nth-child(2) a {
  transition-delay: 0.6s;
}
.explore_menu_holder.active li:nth-child(3) a {
  transition-delay: 0.9s;
}
.explore_menu_holder.active li:nth-child(4) a {
  transition-delay: 1.2s;
}
.explore_menu_holder.active li:nth-child(5) a {
  transition-delay: 1.5s;
}
.explore_menu_holder.active li:nth-child(6) a {
  transition-delay: 1.8s;
}
.explore_menu_holder.active li a {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.5s ease-in-out 0s;
}

.tooltip.left {
  margin-left: -15px;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #2b2b2b;
}
.tooltip.left .tooltip-inner {
  padding: 6px 14px;
  border-radius: 0px;
  color: #ffffff;
  background-color: #2b2b2b;
}

#magic-line {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100px;
  height: 2px;
  background: #eeb91b;
  z-index: -1;
}

.social_links_fixed_holder {
  position: fixed;
  top: 110px;
  left: 0;
  width: 5%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 100;
  transition: all 0.6s ease-in-out 0s;
}
.social_links_fixed_holder .social_links_inner {
  opacity: 0.5;
  transition: all 0.6s ease-in-out 0s;
}
.social_links_fixed_holder .social_p {
  position: absolute;
  top: 40%;
  left: -36px;
  width: 170px;
  font-family: "Encode Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #909090;
  transform: rotate(-90deg);
}
.social_links_fixed_holder .menu_social_icon {
  position: absolute;
  bottom: 20%;
  width: 100%;
}
.social_links_fixed_holder .menu_social_icon:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #909090;
}
.social_links_fixed_holder .menu_social_icon li {
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: 25px;
  margin-bottom: 25px;
  line-height: 50px;
  text-align: center;
  background: #ffffff;
  z-index: 1;
}
.social_links_fixed_holder .menu_social_icon li a i {
  color: #909090;
  transition: all 0.6s ease-in-out 0s;
}
.social_links_fixed_holder .menu_social_icon li.facebook:hover a i {
  color: #3b5998;
}
.social_links_fixed_holder .menu_social_icon li.twitter:hover a i {
  color: #0084b4;
}
.social_links_fixed_holder .menu_social_icon li.instagram:hover a i {
  color: #D6249F;
}
.social_links_fixed_holder .menu_social_icon li.ytube:hover a i {
  color: #FF0000;
}
.social_links_fixed_holder .menu_social_icon li svg {
  position: absolute;
  top: 12px;
  left: 1px;
  z-index: -1;
}
.social_links_fixed_holder .menu_social_icon li:hover #bluecircle {
  stroke-dashoffset: 0;
}
.social_links_fixed_holder:hover .social_links_inner {
  opacity: 1;
}

.btn_right_fixed {
  position: fixed;
  top: 238px;
  right: -106px;
  transform: rotate(-90deg);
  z-index: 150;
}
.btn_right_fixed .brand_btn {
  letter-spacing: 2.1px;
  line-height: 21px;
}

.back_to_top {
  position: fixed;
  right: 0;
  bottom: 42px;
  width: 5%;
  height: 40vh;
  z-index: 100;
  transform: translatex(150px);
  opacity: 0.8;
  transition: all 0.6s ease-in-out 0s;
}
.back_to_top a {
  position: relative;
  top: 70%;
  left: -160%;
  display: inline-block;
  width: 400px;
  padding: 16px 25px;
  font-size: 11px;
  font-family: "Encode Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
  color: #909090;
  transform: rotate(-90deg);
}
.back_to_top a .line {
  position: absolute;
  display: block;
  top: 48%;
  left: 70%;
  width: 80px;
  height: 1px;
  background-color: #909090;
  transition: all 0.6s ease-in-out 0s;
}
.back_to_top a .line::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -5px;
  width: 0;
  height: 0;
  border-top: 3 solid transparent;
  border-bottom: 3 solid transparent;
  border-left: 3 solid #909090;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  border-left: 0.3rem solid #909090;
}
.back_to_top a:hover .line {
  width: 95px;
}
.back_to_top:hover {
  opacity: 1;
}
.back_to_top.scrolled {
  transform: translatex(0px);
}

/*======================================================================== 
													Enquiry Form styles
========================================================================*/
.enquiry_wraper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0px 100px;
  background-color: #ffffff;
  z-index: 1000;
  transform: translatex(100%);
  transition: transform 0.5s ease;
}
.enquiry_wraper.in {
  transform: translatex(0);
}
.enquiry_wraper .d_table {
  height: 100vh;
}
.enquiry_wraper .left {
  margin-top: 18%;
  margin-left: 15%;
}
.enquiry_wraper .close_button {
  position: absolute;
  top: -70px;
  right: 10px;
}
.enquiry_wraper .heading.sub_heading {
  margin-top: 40px;
  margin-bottom: 150px;
}
.enquiry_wraper .phone_number {
  position: relative;
  font-size: 36px;
}
.enquiry_wraper .phone_number img {
  position: relative;
  top: 5px;
  margin-right: 20px;
}
.enquiry_wraper .form_wraper {
  padding: 80px 90px;
  background-color: #eeb91b;
}
.enquiry_wraper .form_wraper .heading.type_one {
  margin-bottom: 15px;
  padding-left: 125px;
}
.enquiry_wraper .form_wraper .heading.type_one::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #2b2b2b;
}
.enquiry_wraper .form_wraper .body_p {
  margin-bottom: 105px;
  padding-left: 130px;
}
.enquiry_wraper .form-group {
  position: relative;
  margin-bottom: 80px;
}
.enquiry_wraper .input {
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  z-index: 1;
}
.enquiry_wraper .input__field {
  position: relative;
  display: block;
  float: right;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 0.5em;
  font-size: 16px;
  border: none;
  border-radius: 0;
  font-weight: 400;
  color: #2b2b2b;
  background: transparent;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */
}
.enquiry_wraper .input__field:focus {
  outline: none;
}
.enquiry_wraper .input__label {
  display: inline-block;
  position: absolute;
  float: right;
  width: 100%;
  padding: 10px 0 5px;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: left;
  color: #2b2b2b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.enquiry_wraper .input__label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2b2b2b;
  transform-origin: 50% 100%;
  transition: transform 0.3s, background-color 0.3s;
}
.enquiry_wraper .input__label-content {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  transform-origin: 0 0;
  transition: transform 0.3s, color 0.3s;
}
.enquiry_wraper .input__field:focus + .input__label::after,
.enquiry_wraper .input--filled .input__label::after {
  background: #2b2b2b;
  transform: scale3d(1, 0.25, 1);
}
.enquiry_wraper .input__field:focus + .input__label .input__label-content,
.enquiry_wraper .input--filled .input__label .input__label-content {
  color: #2b2b2b;
  letter-spacing: 1px;
  transform: translate3d(0, 30px, 0) scale3d(0.9, 0.9, 1);
}
.enquiry_wraper label.error {
  opacity: 0;
  position: absolute;
  bottom: -10px;
  font-size: 14px;
  color: red;
}
.enquiry_wraper .brand_btn {
  border: none;
  background-color: transparent;
}

.enquiery_loader {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  z-index: 1001;
}
.enquiery_loader i {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
}

.enquierymodal .heading.type_one {
  font-size: 36px;
}
.enquierymodal .body_p {
  margin-bottom: 20px;
}
.enquierymodal .close_button {
  position: absolute;
  top: 10px;
  right: 10px;
}
.enquierymodal .modal-content {
  height: 280px;
  margin-top: 10%;
  border: 0;
  border-radius: 2px;
}

/*======================================================================== 
													Footer Styles
========================================================================*/
.main_footer {
  position: relative;
  padding-top: 45px;
  padding-bottom: 85px;
  background-color: #231f20;
  font-size: 14px;
  color: #ffffff;
}
.main_footer .footer_contact_outer {
  margin-left: 35%;
}
.main_footer .footer_top {
  margin-bottom: 40px;
}
.main_footer .footer_line {
  position: relative;
}
.main_footer .footer_line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  bottom: 0;
  background-color: #423c3e;
}
.main_footer .footer_bottom {
  position: relative;
  padding-top: 60px;
}
.main_footer p {
  font-size: 15px;
  font-weight: 100;
}
.main_footer .footer_head {
  position: relative;
  margin-bottom: 22px;
  font-family: "assassinregular";
  font-size: 32px;
  letter-spacing: 1px;
}
.main_footer .footer_head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 80px;
  height: 1px;
  background-color: #eeb91b;
}
.main_footer .reg_no {
  font-weight: 500;
  letter-spacing: 1px;
}
.main_footer .reg_no span {
  font-weight: 100;
  font-style: italic;
}
.main_footer .rera_no {
  margin-top: 60px;
  font-size: 12px;
}
.main_footer .footer_contact li {
  position: relative;
  margin-bottom: 22px;
}
.main_footer .footer_contact li.link_mail a {
  color: #ffffff;
  transition: all 0.4s ease-in-out 0s;
}
.main_footer .footer_contact li.link_mail a:hover {
  color: #eeb91b;
}
.main_footer .footer_contact li img {
  position: relative;
  top: 4px;
  margin-right: 10px;
}
.main_footer .footer_address {
  margin-top: -6px;
  line-height: 24px;
}
.main_footer .footer_last_col {
  text-align: right;
}
.main_footer .footer_associate {
  font-size: 12px;
}
.main_footer .footer_social {
  margin-top: 80px;
  margin-left: 48%;
}
.main_footer .footer_social li {
  display: inline-block;
  float: left;
  margin-left: 30px;
}
.main_footer .footer_social li a {
  font-size: 18px;
  color: #ffffff;
  transition: all 0.6s ease-in-out 0s;
}
.main_footer .footer_social li a:hover.facebook {
  color: #3b5998;
}
.main_footer .footer_social li a:hover.twitter {
  color: #0084b4;
}
.main_footer .footer_social li a:hover.instagram {
  color: #D6249F;
}
.main_footer .footer_social li a:hover.ytube {
  color: #FF0000;
}
.main_footer .disclaimer {
  display: inline-block;
  margin-top: 64px;
  padding-bottom: 5px;
  font-size: 15px;
  color: #ffffff;
  text-transform: capitalize;
}
.main_footer .web_presence {
  display: inline-block;
  margin-top: 110px;
}

.bottom_gap {
  width: 100%;
  height: 80px;
}

.modal-backdrop.in {
  opacity: 0.8;
}

@media only screen and (max-width: 480px) {
  .awards-section-home {
    margin-top: 50px;
  }
}
.awards-section-home .brand_btn {
  margin-left: 70px;
  margin-top: 80px;
}
@media only screen and (max-width: 1440px) {
  .awards-section-home .brand_btn {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .awards-section-home .brand_btn {
    width: 24%;
    margin-left: 19px;
  }
}

.award-section-img {
  padding-top: 9em;
}

@media only screen and (max-width: 480px) {
  .award-item {
    text-align: center;
  }
}
.award-item figure img {
  width: auto;
}
@media only screen and (max-width: 1440px) {
  .award-item figure img {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .award-item figure img {
    width: auto;
  }
}
@media only screen and (max-width: 480px) {
  .award-item figure img {
    width: auto;
  }
}
.award-item .desc {
  font-family: "assassinregular";
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  width: 220px;
  max-width: 320px;
  padding-top: 35px;
  line-height: 26px;
}
@media only screen and (max-width: 1440px) {
  .award-item .desc {
    font-size: 15px;
    max-width: 320px;
    width: 170px;
  }
}
@media only screen and (max-width: 768px) {
  .award-item .desc {
    width: 70%;
    margin: 0 auto 50px auto;
  }
}
@media only screen and (max-width: 480px) {
  .award-item .desc {
    width: 70%;
    margin: 0 auto 50px auto;
  }
}
.award-item .desc:before {
  content: "";
  position: absolute;
  top: 46px;
  left: -50px;
  width: 30px;
  height: 1px;
  background-color: #2b2b2b;
}
@media only screen and (max-width: 480px) {
  .award-item .desc:before {
    left: -35px;
  }
}

.hidden-md-btn {
  display: none !important;
}

@media only screen and (max-width: 480px) {
  .hidden-sm-btn {
    display: none !important;
  }
}

@media only screen and (max-width: 480px) {
  .visible-sm-btn {
    display: block !important;
  }
}

.award-section-img .btn_dark {
  margin-bottom: 50px;
}

/*======================================================================== 
               								LAYOUT
========================================================================*/
/*======================================================================== 
													common styles 
========================================================================*/
.outer_container {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.content_outer_wraper {
  position: relative;
  overflow-x: hidden;
}

.d_table {
  display: table;
  width: 100%;
  height: 100%;
}
.d_table .d_table_cell {
  display: table-cell;
  vertical-align: middle;
}

/************** Discliamer Modal *******************/
.disclaimer_modal .modal-dialog {
  width: 80%;
  height: auto;
}
.disclaimer_modal .modal-body {
  padding: 50px;
}
.disclaimer_modal .heading {
  margin-bottom: 30px;
}
.disclaimer_modal .body_p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}
.disclaimer_modal .brand_btn {
  margin-top: 30px;
}
.disclaimer_modal .brand_btn:hover {
  color: #000000;
}

/*======================================================================== 
													home page styles 
========================================================================*/
/************** Banner Section *******************/
.banner_section {
  position: relative;
  width: 100%;
  height: calc( 100vh - 110px);
  margin-top: 110px;
}

.q_slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.q_slide .q_slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.q_slide .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.q_slide .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: #ffca00;
}
.q_slide .slide.q_current {
  display: block;
}
.q_slide .slide.is-loaded {
  opacity: 1;
}
.q_slide .slide .caption {
  position: absolute;
  text-transform: uppercase;
  color: #2b2b2b;
}
.q_slide .slide .caption .banner_heading {
  position: relative;
  font-family: "assassinregular";
}
.q_slide .slide .caption .banner_heading.top {
  font-size: 56px;
  line-height: 52px;
}
.q_slide .slide .caption .banner_heading.sub {
  margin-top: 20px;
  font-size: 32px;
}
.q_slide .slide .caption .banner_para {
  position: relative;
  margin-top: 50px;
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.q_slide .slide .caption .banner_para::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background-color: #2b2b2b;
}
.q_slide .slide .caption.one {
  top: 28vh;
  right: 8vw;
  text-align: right;
}
.q_slide .slide .caption.one .banner_para {
  padding-right: 100px;
}
.q_slide .slide .caption.one .banner_para::after {
  right: 0;
}
.q_slide .slide .caption.two {
  top: 28vh;
  left: 8vw;
  text-align: left;
}
.q_slide .slide .caption.two .banner_heading.top.second {
  padding-left: 156px;
}
.q_slide .slide .caption.two .banner_para {
  padding-left: 100px;
}
.q_slide .slide .caption.two .banner_para::after {
  left: 0;
}
.q_slide .slide .image-container, .q_slide .slide .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.q_slide .slide .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.q_slide .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  z-index: 2;
}
.q_slide .pagination {
  position: absolute;
  right: 8vw;
  bottom: 8%;
  margin-top: 0;
  cursor: default;
  z-index: 2;
}
.q_slide .pagination .item {
  position: relative;
  display: inline-block;
  margin: 0 15px;
  text-indent: -999em;
  cursor: pointer;
  z-index: 1;
}
.q_slide .pagination .item::before, .q_slide .pagination .item::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
}
.q_slide .pagination .item::before {
  width: 5px;
  height: 5px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.q_slide .pagination .item::after {
  top: -1px;
  left: -11px;
  width: 25px;
  height: 25px;
  border: 1px solid #ffffff;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
}
.q_slide .pagination .item:hover::before, .q_slide .pagination .item.q_current::before {
  background-color: #ffffff;
}
.q_slide .pagination .item:hover::after, .q_slide .pagination .item.q_current:hover::after {
  opacity: 1;
  transform: scale(1);
}
.q_slide.kenburns .slides .slide .image-container .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 30s linear;
}

.q_splitText span {
  display: inline-block;
}

@keyframes kenburns {
  0% {
    transform-origin: center center;
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.owl-carousel {
  height: 100%;
}
.owl-carousel .owl-stage-outer {
  height: 100%;
}
.owl-carousel .owl-stage {
  height: 100%;
}
.owl-carousel .owl-item {
  height: 100%;
}
.owl-carousel .owl-item .item {
  height: 100%;
}
.owl-carousel .owl-item img {
  height: 100%;
}

.owl-theme .owl-dots {
  display: none;
}

.scroll_link_outer {
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 300px;
  margin-left: -150px;
  padding: 25px 0;
  z-index: 1;
}
.scroll_link_outer .scroll-link {
  display: block;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}
.scroll_link_outer .text {
  position: relative;
  display: block;
  perspective: 600px;
  font-family: "Encode Sans", sans-serif;
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.25s;
}
.scroll_link_outer .text span {
  display: inline-block;
}
.scroll_link_outer .text span:nth-child(1) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.05s;
}
.scroll_link_outer .text span:nth-child(2) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.1s;
}
.scroll_link_outer .text span:nth-child(3) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.15s;
}
.scroll_link_outer .text span:nth-child(4) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.2s;
}
.scroll_link_outer .text span:nth-child(5) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.25s;
}
.scroll_link_outer .text span:nth-child(6) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.3s;
}
.scroll_link_outer .text span:nth-child(7) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.35s;
}
.scroll_link_outer .text span:nth-child(8) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.4s;
}
.scroll_link_outer .text span:nth-child(9) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.45s;
}
.scroll_link_outer .text span:nth-child(10) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.5s;
}
.scroll_link_outer .text span:nth-child(11) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.55s;
}
.scroll_link_outer .text span:nth-child(12) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.6s;
}
.scroll_link_outer .text span:nth-child(13) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.65s;
}
.scroll_link_outer .text span:nth-child(14) {
  animation: scroll-text 2s cubic-bezier(1, 0, 0, 1) forwards infinite 0.7s;
}
.scroll_link_outer .scroll-link-box {
  position: relative;
  margin-top: 25px;
  height: 30px;
  text-align: center;
}
.scroll_link_outer .scroll-link-box .scroll-link-arrow {
  animation: scroll-link-rotate 2s forwards infinite;
}
.scroll_link_outer .scroll-link-box .scroll-link-arrow path {
  stroke-dasharray: 40px 40px;
  stroke-dashoffset: 0px;
  animation: scroll-link-stroke-path 2s forwards infinite;
}

.scroll-link-line {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 2px;
  height: 30px;
  margin: auto;
  overflow: hidden;
}
.scroll-link-line > span {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  width: 1px;
  margin: auto;
  background: #ffffff;
  animation: scroll-link-line 2s cubic-bezier(1, 0, 0, 1) forwards infinite;
}

@keyframes scroll-link-line {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes scroll-text {
  0% {
    opacity: 0;
    transform: translateY(-8px) rotateX(90deg);
  }
  33% {
    opacity: 1;
    transform: translateY(0px) rotateX(0deg);
  }
  45% {
    opacity: 1;
    transform: translateY(0px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(8px) rotateX(-90deg);
  }
}
/*@keyframes scroll-link-stroke-line{
  0% { stroke-dashoffset: 0px;}
  15% { stroke-dashoffset: 0px;}
  100% { stroke-dashoffset: -38px;}
}*/
@keyframes scroll-link-stroke-path {
  0% {
    stroke-dashoffset: -40px;
  }
  50% {
    stroke-dashoffset: 0px;
  }
  100% {
    stroke-dashoffset: 40px;
  }
}
/************** About Section *******************/
.about_section {
  padding-top: 100px;
  padding-bottom: 180px;
}
.about_section .heading {
  pointer-events: none;
}
.about_section .custom_margin {
  position: relative;
  margin-top: -98px;
}
.about_section .about_carousel_holder {
  position: relative;
  width: 100%;
  height: 560px;
}
.about_section .about_carousel_holder .carousel_about {
  width: 100%;
  height: 560px;
}
.about_section .about_carousel_holder .carousel_about img {
  height: 100%;
}
.about_section .about_carousel_holder .carousel_about .carousel-indicators {
  left: auto;
  bottom: 60px;
  right: -30px;
  width: auto;
  margin-left: 0;
}
.about_section .about_carousel_holder .carousel_about .carousel-indicators li {
  position: relative;
  margin: 0px;
  display: block;
  width: 60px;
  height: 60px;
  border: 0px;
  border-radius: 0px;
  background-color: #221f1f;
  text-indent: 0px;
}
.about_section .about_carousel_holder .carousel_about .carousel-indicators li::after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: #eeb91b;
  z-index: 1;
  transform: scaley(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.about_section .about_carousel_holder .carousel_about .carousel-indicators li.day::after {
  transform-origin: center bottom;
}
.about_section .about_carousel_holder .carousel_about .carousel-indicators li.night::after {
  transform-origin: center top;
}
.about_section .about_carousel_holder .carousel_about .carousel-indicators img {
  position: relative;
  width: auto;
  height: auto;
  margin-top: 16px;
  z-index: 2;
}
.about_section .about_carousel_holder .carousel_about .carousel-indicators .active {
  width: 60px;
  height: 60px;
  background-color: #221f1f;
}
.about_section .about_carousel_holder .carousel_about .carousel-indicators .active::after {
  transform: scaley(1);
}
.about_section .about_carousel_holder .body_p {
  margin-top: 8px;
  font-size: 14px;
}
.about_section .about_carousel_holder .body_p span {
  font-weight: normal;
}
.about_section .about_text {
  position: relative;
  margin-top: 86px;
  z-index: -1;
}
.about_section .about_text .body_p.bold {
  margin-bottom: 20px;
}
.about_section .about_text .body_p.bottom {
  margin-top: 94px;
}
.about_section .project_info_outer {
  margin-top: 150px;
  margin-bottom: 40px;
}
.about_section .project_info_outer {
  *zoom: 1;
}
.about_section .project_info_outer:before, .about_section .project_info_outer:after {
  content: "";
  display: table;
}
.about_section .project_info_outer:after {
  clear: both;
}
.about_section .project_info_holder {
  position: relative;
  padding: 20px 0;
  width: 25%;
  float: left;
  text-align: center;
  text-transform: uppercase;
  color: #2b2b2b;
}
.about_section .project_info_holder::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 1px;
  height: 0%;
  background-color: #e1e1e1;
  transition: all 0.7s ease-in-out 0.5s;
}
.about_section .project_info_holder.aos-animate::after {
  height: 100%;
}
.about_section .project_info_holder .p_head {
  margin-bottom: 30px;
  font-family: "assassinregular";
  font-size: 28px;
  letter-spacing: 2px;
}
.about_section .project_info_holder .p_number {
  margin-bottom: 20px;
  font-family: "Encode Sans", sans-serif;
  font-size: 78px;
  letter-spacing: 1.5px;
  color: #eeb91b;
}
.about_section .project_info_holder .p_text {
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

@media all and (transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
.carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  .carousel-fade .carousel-inner > .item.prev,
.carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  .carousel-fade .carousel-inner > .item.next.left,
.carousel-fade .carousel-inner > .item.prev.right,
.carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/************** Solace Section *******************/
.solace_section {
  margin-bottom: 250px;
}
.solace_section.box_before::before {
  right: 100%;
  bottom: -10%;
  transition-delay: 0.5s;
}
.solace_section.aos-animate.box_before::before {
  right: 42.3%;
  bottom: -10%;
}
.solace_section .solace_left {
  padding-top: 150px;
}
.solace_section .solace_left .body_p.semi_bold {
  margin-bottom: 20px;
}
.solace_section .solace_left .body_p.bottom {
  margin-top: 40px;
  margin-bottom: 40px;
}
.solace_section .solace_left .heading.sub_heading {
  margin-left: 0;
}
.solace_section .solace_left .heading.sub_heading.bottom {
  margin-top: 10px;
  margin-left: 23%;
}
.solace_section .solace_left .icon_holder_outer {
  margin-top: 40px;
}
.solace_section .solace_left .icon_holder {
  display: inline-block;
  margin-right: 80px;
  text-align: center;
}
.solace_section .solace_left .icon_holder .icon_text {
  margin-top: 20px;
  font-family: "assassinregular";
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: 24px;
  text-transform: uppercase;
}
.solace_section .solace_right {
  padding-top: 90px;
}
.solace_section .solace_right .heading_rel {
  position: relative;
  top: 100px;
}
.solace_section .solace_carousel_holder {
  position: relative;
}
.solace_section .solace_carousel_holder.top {
  margin-bottom: 60px;
}
.solace_section .solace_carousel_holder.top .solase_left_behind {
  position: absolute;
  top: -50px;
  left: -146px;
  width: 100%;
  height: 100%;
}
.solace_section .solace_carousel_holder.bottom {
  overflow: hidden;
  margin-top: 0px;
}
.solace_section .solace_carousel_holder .carousel_solace_top {
  position: relative;
  width: 450px;
  height: 280px;
  z-index: 2;
}
.solace_section .solace_carousel_holder .carousel_solace_bottom img {
  width: 100%;
}
/************** Villa themed Section *******************/
.villa_themed_section {
  margin-bottom: 150px;
  text-align: center;
}
.villa_themed_section .villa_themed_holder {
  position: relative;
  width: 30%;
  float: left;
  text-transform: uppercase;
}
.villa_themed_section .villa_themed_holder:first-child {
  margin-left: 5%;
}
.villa_themed_section .villa_themed_holder.has_border {
  border-right: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
}
.villa_themed_section .vt_head {
  margin-bottom: 20px;
  font-family: "assassinregular";
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 2px;
}
.villa_themed_section img {
  margin-top: 20px;
  margin-bottom: 60px;
}

/************** Amenities Section *******************/
.amenities_section {
  margin-bottom: 150px;
  padding: 100px 0;
  background-color: #eeb91b;
}
.amenities_section::before, .amenities_section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0px;
}
.amenities_section .heading.type_two {
  margin-bottom: 80px;
}
.amenities_section img {
  position: relative;
}
.amenities_section .text_holder.top {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  z-index: 2;
}
.amenities_section .text_holder.top .body_p {
  padding-right: 50%;
}
.amenities_section .text_holder.top .brand_btn {
  margin-top: 40px;
}
.amenities_section .text_holder.bottom {
  position: relative;
  margin-top: 90px;
  z-index: 5;
}
.amenities_section .text_holder.bottom .heading.type_one {
  margin-bottom: 50px;
  font-size: 36px;
  line-height: 45px;
}
.amenities_section .text_holder.bottom .heading.type_one span {
  font-size: 20px;
}
.amenities_section .img_outer {
  position: relative;
  width: 650px;
  height: 400px;
  overflow: hidden;
  transition: box-shadow 0.4s ease-in-out 0s;
}
.amenities_section .amenities_holder {
  position: relative;
  z-index: 3;
}
.amenities_section .amenities_holder .img_outer {
  left: 145px;
}
.amenities_section .amenities_holder img {
  transition: all 0.5s ease-in-out 0s;
}
.amenities_section .amenities_holder:hover .img_outer {
  box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.3);
}
.amenities_section .amenities_holder:hover img {
  transform: scale(1.1);
}
.amenities_section .specification_holder {
  position: relative;
  margin-top: 50px;
  z-index: 2;
}
.amenities_section .specification_holder .text_holder.top {
  top: 60%;
  left: 42%;
}
.amenities_section .specification_holder .text_holder.top .body_p {
  padding-right: 10%;
}
.amenities_section .specification_holder .img_outer {
  left: -96px;
}
.amenities_section .specification_holder img {
  transition: all 0.5s ease-in-out 0s;
}
.amenities_section .specification_holder:hover .img_outer {
  box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.3);
}
.amenities_section .specification_holder:hover img {
  transform: scale(1.1);
}
.amenities_section .amenities_before_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.amenities_section .amenities_before_img.left {
  background: url("../images/amenities_before.png") no-repeat;
  background-position: bottom left;
}
.amenities_section .amenities_before_img.right {
  background: url("../images/amenities_after.png") no-repeat;
  background-position: bottom right;
}
.amenities_section.aos-animate .amenities_before_img {
  opacity: 1;
  transition-delay: 0.8s;
}

/************** Location Section *******************/
.location_section {
  margin-bottom: 200px;
}
.location_section.box_before::before {
  top: 18.2%;
  bottom: -5%;
  right: 100%;
  transition-delay: 0.5s;
}
.location_section.aos-animate.box_before::before {
  bottom: -5%;
  right: 0%;
}
.location_section .body_p {
  margin-top: 40px;
}
.location_section .body_p.bold {
  margin-top: 0px;
  margin-bottom: 20px;
}
.location_section .body_p.bottom {
  margin-top: 10px;
  padding-left: 120px;
}
.location_section .location_content {
  position: relative;
}
.location_section .location_content .heading.sub_heading {
  top: 0;
  margin: 60px 0 5px;
}
.location_section .location_content .content_right {
  margin-top: -45px;
  margin-left: 35px;
  padding: 60px;
  padding-right: 40px;
  width: 90%;
  background-color: #eeb91b;
}
.location_section .location_content .map_img_outer {
  position: relative;
  margin-top: 210px;
  margin-left: 15px;
  cursor: pointer;
}
.location_section .location_content .map_img_outer::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  background: rgba(0, 0, 0, 0.4) url(../images/icons/icon_search.png) no-repeat center;
  background-size: 55%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0s;
}
.location_section .location_content .map_img_outer:hover::after {
  opacity: 1;
}
.location_section .location_content img {
  position: relative;
}
.location_section .location_content .qr_code {
  float: left;
  width: 100px;
  margin-top: 45px;
  margin-left: 65px;
}
.location_section .location_content .goto_map {
  position: relative;
  display: inline-block;
  float: right;
  margin-top: 90px;
  padding-right: 45px;
  padding-left: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #909090;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out 0s;
}
.location_section .location_content .goto_map::after, .location_section .location_content .goto_map::before {
  content: "";
  position: absolute;
  transition: all 0.4s ease-in-out 0s;
}
.location_section .location_content .goto_map::before {
  top: 50%;
  right: 5px;
  width: 25px;
  height: 1px;
  background-color: #909090;
}
.location_section .location_content .goto_map::after {
  top: 2.5px;
  right: 0;
  width: 0px;
  height: 0px;
  width: 0;
  height: 0;
  border-top: 3 solid transparent;
  border-bottom: 3 solid transparent;
  border-left: 3 solid #909090;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  border-left: 0.3rem solid #909090;
}
.location_section .location_content .goto_map img {
  position: absolute;
  width: 35px;
  top: -14px;
  left: 0;
}
.location_section .location_content .goto_map:hover {
  color: #eeb91b;
}
.location_section .location_content .goto_map:hover::before {
  right: -4px;
}
.location_section .location_content .goto_map:hover::after {
  right: -5px;
}
.location_section ul {
  width: 50%;
  float: left;
  margin-top: 40px;
}
.location_section ul.list_right {
  padding-left: 45px;
}
.location_section ul li {
  margin-bottom: 25px;
  font-size: 14px;
}
.location_section ul li span {
  display: inline-block;
  width: 250px;
  font-weight: bold;
}

.map_modal .modal-content {
  margin-top: 5%;
}
.map_modal .modal-dialog {
  width: 75%;
}
.map_modal .modal-body {
  padding: 100px 0px;
}
.map_modal .close_button {
  position: absolute;
  top: 10px;
  right: 10px;
}

/************** People Behind Section *******************/
.architects_section {
  margin-bottom: 150px;
  padding: 100px 0;
}
.architects_section.box_before::before {
  right: 100%;
  transition: all 0.7s ease-in-out 0.5s;
}
.architects_section.aos-animate.box_before::before {
  right: 42.3%;
}
.architects_section img {
  width: 100%;
}
.architects_section .architects_section_outer {
  position: relative;
  margin-top: 80px;
}
.architects_section .text_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  transform: translatey(-35%);
}
.architects_section .text_holder .heading {
  margin-bottom: 100px;
}
.architects_section .text_holder .heading.type_one {
  font-size: 36px;
  line-height: 36px;
}
.architects_section .text_holder .heading.sec_head {
  margin-bottom: 64px;
}
.architects_section .text_holder .body_p {
  padding: 0 7%;
  color: #ffffff;
}
.architects_section .text_holder .body_p.top {
  margin-bottom: 40px;
  line-height: 26px;
}
.architects_section .text_holder .body_p.bottom {
  font-weight: 100;
}
.architects_section .text_holder .body_p span {
  font-weight: bold;
}
.architects_section .brand_btn {
  margin-top: 40px;
  color: #ffffff;
}

.arcitects_modal .body_p.top {
  margin-bottom: 25px;
}
.arcitects_modal .body_p.has_mr_both {
  margin: 20px 0px;
  margin-top: 50px;
  font-weight: bold;
}
.arcitects_modal .body_p.has_mb {
  margin-bottom: 20px;
}
.arcitects_modal .body_p span {
  font-weight: bold;
}

/************** Contact Section *******************/
.contact_section {
  padding: 80px 0;
  background: url("../images/contact_section_bg.jpg") no-repeat;
  background-size: cover;
}
.contact_section .heading.type_one {
  font-size: 36px;
}
.contact_section .brand_btn {
  margin-top: 60px;
}

/************** Loan Section *******************/
.loan_section {
  padding: 65px 0px;
}
.loan_section .heading.type_one {
  display: inline-block;
  font-size: 30px;
}
.loan_section .heading.type_one::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -130px;
  width: 100px;
  height: 1px;
  background-color: #000000;
}
.loan_section img {
  position: relative;
  top: 20px;
  margin-left: 280px;
}

/*======================================================================== 
													inside page styles 
========================================================================*/
.inside_page_banner {
  position: relative;
  width: 100% !important;
  height: 650px;
  margin-top: 110px;
  opacity: 0;
  transform: translatey(10vh);
}
.inside_page_banner.amenities_page {
  background: url("../images/banner/amenities_banner.jpg") no-repeat;
  background-size: cover;
  background-position: bottom;
}
.inside_page_banner.projectplan_page {
  background: url("../images/banner/projectplan_banner.jpg") no-repeat;
  background-size: cover;
}
.inside_page_banner.specifications_page {
  background: url("../images/banner/specifications_banner.jpg") no-repeat;
  background-size: cover;
}
.inside_page_banner.progress_page {
  background: url("../images/banner/progress_banner.jpg") no-repeat;
  background-size: cover;
}
.inside_page_banner.news-events {
  background: url("../images/banner/news-and-events-banner.jpg") no-repeat;
  background-size: cover;
}
.inside_page_banner.awards {
  background: url("../images/banner/awards-banner.jpg") no-repeat;
  background-size: cover;
}
.inside_page_banner.contact_page {
  background: url("../images/banner/contact_banner.jpg") no-repeat;
  background-size: cover;
}
.inside_page_banner.future_neighbours_page {
  background: url("../images/banner/future_neighbors_banner.jpg") no-repeat;
  background-size: cover;
}
.inside_page_banner .heading_holder {
  position: absolute;
  top: 285px;
  left: 110px;
}
.inside_page_banner .heading.bottom {
  padding-left: 185px;
}
.inside_page_banner .heading.bottom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 165px;
  height: 1px;
  background-color: #2b2b2b;
  transform: scalex(0);
  transform-origin: left;
  transition: all 0.7s ease-in-out 0s;
}
.inside_page_banner .heading.bottom.show::before {
  transform: scalex(1);
}
.inside_page_banner .heading span {
  display: inline-block;
}

.inside_page_content {
  position: relative;
  padding-top: 100px;
  opacity: 0;
  transform: translatey(10vh);
}
.inside_page_content .custom_margin {
  position: relative;
  margin-top: -98px;
}
.inside_page_content .inside_page_about_text {
  margin-top: 90px;
  margin-left: 10%;
}
.inside_page_content .inside_page_about_text .body_p.bottom {
  margin-top: 60px;
}
.inside_page_content .body_p.bold {
  margin-bottom: 20px;
}
.inside_page_content img {
  min-width: auto;
  width: auto;
}

/************** Amenities Page *******************/
.amenities_content {
  margin-bottom: 150px;
}
.amenities_content .c_pr_0 {
  padding-right: 0px;
}
.amenities_content .amenities_carousel_holder {
  overflow: hidden;
}
.amenities_content .amenities_carousel_holder .carousel-inner > .item > img {
  width: 100%;
}
.amenities_content .carousel_amenities {
  cursor: -webkit-grab;
}
.amenities_content .carousel_amenities.bottom {
  margin-top: 60px;
}
.amenities_content .content_bottom {
  position: relative;
  margin-top: 150px;
}
.amenities_content .center_line {
  position: absolute;
  top: -150px;
  bottom: 660px;
  width: 1px;
  left: calc( 50% - 1px);
  background-color: #eeb91b;
}
.amenities_content .amenities_holder {
  position: relative;
  margin-bottom: 180px;
}
.amenities_content .amenities_holder:nth-child(2) {
  margin-bottom: 320px;
}
.amenities_content .amenities_holder:nth-child(3) {
  margin-bottom: 185px;
}
.amenities_content .amenities_holder:nth-child(3).box_before::before {
  bottom: -10%;
}
.amenities_content .amenities_holder:nth-child(4) {
  margin-bottom: 315px;
}
.amenities_content .amenities_holder:nth-child(5) {
  margin-bottom: 195px;
}
.amenities_content .amenities_holder:nth-child(6) {
  margin-bottom: 175px;
}
.amenities_content .amenities_holder:nth-child(6).box_before::before {
  bottom: -10%;
}
.amenities_content .amenities_holder.box_before {
  padding-top: 80px;
  padding-bottom: 160px;
}
.amenities_content .amenities_holder.box_before::before {
  transition: all 0.7s ease-in-out 0s;
}
.amenities_content .amenities_holder.box_before.left::before {
  right: 100%;
}
.amenities_content .amenities_holder.box_before.right {
  padding-bottom: 80px;
}
.amenities_content .amenities_holder.box_before.right::before {
  left: 100%;
  right: 15px;
}
.amenities_content .amenities_holder.box_before.aos-animate.box_before.left::before {
  right: 42.3%;
}
.amenities_content .amenities_holder.box_before.aos-animate.box_before.right::before {
  left: 42.3%;
}
.amenities_content .amenities_list {
  margin-top: 60px;
}
.amenities_content .amenities_list .heading {
  margin-bottom: 30px;
  font-family: "assassinregular";
  font-size: 24px;
  letter-spacing: 1px;
  color: #2b2b2b;
}
.amenities_content .amenities_list .heading img {
  position: relative;
  top: 10px;
  margin-right: 30px;
}
.amenities_content .amenities_list .body_p {
  margin-bottom: 30px;
  padding-right: 25%;
}
.amenities_content .amenities_list ul.one {
  width: 42%;
  float: left;
}
.amenities_content .amenities_list ul.two {
  float: left;
  margin-left: 60px;
}
.amenities_content .amenities_list ul.has_pad_right {
  padding-right: 100px;
}
.amenities_content .amenities_list ul.has_mar_bottom {
  margin-bottom: 60px;
}
.amenities_content .amenities_list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 30px;
}
.amenities_content .amenities_list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #eeb91b;
}
.amenities_content .amenities_list li:last-child {
  margin-bottom: 0;
}
.amenities_content .amenities_img {
  position: relative;
}
.amenities_content .amenities_img.has_mr_left {
  margin-left: -15px;
}
.amenities_content .amenities_img.has_mr_right {
  margin-right: -15px;
}
.amenities_content .amenities_img .img_bottom {
  position: absolute;
  top: 210px;
}
.amenities_content .amenities_img .img_bottom.left {
  left: 0px;
}
.amenities_content .amenities_img .img_bottom.right {
  right: 0px;
}
.amenities_content .amenities_img .img_bottom.one.right {
  top: 400px;
  right: 140px;
}
.amenities_content .amenities_img .img_bottom.one.left {
  top: 400px;
  left: 140px;
}
.amenities_content .indulge_section {
  position: relative;
  margin-top: 170px;
  padding: 100px 0px;
}
.amenities_content .indulge_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 100%;
  background-color: #f7f7f7;
  transition: all 0.4s ease-in-out 0s;
}
.amenities_content .indulge_section .heading.type_two {
  margin-bottom: 60px;
}
.amenities_content .indulge_section .body_p.top {
  padding: 0 25px;
}
.amenities_content .indulge_section .box_holder {
  margin-top: 80px;
}
.amenities_content .indulge_section .box_holder .heading {
  font-family: "assassinregular";
  font-size: 24px;
  letter-spacing: 1px;
  color: #2b2b2b;
}
.amenities_content .indulge_section .box_outer {
  margin-top: 40px;
}
.amenities_content .indulge_section .box_outer .box_inner {
  width: 24.2%;
  height: 355px;
  float: left;
  margin-right: 1%;
  padding: 40px 25px;
  text-align: left;
  background-color: #fece3e;
}
.amenities_content .indulge_section .box_outer .box_inner .heading {
  margin-bottom: 40px;
}
.amenities_content .indulge_section ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 35px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.amenities_content .indulge_section ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #2b2b2b;
}
.amenities_content .indulge_section.aos-animate::before {
  right: 0;
}

/************** Project Plans  Page *******************/
.project_plans_content {
  margin-bottom: 200px;
}
.project_plans_content .master_plan_text .heading.sub_heading {
  margin-left: 0;
}
.project_plans_content .master_plan_text .heading.sub_heading.top {
  margin-top: 100px;
}
.project_plans_content .master_plan_text .heading.sub_heading.bottom {
  margin-top: 15px;
  padding-left: 270px;
}
.project_plans_content .floor_plan {
  margin-top: 150px;
}
.project_plans_content .floor_plan .heading.type_two {
  margin-bottom: 100px;
}
.project_plans_content .floor_plan .heading.second {
  margin-bottom: 60px;
}
.project_plans_content .floor_plan .heading.three {
  margin-top: 150px;
  margin-bottom: 60px;
}
.project_plans_content .btn_toggle_holder {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: right;
  z-index: 5;
}
.project_plans_content .btn_toggle {
  position: relative;
  top: 0;
  right: 0;
  display: inline-block;
  width: 168px;
  padding: 10px 0px;
  font-family: "assassinregular";
  font-size: 28px;
  line-height: 28px;
  letter-spacing: 2px;
  text-align: center;
  color: #2b2b2b;
  background-color: #eeb91b;
  transition: all 0.5s ease 0s;
}
.project_plans_content .btn_toggle span {
  display: none;
}
.project_plans_content .btn_toggle span.active {
  display: block;
}
.project_plans_content .btn_toggle:hover {
  color: #ffffff;
}
.project_plans_content .plan_holder_toggle_outer {
  position: relative;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 100px;
  overflow: hidden;
  background-color: #f8f8f8;
}
.project_plans_content .plan_holder {
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
  background-color: #f8f8f8;
}
.project_plans_content .plan_holder.top {
  margin-bottom: 0px;
  padding-top: 80px;
  padding-bottom: 60px;
  opacity: 0;
  pointer-events: none;
  transform: translatex(50px);
}
.project_plans_content .plan_holder.top.two {
  margin-top: -585px;
}
.project_plans_content .plan_holder.top.active {
  opacity: 1;
  pointer-events: auto;
  transform: translatex(0px);
  z-index: 1;
  transition: all 0.4s ease 0s;
}
.project_plans_content .plan_holder.top a {
  padding: 20px;
}
.project_plans_content .plan_holder.top img {
  margin: 0;
}
.project_plans_content .plan_holder.top .plan_info {
  position: absolute;
  right: 25px;
  bottom: 40px;
}
.project_plans_content .plan_holder.top .plan_info p {
  width: 100%;
  float: none;
  padding-bottom: 0px;
  border-top: 0px;
}
.project_plans_content .plan_holder a {
  display: block;
}
.project_plans_content .plan_holder img {
  margin-top: 10px;
  margin-bottom: 10px;
}
.project_plans_content .plan_holder .plan_info {
  padding: 0px 15px;
}
.project_plans_content .plan_holder .plan_info {
  *zoom: 1;
}
.project_plans_content .plan_holder .plan_info:before, .project_plans_content .plan_holder .plan_info:after {
  content: "";
  display: table;
}
.project_plans_content .plan_holder .plan_info:after {
  clear: both;
}
.project_plans_content .plan_holder .plan_info p {
  width: 50%;
  float: left;
  padding-top: 20px;
  padding-bottom: 25px;
  border-top: 1px solid #d7d7d7;
  font-size: 14px;
  font-family: "Encode Sans", sans-serif;
  color: #2b2b2b;
  letter-spacing: 1px;
}
.project_plans_content .plan_holder .plan_info p span {
  padding-left: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
.project_plans_content .plan_holder .plan_info p:last-child {
  text-align: right;
}
.project_plans_content .plan_holder .plan_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(238, 185, 27, 0.8);
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
.project_plans_content .plan_holder .plan_overlay a {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "assassinregular";
  font-size: 18px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  color: #2b2b2b;
}
.project_plans_content .plan_holder .plan_overlay .overlay_text {
  position: relative;
  top: 50%;
  transform: translatey(-50%);
  opacity: 0;
  transition: opacity 0.4s ease-in-out 0.5s;
}
.project_plans_content .plan_holder .plan_overlay .overlay_text img {
  display: block;
  margin: auto;
  margin-bottom: 70px;
}
.project_plans_content .plan_holder:hover .plan_overlay {
  opacity: 1;
}
.project_plans_content .plan_holder:hover .plan_overlay .overlay_text {
  opacity: 1;
}
.project_plans_content .home_science {
  position: relative;
  margin-top: 150px;
  padding: 150px 0px;
}
.project_plans_content .home_science::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 100%;
  background-color: #eeb91b;
  transition: all 0.4s ease-in-out 0s;
}
.project_plans_content .home_science .heading {
  color: #2b2b2b;
}
.project_plans_content .home_science .heading.has_after::after {
  background-color: #2b2b2b;
}
.project_plans_content .home_science .body_p {
  font-weight: 600;
}
.project_plans_content .home_science ul {
  margin-top: 40px;
}
.project_plans_content .home_science ul li {
  margin-bottom: 15px;
  font-family: "Encode Sans", sans-serif;
  font-weight: 400;
  line-height: 30px;
}
.project_plans_content .home_science .text_holder {
  margin-top: 100px;
  padding-left: 75px;
}
.project_plans_content .home_science .img_toggler_holder {
  margin-top: 20px;
}
.project_plans_content .home_science .img_toggler_holder .body_p {
  padding-left: 30px;
  font-size: 10px;
  text-align: left;
}
.project_plans_content .home_science .img_toggler_holder .btn_holder {
  margin-bottom: 20px;
  text-align: right;
}
.project_plans_content .home_science .img_toggler_holder .btn_holder a {
  position: relative;
  font-family: "assassinregular";
  font-size: 32px;
  color: #2b2b2b;
  letter-spacing: 2px;
}
.project_plans_content .home_science .img_toggler_holder .btn_holder a.has_after {
  margin-right: 60px;
}
.project_plans_content .home_science .img_toggler_holder .btn_holder a.has_after::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 80%;
  width: 1px;
  background-color: #2b2b2b;
}
.project_plans_content .home_science .img_toggler_holder .btn_holder a.active {
  color: #ffffff;
}
.project_plans_content .home_science .img_toggler_holder .img_holder {
  position: relative;
  height: 580px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.project_plans_content .home_science .img_toggler_holder .img_inner {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(50px);
}
.project_plans_content .home_science .img_toggler_holder .img_inner.active {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.4s ease 0s;
}
.project_plans_content .home_science .img_toggler_holder .img_inner.one img {
  margin-bottom: 40px;
}
.project_plans_content .home_science .img_toggler_holder .img_inner.two {
  top: 30px;
}
.project_plans_content .home_science.aos-animate::before {
  right: 0;
}
.project_plans_content .vastu_section {
  position: relative;
  margin-top: 100px;
  padding: 100px 0px;
}
.project_plans_content .vastu_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 100%;
  background-color: #f7f7f7;
  transition: all 0.4s ease-in-out 0s;
}
.project_plans_content .vastu_section .heading {
  margin-top: 45px;
  margin-bottom: 60px;
}
.project_plans_content .vastu_section .body_p {
  font-weight: 600;
}
.project_plans_content .vastu_section .body_p.top {
  margin-bottom: 25px;
}
.project_plans_content .vastu_section .img_holder {
  padding: 50px 0px 0px;
  background-color: #ffffff;
}
.project_plans_content .vastu_section .vastu_info {
  padding: 40px 30px;
  background-color: #eeb91b;
  margin-top: 30px;
}
.project_plans_content .vastu_section .vastu_info ul {
  width: 50%;
  float: left;
  text-align: left;
}
.project_plans_content .vastu_section .vastu_info ul li {
  font-size: 14px;
  line-height: 24px;
  padding: 0px 35px;
  margin-bottom: 20px;
}
.project_plans_content .vastu_section .vastu_info ul li:last-child {
  margin-bottom: 0px;
}
.project_plans_content .vastu_section .vastu_info ul li.icon_vs1 {
  background: url("../images/icons/icon_vs1.png") no-repeat left 5px;
}
.project_plans_content .vastu_section .vastu_info ul li.icon_vs2 {
  background: url("../images/icons/icon_vs2.png") no-repeat left 5px;
}
.project_plans_content .vastu_section .vastu_info ul li.icon_vs3 {
  background: url("../images/icons/icon_vs3.png") no-repeat left 5px;
}
.project_plans_content .vastu_section .vastu_info ul li.icon_vs4 {
  background: url("../images/icons/icon_vs4.png") no-repeat left 5px;
}
.project_plans_content .vastu_section .vastu_info ul li.icon_vs5 {
  background: url("../images/icons/icon_vs5.png") no-repeat left 5px;
}
.project_plans_content .vastu_section.aos-animate::before {
  right: 0;
}

.project_plan_modal {
  background: url("../images/popup-pattern.png") repeat;
}
.project_plan_modal.master_plan_modal .modal-dialog {
  width: 60%;
  padding: 115px 0px;
}
.project_plan_modal table {
  width: 100%;
  border-collapse: collapse;
}
.project_plan_modal td, .project_plan_modal th {
  border: 1px solid #b7b7b7;
  text-align: left;
  padding: 8px;
}
.project_plan_modal .unit_details {
  position: relative;
  margin-top: 20%;
  margin-left: 100px;
}
.project_plan_modal .unit_img img {
  width: 100%;
}
.project_plan_modal .unit_info {
  margin-top: 80px;
  margin-bottom: 20px;
}
.project_plan_modal .unit_info .body_p {
  width: 40%;
  float: left;
  text-transform: capitalize;
}
.project_plan_modal .unit_info .body_p span {
  position: relative;
  padding-left: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
.project_plan_modal .unit_info_table {
  margin-bottom: 95px;
}
.project_plan_modal .unit_info_table span {
  font-weight: bold;
}
.project_plan_modal .btn_close {
  display: block;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.project_plan_modal .btn_arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  cursor: pointer;
  z-index: 2;
}
.project_plan_modal .btn_arrow.prev {
  left: 60px;
}
.project_plan_modal .btn_arrow.next {
  right: 60px;
}
.project_plan_modal .btn_arrow::before, .project_plan_modal .btn_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #2b2b2b;
  transform-origin: left;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out 0s;
}
.project_plan_modal .btn_arrow::after {
  transform: rotate(45deg);
}
.project_plan_modal .btn_arrow.next::before, .project_plan_modal .btn_arrow.next::after {
  left: auto;
  right: 0;
  transform-origin: right;
}
.project_plan_modal .btn_arrow:hover::before {
  transform: rotate(-30deg);
}
.project_plan_modal .btn_arrow:hover::after {
  transform: rotate(30deg);
}

.modal-dialog {
  width: 90%;
  height: 100%;
  margin: auto;
  padding: 60px 0px;
}

.modal-content {
  height: 100%;
  border: 0px;
  border-radius: 0px;
  box-shadow: none;
}

.modal-header {
  position: absolute;
  top: 60px;
  right: 48px;
  padding: 0px;
  border-bottom: 0px;
  z-index: 2;
}

.modal-body {
  height: 100%;
  padding: 0px;
}

/************** Specifications  Page *******************/
.specifications_content {
  margin-bottom: 150px;
}
.specifications_content .c_pr_0 {
  padding-right: 0px;
}
.specifications_content .specifications_about_text .heading.top {
  margin-top: 100px;
}
.specifications_content .specifications_about_text .heading.bottom {
  margin-top: 15px;
  padding-left: 285px;
}
.specifications_content .content_bottom {
  position: relative;
  margin-top: 100px;
}
.specifications_content .center_line {
  position: absolute;
  top: -103px;
  bottom: 740px;
  width: 1px;
  left: calc( 50% - 1px);
  background-color: #eeb91b;
}
.specifications_content .specification_holder {
  position: relative;
  margin-bottom: 180px;
}
.specifications_content .specification_holder.box_before {
  margin-bottom: 100px;
  padding-top: 80px;
  padding-bottom: 160px;
}
.specifications_content .specification_holder.box_before::before {
  transition: all 0.7s ease-in-out 0s;
}
.specifications_content .specification_holder.box_before.left::before {
  right: 100%;
}
.specifications_content .specification_holder.box_before.right {
  padding-bottom: 80px;
}
.specifications_content .specification_holder.box_before.right::before {
  left: 100%;
  right: 15px;
}
.specifications_content .specification_holder.box_before.aos-animate.box_before.left::before {
  right: 42.3%;
}
.specifications_content .specification_holder.box_before.aos-animate.box_before.right::before {
  left: 42.3%;
}
.specifications_content .info_box {
  display: inline-block;
  padding: 15px 50px;
  margin-bottom: 80px;
  text-transform: uppercase;
  font-family: "assassinregular";
  font-size: 24px;
  color: #2b2b2b;
  border: 1px solid #eeb91b;
  background-color: #ffffff;
}
.specifications_content .specification_list {
  margin-top: 60px;
}
.specifications_content .specification_list .heading {
  margin-bottom: 30px;
  font-family: "assassinregular";
  font-size: 24px;
  letter-spacing: 1px;
  color: #2b2b2b;
}
.specifications_content .specification_list ul.has_pad_right {
  padding-right: 100px;
}
.specifications_content .specification_list ul.has_mar_bottom {
  margin-bottom: 60px;
}
.specifications_content .specification_list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 30px;
}
.specifications_content .specification_list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #eeb91b;
}
.specifications_content .specification_list li:last-child {
  margin-bottom: 0;
}
.specifications_content .specification_img {
  position: relative;
}
.specifications_content .specification_img.has_mr_left {
  margin-left: -15px;
}
.specifications_content .specification_img.has_mr_right {
  margin-right: -15px;
}
.specifications_content .specification_img .img_bottom {
  position: absolute;
  top: 210px;
}
.specifications_content .specification_img .img_bottom.left {
  left: 0px;
}
.specifications_content .specification_img .img_bottom.right {
  right: 0px;
}

/************** Progress  Page *******************/
.countdown_outer {
  width: 100%;
  margin: 100px 0 150px;
  background-color: #f7f7f7;
}
.countdown_outer .heading.type_one {
  width: 50%;
  float: left;
  margin-top: 85px;
  font-size: 40px;
  line-height: 58px;
}
.countdown_outer .countdown_wraper {
  width: 50%;
  float: left;
  margin: 50px 0;
}
.countdown_outer .countdown_holder {
  display: inline-block;
  width: 30%;
  float: left;
  padding: 20px 0px;
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #828282;
  text-align: center;
}
.countdown_outer .countdown_holder.has_border {
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}
.countdown_outer .countdown_holder:first-child {
  margin-left: 10%;
}
.countdown_outer .countdown_holder span {
  display: block;
  height: 60px;
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 400;
  color: #eeb91b;
}

.gallery_wraper {
  margin-top: 150px;
  margin-bottom: 200px;
}
.gallery_wraper .light_box_gallery > div:nth-child(n+5) {
  margin-top: 60px;
}
.gallery_wraper .light_box_gallery .gallery_img {
  position: relative;
  cursor: pointer;
}
.gallery_wraper .light_box_gallery .gallery_img::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: rgba(238, 185, 27, 0.5);
  transform: scale(0);
  transition: all 0.4s ease-in-out 0s;
}
.gallery_wraper .light_box_gallery .gallery_img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 28px;
  background: url(../images/icons/icon_rectangle.png) no-repeat;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s ease-in-out 0s;
}
.gallery_wraper .light_box_gallery .gallery_img:hover::after {
  transform: scale(1);
}
.gallery_wraper .light_box_gallery .gallery_img:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.gallery_wraper .light_box_gallery .body_p {
  padding-top: 15px;
  font-weight: 600;
  font-size: 14px;
}

.lg-outer {
  background: url("../images/popup-pattern.png") repeat;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
  display: none;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 86px;
}
.lg-outer .lg-image {
  border: 15px solid #ffffff;
  border-bottom: 55px solid #ffffff;
}

#lg-download, #lg-counter {
  display: none;
}

.lg-toolbar {
  background-color: transparent;
}
.lg-toolbar .lg-icon {
  color: #ffffff;
  background-color: #eeb91b;
}

.lg-backdrop.in {
  opacity: 0.5;
}

.lg-hide-items .lg-prev, .lg-hide-items .lg-next, .lg-hide-items .lg-toolbar {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.lg-actions .lg-prev, .lg-actions .lg-next {
  width: 50px;
  height: 47px;
  line-height: 17px;
  font-size: 24px;
  border-radius: 0;
  color: #ffffff;
  background-color: #eeb91b;
}
.lg-actions .lg-prev {
  left: 0;
}
.lg-actions .lg-next {
  right: 0;
}

.lg-fullscreen {
  margin-right: 1px;
}

.lg-sub-html {
  bottom: 86px;
  background-color: transparent;
}
.lg-sub-html .body_p {
  font-size: 16px;
  color: #000000;
}

/************** Conatct  Page *******************/
.contact_content .row.box_before::before {
  top: -100px;
  right: 100%;
  bottom: -100px;
  transition: all 0.7s ease-in-out 0s;
}
.contact_content .row.box_before.aos-animate.box_before::before {
  right: 42.3%;
}
.contact_content .address_holder {
  padding-left: 78px;
  padding-top: 120px;
}
.contact_content .address_holder .heading {
  margin-top: 5px;
  margin-bottom: 25px;
}
.contact_content .address_holder .heading.sub_heading {
  margin-left: 0;
  padding-left: 0;
}
.contact_content .address_holder .body_p {
  padding-right: 30%;
}
.contact_content .address_holder .body_p span {
  font-weight: bold;
}
.contact_content .address_holder .qr_code {
  float: left;
  width: 25%;
}
.contact_content .address_holder .address_outer {
  float: left;
  width: 75%;
}
.contact_content .address_holder ul {
  width: 100%;
  margin-top: 80px;
}
.contact_content .address_holder ul li {
  margin-bottom: 20px;
  font-weight: 600;
}
.contact_content .address_holder ul li img {
  position: relative;
  top: 5px;
  margin-right: 20px;
}
.contact_content .address_holder ul li span {
  margin-right: 30px;
}
.contact_content .address_holder ul li a {
  color: inherit;
  transition: color 0.4s ease-in-out 0s;
}
.contact_content .address_holder ul li a:hover {
  color: #eeb91b;
}
.contact_content .map_wraper {
  width: 100%;
  height: 560px;
}
.contact_content .map_wraper .google-map {
  width: 100%;
  height: 100%;
}
.contact_content .content_bottom {
  margin: 180px 0px 100px;
}
.contact_content .content_bottom .heading {
  margin-bottom: 50px;
}
.contact_content .content_bottom .heading.type_one {
  font-size: 36px;
  line-height: 38px;
}
.contact_content .content_bottom .heading.type_one span {
  font-size: 26px;
}

/************** Future neighbous Page *******************/
.future_neighbours_content {
  margin-bottom: 250px;
}
.future_neighbours_content .testimonial_outer {
  margin-top: 140px;
}
.future_neighbours_content .testimonial_holder {
  position: relative;
  float: left;
  width: 32.65%;
  height: 480px;
  margin-right: 1%;
  padding-top: 120px;
  padding-left: 50px;
  padding-right: 40px;
  background-color: #f9f9f9;
}
.future_neighbours_content .testimonial_holder .body_p {
  margin-bottom: 100px;
  font-weight: 600;
  font-style: italic;
}
.future_neighbours_content .testimonial_holder img {
  position: absolute;
  top: -40px;
  left: 30px;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
.future_neighbours_content .testimonial_holder .name_holder {
  position: absolute;
  left: 50px;
  bottom: 30px;
  padding-left: 60px;
  font-family: "assassinregular";
  font-size: 20px;
  color: #2b2b2b;
}
.future_neighbours_content .testimonial_holder .name_holder::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #2b2b2b;
}
.future_neighbours_content .testimonial_holder.aos-animate img {
  opacity: 1;
  transition-delay: 0.6s;
}

.award_item, .media_item {
  margin-top: 100px;
  margin-bottom: 100px;
}

.award_item_pl0 {
  padding-left: 0;
}

.award_item_pr0 {
  padding-right: 0;
}

.award_text .award_heading {
  position: relative;
  left: 3px;
  bottom: 30px;
  padding-left: 60px;
  color: #2b2b2b;
  font-family: "assassinregular";
  font-size: 32px;
  top: 0;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 40px;
  padding-top: 40px;
  height: 170px;
}
.award_text .award_heading::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #2b2b2b;
}
.award_text .award_content {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.04em;
  padding-top: 40px;
  padding-bottom: 60px;
  height: 170px;
}
.award_text .award_content span {
  font-weight: bold;
}

.media_item {
  /*background:#f8f8f8;*/
  padding: 0;
  margin: 100px 15px 150px 15px;
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 480px) {
  .media_item {
    padding: 0 !important;
  }
}
.media_item:first-child {
  margin: 100px 0 0 15px;
}
.media_item .media_logo {
  padding-top: 30px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 33px;
}
.media_item .news-wrap {
  background: #f8f8f8;
  margin-left: 15px;
  margin-right: 15px;
}
.media_item .news-wrap.third {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .media_item .news-wrap.third {
    margin-right: 7px;
  }
}
@media only screen and (max-width: 480px) {
  .media_item .news-wrap.third {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .media_item .news-wrap {
    margin-right: 7px;
    margin-left: 7px;
  }
}
@media only screen and (max-width: 480px) {
  .media_item .news-wrap {
    margin-right: 0px;
    margin-left: 0px;
  }
}
.media_item .media-wrap {
  background: #f8f8f8;
  margin-left: 15px;
  margin-right: 15px;
}
.media_item .media-wrap.third {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .media_item .media-wrap.third {
    margin-right: 7px;
  }
}
@media only screen and (max-width: 768px) {
  .media_item .media-wrap {
    margin-right: 7px;
    margin-left: 7px;
  }
}
@media only screen and (max-width: 480px) {
  .media_item .media-wrap {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.award_image img {
  width: 100%;
  max-height: 100%;
  height: 400px;
}

.award_text {
  margin: 0 40px;
}

.award_link {
  padding-bottom: 60px;
}
.award_link a {
  font-family: "assassinregular";
  font-size: 18px;
  line-height: 28px;
  color: #2b2b2b;
  transition: color 0.4s ease-in-out 0s;
}
.award_link a:hover {
  color: #eeb91b;
}

.media_itemml {
  margin-left: 0;
}

.media_img img {
  width: 100%;
}
@keyframes rotate-out {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-in {
  0% {
    transform: rotate(360deg);
  }
  40% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dash-in {
  0% {
    stroke-dashoffset: 240;
  }
  40% {
    stroke-dashoffset: 240;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash-out {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 240;
  }
  100% {
    stroke-dashoffset: 240;
  }
}
@keyframes bun-top-out {
  0% {
    left: 0;
    top: 0;
    transform: rotate(0deg);
  }
  20% {
    left: 0;
    top: 0;
    transform: rotate(15deg);
  }
  80% {
    left: -5px;
    top: 0;
    transform: rotate(-60deg);
  }
  100% {
    left: -5px;
    top: 1px;
    transform: rotate(-45deg);
  }
}
@keyframes bun-bot-out {
  0% {
    left: 0;
    transform: rotate(0deg);
  }
  20% {
    left: 0;
    transform: rotate(-15deg);
  }
  80% {
    left: -5px;
    transform: rotate(60deg);
  }
  100% {
    left: -5px;
    transform: rotate(45deg);
  }
}
@keyframes bun-top-in {
  0% {
    left: -5px;
    bot: 0;
    transform: rotate(-45deg);
  }
  20% {
    left: -5px;
    bot: 0;
    transform: rotate(-60deg);
  }
  80% {
    left: 0;
    bot: 0;
    transform: rotate(15deg);
  }
  100% {
    left: 0;
    bot: 1px;
    transform: rotate(0deg);
  }
}
@keyframes bun-bot-in {
  0% {
    left: -5px;
    transform: rotate(45deg);
  }
  20% {
    left: -5px;
    bot: 0;
    transform: rotate(60deg);
  }
  80% {
    left: 0;
    bot: 0;
    transform: rotate(-15deg);
  }
  100% {
    left: 0;
    transform: rotate(0deg);
  }
}
@keyframes burger-fill-in {
  0% {
    width: 0;
    left: 36px;
  }
  40% {
    width: 0;
    left: 40px;
  }
  80% {
    width: 44px;
    left: -6px;
  }
  100% {
    width: 44px;
    left: 0px;
  }
}
@keyframes burger-fill-out {
  0% {
    width: 36px;
    left: 0px;
  }
  20% {
    width: 42px;
    left: -6px;
  }
  40% {
    width: 0;
    left: 40px;
  }
  100% {
    width: 0;
    left: 36px;
  }
}
@keyframes ul_after_ani {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
}
@keyframes ul_after_ani_1 {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@keyframes st_2_ani {
  0% {
    fill: transparent;
    stroke: #2d3293;
    stroke-width: 2px;
    stroke-dasharray: 0 428;
  }
  60% {
    fill: transparent;
    stroke: #2d3293;
    stroke-width: 2px;
    stroke-dasharray: 428 428;
  }
  100% {
    fill: #2d3293;
    stroke: #2d3293;
    stroke-width: 0px;
    stroke-dasharray: 428 428;
  }
}
@keyframes st_0_ani {
  0% {
    fill: transparent;
  }
  100% {
    fill: #2d3293;
  }
}
@keyframes st_3_ani {
  0% {
    fill: transparent;
    width: 0px;
  }
  100% {
    fill: #2d3293;
    width: 58%;
  }
}
@keyframes st_4_ani {
  0% {
    fill: transparent;
    transform: translateX(-20px);
  }
  100% {
    fill: #2d3293;
    transform: translateX(0px);
  }
}
@keyframes st_5_ani {
  0% {
    fill: transparent;
    transform: translateX(20px);
  }
  100% {
    fill: #2d3293;
    transform: translateX(0px);
  }
}
@keyframes criss-cross-left_1 {
  0% {
    left: -20px;
    background: #1e1e1e;
  }
  50% {
    left: 50%;
    margin-left: -8px;
    background: #1e1e1e;
    transform: scale(1);
  }
  60% {
    left: 50%;
    margin-left: -8px;
    background: #1e1e1e;
    transform: scale(1);
  }
  100% {
    left: 50%;
    margin-left: -8px;
    transform: scale(50);
  }
}
@keyframes criss-cross-right_1 {
  0% {
    right: -20px;
    background: #1e1e1e;
  }
  50% {
    right: 50%;
    margin-right: -8px;
    background: #1e1e1e;
    transform: scale(1);
  }
  60% {
    right: 50%;
    margin-right: -8px;
    background: #1e1e1e;
    transform: scale(1);
  }
  100% {
    right: 50%;
    margin-right: -8px;
    transform: scale(50);
  }
}
@keyframes criss-cross-left_2 {
  0% {
    left: -20px;
    background: #ffffff;
  }
  50% {
    left: 50%;
    margin-left: -8px;
    background: #ffffff;
    transform: scale(2);
  }
  60% {
    left: 50%;
    margin-left: -8px;
    background: #ffffff;
    transform: scale(2);
  }
  100% {
    left: 50%;
    margin-left: -8px;
    transform: scale(50);
  }
}
@keyframes criss-cross-right_2 {
  0% {
    right: -20px;
    background: #ffffff;
  }
  50% {
    right: 50%;
    margin-right: -8px;
    background: #ffffff;
    transform: scale(2);
  }
  60% {
    right: 50%;
    margin-right: -8px;
    background: #ffffff;
    transform: scale(2);
  }
  100% {
    right: 50%;
    margin-right: -8px;
    transform: scale(50);
  }
}
@keyframes criss-cross-left_dark {
  0% {
    left: -20px;
    background: #2b2b2b;
  }
  50% {
    left: 50%;
    margin-left: -8px;
    background: #2b2b2b;
    transform: scale(2);
  }
  60% {
    left: 50%;
    margin-left: -8px;
    background: #2b2b2b;
    transform: scale(2);
  }
  100% {
    left: 50%;
    margin-left: -8px;
    transform: scale(50);
  }
}
@keyframes criss-cross-right_dark {
  0% {
    right: -20px;
    background: #2b2b2b;
  }
  50% {
    right: 50%;
    margin-right: -8px;
    background: #2b2b2b;
    transform: scale(2);
  }
  60% {
    right: 50%;
    margin-right: -8px;
    background: #2b2b2b;
    transform: scale(2);
  }
  100% {
    right: 50%;
    margin-right: -8px;
    transform: scale(50);
  }
}
/*======================================================================== 
               							Responsive 
========================================================================*/
/*======================================================================== 
                Laptop large screen 
========================================================================*/
@media only screen and (max-width: 1440px) {
  .heading.type_one {
    font-size: 44px;
    line-height: 64px;
  }
  .heading.type_one.has_mt_top {
    margin-top: 80px;
  }
  .heading.type_two {
    font-size: 22px;
  }
  .heading.sub_heading {
    font-size: 18px;
  }
  .heading.sub_heading.has_top {
    top: 10px;
  }
  .heading.has_after::after {
    bottom: -30px;
  }

  .enquiry_wraper {
    padding: 0px 55px;
  }
  .enquiry_wraper .left {
    margin-top: 25%;
    margin-left: 10%;
  }
  .enquiry_wraper .heading.type_one {
    font-size: 40px;
    line-height: 60px;
  }
  .enquiry_wraper .heading.sub_heading {
    margin-bottom: 95px;
  }
  .enquiry_wraper .form_wraper {
    padding: 60px 45px;
  }
  .enquiry_wraper .form_wraper .heading.type_one {
    margin-bottom: 0;
  }
  .enquiry_wraper .form_wraper .body_p {
    margin-bottom: 60px;
  }
  .enquiry_wraper .phone_number {
    font-size: 26px;
  }
  .enquiry_wraper .phone_number img {
    width: 6%;
  }
  .enquiry_wraper .form-group {
    margin-bottom: 68px;
  }
  .enquiry_wraper .input__label--ruri {
    font-size: 15px;
  }

  #overlay_body .load_img {
    width: 60%;
    height: 60%;
  }
  #overlay_body .load_img.left, #overlay_body .load_img.right {
    background-size: contain;
  }
  #overlay_body .load_img.right {
    height: 75%;
  }
  #overlay_body .logo-loading {
    width: 150px;
    height: 109px;
  }
  #overlay_body .logo-loading img {
    width: 100%;
  }
  #overlay_body .logo-loading .img_overlay::after {
    background-size: cover;
  }
  #overlay_body #progstat {
    margin-top: 60px;
    font-size: 12px;
  }

  .disclaimer_modal .modal-dialog {
    margin-top: 4%;
  }
  .disclaimer_modal .modal-body {
    padding: 25px;
  }
  .disclaimer_modal .body_p {
    font-size: 12px;
    line-height: 18px;
  }

  .tooltip.left {
    margin-top: -35px;
    margin-left: 35px;
  }
  .tooltip.left .tooltip-arrow {
    right: 18px;
    margin-top: 15px;
    border-width: 5px 5px 5px 5px;
    border-left-color: transparent;
    border-top-color: #2b2b2b;
  }

  /********* Header Styles *************/
  .main_header {
    height: 95px;
  }
  .main_header .menu_holder {
    margin-top: 40px;
  }
  .main_header .menu .both_sides .custom_margin_left {
    padding-left: 125px;
  }
  .main_header .menu .both_sides .custom_margin_right {
    padding-right: 125px;
  }
  .main_header .menu .menu_item {
    margin-right: 15px;
  }
  .main_header .menu .menu_item a {
    padding: 10px 20px;
    font-size: 14px;
  }
  .main_header .menu .menu_item a span::before {
    top: -6px;
  }
  .main_header .logo_holder a {
    transform: scale(0.9);
  }
  .main_header.scrolled .menu .menu_item .logo {
    margin: 0px auto;
    margin-top: -30px;
    transform: scale(0.8);
  }

  .explore_menu_btn_holder {
    top: 50px;
    right: 25px;
    width: 25px;
  }
  .explore_menu_btn_holder .line {
    width: 25px;
    margin-bottom: 6px;
  }
  .explore_menu_btn_holder .line.middle {
    top: 8px;
  }

  .explore_menu_holder ul {
    margin-top: 110px;
    margin-left: 5px;
  }
  .explore_menu_holder li {
    margin-bottom: 0px;
  }

  .social_links_fixed_holder {
    top: 95px;
  }
  .social_links_fixed_holder .social_p {
    top: 35%;
    left: -50px;
  }
  .social_links_fixed_holder .menu_social_icon {
    bottom: 18%;
  }

  .btn_right_fixed {
    top: 207px;
    right: -100px;
  }
  .btn_right_fixed .brand_btn {
    padding: 12px 45px;
    font-size: 15px;
  }

  .back_to_top {
    bottom: 18px;
    transform: translatex(50px);
  }
  .back_to_top a {
    top: 65%;
    left: -232%;
  }
  .back_to_top a .line {
    left: 72%;
  }
  .back_to_top a .line::before {
    top: -3.8px;
  }

  /********* Footer Section *************/
  .main_footer .rera_no {
    margin-top: 82px;
    font-size: 11px;
  }
  .main_footer [class*=col-] {
    padding: 0;
  }
  .main_footer .footer_line::after {
    left: 0;
    right: 0;
  }
  .main_footer .footer_contact_outer {
    margin-left: 30%;
  }
  .main_footer .footer_contact li {
    font-size: 13px;
  }
  .main_footer .footer_contact li.cell span {
    display: inline-block;
  }
  .main_footer .footer_contact li.cell span:last-child {
    margin-top: 10px;
    padding-left: 30px;
  }
  .main_footer .footer_address {
    font-size: 13px;
  }
  .main_footer .footer_social {
    margin-top: 108px;
    margin-left: 38%;
  }
  .main_footer .disclaimer {
    margin-top: 42px;
    font-size: 13px;
  }
  .main_footer .web_presence {
    margin-top: 80px;
  }

  /********* Banner Section *************/
  .banner_section {
    height: calc(100vh - 95px);
    margin-top: 95px;
  }
  .banner_section .banner_text .banner_heading {
    font-size: 38px;
  }
  .banner_section .banner_text .banner_heading span {
    font-size: 20px;
  }
  .banner_section .banner_text .banner_para {
    margin-top: 30px;
    padding-right: 90px;
    font-size: 12px;
  }

  .q_slide .slide .caption .banner_heading.top {
    font-size: 44px;
  }
  .q_slide .slide .caption .banner_heading.sub {
    margin-top: 15px;
    font-size: 24px;
  }
  .q_slide .slide .caption .banner_para {
    margin-top: 40px;
    font-size: 16px;
  }

  .scroll_link_outer .scroll-link {
    font-size: 12px;
  }

  .bottom_gap {
    height: 65px;
  }

  .main_footer .footer_social li {
    margin-left: 28px;
  }

  .menu_social {
    width: 30px;
    height: 470px;
    position: fixed;
    right: calc(5% + 15px);
    top: 50%;
    margin-top: -225px;
  }

  .menu_social .menu_social_icon li {
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /********* About Section *************/
  .about_section {
    padding-top: 80px;
    padding-bottom: 160px;
  }
  .about_section .custom_margin {
    margin-top: -84px;
  }
  .about_section .about_carousel_holder .carousel_about {
    height: 413px;
  }
  .about_section .about_carousel_holder .carousel_about img {
    height: auto;
  }
  .about_section .about_text {
    margin-top: 50px;
  }
  .about_section .project_info_outer {
    margin-top: 130px;
  }
  .about_section .project_info_holder .p_head {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .about_section .project_info_holder .p_number {
    font-size: 64px;
  }
  .magnifier-preview {
    width: 97%;
  }

  .magnifier-lens {
    width: 317px !important;
    height: 207px !important;
  }

  /********* Solace Section *************/
  .solace_section {
    margin-bottom: 200px;
  }
  .solace_section.box_before::before {
    bottom: -6%;
  }
  .solace_section .solace_left {
    padding-top: 130px;
  }
  .solace_section .solace_left .body_p.bottom {
    margin-top: 45px;
    margin-bottom: 40px;
  }
  .solace_section .solace_left .icon_holder_outer {
    margin-top: 45px;
  }
  .solace_section .solace_left .icon_holder {
    margin-right: 34px;
  }
  .solace_section .solace_left .icon_holder .icon_text {
    font-size: 16px;
  }
  .solace_section .solace_right {
    padding-top: 160px;
  }
  .solace_section .solace_carousel_holder.top {
    margin-bottom: 45px;
  }
  .solace_section .solace_carousel_holder.bottom {
    margin-top: 14px;
  }

  /********* Villa Themed Section *************/
  .villa_themed_section {
    margin-bottom: 100px;
  }
  .villa_themed_section .vt_head {
    font-size: 24px;
    line-height: 26px;
  }

  /********* Amenities Section *************/
  .amenities_section {
    margin-bottom: 130px;
    padding: 90px 0;
  }
  .amenities_section img {
    width: 100%;
  }
  .amenities_section .heading.type_one {
    font-size: 36px;
    line-height: 45px;
  }
  .amenities_section .text_holder.top .body_p {
    padding-right: 40%;
  }
  .amenities_section .text_holder.bottom.heading.type_one {
    margin-bottom: 60px;
  }
  .amenities_section .img_outer {
    width: 100%;
    height: auto;
  }
  .amenities_section .amenities_holder .img_outer {
    left: 90px;
  }
  .amenities_section .specification_holder .img_outer {
    left: -90px;
  }
  .amenities_section .amenities_before_img.left {
    background-size: 38%;
  }
  .amenities_section .amenities_before_img.right {
    background-size: 32%;
  }

  /********* Location Section *************/
  .location_section {
    margin-bottom: 180px;
  }
  .location_section .location_content .map_img_outer {
    margin-top: 230px;
  }
  .location_section .location_content .qr_code {
    margin-top: 115px;
  }
  .location_section .location_content .goto_map {
    margin-top: 155px;
  }
  .location_section .location_content img {
    width: 101%;
  }
  .location_section .location_content .content_right {
    width: 100%;
    margin-left: 0px;
    padding: 40px;
  }
  .location_section ul li {
    font-size: 12px;
  }
  .location_section ul li span {
    width: 206px;
  }
  .location_section ul.list_right {
    padding-left: 20px;
  }

  .map_modal .modal-dialog {
    width: 90%;
  }
  .map_modal .modal-content {
    margin-top: 2%;
  }

  /********* Architects Section *************/
  .architects_section {
    padding: 80px 0;
  }
  .architects_section.box_before::before {
    bottom: -6%;
  }
  .architects_section .text_holder {
    transform: translatey(-40%);
  }
  .architects_section .text_holder .heading {
    margin-bottom: 30px;
  }
  .architects_section .text_holder .heading.type_one {
    font-size: 32px;
  }
  .architects_section .text_holder .heading.sec_head {
    margin-bottom: 30px;
  }
  .architects_section .text_holder .body_p.top {
    margin-bottom: 20px;
    line-height: 22px;
  }
  .architects_section .text_holder .body_p.bottom {
    font-size: 14px;
    line-height: 26px;
  }
  .architects_section .brand_btn {
    margin-top: 25px;
  }

  .arcitects_modal .heading.type_one {
    font-size: 34px;
    line-height: 46px;
  }
  .arcitects_modal .body_p {
    font-size: 14px;
    line-height: 26px;
  }
  .arcitects_modal .body_p.top {
    margin-bottom: 10px;
  }
  .arcitects_modal .body_p.has_mr_both {
    margin: 10px 0px;
    margin-top: 20px;
  }
  .arcitects_modal .body_p.has_mb {
    margin-bottom: 10px;
  }

  /********* Contact Section *************/
  .contact_section {
    padding: 50px 0;
  }
  .contact_section .heading.type_one {
    font-size: 32px;
  }
  .contact_section .brand_btn {
    margin-top: 40px;
  }

  /********* Loan Section *************/
  .loan_section {
    padding: 40px 0px;
  }
  .loan_section .heading.type_one {
    font-size: 24px;
  }
  .loan_section .heading.type_one::after {
    right: -110px;
    width: 90px;
  }
  .loan_section img {
    width: 600px;
    margin-left: 190px;
  }

  /************** Inside Page Styles ******************/
  .inside_page_banner {
    margin-top: 95px;
    height: 550px;
  }
  .inside_page_banner .heading_holder {
    top: 260px;
  }
  .inside_page_banner .heading.type_one {
    font-size: 36px;
    line-height: 58px;
  }
  .inside_page_banner .heading.type_one.bottom {
    padding-left: 135px;
  }
  .inside_page_banner .heading.type_one.bottom::before {
    width: 120px;
  }

  .inside_page_content {
    padding-top: 80px;
  }
  .inside_page_content .custom_margin {
    margin-top: -84px;
  }
  .inside_page_content .inside_page_about_text {
    margin-top: 80px;
  }

  /********* Amenities Page *************/
  .amenities_content {
    margin-bottom: 120px;
  }
  .amenities_content .content_bottom .heading.sub_heading {
    font-size: 20px;
  }
  .amenities_content .center_line {
    top: -228px;
    bottom: 585px;
  }
  .amenities_content .amenities_holder {
    margin-bottom: 110px;
  }
  .amenities_content .amenities_holder:nth-child(2) {
    margin-bottom: 230px;
  }
  .amenities_content .amenities_holder:nth-child(3) {
    margin-bottom: 115px;
  }
  .amenities_content .amenities_holder:nth-child(3).box_before::before {
    bottom: 0%;
  }
  .amenities_content .amenities_holder:nth-child(4) {
    margin-bottom: 232px;
  }
  .amenities_content .amenities_holder:nth-child(5) {
    margin-bottom: 145px;
  }
  .amenities_content .amenities_list ul.one {
    width: 50%;
  }
  .amenities_content .amenities_list ul.two {
    width: 50%;
    margin-left: 0px;
    padding-left: 25px;
  }
  .amenities_content .amenities_img .img_top {
    width: 90%;
  }
  .amenities_content .amenities_img .img_bottom {
    top: 160px;
    width: 60%;
  }
  .amenities_content .amenities_img .img_bottom.one.right {
    top: 300px;
    right: 100px;
  }
  .amenities_content .amenities_img .img_bottom.one.left {
    top: 300px;
    left: 100px;
  }
  .amenities_content .indulge_section .body_p.top {
    padding: 0px 0px;
  }
  .amenities_content .indulge_section .box_outer .box_inner {
    height: 275px;
    padding: 25px 20px;
  }
  .amenities_content .indulge_section .box_outer .box_inner .heading {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .amenities_content .indulge_section .box_outer .box_inner ul li {
    padding-left: 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .amenities_content .indulge_section .box_outer .box_inner ul li::before {
    top: 8px;
    width: 10px;
  }

  /********* Project Plan Page *************/
  .project_plans_content {
    margin-bottom: 150px;
  }
  .project_plans_content .master_plan_text .heading.sub_heading.bottom {
    padding-left: 215px;
  }
  .project_plans_content .floor_plan .unit_4 {
    margin-top: 15px;
  }
  .project_plans_content .btn_toggle {
    width: 160px;
    padding: 8px 0px;
    font-size: 24px;
    line-height: 24px;
  }
  .project_plans_content .plan_holder.top.two {
    margin-top: -480px;
  }
  .project_plans_content .plan_holder.top .plan_info {
    right: 10px;
  }
  .project_plans_content .plan_holder .plan_info p span {
    padding-left: 20px;
  }
  .project_plans_content .home_science {
    padding: 90px 0px;
  }
  .project_plans_content .home_science .text_holder {
    margin-top: 85px;
  }
  .project_plans_content .home_science .img_toggler_holder .body_p {
    padding-right: 30px;
    line-height: 20px;
  }
  .project_plans_content .home_science .img_toggler_holder .img_holder {
    height: 450px;
  }
  .project_plans_content .home_science .img_toggler_holder .img_holder img {
    width: 500px;
  }
  .project_plans_content .home_science .img_toggler_holder .img_inner {
    top: 50px;
  }
  .project_plans_content .home_science .img_toggler_holder .img_inner.one img {
    width: 550px;
    margin-bottom: 0px;
  }
  .project_plans_content .home_science .img_toggler_holder .img_inner.two {
    top: 35px;
  }
  .project_plans_content .vastu_section {
    padding: 80px 0px;
  }
  .project_plans_content .vastu_section .heading {
    margin-bottom: 40px;
  }
  .project_plans_content .vastu_section .img_holder {
    padding: 0px;
  }
  .project_plans_content .vastu_section .img_holder img {
    padding: 0 25px;
  }
  .project_plans_content .vastu_section .vastu_info {
    padding: 40px 25px;
  }

  .project_plan_modal.master_plan_modal .modal-dialog {
    width: 80%;
    padding: 40px 0px;
  }
  .project_plan_modal td, .project_plan_modal th {
    font-size: 14px;
    line-height: 22px;
  }
  .project_plan_modal .unit_details {
    margin-top: 0;
    margin-left: 50px;
  }
  .modal-dialog {
    width: 95%;
    padding: 40px 0;
  }

  /********* Specification Page *************/
  .specifications_content {
    margin-bottom: 0px;
  }
  .specifications_content .center_line {
    top: -245px;
    bottom: 800px;
  }
  .specifications_content .specifications_about_text .heading.bottom {
    padding-left: 215px;
  }
  .specifications_content .specification_img .img_top {
    width: 90%;
  }
  .specifications_content .specification_img .img_bottom {
    width: 60%;
    top: 190px;
  }

  /********* Progress Page *************/
  .progress_content {
    margin-bottom: 150px;
  }

  .countdown_outer {
    margin: 70px 0 110px;
  }
  .countdown_outer .heading.type_one {
    margin-top: 78px;
    font-size: 34px;
    line-height: 52px;
  }
  .countdown_outer .countdown_holder span {
    height: 44px;
    font-size: 44px;
  }

  .gallery_wraper {
    margin-top: 100px;
    margin-bottom: 0;
  }

  .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 30px;
  }

  .lg-sub-html {
    bottom: 30px;
  }

  /********* Contact Page *************/
  .contact_content .row.box_before::before {
    top: -84px;
  }
  .contact_content .address_holder .body_p {
    padding-right: 0px;
  }
  .contact_content .address_holder .address_outer {
    padding-left: 25px;
  }

  /******** Future neighbous Page *******/
  .future_neighbours_content {
    margin-bottom: 150px;
  }
  .future_neighbours_content .testimonial_outer {
    margin-top: 120px;
  }
  .future_neighbours_content .testimonial_holder {
    height: 450px;
    padding-top: 70px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .future_neighbours_content .testimonial_holder img {
    top: -30px;
    width: 70px;
  }
  .future_neighbours_content .testimonial_holder .body_p {
    font-size: 14px;
  }
  .future_neighbours_content .testimonial_holder .name_holder {
    left: 30px;
    bottom: 30px;
    padding-left: 45px;
    font-size: 18px;
  }
  .future_neighbours_content .testimonial_holder .name_holder::before {
    width: 35px;
  }
}
/*======================================================================== 
                          Laptop 
========================================================================*/
@media only screen and (max-width: 1368px) {
  .heading.type_one {
    font-size: 44px;
    line-height: 64px;
  }
  .heading.type_two {
    font-size: 22px;
  }
  .heading.sub_heading {
    font-size: 18px;
  }
  .heading.sub_heading.has_top {
    top: 10px;
  }
  .heading.has_after::after {
    bottom: -30px;
  }

  .enquiry_wraper {
    padding: 0px 55px;
  }
  .enquiry_wraper .left {
    margin-top: 16%;
    margin-left: 10%;
  }
  .enquiry_wraper .close_button {
    top: -55px;
  }
  .enquiry_wraper .heading.type_one {
    font-size: 40px;
    line-height: 60px;
  }
  .enquiry_wraper .heading.sub_heading {
    margin-bottom: 95px;
  }
  .enquiry_wraper .form_wraper {
    padding: 40px 45px;
  }
  .enquiry_wraper .form_wraper .heading.type_one {
    margin-bottom: 0;
  }
  .enquiry_wraper .form_wraper .body_p {
    margin-bottom: 60px;
  }
  .enquiry_wraper .phone_number {
    font-size: 26px;
  }
  .enquiry_wraper .phone_number img {
    width: 6%;
  }
  .enquiry_wraper .form-group {
    margin-bottom: 55px;
  }
  .enquiry_wraper .input__label--ruri {
    font-size: 15px;
  }

  .disclaimer_modal .modal-dialog {
    width: 90%;
    margin-top: 0%;
  }
  .disclaimer_modal .modal-body {
    padding: 20px;
  }
  .disclaimer_modal .body_p {
    font-size: 12px;
    line-height: 15px;
  }

  /********* Header Styles *************/
  .main_header {
    height: 95px;
  }
  .main_header .menu_holder {
    margin-top: 40px;
  }
  .main_header .menu .both_sides .custom_margin_left {
    padding-left: 110px;
  }
  .main_header .menu .both_sides .custom_margin_right {
    padding-right: 110px;
  }
  .main_header .menu .menu_item {
    margin-right: 15px;
  }
  .main_header .menu .menu_item a {
    padding: 10px 20px;
    font-size: 14px;
  }
  .main_header .menu .menu_item a span::before {
    top: -6px;
  }
  .main_header .menu.scroll_in .both_sides .custom_margin_left {
    padding-left: 75px;
  }
  .main_header .menu.scroll_in .both_sides .custom_margin_right {
    padding-right: 75px;
  }
  .main_header .logo_holder a {
    transform: scale(0.9);
  }
  .main_header.scrolled .menu .menu_item .logo {
    margin: 0px auto;
    margin-top: -30px;
    transform: scale(0.8);
  }

  .explore_menu_btn_holder {
    top: 50px;
    right: 25px;
    width: 25px;
  }
  .explore_menu_btn_holder .line {
    width: 25px;
    margin-bottom: 6px;
  }
  .explore_menu_btn_holder .line.middle {
    top: 8px;
  }

  .explore_menu_holder li a {
    font-size: 14px;
  }
  .explore_menu_holder li a span::before {
    top: -6px;
  }

  .social_links_fixed_holder {
    top: 95px;
  }
  .social_links_fixed_holder .social_p {
    top: 20%;
    left: -50px;
  }
  .social_links_fixed_holder .menu_social_icon {
    bottom: 24.5%;
  }
  .social_links_fixed_holder .menu_social_icon li {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 30px;
  }
  .social_links_fixed_holder .menu_social_icon li a {
    display: inline-block;
    padding-top: 10px;
  }

  .btn_right_fixed {
    top: 188px;
    right: -80px;
  }
  .btn_right_fixed .brand_btn {
    padding: 12px 26px;
    font-size: 15px;
  }

  .back_to_top {
    bottom: 50px;
    transform: translatex(50px);
  }
  .back_to_top a {
    top: 65%;
    left: -244%;
  }
  .back_to_top a .line {
    left: 70%;
    width: 56px;
  }
  .back_to_top a .line::before {
    top: -4.5px;
  }

  /********* Footer Styles *************/
  .main_footer .rera_no {
    margin-top: 40px;
    font-size: 10px;
  }
  .main_footer .footer_social {
    margin-top: 75px;
  }
  .main_footer .footer_social li {
    margin-left: 28px;
  }
  .main_footer .disclaimer {
    margin-top: 42px;
    font-size: 13px;
  }
  .main_footer .web_presence {
    margin-top: 115px;
  }

  .bottom_gap {
    height: 65px;
  }

  /********* Banner Section *************/
  .banner_section {
    height: calc(100vh - 95px);
    margin-top: 95px;
  }
  .banner_section .banner_text .banner_heading {
    font-size: 38px;
  }
  .banner_section .banner_text .banner_heading span {
    font-size: 20px;
  }
  .banner_section .banner_text .banner_para {
    margin-top: 30px;
    padding-right: 90px;
    font-size: 12px;
  }

  .q_slide .slide .caption .banner_heading.top {
    font-size: 44px;
  }
  .q_slide .slide .caption .banner_heading.sub {
    margin-top: 15px;
    font-size: 24px;
  }
  .q_slide .slide .caption .banner_para {
    margin-top: 40px;
    font-size: 16px;
  }

  .scroll_link_outer .scroll-link {
    font-size: 12px;
  }

  /********* About Section *************/
  .about_section {
    padding-top: 80px;
    padding-bottom: 160px;
  }
  .about_section .custom_margin {
    margin-top: -92px;
  }
  .about_section .project_info_outer {
    margin-top: 130px;
  }
  .about_section .project_info_holder .p_head {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .about_section .project_info_holder .p_number {
    font-size: 64px;
  }
  .magnifier-preview {
    width: 97%;
    height: 95%;
  }

  .magnifier-lens {
    width: 301px !important;
    height: 196px !important;
  }

  /********* Solace Section *************/
  .solace_section {
    margin-bottom: 200px;
  }
  .solace_section.box_before::before {
    bottom: -6%;
    right: 39%;
  }
  .solace_section .solace_left {
    padding-top: 130px;
  }
  .solace_section .solace_left .body_p.bottom {
    margin-top: 45px;
    margin-bottom: 40px;
  }
  .solace_section .solace_left .icon_holder_outer {
    margin-top: 45px;
  }
  .solace_section .solace_left .icon_holder {
    margin-right: 34px;
  }
  .solace_section .solace_left .icon_holder .icon_text {
    font-size: 16px;
  }
  .solace_section .solace_right {
    padding-top: 160px;
  }
  .solace_section .solace_carousel_holder.top {
    margin-bottom: 45px;
  }
  .solace_section .solace_carousel_holder.bottom {
    margin-top: 14px;
  }

  /************** Villa themed Section *******************/
  .villa_themed_section {
    margin-bottom: 120px;
  }
  .villa_themed_section .vt_head {
    font-size: 24px;
    line-height: 30px;
  }
  .villa_themed_section img {
    margin-bottom: 45px;
  }

  /********* Amenities Section *************/
  .amenities_section {
    margin-bottom: 130px;
    padding: 90px 0;
  }
  .amenities_section img {
    width: 100%;
  }
  .amenities_section .heading.type_one {
    font-size: 36px;
    line-height: 45px;
  }
  .amenities_section .text_holder.top .body_p {
    padding-right: 40%;
  }
  .amenities_section .text_holder.bottom.heading.type_one {
    margin-bottom: 60px;
  }
  .amenities_section .img_outer {
    width: 100%;
    height: auto;
  }
  .amenities_section .amenities_holder .img_outer {
    left: 90px;
  }
  .amenities_section .specification_holder .img_outer {
    left: -90px;
  }

  /********* Location Section *************/
  .location_section {
    margin-bottom: 180px;
  }
  .location_section .location_content .map_img_outer {
    margin-top: 180px;
  }
  .location_section .location_content .map_img_outer::after {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
  }
  .location_section .location_content .qr_code {
    margin-top: 140px;
  }
  .location_section .location_content .goto_map {
    margin-top: 180px;
  }
  .location_section .location_content img {
    width: 101%;
  }
  .location_section .location_content .content_right {
    width: 100%;
    margin-left: 0px;
    padding: 40px;
  }
  .location_section ul li {
    font-size: 12px;
  }
  .location_section ul li span {
    width: 206px;
  }
  .location_section ul.list_right {
    padding-left: 20px;
  }

  .map_modal .modal-dialog {
    width: 75%;
  }
  .map_modal .modal-content {
    margin-top: 4%;
  }
  .map_modal .modal-body {
    padding: 60px 40px;
  }
  .map_modal img {
    width: 100%;
  }

  /********* Architects Section *************/
  .architects_section {
    padding: 80px 0;
  }
  .architects_section.box_before::before {
    bottom: -6%;
  }
  .architects_section .text_holder .heading {
    margin-bottom: 30px;
  }
  .architects_section .text_holder .heading.type_one {
    font-size: 32px;
  }
  .architects_section .text_holder .heading.sec_head {
    margin-bottom: 30px;
  }
  .architects_section .text_holder .body_p.top {
    margin-bottom: 20px;
    line-height: 22px;
  }
  .architects_section .text_holder .body_p.bottom {
    font-size: 14px;
  }

  /********* Contact Section *************/
  .contact_section {
    padding: 50px 0;
  }
  .contact_section .heading.type_one {
    font-size: 32px;
  }
  .contact_section .brand_btn {
    margin-top: 40px;
  }

  /********* Loan Section *************/
  .loan_section {
    padding: 40px 0px;
  }
  .loan_section .heading.type_one {
    font-size: 24px;
  }
  .loan_section .heading.type_one::after {
    right: -110px;
    width: 90px;
  }
  .loan_section img {
    width: 600px;
    margin-left: 190px;
  }

  /************** Inside Page Styles ******************/
  .inside_page_banner {
    height: 460px;
  }
  .inside_page_banner .heading_holder {
    top: 185px;
    left: 40px;
  }

  .inside_page_content .inside_page_about_text {
    margin-left: 5%;
  }

  /********* Amenities Page *************/
  .amenities_content {
    margin-bottom: 70px;
  }
  .amenities_content .content_bottom .heading.sub_heading {
    font-size: 20px;
  }
  .amenities_content .center_line {
    top: -250px;
    bottom: 595px;
  }
  .amenities_content .amenities_holder {
    margin-bottom: 120px;
  }
  .amenities_content .amenities_holder:nth-child(2) {
    margin-bottom: 215px;
  }
  .amenities_content .amenities_holder:nth-child(3) {
    margin-bottom: 155px;
  }
  .amenities_content .amenities_holder:nth-child(3).box_before::before {
    bottom: -5%;
  }
  .amenities_content .amenities_holder:nth-child(4) {
    margin-bottom: 240px;
  }
  .amenities_content .amenities_holder:nth-child(5) {
    margin-bottom: 160px;
  }
  .amenities_content .amenities_img .img_bottom {
    top: 160px;
  }
  .amenities_content .amenities_img .img_bottom.one.right {
    top: 290px;
    right: 100px;
  }
  .amenities_content .amenities_img .img_bottom.one.left {
    top: 290px;
    left: 100px;
  }

  /********* Project Plan Page *************/
  .project_plans_content {
    margin-bottom: 150px;
  }
  .project_plans_content .master_plan_text .heading.sub_heading.bottom {
    padding-left: 210px;
  }
  .project_plans_content .floor_plan .unit_4 {
    margin-top: 15px;
  }
  .project_plans_content .plan_holder_toggle_outer {
    margin-top: 60px;
  }
  .project_plans_content .vastu_section {
    padding: 80px 0px;
  }
  .project_plans_content .vastu_section .heading {
    margin-bottom: 40px;
  }
  .project_plans_content .vastu_section .img_holder {
    padding: 50px 0px;
  }
  .project_plans_content .plan_holder.top .plan_info {
    right: 5px;
  }
  .project_plans_content .plan_holder.top.two {
    margin-top: -463px;
  }
  .project_plans_content .plan_holder .plan_info p span {
    padding-left: 15px;
  }

  .project_plan_modal.master_plan_modal .modal-dialog {
    width: 95%;
  }
  .project_plan_modal .heading.spcl {
    margin-top: 50px;
  }
  .project_plan_modal td, .project_plan_modal th {
    font-size: 14px;
    line-height: 22px;
  }
  .project_plan_modal .unit_details {
    margin-top: 10%;
    margin-left: 50px;
  }
  .project_plan_modal .unit_details.special {
    margin-top: 4.5%;
  }
  .project_plan_modal .unit_info {
    margin-top: 50px;
  }
  .project_plan_modal .unit_info_table {
    margin-bottom: 50px;
  }
  .modal-header {
    top: 36px;
  }

  /********* Specification Page *************/
  .specifications_content {
    margin-bottom: 0px;
  }
  .specifications_content .specifications_about_text .heading.bottom {
    padding-left: 235px;
  }
  .specifications_content .info_box {
    padding: 14px 40px;
    font-size: 20px;
  }
  .specifications_content .center_line {
    top: -266px;
    bottom: 800px;
  }

  /********* Progress Page *************/
  .lg-sub-html .body_p {
    font-size: 14px;
  }

  .countdown_outer {
    margin: 70px 0 110px;
  }
  .countdown_outer .heading.type_one {
    margin-top: 78px;
    font-size: 34px;
    line-height: 52px;
  }
  .countdown_outer .countdown_holder span {
    height: 44px;
    font-size: 44px;
  }

  .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 70px;
  }

  .lg-sub-html {
    bottom: 70px;
  }

  .lg-outer .lg-image {
    max-width: 93%;
    max-height: 82%;
  }

  /********* Contact Page *************/
  .contact_content .content_bottom .heading.type_one {
    font-size: 32px;
  }
  .contact_content .content_bottom .heading.type_one span {
    font-size: 22px;
  }
}
/*======================================================================== 
                  Desktop , Medium screen
========================================================================*/
/*======================================================================== 
                      Tablet
========================================================================*/
@media only screen and (max-width: 991px) {
  .content_outer_wraper {
    overflow-x: hidden;
  }

  .outer_container {
    width: 100%;
  }

  .tooltip {
    display: none;
  }

  .tab_pl_0 {
    padding-left: 0px;
  }

  .tab_pr_0 {
    padding-right: 0px;
  }

  .tab_pl_30 {
    padding-left: 30px;
  }

  .tab_pr_30 {
    padding-right: 30px;
  }

  /********* Loader Styles *************/
  #overlay_body .load_img.right {
    display: none;
  }
  #overlay_body #progstat {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  /********* Typograpgy Styles *************/
  .heading.type_one {
    font-size: 34px;
    line-height: 54px;
  }
  .heading.type_one.has_mt_top {
    margin-top: 40px;
  }
  .heading.type_two {
    font-size: 18px;
  }
  .heading.sub_heading {
    margin-left: 15px;
    padding-left: 60px;
  }
  .heading.sub_heading::before {
    top: 8px;
    width: 50px;
  }
  .heading.sub_heading.has_top {
    top: 10px;
  }
  .heading.has_pad_left {
    padding-left: 15px;
  }
  .heading.has_after::after {
    bottom: -15px;
    width: 60px;
    transform: scale(1);
  }

  .body_p {
    padding: 0 15px;
    font-size: 14px;
    line-height: 26px;
  }
  .body_p.small {
    font-size: 13px;
  }

  /********* Button Styles *************/
  .brand_btn {
    padding: 12px 26px;
    font-size: 12px;
  }

  /********* Header Styles *************/
  .main_header {
    height: 60px;
  }
  .main_header::after {
    left: 0;
    width: 100%;
    transform: scale(1);
  }
  .main_header .container-fluid {
    padding: 0px;
  }
  .main_header .navbar-collapse.collapse {
    display: none !important;
  }
  .main_header .collapse {
    display: none;
  }
  .main_header .collapse.in {
    display: block !important;
  }
  .main_header .logo_holder {
    top: 0px;
    transform: translatex(-50%) scale(0.5);
  }
  .main_header .menu_container {
    background-color: #ffffff;
  }
  .main_header .menu_holder {
    margin-top: 60px;
    border-bottom: 1px solid #ededed;
  }
  .main_header .menu {
    margin-top: 40px;
  }
  .main_header .menu .both_sides {
    width: 100%;
  }
  .main_header .menu .both_sides.left div {
    float: none;
  }
  .main_header .menu .both_sides .custom_margin_right {
    padding-right: 0px;
  }
  .main_header .menu .both_sides .custom_margin_left {
    padding-left: 0px;
  }
  .main_header .menu .menu_item {
    display: block;
    float: none;
    margin-right: 0px;
  }
  .main_header .menu.scroll_in .both_sides .custom_margin_right {
    padding-right: 0px;
  }
  .main_header .menu.scroll_in .both_sides .custom_margin_left {
    padding-left: 0px;
  }
  .main_header.scrolled .logo_holder a {
    transform: scale(0.7);
  }

  .navbar-toggle {
    display: block;
    margin-right: 15px;
    border: none;
    border-radius: 0px;
  }
  .navbar-toggle .icon-bar {
    width: 30px;
    background-color: #eeb91b;
  }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 8px;
  }

  .btn_right_fixed {
    top: 215px;
    right: -55px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0s ease-in-out 0s;
  }
  .btn_right_fixed .brand_btn {
    font-size: 14px;
  }
  .btn_right_fixed.show {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s ease-in-out 0s;
  }

  .social_links_fixed_holder {
    top: 0;
    background-color: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0s ease-in-out 0s;
  }
  .social_links_fixed_holder .social_p {
    display: none;
  }
  .social_links_fixed_holder .menu_social_icon {
    top: 130px;
    left: 15px;
    bottom: auto;
  }
  .social_links_fixed_holder .menu_social_icon li {
    height: 40px;
  }
  .social_links_fixed_holder .menu_social_icon li a {
    padding-top: 5px;
    font-size: 14px;
  }
  .social_links_fixed_holder.show {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s ease-in-out 0s;
  }

  /********* Enquiry styles *************/
  .enquiry_wraper {
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .enquiry_wraper .left {
    margin-top: 0;
    margin-left: 0;
    padding: 60px 20px 68px;
  }
  .enquiry_wraper .close_button {
    top: -290px;
    right: 30px;
  }
  .enquiry_wraper .heading.type_one {
    font-size: 30px;
    line-height: 36px;
  }
  .enquiry_wraper .heading.sub_heading {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 60px;
    font-size: 16px;
  }
  .enquiry_wraper .heading.sub_heading::before {
    width: 45px;
  }
  .enquiry_wraper .phone_number {
    padding: 0;
    font-size: 28px;
  }
  .enquiry_wraper .phone_number img {
    top: 12px;
  }
  .enquiry_wraper .form_wraper {
    padding: 45px 20px;
  }
  .enquiry_wraper .form_wraper .heading.type_one {
    padding-left: 60px;
  }
  .enquiry_wraper .form_wraper .heading.type_one::before {
    width: 45px;
  }
  .enquiry_wraper .form_wraper .body_p {
    margin-bottom: 30px;
    padding-left: 60px;
  }
  .enquiry_wraper .form-group {
    margin-bottom: 50px;
  }
  .enquiry_wraper .input__field {
    font-size: 14px;
  }
  .enquiry_wraper .input__label--ruri {
    font-size: 14px;
  }
  .enquiry_wraper .input__field:focus + .input__label .input__label-content,
.enquiry_wraper .input--filled .input__label .input__label-content {
    color: #2b2b2b;
    letter-spacing: 1px;
    transform: translate3d(0, 24px, 0) scale3d(0.9, 0.9, 1);
  }

  /********* Disclaimer styles *************/
  .disclaimer_modal .modal-body {
    padding: 20px 15px;
  }
  .disclaimer_modal .body_p {
    padding: 0px;
  }

  /********* Footer styles *************/
  .main_footer {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .main_footer [class*=col-] {
    padding: 0 15px;
  }
  .main_footer .pr_0 {
    padding-right: 15px !important;
  }
  .main_footer .footer_top {
    margin-bottom: 30px;
  }
  .main_footer .footer_bottom {
    padding: 0 15px;
    padding-top: 40px;
  }
  .main_footer .footer_contact_outer {
    margin-left: 0;
  }
  .main_footer .reg_no {
    font-size: 13px;
    line-height: 22px;
  }
  .main_footer .rera_no {
    margin-top: 60px;
  }
  .main_footer .footer_head {
    margin-bottom: 18px;
    font-size: 26px;
  }
  .main_footer .footer_head::after {
    width: 50px;
  }
  .main_footer .footer_contact li {
    margin-bottom: 15px;
  }
  .main_footer .footer_contact li.cell span {
    display: inline-block;
  }
  .main_footer .footer_last_col {
    text-align: left;
  }
  .main_footer .footer_social {
    margin-top: 60px;
    margin-left: 0;
  }
  .main_footer .footer_social li {
    float: none;
    margin-left: 0;
    margin: 0 15px;
  }
  .main_footer .footer_social li:first-child {
    margin-left: 0;
  }
  .main_footer .disclaimer {
    margin-top: 115px;
    padding-bottom: 0px;
  }

  .bottom_gap {
    display: none;
  }

  /********* Banner Section *************/
  .banner_section {
    height: calc(56vh - 60px);
    margin-top: 60px;
  }

  .scroll_link_outer {
    display: none;
  }

  .q_slide .pagination {
    display: none;
  }
  .q_slide .slide .caption.one {
    top: 12vh;
    right: 4vw;
  }
  .q_slide .slide .caption.one .banner_para {
    padding-right: 50px;
  }
  .q_slide .slide .caption.two {
    top: 14vh;
    left: 4vw;
  }
  .q_slide .slide .caption.two .banner_heading.top.second {
    padding-left: 90px;
  }
  .q_slide .slide .caption.two .banner_para {
    padding-left: 50px;
  }
  .q_slide .slide .caption .banner_heading.top {
    font-size: 32px;
    line-height: 40px;
  }
  .q_slide .slide .caption .banner_heading.sub {
    margin-top: 0px;
    font-size: 18px;
    line-height: 26px;
  }
  .q_slide .slide .caption .banner_para {
    margin-top: 25px;
    font-size: 12px;
  }
  .q_slide .slide .caption .banner_para::after {
    width: 40px;
  }

  /********* About Section *************/
  .about_section {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .about_section .custom_margin {
    margin-top: -70px;
  }
  .about_section .about_carousel_holder {
    height: auto;
  }
  .about_section .about_carousel_holder .carousel_about {
    height: auto;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators {
    bottom: 30px;
    right: -25px;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators li {
    width: 50px;
    height: 50px;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators img {
    width: 55%;
    margin-top: 12px;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators .active {
    width: 50px;
    height: 50px;
  }
  .about_section .about_carousel_holder .body_p {
    margin-top: 20px;
    font-size: 15px;
  }
  .about_section .about_text {
    margin-top: 40px;
  }
  .about_section .about_text .body_p.bottom {
    margin-top: 50px;
  }
  .about_section .project_info_outer {
    margin-top: 50px;
  }
  .about_section .project_info_holder {
    width: 50%;
    margin-bottom: 50px;
    padding: 10px 0px;
  }
  .about_section .project_info_holder::after {
    height: 100%;
  }
  .about_section .project_info_holder:nth-child(2)::after {
    display: none;
  }
  .about_section .project_info_holder .p_head {
    font-size: 22px;
  }
  .about_section .project_info_holder .p_number {
    font-size: 58px;
  }
  .about_section .project_info_holder .p_text {
    font-size: 16px;
  }

  /********* Solace Section *************/
  .solace_section {
    margin-bottom: 180px;
  }
  .solace_section.box_before::before {
    right: 0;
  }
  .solace_section .solace_carousel_holder.top .solase_left_behind {
    left: 0;
  }
  .solace_section .solace_carousel_holder.bottom {
    width: 80%;
    margin-top: -28px;
    margin-left: 60px;
  }
  .solace_section .solace_carousel_holder .carousel_solace_top {
    height: auto;
    margin-top: 50px;
    margin-left: 100px;
  }
  .solace_section .solace_left .heading.sub_heading {
    margin-left: 15px;
  }
  .solace_section .solace_left .heading.sub_heading.bottom {
    margin-left: 14%;
  }
  .solace_section .solace_left .icon_holder {
    margin: 0 12px;
    margin-right: 20px;
  }
  .solace_section .solace_left .icon_holder .icon_text {
    font-size: 14px;
    line-height: 18px;
  }
  .solace_section .solace_right {
    padding-top: 80px;
  }
  .solace_section .solace_right .heading_rel {
    top: 40px;
  }

  /********* Villa themed Section *************/
  .villa_themed_section {
    margin-bottom: 85px;
  }
  .villa_themed_section .villa_themed_holder {
    width: 32%;
  }
  .villa_themed_section .villa_themed_holder:first-child {
    margin-left: 2%;
  }
  .villa_themed_section .vt_head {
    font-size: 22px;
    line-height: 26px;
  }

  /********* Amenities Section *************/
  .amenities_section {
    margin-bottom: 80px;
    padding: 60px 0;
  }
  .amenities_section .heading.type_two {
    margin-bottom: 50px;
  }
  .amenities_section .text_holder.top {
    top: auto;
    left: 85px;
    bottom: -125px;
    transform: translatey(0%);
  }
  .amenities_section .text_holder.top .heading.type_one {
    font-size: 30px;
    line-height: 42px;
  }
  .amenities_section .text_holder.top .heading.type_one span {
    font-size: 16px;
  }
  .amenities_section .text_holder.top .body_p {
    padding: 0 40px;
    padding-left: 0px;
    font-size: 12px;
  }
  .amenities_section .text_holder.top .brand_btn {
    margin-top: 30px;
  }
  .amenities_section .text_holder.bottom {
    margin-top: 95px;
  }
  .amenities_section .text_holder.bottom .heading.type_one {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 42px;
  }
  .amenities_section .text_holder.bottom .heading.type_one span {
    font-size: 16px;
  }
  .amenities_section .amenities_holder {
    margin-bottom: 150px;
  }
  .amenities_section .amenities_holder .img_outer {
    left: 50px;
  }
  .amenities_section .specification_holder .img_outer {
    left: -50px;
  }
  .amenities_section .specification_holder .text_holder.top {
    top: auto;
    left: 55px;
  }

  /********* Location Section *************/
  .location_section {
    margin-bottom: 120px;
  }
  .location_section.box_before::before {
    top: 8%;
    bottom: -2%;
    right: 0;
  }
  .location_section .body_p.bottom {
    padding-left: 60px;
  }
  .location_section .location_content .map_img_outer {
    margin-top: 60px;
    margin-left: 0;
    padding: 0 25px;
  }
  .location_section .location_content img {
    width: 100%;
  }
  .location_section .location_content .qr_code {
    margin-top: 30px;
  }
  .location_section .location_content .goto_map {
    margin-top: 70px;
    margin-right: 30px;
  }
  .location_section .location_content .content_right {
    width: 95%;
    margin: auto;
    margin-top: 70px;
    padding: 20px;
  }
  .location_section ul {
    margin-bottom: 20px;
  }
  .location_section ul li span {
    width: 250px;
  }

  .map_modal .modal-dialog {
    width: 90%;
  }

  /********* People behind Section *************/
  .architects_section {
    margin-bottom: 100px;
    padding: 40px 0;
  }
  .architects_section.box_before::before {
    right: 0;
    bottom: -4%;
  }
  .architects_section .architects_section_outer {
    margin-top: 50px;
  }
  .architects_section .text_holder .heading.type_one {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 20px;
  }
  .architects_section .text_holder .heading.type_one.sec_head {
    margin-bottom: 15px;
  }
  .architects_section .text_holder .body_p {
    padding: 0 15px;
  }
  .architects_section .text_holder .body_p.top {
    margin-bottom: 15px;
  }
  .architects_section .text_holder .body_p.bottom {
    font-size: 11px;
    line-height: 20px;
  }

  /********* Contact Section *************/
  .contact_section {
    padding: 40px 0;
  }
  .contact_section .heading.type_one {
    font-size: 28px;
    line-height: 36px;
  }

  .loan_section .heading.type_one::after {
    display: none;
  }
  .loan_section img {
    top: 0px;
    margin-top: 15px;
    margin-left: 0px;
  }

  /********* Inside Page Styles *************/
  .inside_page_banner {
    height: 280px;
    margin-top: 60px;
  }
  .inside_page_banner.amenities_page, .inside_page_banner.projectplan_page, .inside_page_banner.specifications_page, .inside_page_banner.progress_page, .inside_page_banner.contact_page {
    background-position: bottom;
  }
  .inside_page_banner .heading_holder {
    top: 120px;
    left: 20px;
  }
  .inside_page_banner .heading.type_one {
    font-size: 28px;
    line-height: 42px;
  }
  .inside_page_banner .heading.type_one.bottom {
    padding-left: 80px;
  }
  .inside_page_banner .heading.type_one.bottom::before {
    width: 60px;
  }

  .inside_page_content {
    padding-top: 40px;
  }
  .inside_page_content .custom_margin {
    margin-top: -68px;
  }
  .inside_page_content .inside_page_about_text {
    margin-top: 40px;
    margin-left: 0;
  }
  .inside_page_content .inside_page_about_text .body_p.bottom {
    margin-top: 40px;
  }

  /**** Amenities Page *********/
  .amenities_content {
    margin-bottom: 80px;
  }
  .amenities_content .amenities_carousel_holder {
    width: 80%;
    margin-left: 60px;
  }
  .amenities_content .carousel_amenities.bottom {
    margin-top: 20px;
  }
  .amenities_content .content_bottom {
    margin-top: 80px;
  }
  .amenities_content .content_bottom.box_before::before {
    top: -40px;
    right: 0;
    bottom: 0;
  }
  .amenities_content .content_bottom .heading.sub_heading {
    font-size: 18px;
  }
  .amenities_content .content_bottom .heading.sub_heading.bottom {
    margin-top: 15px;
    padding-left: 140px;
  }
  .amenities_content .center_line {
    top: 0;
    bottom: 3.23%;
  }
  .amenities_content .amenities_holder {
    margin-bottom: 100px;
    padding: 0 15px;
  }
  .amenities_content .amenities_holder:nth-child(2) {
    margin-bottom: 210px;
  }
  .amenities_content .amenities_holder:nth-child(4) {
    margin-bottom: 210px;
  }
  .amenities_content .amenities_holder:nth-child(5) {
    margin-bottom: 140px;
  }
  .amenities_content .amenities_holder.box_before {
    margin-bottom: 110px;
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .amenities_content .amenities_holder.box_before.left::before {
    right: 0;
  }
  .amenities_content .amenities_holder.box_before.right {
    margin-top: 140px;
    margin-bottom: 140px;
    padding-bottom: 40px;
  }
  .amenities_content .amenities_holder.box_before.right .amenities_img.text-right {
    margin-top: 0px;
  }
  .amenities_content .amenities_holder.box_before.right::before {
    left: 0;
  }
  .amenities_content .amenities_list {
    margin-top: 0px;
  }
  .amenities_content .amenities_list .heading {
    margin-bottom: 20px;
  }
  .amenities_content .amenities_list .heading img {
    width: 60px;
  }
  .amenities_content .amenities_list .body_p {
    padding-right: 0;
  }
  .amenities_content .amenities_list ul.has_pad_right {
    padding-right: 0px;
  }
  .amenities_content .amenities_list ul.has_mar_bottom {
    margin-bottom: 30px;
  }
  .amenities_content .amenities_list li {
    margin-bottom: 15px;
    padding-left: 25px;
    font-size: 14px;
    line-height: 22px;
  }
  .amenities_content .amenities_list li::before {
    top: 11px;
    width: 15px;
  }
  .amenities_content .amenities_img.has_mr_left {
    margin-top: 0px;
    margin-left: 0;
  }
  .amenities_content .amenities_img.text-right {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .amenities_content .amenities_img .img_top {
    width: 95%;
  }
  .amenities_content .amenities_img .img_bottom {
    top: 120px;
    width: 70%;
  }
  .amenities_content .amenities_img .img_bottom.left {
    left: 0;
  }
  .amenities_content .amenities_img .img_bottom.right {
    right: 0;
  }
  .amenities_content .amenities_img .img_bottom.one.right {
    top: 230px;
    right: 55px;
  }
  .amenities_content .amenities_img .img_bottom.one.left {
    top: 230px;
    left: 55px;
  }

  /**** Project Plan Page *********/
  .project_plans_content {
    margin-bottom: 40px;
  }
  .project_plans_content .master_plan .img_holder {
    width: 80%;
    margin-left: 60px;
  }
  .project_plans_content .master_plan_text .heading.sub_heading.top {
    margin-top: 40px;
  }
  .project_plans_content .master_plan_text .heading.sub_heading.bottom {
    margin-top: 10px;
    padding-left: 140px;
  }
  .project_plans_content .floor_plan {
    margin-top: 80px;
  }
  .project_plans_content .floor_plan .heading.type_one {
    margin-bottom: 40px;
  }
  .project_plans_content .floor_plan .heading.type_two {
    margin-bottom: 40px;
  }
  .project_plans_content .floor_plan .heading.second, .project_plans_content .floor_plan .heading.three {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .project_plans_content .plan_holder.mb_0 {
    margin-bottom: 60px !important;
  }
  .project_plans_content .plan_holder.top {
    margin-top: 0px;
    margin-bottom: 60px;
    padding-top: 40px;
  }
  .project_plans_content .plan_holder.top.two {
    margin-top: -615px;
  }
  .project_plans_content .plan_holder.top .plan_info {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .project_plans_content .plan_holder.top .plan_info p {
    width: 50%;
    float: left;
    padding-bottom: 20px;
    border-top: 1px solid #d7d7d7;
  }
  .project_plans_content .plan_holder .plan_info p {
    padding-top: 15px;
    padding-bottom: 20px;
    font-size: 12px;
  }
  .project_plans_content .plan_holder .plan_info p span {
    padding-left: 10px;
  }
  .project_plans_content .plan_holder .plan_overlay {
    top: 0;
    left: 0;
    background-color: transparent;
    opacity: 1;
  }
  .project_plans_content .plan_holder .plan_overlay .overlay_text {
    display: none;
  }
  .project_plans_content .home_science::before {
    right: 0%;
  }
  .project_plans_content .home_science .img_toggler_holder .btn_holder {
    margin-right: 20px;
  }
  .project_plans_content .vastu_section {
    margin-top: 20px;
  }
  .project_plans_content .vastu_section::before {
    right: 0%;
  }

  .modal-body {
    height: unset;
    margin-bottom: 10px;
    padding-bottom: 20px;
    background-color: #ffffff;
  }

  .modal-dialog {
    padding: 10px 0;
  }

  .modal-header {
    top: 0;
    right: 0;
  }

  .project_plan_modal.master_plan_modal .modal-body {
    height: 100%;
  }
  .project_plan_modal.master_plan_modal img {
    max-width: 85%;
  }
  .project_plan_modal .unit_img {
    margin-top: 50px;
    text-align: center;
  }
  .project_plan_modal .unit_img img {
    max-width: 90%;
  }
  .project_plan_modal .unit_details {
    margin-top: 30px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .project_plan_modal .unit_info {
    margin-top: 25px;
  }
  .project_plan_modal .unit_info_table {
    margin-bottom: 20px;
  }
  .project_plan_modal .unit_key_plan {
    text-align: center;
  }
  .project_plan_modal th, .project_plan_modal td {
    padding: 6px;
    font-size: 14px;
  }
  .project_plan_modal .btn_arrow {
    width: 30px;
    height: 30px;
  }
  .project_plan_modal .btn_arrow::before, .project_plan_modal .btn_arrow::after {
    width: 15px;
  }
  .project_plan_modal .btn_arrow.next {
    right: 15px;
  }
  .project_plan_modal .btn_arrow.prev {
    left: 15px;
  }

  /**** Specification Page *********/
  .specifications_content .content_top .img_holder {
    width: 80%;
    margin-left: 60px;
  }
  .specifications_content .content_bottom {
    margin-top: 60px;
  }
  .specifications_content .center_line {
    top: 0px;
  }
  .specifications_content .specifications_about_text .heading.top {
    margin-top: 40px;
    margin-left: 15px !important;
  }
  .specifications_content .specifications_about_text .heading.bottom {
    margin-top: 10px;
    padding-left: 140px;
  }
  .specifications_content .specification_holder {
    margin-bottom: 130px;
    padding: 0 15px;
  }
  .specifications_content .specification_holder.box_before {
    margin-bottom: 70px;
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .specifications_content .specification_holder.box_before.left::before {
    right: 0;
  }
  .specifications_content .specification_holder.box_before.right {
    margin-top: 140px;
    margin-bottom: 80px;
    padding-bottom: 40px;
  }
  .specifications_content .specification_holder.box_before.right .specification_img.text-right {
    margin-top: 0px;
  }
  .specifications_content .specification_holder.box_before.right::before {
    left: 0;
  }
  .specifications_content .specification_list {
    margin-top: 0px;
  }
  .specifications_content .specification_list .heading {
    margin-bottom: 20px;
  }
  .specifications_content .specification_list ul.has_pad_right {
    padding-right: 0px;
  }
  .specifications_content .specification_list ul.has_mar_bottom {
    margin-bottom: 30px;
  }
  .specifications_content .specification_list li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
  }
  .specifications_content .specification_list li::before {
    top: 11px;
  }
  .specifications_content .specification_img.has_mr_left {
    margin-top: 0px;
    margin-left: 0;
  }
  .specifications_content .specification_img.text-right {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .specifications_content .specification_img .img_top {
    width: 95%;
  }
  .specifications_content .specification_img .img_bottom {
    top: 140px;
    width: 70%;
  }
  .specifications_content .specification_img .img_bottom.left {
    left: 0;
  }
  .specifications_content .specification_img .img_bottom.right {
    right: 0;
  }

  /**** Progress Page *********/
  .progress_content {
    margin-bottom: 60px;
  }

  .countdown_outer {
    margin: 70px 0 110px;
  }
  .countdown_outer .heading.type_one {
    margin-top: 78px;
    font-size: 34px;
    line-height: 52px;
  }
  .countdown_outer .countdown_holder span {
    height: 44px;
    font-size: 44px;
  }

  .gallery_wraper {
    margin-top: 80px;
    padding: 0 10px;
  }
  .gallery_wraper .light_box_gallery > div:nth-child(n+5) {
    margin-top: 0px;
  }
  .gallery_wraper .light_box_gallery .gallery_img::before {
    transform: translate(-50%, -50%) scale(1);
  }
  .gallery_wraper .light_box_gallery .gallery_img::after {
    display: none;
  }
  .gallery_wraper .light_box_gallery .body_p {
    margin-bottom: 30px;
    padding-top: 8px;
    padding-left: 0;
  }

  .lg-actions .lg-prev, .lg-actions .lg-next {
    top: 90%;
    z-index: 1081;
  }

  .lg-outer .lg-image {
    border: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
  }
  .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 50px;
  }
  .lg-sub-html {
    bottom: 50px;
  }
  .lg-sub-html .body_p {
    font-size: 16px;
    color: #ffffff;
  }

  /**** Contact Page *********/
  .contact_content .row.box_before::before {
    top: -75px;
    bottom: -40px;
    right: 0;
  }
  .contact_content .address_holder {
    padding-top: 70px;
    padding-left: 10px;
  }
  .contact_content .address_holder .qr_code {
    display: none;
  }
  .contact_content .address_holder .address_outer {
    padding-left: 0;
  }
  .contact_content .address_holder .address_outer .body_p {
    padding-left: 0;
  }
  .contact_content .address_holder ul {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .contact_content .address_holder ul li {
    font-size: 14px;
  }
  .contact_content .address_holder ul li img {
    width: 6%;
    margin-right: 10px;
  }
  .contact_content .map_wraper {
    height: 300px;
    margin-top: 70px;
  }
  .contact_content .content_bottom {
    margin: 100px 0px 80px;
  }
  .contact_content .content_bottom .heading.type_one {
    font-size: 28px;
    line-height: 36px;
  }
  .contact_content .content_bottom .heading.type_one span {
    font-size: 20px;
  }
}
/*======================================================================== 
                  Mobile Device
========================================================================*/
@media only screen and (max-width: 767px) {
  .content_outer_wraper {
    overflow-x: hidden;
  }

  .outer_container {
    width: 100%;
  }

  .mob_pl_15 {
    padding-left: 15px !important;
  }

  .mob_pr_15 {
    padding-right: 15px !important;
  }

  /********* Loader Styles *************/
  #overlay_body .load_img.right {
    display: none;
  }
  #overlay_body #progstat {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  /********* Typograpgy Styles *************/
  .heading.type_one {
    font-size: 30px;
    line-height: 50px;
  }
  .heading.type_one.has_mt_top {
    margin-top: 40px;
  }
  .heading.type_two {
    font-size: 16px;
  }
  .heading.sub_heading {
    margin-left: 15px;
    padding-left: 60px;
    font-size: 16px;
  }
  .heading.sub_heading::before {
    top: 8px;
    width: 50px;
  }
  .heading.sub_heading.has_top {
    top: 10px;
  }
  .heading.has_pad_left {
    padding-left: 15px;
  }
  .heading.has_after::after {
    bottom: -15px;
    width: 60px;
    transform: scale(1);
  }
  .heading .tag_line {
    display: block;
    margin-left: 0px;
    margin-top: 10px;
  }

  .body_p {
    padding: 0 15px;
    font-size: 12px;
    line-height: 20px;
  }
  .body_p.small {
    font-size: 12px;
  }

  /********* Button Styles *************/
  .brand_btn {
    padding: 12px 26px;
    font-size: 12px;
  }

  /********* Header Styles *************/
  .main_header {
    height: 50px;
  }
  .main_header::after {
    left: 0;
    width: 100%;
  }
  .main_header .container-fluid {
    padding: 0px;
  }
  .main_header .collapse {
    display: none;
  }
  .main_header .collapse.in {
    display: block;
  }
  .main_header .logo_holder {
    top: 0px;
    transform: translatex(-50%) scale(0.4);
  }
  .main_header .menu_container {
    background-color: #ffffff;
  }
  .main_header .menu_holder {
    margin-top: 40px;
  }
  .main_header .menu {
    margin-top: 40px;
  }
  .main_header .menu.scroll_in {
    margin-top: 10px;
  }
  .main_header .menu .both_sides {
    width: 100%;
  }
  .main_header .menu .both_sides.left div {
    float: none;
  }
  .main_header .menu .both_sides .custom_margin_right {
    padding-right: 0px;
  }
  .main_header .menu .both_sides .custom_margin_left {
    padding-left: 0px;
  }
  .main_header .menu .menu_item {
    display: block;
    float: none;
    margin-right: 0px;
  }
  .main_header .menu.scroll_in .both_sides .custom_margin_right {
    padding-right: 0px;
  }
  .main_header .menu.scroll_in .both_sides .custom_margin_left {
    padding-left: 0px;
  }
  .main_header.scrolled .logo_holder a {
    transform: scale(0.6);
  }

  .navbar-toggle {
    margin-right: 15px;
  }
  .navbar-toggle .icon-bar {
    width: 22px;
  }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
  }

  .btn_right_fixed {
    top: 185px;
    right: -55px;
  }
  .btn_right_fixed .brand_btn {
    padding: 6px 10px;
    font-size: 14px;
  }

  .social_links_fixed_holder .menu_social_icon {
    top: 110px;
    left: 15px;
    bottom: auto;
  }
  .social_links_fixed_holder .menu_social_icon li {
    height: 40px;
  }
  .social_links_fixed_holder .menu_social_icon li a {
    padding-top: 5px;
    font-size: 14px;
  }

  /********* Enquiry styles *************/
  .enquiry_wraper {
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .enquiry_wraper .left {
    margin-top: 0;
    margin-left: 0;
    padding: 60px 20px;
  }
  .enquiry_wraper .close_button {
    top: -245px;
    right: 15px;
  }
  .enquiry_wraper .heading.type_one {
    font-size: 22px;
    line-height: 28px;
  }
  .enquiry_wraper .heading.sub_heading {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 60px;
    font-size: 14px;
  }
  .enquiry_wraper .heading.sub_heading::before {
    width: 45px;
  }
  .enquiry_wraper .phone_number {
    padding: 0;
    font-size: 22px;
  }
  .enquiry_wraper .phone_number img {
    top: 2px;
  }
  .enquiry_wraper .form_wraper {
    padding: 45px 20px;
  }
  .enquiry_wraper .form_wraper [class*=col-] {
    padding: 0px;
  }
  .enquiry_wraper .form_wraper .heading.type_one {
    padding-left: 60px;
  }
  .enquiry_wraper .form_wraper .heading.type_one::before {
    width: 45px;
  }
  .enquiry_wraper .form_wraper .body_p {
    margin-bottom: 30px;
    padding-left: 60px;
  }
  .enquiry_wraper .form-group {
    margin-bottom: 20px;
  }
  .enquiry_wraper .input__field {
    font-size: 14px;
  }
  .enquiry_wraper .input__label--ruri {
    font-size: 14px;
  }
  .enquiry_wraper .input__field:focus + .input__label .input__label-content,
.enquiry_wraper .input--filled .input__label .input__label-content {
    color: #2b2b2b;
    letter-spacing: 1px;
    transform: translate3d(0, 24px, 0) scale3d(0.9, 0.9, 1);
  }

  /********* Footer styles *************/
  .main_footer {
    padding-top: 30px;
    padding-bottom: 0;
    text-align: center;
  }
  .main_footer [class*=col-] {
    padding: 0 15px;
  }
  .main_footer .pr_0 {
    padding-right: 15px !important;
  }
  .main_footer .footer_top {
    margin-bottom: 30px;
  }
  .main_footer .footer_bottom {
    padding: 0 15px;
    padding-top: 40px;
  }
  .main_footer .footer_bottom [class*=col-] {
    margin-bottom: 50px;
  }
  .main_footer .footer_contact_outer {
    margin-left: 0;
  }
  .main_footer .reg_no {
    font-size: 13px;
    line-height: 22px;
  }
  .main_footer .rera_no {
    margin-top: 25px;
  }
  .main_footer .footer_head {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 26px;
  }
  .main_footer .footer_head::after {
    left: 50%;
    width: 50px;
    margin-left: -25px;
  }
  .main_footer .footer_contact li {
    margin-bottom: 15px;
  }
  .main_footer .footer_contact li.cell span:last-child {
    margin-top: 0px;
    padding-left: 20px;
  }
  .main_footer .footer_last_col {
    text-align: center;
  }
  .main_footer .footer_social {
    margin-top: 30px;
    margin-left: 0;
  }
  .main_footer .footer_social li {
    float: none;
    margin-left: 0;
    margin: 0 15px;
  }
  .main_footer .disclaimer {
    margin-top: 30px;
  }
  .main_footer .web_presence {
    margin-top: 45px;
  }

  .bottom_gap {
    display: none;
  }

  /********* Banner Section *************/
  .banner_section {
    height: calc(45vh - 50px);
    margin-top: 50px;
  }

  .scroll_link_outer {
    display: none;
  }

  .q_slide .pagination {
    display: none;
  }
  .q_slide .slide .caption.one {
    top: 12vh;
    right: 6vw;
    text-align: center;
  }
  .q_slide .slide .caption.two {
    top: 12vh;
    left: 2vw;
    text-align: center;
  }
  .q_slide .slide .caption.two .banner_heading.top.second {
    padding-left: 0;
  }
  .q_slide .slide .caption .banner_heading.top {
    font-size: 20px;
    line-height: 22px;
  }
  .q_slide .slide .caption .banner_heading.sub {
    margin-top: 5px;
    font-size: 12px;
    line-height: 16px;
  }
  .q_slide .slide .caption .banner_para {
    display: none;
  }
  .q_slide .slide .caption .banner_para::after {
    display: none;
  }

  /********* About Section *************/
  .about_section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .about_section .custom_margin {
    margin-top: -70px;
  }
  .about_section .about_carousel_holder {
    height: auto;
  }
  .about_section .about_carousel_holder .carousel_about {
    height: auto;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators {
    bottom: -20px;
    right: 15px;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators li {
    display: inline-block;
    float: left;
    width: 40px;
    height: 40px;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators li::after {
    transform: scalex(0);
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators li.day::after {
    transform-origin: center right;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators li.night::after {
    transform-origin: center left;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators img {
    width: 65%;
    margin-top: 8px;
  }
  .about_section .about_carousel_holder .carousel_about .carousel-indicators .active {
    width: 40px;
    height: 40px;
  }
  .about_section .about_carousel_holder .body_p {
    margin-top: 35px;
    font-size: 12px;
    line-height: 18px;
  }
  .about_section .about_text .body_p.bottom {
    margin-top: 50px;
  }
  .about_section .project_info_outer {
    margin-top: 50px;
  }
  .about_section .project_info_holder {
    width: 50%;
    margin-bottom: 30px;
    padding: 10px 0px;
  }
  .about_section .project_info_holder::after {
    height: 100%;
  }
  .about_section .project_info_holder:nth-child(2)::after {
    display: none;
  }
  .about_section .project_info_holder .p_head {
    font-size: 18px;
  }
  .about_section .project_info_holder .p_number {
    font-size: 46px;
  }
  .about_section .project_info_holder .p_text {
    font-size: 15px;
  }

  /********* Solace Section *************/
  .solace_section {
    margin-bottom: 140px;
  }
  .solace_section.box_before::before {
    right: 0;
  }
  .solace_section .solace_carousel_holder.top .solase_left_behind {
    left: -60px;
  }
  .solace_section .solace_carousel_holder.top .solase_left_behind img {
    width: 100%;
  }
  .solace_section .solace_carousel_holder.bottom {
    width: 100%;
    margin-top: -28px;
    margin-left: 0px;
  }
  .solace_section .solace_carousel_holder .carousel_solace_top {
    width: 350px;
    margin-top: 0;
    margin-left: 0;
    float: right;
  }
  .solace_section .solace_left .heading.sub_heading.bottom {
    margin-left: 23%;
  }
  .solace_section .solace_left .icon_holder_outer {
    margin-left: 0px;
  }
  .solace_section .solace_left .icon_holder {
    margin: 0 10px;
    margin-right: 10px;
  }
  .solace_section .solace_left .icon_holder img {
    transform: scale(0.8);
  }
  .solace_section .solace_left .icon_holder .icon_text {
    margin-top: 10px;
    font-size: 11px;
    line-height: 16px;
  }
  .solace_section .solace_right {
    padding-top: 80px;
  }
  .solace_section .solace_right .heading_rel {
    top: 40px;
  }

  /************** Villa themed Section *******************/
  .villa_themed_section {
    margin-bottom: 80px;
  }
  .villa_themed_section .villa_themed_holder {
    width: 100%;
    margin-bottom: 10px;
  }
  .villa_themed_section .villa_themed_holder:first-child {
    margin-left: 0%;
  }
  .villa_themed_section .villa_themed_holder.has_border {
    border-left: none;
    border-right: none;
  }
  .villa_themed_section .vt_head {
    font-size: 18px;
    line-height: 20px;
  }
  .villa_themed_section img {
    margin-bottom: 20px;
  }

  /********* Amenities Section *************/
  .amenities_section {
    margin-bottom: 80px;
    padding: 40px 0;
  }
  .amenities_section .heading.type_two {
    margin-bottom: 40px;
  }
  .amenities_section .text_holder.top {
    top: auto;
    bottom: -106px;
    left: 0;
    text-align: center;
    transform: translatey(0%);
  }
  .amenities_section .text_holder.top .body_p {
    padding: 0 40px;
  }
  .amenities_section .text_holder.top .brand_btn {
    margin-top: 30px;
  }
  .amenities_section .text_holder.bottom {
    margin-top: 180px;
  }
  .amenities_section .text_holder.bottom .heading.type_one {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 42px;
  }
  .amenities_section .text_holder.bottom .heading.type_one span {
    font-size: 16px;
  }
  .amenities_section .amenities_holder {
    margin-bottom: 150px;
  }
  .amenities_section .amenities_holder .img_outer {
    left: 0;
  }
  .amenities_section .specification_holder .img_outer {
    left: 0;
  }
  .amenities_section .specification_holder .text_holder.top {
    top: auto;
    left: 0;
  }

  /********* Location Section *************/
  .location_section {
    margin-bottom: 80px;
  }
  .location_section.box_before::before {
    top: 7%;
    bottom: -1%;
    right: 0;
  }
  .location_section .body_p.bottom {
    padding-left: 60px;
  }
  .location_section .location_content .map_img_outer {
    padding: 0 15px;
  }
  .location_section .location_content img {
    width: 100%;
  }
  .location_section .location_content .content_right {
    width: 95%;
    margin: auto;
    margin-top: 70px;
    padding: 20px;
  }
  .location_section .location_content .goto_map {
    margin-top: 50px;
    padding-left: 40px;
    font-size: 12px;
  }
  .location_section .location_content .goto_map::after {
    top: 1.5px;
  }
  .location_section .location_content .goto_map img {
    top: -10px;
    width: 25px;
  }
  .location_section ul {
    width: 100%;
    float: none;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .location_section ul.list_left {
    margin-top: 40px;
  }
  .location_section ul.list_right {
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 0px;
  }
  .location_section ul li span {
    width: 250px;
  }

  .map_modal .modal-body {
    padding: 35px 10px;
  }

  /********* People behind Section *************/
  .architects_section {
    margin-bottom: 100px;
    padding: 40px 0;
  }
  .architects_section.box_before::before {
    right: 0;
    bottom: -4%;
  }
  .architects_section .architects_section_outer {
    margin-top: 50px;
  }
  .architects_section .text_holder {
    height: auto;
    transform: translatey(-50%);
  }
  .architects_section .text_holder .heading.type_one {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 20px;
  }
  .architects_section .text_holder .body_p {
    padding: 0 15px;
  }
  .architects_section .text_holder .body_p.top {
    margin-bottom: 20px;
    line-height: 18px;
  }
  .architects_section .text_holder .body_p.bottom {
    font-size: 11px;
    line-height: 22px;
  }

  .arcitects_modal .heading.type_one {
    padding-left: 15px;
    font-size: 26px;
  }

  /********* Contact Section *************/
  .contact_section {
    padding: 40px 0;
    background: url("../images/contact_section_bg_mobile.jpg") no-repeat;
  }
  .contact_section .heading.type_one {
    font-size: 28px;
    line-height: 36px;
  }

  /********* Loan Section *************/
  .loan_section .heading.type_one {
    font-size: 20px;
  }
  .loan_section .heading.type_one::after {
    display: none;
  }
  .loan_section img {
    top: 0px;
    width: 330px;
    margin-top: 10px;
    margin-left: 0px;
  }

  /********* Inside Page Styles *************/
  .inside_page_banner {
    height: 220px;
    margin-top: 50px;
  }
  .inside_page_banner .heading_holder {
    top: 95px;
    left: 20px;
  }
  .inside_page_banner .heading.type_one {
    font-size: 18px;
    line-height: 26px;
  }
  .inside_page_banner .heading.type_one.bottom {
    padding-left: 50px;
  }
  .inside_page_banner .heading.type_one.bottom::before {
    width: 40px;
  }
  .inside_page_banner .heading.type_one.bottom.spec {
    font-size: 15px;
  }

  .inside_page_content {
    padding-top: 40px;
  }
  .inside_page_content .custom_margin {
    margin-top: -68px;
  }
  .inside_page_content .inside_page_about_text {
    margin-top: 40px;
    margin-left: 0;
  }
  .inside_page_content .inside_page_about_text .body_p.bottom {
    margin-top: 40px;
  }

  /**** Amenities Page *********/
  .amenities_content {
    margin-bottom: 80px;
  }
  .amenities_content .amenities_carousel_holder {
    width: 100%;
    margin-left: 0px;
  }
  .amenities_content .carousel_amenities.bottom {
    margin-top: 20px;
  }
  .amenities_content .content_bottom {
    margin-top: 0px;
  }
  .amenities_content .content_bottom.box_before::before {
    top: -40px;
    right: 0;
    bottom: 0;
  }
  .amenities_content .content_bottom .heading.sub_heading {
    font-size: 18px;
  }
  .amenities_content .content_bottom .heading.sub_heading.bottom {
    margin-top: 15px;
    padding-left: 140px;
  }
  .amenities_content .center_line {
    display: none;
  }
  .amenities_content .amenities_holder {
    margin-bottom: 100px;
    padding: 0 15px;
  }
  .amenities_content .amenities_holder:nth-child(2) {
    margin-bottom: 100px;
  }
  .amenities_content .amenities_holder:nth-child(4) {
    margin-bottom: 30px;
  }
  .amenities_content .amenities_holder:nth-child(5) {
    margin-bottom: 140px;
  }
  .amenities_content .amenities_holder.box_before {
    margin-bottom: 110px;
    padding-top: 20px;
    padding-bottom: 100px;
  }
  .amenities_content .amenities_holder.box_before.left::before {
    right: 0;
  }
  .amenities_content .amenities_holder.box_before.right {
    margin-bottom: 90px;
    padding-bottom: 0px;
  }
  .amenities_content .amenities_holder.box_before.right .amenities_img.text-right {
    margin-top: 0px;
  }
  .amenities_content .amenities_holder.box_before.right::before {
    left: 0;
  }
  .amenities_content .amenities_list {
    margin-top: 60px;
  }
  .amenities_content .amenities_list .heading {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .amenities_content .amenities_list .heading img {
    top: 5px;
    width: auto;
    height: 45px;
    margin-right: 20px;
  }
  .amenities_content .amenities_list .body_p {
    padding-right: 0;
  }
  .amenities_content .amenities_list ul.has_pad_right {
    padding-right: 0px;
  }
  .amenities_content .amenities_list ul.has_mar_bottom {
    margin-bottom: 30px;
  }
  .amenities_content .amenities_list li {
    margin-bottom: 15px;
    padding-left: 25px;
    font-size: 14px;
    line-height: 22px;
  }
  .amenities_content .amenities_list li::before {
    top: 11px;
    width: 15px;
  }
  .amenities_content .amenities_img.has_mr_left {
    margin-top: 20px;
  }
  .amenities_content .amenities_img.text-right {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .amenities_content .amenities_img .img_top {
    width: 95%;
  }
  .amenities_content .amenities_img .img_bottom {
    top: 120px;
    width: 70%;
  }
  .amenities_content .amenities_img .img_bottom.left {
    left: 0;
  }
  .amenities_content .amenities_img .img_bottom.right {
    right: 0;
  }
  .amenities_content .amenities_img .img_bottom.one.right {
    top: 230px;
    right: 55px;
  }
  .amenities_content .amenities_img .img_bottom.one.left {
    top: 230px;
    left: 55px;
  }
  .amenities_content .indulge_section {
    margin-top: 80px;
    padding: 50px 0px;
  }
  .amenities_content .indulge_section::before {
    right: 0;
  }
  .amenities_content .indulge_section .heading.type_two {
    margin-bottom: 30px;
  }
  .amenities_content .indulge_section .body_p.top {
    padding: 0px 15px;
  }
  .amenities_content .indulge_section .box_holder {
    margin-top: 45px;
  }
  .amenities_content .indulge_section .box_outer .box_inner {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .amenities_content .indulge_section .box_outer .box_inner ul li {
    margin-bottom: 10px;
    font-size: 12px;
  }

  /**** Project Plan Page *********/
  .project_plans_content {
    margin-bottom: 40px;
  }
  .project_plans_content .master_plan .img_holder {
    width: 100%;
    margin-left: 0px;
  }
  .project_plans_content .master_plan_text .heading.sub_heading.top {
    margin-top: 40px;
  }
  .project_plans_content .master_plan_text .heading.sub_heading.bottom {
    margin-top: 10px;
    padding-left: 90px;
  }
  .project_plans_content .floor_plan {
    margin-top: 80px;
  }
  .project_plans_content .floor_plan .heading.type_one {
    margin-bottom: 40px;
  }
  .project_plans_content .floor_plan .heading.type_two {
    margin-bottom: 40px;
  }
  .project_plans_content .floor_plan .heading.second, .project_plans_content .floor_plan .heading.three {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .project_plans_content .plan_holder.mb_0 {
    margin-bottom: 60px !important;
  }
  .project_plans_content .plan_holder.top {
    margin-top: 20px;
    margin-bottom: 60px;
    padding-bottom: 15px;
  }
  .project_plans_content .plan_holder.top.two {
    margin-top: -440px;
  }
  .project_plans_content .plan_holder.top .plan_info {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .project_plans_content .plan_holder.top .plan_info p {
    width: 50%;
    float: left;
    padding-bottom: 20px;
    border-top: 1px solid #d7d7d7;
  }
  .project_plans_content .plan_holder .plan_info p {
    padding-top: 15px;
    padding-bottom: 20px;
    font-size: 12px;
  }
  .project_plans_content .plan_holder .plan_info p span {
    padding-left: 10px;
  }
  .project_plans_content .plan_holder .plan_overlay {
    top: 0;
    left: 0;
    background-color: transparent;
    opacity: 1;
  }
  .project_plans_content .plan_holder .plan_overlay .overlay_text {
    display: none;
  }
  .project_plans_content .home_science {
    margin-top: 80px;
    padding: 45px 0px;
  }
  .project_plans_content .home_science::before {
    right: 0;
  }
  .project_plans_content .home_science .text_holder {
    margin-top: 45px;
    padding-left: 0px;
  }
  .project_plans_content .home_science ul {
    margin-top: 20px;
    padding: 0px 15px;
  }
  .project_plans_content .home_science ul li {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 20px;
  }
  .project_plans_content .home_science .img_toggler_holder {
    padding: 0px 15px;
  }
  .project_plans_content .home_science .img_toggler_holder .body_p {
    padding-left: 15px;
    padding-right: 15px;
  }
  .project_plans_content .home_science .img_toggler_holder .btn_holder {
    text-align: center;
  }
  .project_plans_content .home_science .img_toggler_holder .btn_holder a {
    font-size: 26px;
  }
  .project_plans_content .home_science .img_toggler_holder .btn_holder a.has_after {
    margin-right: 40px;
  }
  .project_plans_content .home_science .img_toggler_holder .btn_holder a.has_after::after {
    right: -20px;
  }
  .project_plans_content .home_science .img_toggler_holder .img_holder {
    height: 320px;
  }
  .project_plans_content .home_science .img_toggler_holder .img_holder img {
    width: 300px;
  }
  .project_plans_content .home_science .img_toggler_holder .img_inner {
    top: 20px;
  }
  .project_plans_content .vastu_section {
    margin-top: 80px;
    padding: 30px 0px;
  }
  .project_plans_content .vastu_section::before {
    right: 0;
  }
  .project_plans_content .vastu_section .heading {
    margin-top: 0px;
    margin-bottom: 15px;
  }

  .modal-body {
    height: unset;
    margin-bottom: 10px;
    padding-bottom: 20px;
    background-color: #ffffff;
  }

  .modal-dialog {
    padding: 10px 0;
  }

  .modal-header {
    top: 10px;
    right: 10px;
  }

  .project_plan_modal .unit_img {
    margin-top: 50px;
    text-align: center;
  }
  .project_plan_modal .unit_img img {
    max-width: 90%;
  }
  .project_plan_modal .unit_details {
    margin-top: 60px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .project_plan_modal .unit_info {
    margin-top: 25px;
  }
  .project_plan_modal .unit_info_table {
    margin-bottom: 20px;
  }
  .project_plan_modal .unit_key_plan {
    text-align: center;
  }
  .project_plan_modal th, .project_plan_modal td {
    padding: 4px;
    font-size: 11px;
  }
  .project_plan_modal .btn_arrow {
    top: 52%;
    width: 30px;
    height: 30px;
  }
  .project_plan_modal .btn_arrow::before, .project_plan_modal .btn_arrow::after {
    width: 15px;
  }
  .project_plan_modal .btn_arrow.next {
    right: 15px;
  }
  .project_plan_modal .btn_arrow.prev {
    left: 15px;
  }

  /**** Specification Page *********/
  .specifications_content {
    margin-bottom: 30px;
  }
  .specifications_content .content_top .img_holder {
    width: 100%;
    margin-left: 0px;
  }
  .specifications_content .content_bottom {
    margin-top: 60px;
  }
  .specifications_content .center_line {
    display: none;
  }
  .specifications_content .custom_margin {
    margin-top: -82px;
  }
  .specifications_content .specifications_about_text .heading.top {
    margin-top: 40px;
  }
  .specifications_content .specifications_about_text .heading.bottom {
    margin-top: 10px;
    padding-left: 140px;
  }
  .specifications_content .specification_holder {
    margin-bottom: 60px;
    padding: 0 15px;
  }
  .specifications_content .specification_holder.box_before {
    margin-bottom: 0px;
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .specifications_content .specification_holder.box_before.left::before {
    right: 0;
  }
  .specifications_content .specification_holder.box_before.right {
    margin-top: 140px;
    margin-bottom: 60px;
    padding-bottom: 40px;
  }
  .specifications_content .specification_holder.box_before.right .specification_img.text-right {
    margin-top: 0px;
  }
  .specifications_content .specification_holder.box_before.right::before {
    left: 0;
  }
  .specifications_content .info_box {
    margin-bottom: 50px;
    padding: 8px 32px;
    font-size: 18px;
  }
  .specifications_content .specification_list {
    margin-top: 0px;
  }
  .specifications_content .specification_list .heading {
    margin-bottom: 20px;
  }
  .specifications_content .specification_list ul.has_pad_right {
    padding-right: 0px;
  }
  .specifications_content .specification_list ul.has_mar_bottom {
    margin-bottom: 30px;
  }
  .specifications_content .specification_list li {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 22px;
  }
  .specifications_content .specification_list li::before {
    top: 11px;
  }
  .specifications_content .specification_img.has_mr_left {
    margin-top: 20px;
    margin-left: 0;
  }
  .specifications_content .specification_img.text-right {
    margin-bottom: 80px;
  }
  .specifications_content .specification_img .img_top {
    width: 95%;
  }
  .specifications_content .specification_img .img_bottom {
    top: 140px;
    width: 70%;
  }
  .specifications_content .specification_img .img_bottom.left {
    left: 0;
  }
  .specifications_content .specification_img .img_bottom.right {
    right: 0;
  }

  /**** Progress Page *********/
  .progress_content {
    margin-bottom: 60px;
  }

  .countdown_outer {
    margin: 30px 0 40px;
  }
  .countdown_outer .heading.type_one {
    width: 100%;
    margin-top: 25px;
    padding-left: 0px;
    font-size: 20px;
    line-height: 38px;
    text-align: center;
  }
  .countdown_outer .countdown_wraper {
    width: 100%;
    margin: 25px 0px;
  }
  .countdown_outer .countdown_holder {
    width: 32%;
    padding: 10px 0px;
    font-size: 14px;
  }
  .countdown_outer .countdown_holder:first-child {
    margin-left: 2%;
  }
  .countdown_outer .countdown_holder span {
    height: 30px;
    margin-bottom: 10px;
    font-size: 30px;
  }

  .gallery_wraper {
    margin-top: 80px;
    padding: 0 10px;
  }
  .gallery_wraper .light_box_gallery .body_p {
    margin-bottom: 30px;
    padding-top: 8px;
    padding-left: 0;
    font-size: 12px;
  }

  .lg-actions .lg-prev, .lg-actions .lg-next {
    top: auto;
    bottom: 15px;
  }

  .lg-outer .lg-image {
    border: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
  }
  .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 15vh;
  }
  .lg-sub-html {
    bottom: 15vh;
  }
  .lg-sub-html .body_p {
    font-size: 14px;
    color: #ffffff;
  }
  .lg-sub-html .body_p.fst {
    position: relative;
    top: -20px;
  }

  /**** Contact Page *********/
  .contact_content {
    margin-bottom: 80px;
  }
  .contact_content .address_holder {
    padding-top: 70px;
    padding-left: 10px;
  }
  .contact_content .address_holder .qr_code {
    display: none;
  }
  .contact_content .address_holder .address_outer {
    padding-left: 0;
  }
  .contact_content .address_holder .address_outer .body_p {
    padding-left: 0;
  }
  .contact_content .address_holder ul {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .contact_content .address_holder ul li {
    margin-bottom: 15px;
    font-size: 12px;
  }
  .contact_content .address_holder ul li img {
    width: 5%;
    margin-right: 10px;
  }
  .contact_content .map_wraper {
    height: 300px;
    margin-top: 0px;
  }

  /******** Future neighbous Page *******/
  .future_neighbours_content {
    margin-bottom: 80px;
  }
  .future_neighbours_content .testimonial_outer {
    margin-top: 60px;
  }
  .future_neighbours_content .testimonial_holder {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 40px;
    padding-left: 0px;
    padding-right: 0;
    padding-bottom: 50px;
  }
  .future_neighbours_content .testimonial_holder img {
    top: -20px;
    width: 50px;
    opacity: 1;
  }
  .future_neighbours_content .testimonial_holder .body_p {
    margin-bottom: 30px;
  }
  .future_neighbours_content .testimonial_holder .name_holder {
    position: relative;
    left: 15px;
    bottom: auto;
    font-size: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .project_plans_content .vastu_section .heading {
    padding-left: 15px;
  }
  .project_plans_content .vastu_section .vastu_info ul {
    width: 100%;
    margin-bottom: 20px;
  }
  .project_plans_content .vastu_section .vastu_info ul:last-child {
    margin-bottom: 0px;
  }
  .project_plans_content .vastu_section .vastu_info ul li {
    font-size: 12px;
    line-height: 24px;
  }
  .project_plans_content .vastu_section .vastu_info ul li.icon_vs1 {
    background-position: left 0px;
  }

  .slick-prev, .slick-next {
    right: 47px !important;
  }

  .thumbnail-vid img {
    padding: 0 3px !important;
    margin-left: 18px;
  }
}
.video {
  display: none;
}

.thumbnail-vid {
  width: 100%;
  position: relative;
}
.thumbnail-vid:first-child {
  margin-left: 15px;
}
.thumbnail-vid img {
  width: 100%;
  padding: 5px;
  z-index: 2;
}

.fancybox-is-open .fancybox-bg {
  background: url("../images/popup-pattern.png") repeat rgba(30, 30, 30, 0.9) !important;
}

.vid-slider {
  position: relative;
}

.icon-play {
  background: url("../images/play.png") no-repeat;
  height: 70px;
  width: 70px;
  position: absolute;
  top: 40%;
  left: 40%;
  z-index: 0;
}

.slick-slide {
  padding-bottom: 70px;
  position: relative;
}

.test-name {
  position: absolute;
  padding-left: 60px;
  font-family: "assassinregular";
  font-size: 20px;
  color: #2b2b2b;
  text-transform: uppercase;
  margin-top: 40px;
  margin-left: 50px;
}
.test-name::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #2b2b2b;
}

.thumbnail-vid img {
  width: 100%;
  padding: 11px;
  z-index: 2;
}

.slick-prev:before, .slick-next:before {
  color: #000;
  content: " ";
}

.slick-prev, .slick-next {
  right: 30px;
  top: 97%;
  z-index: 99999;
}

.slick-prev:before {
  margin-left: -40px;
}

.slick-prev:before {
  -webkit-mask: url("../images/prev.svg");
          mask: url("../images/prev.svg");
  background: #000;
  -webkit-mask-size: cover;
          mask-size: cover;
  height: 15px;
  position: absolute;
  width: 26px;
  transition: all ease-in 0.3s;
}

.slick-next:before {
  -webkit-mask: url("../images/next.svg");
          mask: url("../images/next.svg");
  background: #000;
  -webkit-mask-size: cover;
          mask-size: cover;
  height: 15px;
  position: absolute;
  width: 26px;
  transition: all ease-in 0.3s;
}

.slick-next:hover:before {
  background-color: #eeb91b;
}

.slick-prev:hover:before {
  background-color: #eeb91b;
}

.fancybox-button {
  color: #ffffff !important;
  background-color: #eeb91b !important;
  width: 50px !important;
}

@media only screen and (max-width: 1440px) {
  .slick-slide {
    display: block;
  }

  .test-name {
    font-size: 16px;
  }

  .award_text .award_heading {
    font-size: 17px;
    line-height: 30px;
  }

  .award_text .award_heading::before {
    top: 54px;
  }

  .award_text .award_content {
    padding-top: 0px;
    line-height: 25px;
    font-size: 13px;
  }

  .media_text .media_content {
    padding-top: 40px;
  }

  .award_image img {
    max-width: 100% !important;
    height: 290px;
  }

  .amenities_content .indulge_section .body_p.top {
    padding: 0px 0px 60px 0 !important;
  }

  .inside_page_content img {
    max-width: 75%;
  }

  .award_image img {
    max-width: 100% !important;
    height: 290px;
  }

  .media_img img {
    max-width: 100% !important;
    height: 180px;
  }
}
@media only screen and (max-width: 1366px) {
  .inside_page_content img {
    max-width: 100%;
  }

  .award_image img {
    max-width: 100% !important;
    height: 290px;
  }

  .media_img img {
    max-width: 100% !important;
    height: 180px;
  }
}
@media only screen and (max-width: 786px) {
  .slider-ameni .slick-prev {
    top: 86%;
  }

  .slider-ameni .slick-next {
    top: 86%;
    margin-top: 0;
  }

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

  .amenities_content .indulge_section .box_outer .box_inner ul li {
    font-size: 9px;
    line-height: 24px;
    margin-bottom: 6px !important;
  }

  .award_item_pl0 {
    padding-left: 15px;
  }

  .award_item_pr0 {
    padding-right: 15px;
  }

  .award_image img {
    max-width: 100% !important;
    width: 100% !important;
  }

  .media_item {
    width: 49% !important;
    margin: 100px 0px 150px 7px;
  }

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

  .award_item, .media_item {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .inside_page_content img {
    max-width: 100%;
  }

  .award_image img {
    max-width: 100% !important;
    width: 100% !important;
  }

  .award_item_pl0 {
    padding-left: 15px;
  }

  .award_item_pr0 {
    padding-right: 15px;
  }

  .award_text .award_heading {
    font-size: 12px;
    line-height: 20px;
    height: 150px;
  }

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

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

  .media_item .media_logo {
    text-align: center;
  }

  .media_item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 15px;
  }

  .award_text .award_content {
    height: 140px;
  }

  .media_item {
    margin: 100px 15px -40px 15px;
  }
}
@media only screen and (max-width: 1366px) {
  .ameni_item img {
    min-width: 75vw !important;
    width: 71% !important;
    object-fit: cover !important;
  }
}
@media only screen and (max-width: 2600px) {
  .ameni_item img {
    min-width: 75vw;
    width: 100%;
    object-fit: cover;
  }

  .slider-ameni {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .ameni_item img {
    min-width: 100vw !important;
    object-fit: cover !important;
  }
}
@media only screen and (max-width: 480px) {
  .mob-mb-50 {
    margin-bottom: 50px;
  }
}
.ytube-wrap {
  width: 80%;
  height: 75vh;
  margin: 0 auto;
  margin-top: 150px;
  position: relative;
  /*pointer-events: none;*/
  /*#player{
    width: 100%;
    height: 80vh;
  }*/
}
@media only screen and (max-width: 1440px) {
  .ytube-wrap {
    width: 70%;
  }
}

@media only screen and (max-width: 1024px) {
  .ytube-wrap {
    height: 38vh !important;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .ytube-wrap {
    height: 43vh !important;
  }
}
@media only screen and (max-width: 480px) {
  #player {
    height: 320px !important;
  }
}
.news-mb-0 {
  margin-bottom: 0 !important;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 15.7% !important;
}
@media only screen and (max-width: 1024px) {
  .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 25.7% !important;
  }
}
@media only screen and (max-width: 768px) {
  .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 70px !important;
  }
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object {
  max-height: 70%;
  min-height: 70%;
}
@media only screen and (max-width: 1024px) {
  .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object {
    max-height: 50%;
    min-height: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object {
    min-height: 30%;
  }
}

@media only screen and (max-width: 1440px) {
  .inside_page_content img {
    max-width: 100%;
  }
}

.mob-active {
  color: #eeb91b !important;
}

.page-approval {
  margin-top: 110px;
}
@media only screen and (max-width: 1440px) {
  .page-approval {
    margin-top: 105px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-approval {
    margin-top: 135px;
  }
}
@media only screen and (max-width: 991px) {
  .page-approval {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .page-approval {
    margin-top: 50px;
  }
}
.page-approval .approval-img-wrap {
  text-align: center;
  margin-top: 160px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .page-approval .approval-img-wrap {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .page-approval .approval-img-wrap {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .page-approval .approval-img-wrap {
    margin-top: 40px;
    margin-bottom: 15px;
  }
}
.page-approval .approval-img-wrap img {
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .page-approval .approval-img-wrap img {
    width: 100%;
  }
}