@import "../lib/bootstrap/bootstrap.min.css";
@import "../lib/fontawsome/css/font-awesome.min.css";
@import "../lib/slick/slick.css";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import "../lib/lightbox/css/lightbox.min.css";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("//hello.myfonts.net/count/379c97");
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 20px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 40px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 40px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 40px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 40px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 40px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 40px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(4px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-4px, -5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-4px, 5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(4px, -5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(4px, 5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 7px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 14px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 7px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 14px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 7px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -40px;
  top: -40px;
  transform: translate3d(40px, 40px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -40px;
  top: -40px;
  transform: translate3d(-40px, 40px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 7px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -40px;
  top: 40px;
  transform: translate3d(40px, -40px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -40px;
  top: 40px;
  transform: translate3d(-40px, -40px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 14px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-2.8571428571px, -5px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 14px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(2.8571428571px, -5px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 7px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 7px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

@font-face {
  font-family: "IsidoraSans-Black";
  src: url("../fonts/379C97_0_0.eot");
  src: url("../fonts/379C97_0_0.eot?#iefix") format("embedded-opentype"), url("../fonts/379C97_0_0.woff2") format("woff2"), url("../fonts/379C97_0_0.woff") format("woff"), url("../fonts/379C97_0_0.ttf") format("truetype");
}
@font-face {
  font-family: "IsidoraSans-Medium";
  src: url("../fonts/379C97_1_0.eot");
  src: url("../fonts/379C97_1_0.eot?#iefix") format("embedded-opentype"), url("../fonts/379C97_1_0.woff2") format("woff2"), url("../fonts/379C97_1_0.woff") format("woff"), url("../fonts/379C97_1_0.ttf") format("truetype");
}
@font-face {
  font-family: "AddictiveCaps-Regular";
  src: url("../fonts/379C97_2_0.eot");
  src: url("../fonts/379C97_2_0.eot?#iefix") format("embedded-opentype"), url("../fonts/379C97_2_0.woff2") format("woff2"), url("../fonts/379C97_2_0.woff") format("woff"), url("../fonts/379C97_2_0.ttf") format("truetype");
}
@font-face {
  font-family: "Addictive-Regular";
  src: url("../fonts/379C97_3_0.eot");
  src: url("../fonts/379C97_3_0.eot?#iefix") format("embedded-opentype"), url("../fonts/379C97_3_0.woff2") format("woff2"), url("../fonts/379C97_3_0.woff") format("woff"), url("../fonts/379C97_3_0.ttf") format("truetype");
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?egshew");
  src: url("../fonts/icomoon.eot?egshew#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?egshew") format("truetype"), url("../fonts/icomoon.woff?egshew") format("woff"), url("../fonts/icomoon.svg?egshew#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-carousel-next:before {
  content: "\e90b";
}

.icon-carousel-prev:before {
  content: "\e90c";
}

.icon-address:before {
  content: "\e906";
}

.icon-contact:before {
  content: "\e907";
}

.icon-phone:before {
  content: "\e909";
}

.icon-download-menu:before {
  content: "\e90a";
}

.icon-arrow-down:before {
  content: "\e900";
}

.icon-book-table:before {
  content: "\e901";
}

.icon-burger-menu:before {
  content: "\e902";
}

.icon-join-us:before {
  content: "\e903";
}

.icon-phone-header:before {
  content: "\e904";
}

.icon-button-arrow:before {
  content: "\e905";
}

.relative {
  position: relative;
  z-index: 0;
}

.overflow {
  overflow: hidden;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.valign {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.halign {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.vhalign {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
}

/* responsive iframe wrapper */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
}

.typography .alignnone {
  margin: 0px 0px 1.4em 0px;
}
.typography .aligncenter,
.typography div.aligncenter {
  display: block;
  margin: 0px auto 1.4em auto;
}
.typography .alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em;
}
.typography .alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px;
}
.typography a img.alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em;
}
.typography a img.alignnone {
  margin: 0px 0px 1.4em 0px;
}
.typography a img.alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px;
}
.typography a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.typography img {
  height: auto;
}
.typography ul, .typography ol {
  margin: 0px 0px 1.4em 0px;
  padding: 0px 0px 0px 20px;
  overflow: hidden;
}
.typography a {
  color: #000000;
  text-decoration: underline;
}
.typography a:hover {
  text-decoration: none;
}
.typography p {
  margin: 0px 0px 1.4em 0px;
}
.typography blockquote {
  /* margin:0px 0px $content-margin 0px;
  p:last-child{
  	margin-bottom:0px;
  } */
}

.the-button {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  height: 60px;
  line-height: 56px;
  padding: 0px 20px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  background-clip: padding-box;
  color: #fff !important;
  text-decoration: none !important;
  background-color: #000;
  border: 2px solid #000;
  font-size: 18px;
}
.the-button:focus {
  outline: 0;
}
.the-button:hover {
  background-color: transparent;
  color: #000 !important;
}
.the-button span {
  display: inline-block;
  vertical-align: middle;
  color: inherit !important;
  margin-top: -2px;
  font-size: 14px;
}
.the-button span.icon-button-arrow {
  margin-left: 5px;
}
.the-button.lined {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff !important;
}
.the-button.lined:hover {
  background-color: #fff;
  color: #cf5c39 !important;
}
.the-button.lined-white {
  border: 2px solid #fff;
}
.the-button.lined-white:hover {
  background-color: #fff;
}
.the-button.block {
  width: 100%;
}
.the-button:disabled {
  opacity: 0.5;
}

.custom-control-label {
  font-size: 12px;
  line-height: 17px;
  padding-left: 15px;
  margin-top: 9px;
}

.custom-checkbox .custom-control-label::before {
  height: 26px;
  width: 26px;
  border: 1px solid #000000;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  border-radius: 13px;
  background-clip: padding-box;
  background-color: transparent;
}

.custom-checkbox .custom-control-label::after {
  height: 26px;
  width: 26px;
  border: 1px solid #000000;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  border-radius: 13px;
  background-clip: padding-box;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #000;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}

.the-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 45px;
  letter-spacing: 1px;
  text-align: center;
  color: #cf5c39;
  margin-bottom: 40px;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

ul.socialmedia-links {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
ul.socialmedia-links li {
  list-style: none;
}
ul.socialmedia-links li a {
  text-decoration: none;
  font-size: 24px;
}
ul.socialmedia-links li a i {
  color: inherit;
}
ul.socialmedia-links li a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  .the-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  ul.socialmedia-links li a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .the-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-title {
    font-size: 35px;
    letter-spacing: 0.78px;
    line-height: 38px;
    margin-bottom: 25px;
  }
}
body, * {
  font-family: "Inter", sans-serif;
  color: #000000;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Inter", sans-serif;
}

input, button, select, textarea, .form-control {
  font-family: "Inter", sans-serif;
  line-height: normal;
}

*:focus,
a:focus,
a:active {
  outline: none;
  color: inherit;
  text-decoration: inherit;
}

br {
  font-size: inherit;
  line-height: inherit;
}

section {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

i {
  color: inherit;
  font-size: inherit;
}

strong {
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

button, input[type=submit] {
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.form-control,
select.form-control:not([size]):not([multiple]) {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  height: 50px;
  border: none;
  border: 1px solid #000;
  padding-left: 20px;
  padding-right: 20px;
}
.form-control:focus,
select.form-control:not([size]):not([multiple]):focus {
  border-color: #000;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control::-webkit-input-placeholder,
select.form-control:not([size]):not([multiple])::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000;
}
.form-control::-moz-placeholder,
select.form-control:not([size]):not([multiple])::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000;
}
.form-control:-ms-input-placeholder,
select.form-control:not([size]):not([multiple]):-ms-input-placeholder {
  /* IE 10+ */
  color: #000000;
}
.form-control:-moz-placeholder,
select.form-control:not([size]):not([multiple]):-moz-placeholder {
  /* Firefox 18- */
  color: #000000;
}

.custom-select {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  background-clip: padding-box;
  height: 50px;
  border: none;
  border: 1px solid #000;
}

textarea.form-control {
  height: auto;
  resize: none;
}

.form-group {
  margin-bottom: 25px;
}

iframe {
  max-width: 100%;
}

svg {
  display: inline-block;
}

/* $gutter:8px;
.container {
	padding-right: $gutter;
	padding-left: $gutter;
	.row{
		margin-left:-$gutter;
		margin-right:-$gutter;
		.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
			padding-left: $gutter;
			padding-right: $gutter;
		}
	}

	@include mq_up($sm){
		max-width:100%;
	}
	// mq_down_sm

	@include mq_up($md){
		width:100%; max-width:1170px;

		$gutter:11px;
		padding-right: 22px;
		padding-left: 22px;
		.row{
			margin-left:-$gutter;
			margin-right:-$gutter;
			.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
				padding-left: $gutter;
				padding-right: $gutter;
			}
		}
	}
	// mq_down_md
} */
.the-carousel {
  display: none;
}
.the-carousel.slick-initialized {
  display: block;
}

div.wpcf7-response-output {
  margin: 20px 0px 0px 0px;
  padding: 15px;
}

.form-control.wpcf7-not-valid {
  border: 1px solid #f00;
  background-color: #ffe3e3;
}

span.wpcf7-not-valid-tip {
  display: none;
}

span.wpcf7-list-item {
  margin: 0px;
}

#mobile-menu-wrapper {
  position: fixed;
  z-index: 2;
  left: 0px;
  top: 100px;
  width: 100%;
  height: calc(100vh - 100px);
  overflow-y: scroll;
  background-color: #cf5c39;
  padding: 0px 0px 40px 0px;
  left: -100%;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#mobile-menu-wrapper * {
  color: #fff;
}
#mobile-menu-wrapper ul.mobile-menu {
  margin: 0px;
  padding: 0px;
  display: block;
  margin-bottom: 60px;
}
#mobile-menu-wrapper ul.mobile-menu li {
  list-style: none;
}
#mobile-menu-wrapper ul.mobile-menu > li {
  border-bottom: 1px solid #ab482a;
  position: relative;
}
#mobile-menu-wrapper ul.mobile-menu > li > a {
  display: block;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding: 0px 26px;
}
#mobile-menu-wrapper ul.mobile-menu > li.menu-item-has-children > a::after {
  font-family: "icomoon" !important;
  text-align: center;
  content: "\e900";
  display: block;
  position: absolute;
  z-index: 1;
  right: 26px;
  top: 0px;
  width: 27px;
  height: 70px;
  font-size: 12px;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#mobile-menu-wrapper ul.mobile-menu > li.menu-item-has-children.active > a {
  background-color: #fff;
  color: #cf5c39;
  border-bottom: 1px solid #cf5c39;
}
#mobile-menu-wrapper ul.mobile-menu > li.menu-item-has-children.active > a::after {
  transform: rotate(-180deg);
  color: #cf5c39;
}
#mobile-menu-wrapper ul.mobile-menu > li ul.submenu {
  margin: 0px;
  padding: 0px;
  display: block;
  display: none;
}
#mobile-menu-wrapper ul.mobile-menu > li ul.submenu li {
  list-style: none;
}
#mobile-menu-wrapper ul.mobile-menu > li > ul.submenu > li {
  border-bottom: 1px solid #cf5c39;
  position: relative;
}
#mobile-menu-wrapper ul.mobile-menu > li > ul.submenu > li > a {
  background-color: #fff;
  display: block;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  position: relative;
  padding: 0px 26px;
}
#mobile-menu-wrapper ul.mobile-menu > li > ul.submenu > li:last-child {
  border-bottom: none;
}
#mobile-menu-wrapper ul.mobile-menu > li:last-child {
  border-bottom: none;
}
#mobile-menu-wrapper ul.socialmedia-links {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#mobile-menu-wrapper ul.socialmedia-links li {
  margin: 0px 16px;
}
#mobile-menu-wrapper.active {
  left: 0px;
}

#body-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

body.noscroll {
  overflow: hidden;
}

#header {
  position: fixed;
  z-index: 10;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  background-color: #fff;
  -webkit-box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.3);
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#header button.btn-menu {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  z-index: 3;
}
#header button.btn-menu:focus {
  outline: 0;
}
#header button.btn-menu span {
  color: inherit;
}
#header .hamburger-inner, #header .hamburger-inner::before, #header .hamburger-inner::after {
  background-color: #cf5c39;
}
#header a.logo {
  display: block;
  text-decoration: none;
  float: left;
}
#header a.logo img {
  height: 74px;
  width: auto;
  margin-top: 14px;
}
#header .header-elements {
  float: right;
}
#header .header-elements ul.main-menu {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  float: left;
  margin-top: 40px;
}
#header .header-elements ul.main-menu li {
  list-style: none;
}
#header .header-elements ul.main-menu li {
  margin-left: 25px;
}
#header .header-elements ul.main-menu li a {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 18px;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}
#header .header-elements ul.main-menu li a.active {
  color: #cf5c39;
}
#header .header-elements ul.main-menu li:hover a, #header .header-elements ul.main-menu li.current-menu-item a {
  color: #cf5c39;
}
#header .header-elements ul.main-menu li:first-child {
  margin-left: 0px;
}
#header .header-elements a.contact-no {
  display: block;
  height: 40px;
  width: 165px;
  float: left;
  text-decoration: none;
  text-align: center;
  margin-left: 65px;
  margin-top: 30px;
  border: 2px solid #cf5c39;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  background-clip: padding-box;
  font-size: 17px;
  font-weight: 700;
  color: #cf5c39;
  line-height: 36px;
}
#header .header-elements a.contact-no span.icon-phone-header {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 3px;
  font-size: 16px;
  color: inherit;
}
#header .header-elements a.contact-no:hover {
  background-color: #cf5c39;
  color: #fff;
}
#header .header-elements a.get-started-btn {
  display: none;
  height: 40px;
  width: auto;
  float: right;
  text-decoration: none;
  text-align: center;
  margin-top: 30px;
  border: 2px solid #cf5c39;
  padding: 0px 15px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  background-clip: padding-box;
  font-size: 17px;
  font-weight: 700;
  color: #cf5c39;
  line-height: 36px;
}
#header .header-elements a.get-started-btn span {
  color: inherit;
  font-size: 15px;
}
#header .header-elements a.get-started-btn:hover {
  background-color: #cf5c39;
  color: #fff;
}
#header.scrolled {
  opacity: 0.6;
}
#header.scrolled:hover {
  opacity: 1;
}
#header.mobile-menu-opened .hamburger-inner::before {
  top: -5px;
}
#header.mobile-menu-opened .hamburger-inner::after {
  bottom: -5px;
}
@media only screen and (max-width: 1024px) {
  #header .header-elements ul.main-menu {
    margin-top: 40px;
  }
  #header .header-elements ul.main-menu li {
    margin-left: 20px;
  }
  #header .header-elements ul.main-menu li a {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 16px;
  }
  #header .header-elements a.contact-no {
    margin-left: 35px;
  }
}
@media only screen and (max-width: 768px) {
  #header.scrolled {
    opacity: 1;
  }
}
@media only screen and (max-width: 575px) {
  #header button.btn-menu {
    font-size: 18px;
  }
  #header a.logo {
    margin-left: 15px;
  }
  #header a.logo img {
    height: 50px;
    margin-top: 25px;
  }
  #header .header-elements a.contact-no {
    margin-left: 0px;
    font-size: 14px;
    padding: 0px 10px;
    width: auto;
    display: none;
  }
  #header .header-elements a.contact-no span.icon-phone-header {
    margin-top: -2px;
    margin-right: 1px;
    font-size: 14px;
  }
  #header .header-elements a.get-started-btn {
    display: inline-block;
  }
}

body {
  padding-top: 100px;
}
body.admin-bar #header {
  margin-top: 32px;
}
body.admin-bar #mobile-menu-wrapper {
  padding-top: 32px;
}
@media only screen and (max-width: 768px) {
  body.admin-bar #header {
    margin-top: 46px;
  }
  body.admin-bar #mobile-menu-wrapper {
    padding-top: 46px;
  }
}

#main-banner {
  overflow: hidden;
  position: relative;
}
#main-banner .the-carousel {
  position: relative;
}
#main-banner .the-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
#main-banner .the-carousel .slick-arrow.slick-prev {
  left: 0px;
}
#main-banner .the-carousel .slick-arrow.slick-next {
  left: auto;
  right: 0px;
}
#main-banner .the-carousel ul.slick-dots {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#main-banner .the-carousel ul.slick-dots li {
  list-style: none;
}
#main-banner .the-carousel ul.slick-dots li button {
  cursor: pointer;
}
#main-banner .the-carousel ul.slick-dots li.slick-active button {
  color: red;
}
#main-banner .the-carousel .the-slide {
  /* height:calc(100vh - 100px);
  position: relative; overflow: hidden; */
  position: relative;
  overflow: hidden;
  height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#main-banner .the-carousel .the-slide img {
  position: relative;
  z-index: 0;
  width: 100%;
}
#main-banner .the-carousel .the-slide .caption {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}
#main-banner .the-carousel .the-slide .caption .caption-text {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 70px;
}
#main-banner .the-carousel .the-slide .caption .caption-text h3, #main-banner .the-carousel .the-slide .caption .caption-text h4 {
  font-size: 60px;
  line-height: 66px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 0px;
}
#main-banner .the-carousel .the-slide .caption .caption-text h3+p{
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	width: 100%;
	max-width: 690px;
	margin-left: auto;
	margin-right: auto;
}
#main-banner .the-carousel .the-slide .caption .caption-text h4 {
  font-weight: 400;
}
#main-banner .the-carousel .the-slide .caption .caption-text a.get-started-btn {
  display: inline-block;
  text-decoration: none;
  width: 370px;
  height: 70px;
  line-height: 70px;
  background-color: #cf5c39;
  color: #fff;
  font-size: 41px;
  font-family: "IsidoraSans-Black", serif;
  margin-top: 30px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  border-radius: 35px;
  background-clip: padding-box;
}
#main-banner .the-carousel .the-slide .caption .caption-text a.get-started-btn span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 30px;
  margin-top: -10px;
  margin-left: 4px;
}
#main-banner .the-carousel .the-slide .caption .caption-text a.get-started-btn:hover {
  background-color: #ab482a;
}
#main-banner .the-carousel .slick-arrow {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  width: 60px;
  height: 60px;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#main-banner .the-carousel .slick-arrow:focus {
  outline: 0;
}
#main-banner .the-carousel .slick-arrow span {
  color: inherit;
}
#main-banner .the-carousel .slick-arrow.slick-next {
  right: 100px;
}
#main-banner .the-carousel .slick-arrow.slick-prev {
  left: 100px;
}
#main-banner .the-carousel .slick-arrow:hover {
  color: #cccccc;
}
#main-banner .the-carousel ul.slick-dots {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 80px;
  z-index: 2;
}
#main-banner .the-carousel ul.slick-dots li {
  list-style: none;
}
#main-banner .the-carousel ul.slick-dots li {
  margin: 0px 2px;
}
#main-banner .the-carousel ul.slick-dots li button {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  text-indent: -9999px;
  background-color: #fff;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  opacity: 0.5;
}
#main-banner .the-carousel ul.slick-dots li button:focus {
  outline: 0;
}
#main-banner .the-carousel ul.slick-dots li.slick-active button {
  opacity: 1;
}
#main-banner .scroll-down {
  position: absolute;
  z-index: 2;
  left: 0px;
  bottom: -80px;
  width: 100%;
}
#main-banner .scroll-down a {
  display: inline-block;
  text-decoration: none;
  width: 140px;
  height: 140px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  color: #cf5c39;
}
#main-banner .scroll-down a span {
  display: inline-block;
  font-size: 24px;
  margin-top: 30px;
  animation: bounce 2s infinite;
  color: inherit;
}
@media only screen and (max-width: 1440px) {
  #main-banner .the-carousel .the-slide {
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  #main-banner .the-carousel .the-slide .caption .caption-text h3, #main-banner .the-carousel .the-slide .caption .caption-text h4 {
    font-size: 48px;
    letter-spacing: 1px;
    line-height: 48px;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text h4 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  #main-banner .the-carousel .the-slide {
    height: calc(100vh - 100px);
  }
  #main-banner .the-carousel .the-slide img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: none;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text {
    padding: 0px 15px;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text h3, #main-banner .the-carousel .the-slide .caption .caption-text h4 {
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 45px;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text h4 {
    font-size: 45px;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text a.get-started-btn {
    width: 300px;
    height: 60px;
    line-height: 60px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    background-clip: padding-box;
    font-size: 30px;
    margin-top: 30px;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text a.get-started-btn span {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 30px;
    margin-top: -10px;
    margin-left: 4px;
  }
  #main-banner .the-carousel .slick-arrow {
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 40px;
  }
  #main-banner .the-carousel .slick-arrow.slick-next {
    right: 30px;
  }
  #main-banner .the-carousel .slick-arrow.slick-prev {
    left: 30px;
  }
}
@media only screen and (max-width: 575px) {
  #main-banner .the-carousel .the-slide .caption .caption-text h3, #main-banner .the-carousel .the-slide .caption .caption-text h4 {
    font-size: 35px;
    line-height: 40px;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text h4 {
    font-size: 35px;
    line-height: 40px;
    padding: 0px 30px;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text a.get-started-btn {
    width: 250px;
    height: 60px;
    line-height: 56px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    background-clip: padding-box;
    font-size: 26px;
    margin-top: 30px;
  }
  #main-banner .the-carousel .the-slide .caption .caption-text a.get-started-btn span {
    font-size: 20px;
    margin-top: -7px;
    margin-left: 4px;
  }
  #main-banner .the-carousel .slick-arrow {
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    opacity: 0.7;
  }
  #main-banner .the-carousel .slick-arrow.slick-next {
    right: 5px;
  }
  #main-banner .the-carousel .slick-arrow.slick-prev {
    left: 5px;
  }
  #main-banner .scroll-down {
    bottom: -70px;
  }
  #main-banner .scroll-down a {
    width: 120px;
    height: 120px;
  }
  #main-banner .scroll-down a span {
    font-size: 16px;
    margin-top: 30px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}
#intro p {
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 35px;
}
#intro p:first-child {
  font-size: 20px;
}
#intro p:last-child {
  margin-bottom: 0px;
}
#intro .book-table-box {
  position: relative;
  overflow: hidden;
}
#intro .book-table-box img.bg {
  position: relative;
  z-index: 0;
  width: 100%;
}
#intro .book-table-box .overlay {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
}
#intro .book-table-box .overlay .the-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
}
#intro .book-table-box .overlay .the-content span.icon-book-table {
  display: block;
  font-size: 54px;
  color: #fff;
  /* margin-top:40px; */
  margin-bottom: 10px;
}
#intro .book-table-box .overlay .the-content span.the-text {
  display: block;
  font-size: 35px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#intro .book-table-box .overlay .the-content a.the-button {
  width: 260px;
  border: 2px solid #fff;
  line-height: 56px;
}
#intro .book-table-box .overlay .the-content a.the-button:hover {
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #intro {
    text-align: center;
  }
  #intro .book-table-box {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 575px) {
  #intro p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 28px;
  }
  #intro p:first-child {
    font-size: 20px;
  }
}

#about-us {
  position: relative;
  overflow: hidden;
  background-color: #E3E545;
}
#about-us .bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#about-us .text-overlay {
  position: relative;
  z-index: 1;
  padding: 100px 0px;
}
#about-us .text-overlay h3.section-title {
  text-align: left;
  color: #28253C;
}
#about-us .text-overlay p {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 25px;
  color: #28253C;
}
#about-us .text-overlay p:last-child {
  margin-bottom: 0px;
}
#about-us .text-overlay a.the-button {
  display: block;
  margin-top: 30px;
  max-width: 360px;
}
@media only screen and (max-width: 768px) {
  #about-us .bg {
    display: none;
  }
  #about-us .text-overlay h3.section-title {
    text-align: center;
  }
  #about-us .text-overlay img.about-thumb {
    width: 100%;
    margin-bottom: 30px;
  }
  #about-us .text-overlay a.the-button {
    margin: 30px auto 0px auto;
  }
}
@media only screen and (max-width: 575px) {
  #about-us .text-overlay {
    padding: 50px 0px;
  }
}

#services {
  background-color: #E8C4DD;
}
#services .the-service {
  background-color: #fff;
  position: relative;
  box-shadow: 0 1px 30px 0 rgba(0, 0, 0, 0.05);
}
#services .the-service a.service-thumb {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
#services .the-service a.service-thumb img {
  position: relative;
  z-index: 0;
  width: 100%;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#services .the-service a.service-thumb span.caption {
  display: block;
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#services .the-service a.service-thumb span.caption span.caption-text {
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding: 24px;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
}
#services .the-service a.service-thumb:hover img {
  transform: scale(1.1);
}
#services .the-service a.service-thumb:hover span.caption {
  background-color: transparent;
}
#services .the-service .service-desc {
  padding: 24px;
}
#services .the-service .service-desc p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 21px;
}
#services .the-service .service-desc a.showme {
  font-size: 14px;
  line-height: 21px;
  color: #cf5c39;
  text-decoration: underline;
}
#services .the-service .service-desc a.showme:hover {
  text-decoration: none;
}
#services .the-carousel {
  position: relative;
}
#services .the-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
#services .the-carousel .slick-arrow.slick-prev {
  left: 0px;
}
#services .the-carousel .slick-arrow.slick-next {
  left: auto;
  right: 0px;
}
#services .the-carousel ul.slick-dots {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#services .the-carousel ul.slick-dots li {
  list-style: none;
}
#services .the-carousel ul.slick-dots li button {
  cursor: pointer;
}
#services .the-carousel ul.slick-dots li.slick-active button {
  color: red;
}
#services .the-carousel {
  margin-right: -45px;
}
#services .the-carousel .the-slide {
  width: 500px;
  margin-right: 30px;
  padding-bottom: 5px;
  opacity: 0.5;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#services .the-carousel .the-slide.slick-current {
  opacity: 1;
}
#services .the-carousel .slick-arrow {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 2;
}
#services .the-carousel .slick-arrow:focus {
  outline: 0;
}
#services .the-carousel .slick-arrow span {
  color: inherit;
}
#services .the-carousel .slick-arrow.slick-next {
  right: 30px;
}
#services .the-carousel .slick-arrow.slick-prev {
  left: -25px;
  display: none !important;
}
#services.double .the-service {
  margin-bottom: 30px;
}
#services.double .col-lg-5:last-child {
  margin-bottom: 0px;
}
#services.triple .the-service {
  margin-bottom: 30px;
}
#services.triple .col-lg-4:last-child {
  margin-bottom: 0px;
}
#services.single .the-service a.service-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 30px;
  text-transform: uppercase;
  color: #000000;
  display: block;
  text-decoration: none;
  margin-bottom: 40px;
}
#services.single .the-service a.service-title:hover {
  opacity: 0.7;
}
#services.single .the-service .service-desc {
  padding: 30px;
}
@media only screen and (max-width: 1024px) {
  #services .the-service a.service-thumb span.caption span.caption-text {
    padding: 20px;
    font-size: 24px;
    line-height: 28px;
  }
  #services .the-service .service-desc {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  #services .the-carousel .the-slide {
    width: 260px;
    margin-right: 20px;
  }
  #services .the-carousel .slick-arrow {
    color: #cf5c39;
  }
}

#gallery {
  background-color: #000;
  overflow: hidden;
}
#gallery * {
  color: #fff;
}
#gallery h3.section-title + p {
  font-size: 20px;
  line-height: 29px;
  color: #000000;
  margin-top: -20px;
  margin-bottom: 65px;
}
#gallery a.the-thumb {
  position: relative;
  display: block;
  text-decoration: none;
  margin-bottom: 30px;
}
#gallery a.the-thumb span.caption {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
#gallery a.the-thumb span.caption span.caption-text {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.78px;
  line-height: 34px;
  text-transform: uppercase;
}
#gallery a.the-thumb img {
  position: relative;
  z-index: 0;
  width: 100%;
}
#gallery a.the-thumb:hover span.caption {
  opacity: 1;
  visibility: visible;
}
#gallery a.read-more {
  margin-top: 40px;
}
#gallery .the-carousel {
  position: relative;
}
#gallery .the-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
#gallery .the-carousel .slick-arrow.slick-prev {
  left: 0px;
}
#gallery .the-carousel .slick-arrow.slick-next {
  left: auto;
  right: 0px;
}
#gallery .the-carousel ul.slick-dots {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#gallery .the-carousel ul.slick-dots li {
  list-style: none;
}
#gallery .the-carousel ul.slick-dots li button {
  cursor: pointer;
}
#gallery .the-carousel ul.slick-dots li.slick-active button {
  color: red;
}
#gallery .the-carousel {
  margin-right: -45px;
}
#gallery .the-carousel .the-slide {
  width: 500px;
  margin-right: 30px;
  opacity: 0.5;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#gallery .the-carousel .the-slide.slick-current {
  opacity: 1;
}
#gallery .the-carousel .slick-arrow {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 2;
}
#gallery .the-carousel .slick-arrow:focus {
  outline: 0;
}
#gallery .the-carousel .slick-arrow span {
  color: inherit;
}
#gallery .the-carousel .slick-arrow.slick-next {
  right: 30px;
}
#gallery .the-carousel .slick-arrow.slick-prev {
  left: -25px;
  display: none !important;
}
@media only screen and (max-width: 768px) {
  #gallery h3.section-title + p {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 575px) {
  #gallery h3.section-title {
    margin-bottom: 40px;
  }
  #gallery h3.section-title + p {
    font-size: 18px;
    line-height: 28px;
  }
  #gallery h3.section-title + p br {
    display: none;
  }
  #gallery .the-carousel .the-slide {
    width: 260px;
    margin-right: 20px;
  }
  #gallery a.read-more {
    margin-top: 10px;
  }
}

.lb-data .lb-details {
  text-align: center;
  width: 100%;
}
.lb-data .lb-details * {
  color: #fff;
}
.lb-data .lb-details span.lb-caption {
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}

.lb-closeContainer {
  position: fixed;
  z-index: 5;
  top: 40px;
  right: 30px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .lb-closeContainer {
    top: 10px;
    right: 15px;
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .lightboxOverlay, .lightbox {
    display: none !important;
  }
}
#awards-ratings .the-carousel {
  position: relative;
}
#awards-ratings .the-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
#awards-ratings .the-carousel .slick-arrow.slick-prev {
  left: 0px;
}
#awards-ratings .the-carousel .slick-arrow.slick-next {
  left: auto;
  right: 0px;
}
#awards-ratings .the-carousel ul.slick-dots {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#awards-ratings .the-carousel ul.slick-dots li {
  list-style: none;
}
#awards-ratings .the-carousel ul.slick-dots li button {
  cursor: pointer;
}
#awards-ratings .the-carousel ul.slick-dots li.slick-active button {
  color: red;
}
#awards-ratings .the-carousel .slick-track {
  display: flex;
}
#awards-ratings .the-carousel .the-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
}
#awards-ratings .the-carousel .the-slide a {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
#awards-ratings .the-carousel .the-slide img {
  max-width: 160px;
}
#awards-ratings .the-carousel .slick-arrow {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  width: 60px;
  height: 60px;
  font-size: 60px;
  line-height: 60px;
  color: #cf5c39;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#awards-ratings .the-carousel .slick-arrow:focus {
  outline: 0;
}
#awards-ratings .the-carousel .slick-arrow span {
  color: inherit;
}
#awards-ratings .the-carousel .slick-arrow.slick-next {
  right: -50px;
}
#awards-ratings .the-carousel .slick-arrow.slick-prev {
  left: -50px;
}
#awards-ratings .the-carousel .slick-arrow:hover {
  color: #000;
}
@media only screen and (max-width: 768px) {
  #awards-ratings .the-carousel {
    padding: 0px 30px;
  }
  #awards-ratings .the-carousel .slick-arrow {
    width: 50px;
    height: 50px;
    font-size: 50px;
    line-height: 50px;
  }
  #awards-ratings .the-carousel .slick-arrow.slick-next {
    right: -15px;
  }
  #awards-ratings .the-carousel .slick-arrow.slick-prev {
    left: -15px;
  }
}

#latest-news {
  background-color: #eaa243;
}
#latest-news a.view-all {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #000000;
  text-transform: uppercase;
  text-decoration: underline;
}
#latest-news a.view-all:hover {
  text-decoration: none;
}
#latest-news .the-post a.post-thumb {
  display: block;
  text-decoration: none;
}
#latest-news .the-post a.post-thumb img {
  width: 100%;
}
#latest-news .the-post a.post-title {
  display: block;
  text-decoration: none;
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 40px;
}
#latest-news .the-post a.post-title:hover {
  opacity: 0.7;
}
#latest-news .the-post .post-excerpt {
  margin-bottom: 60px;
}
#latest-news .the-post .post-excerpt p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0px;
}
#latest-news .the-post ul.post-meta {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#latest-news .the-post ul.post-meta li {
  list-style: none;
}
@media only screen and (max-width: 1024px) {
  #latest-news .the-post a.post-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  #latest-news .the-post .post-excerpt {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  #latest-news .the-post a.post-thumb {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  #latest-news a.view-all {
    display: none;
  }
}

#join-newsletter {
  background-color: #cf5c39;
}
#join-newsletter h3.section-title {
  color: #fff;
}
#join-newsletter .form-control {
  border: 2px solid #fff;
  height: 60px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  background-clip: padding-box;
  margin-bottom: 20px;
}
#join-newsletter .form-control:focus {
  border-color: #000;
}
#join-newsletter .custom-control {
  text-align: left;
}
#join-newsletter .the-button {
  font-weight: 700;
}
#join-newsletter .the-button span {
  margin-left: 3px;
  font-size: 20px;
  margin-top: -5px;
}
@media only screen and (max-width: 768px) {
  #join-newsletter .the-form {
    width: 350px;
    margin: 0px auto;
  }
  #join-newsletter .the-form .the-button {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  #join-newsletter .the-form {
    width: 100%;
  }
}

#contact-us {
  padding-bottom: 60px;
  background-color: #cf5c39;
}
#contact-us * {
  color: #fff;
}
#contact-us #map {
  height: 490px;
  background-color: #ccc;
  margin-bottom: 70px;
}
#contact-us #map img {
  max-width: inherit !important;
}
#contact-us .intro-text p {
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 60px;
  text-align: center;
}
#contact-us .contact-form .form-control {
  color: #000000;
}
#contact-us .contact-form textarea.form-control {
  height: 260px;
  padding-top: 10px;
  padding-bottom: 10px;
}
#contact-us .contact-form label {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 17px;
  text-transform: uppercase;
}
#contact-us .contact-form .custom-checkbox {
  margin-bottom: 50px;
}
#contact-us .contact-form .custom-checkbox * {
  font-size: 12px;
  line-height: 17px;
  text-transform: none;
}
#contact-us .contact-form .custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
#contact-us .contact-form .custom-checkbox input[type=checkbox] + span {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 0 0px 0px 10px;
}
#contact-us .contact-form .custom-checkbox input[type=checkbox] + span:before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: transparent;
  position: absolute;
  left: -20px;
  top: 0px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  border: 1px solid #fff;
}
#contact-us .contact-form .custom-checkbox input[type=checkbox]:hover + span:before {
  background: #fff;
}
#contact-us .contact-form .custom-checkbox input[type=checkbox]:focus + span:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
#contact-us .contact-form .custom-checkbox input[type=checkbox]:checked + span:before {
  background: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/></svg>") center center no-repeat #fff;
  background-size: 10px auto;
}
#contact-us .contact-form .custom-control-label {
  margin-top: 0px;
}
#contact-us .contact-form .custom-control-label * {
  font-size: 12px;
  line-height: 17px;
  text-transform: none;
}
#contact-us .contact-form .custom-checkbox .custom-control-label::before {
  border: 1px solid #fff;
}
#contact-us .contact-form .custom-checkbox .custom-control-label::after {
  border: 1px solid #fff;
}
#contact-us .contact-form .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/></svg>");
  background-color: #fff;
}
#contact-us .contact-details {
  margin-bottom: 30px;
}
#contact-us .contact-details h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 22px;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
}
#contact-us .contact-details h4 span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  opacity: 0.8;
}
#contact-us .contact-details p {
  font-size: 14px;
  line-height: 21px;
}
#contact-us .contact-details p:last-child {
  margin-bottom: 0px;
}
#contact-us .contact-details a {
  text-decoration: none;
}
#contact-us .contact-details a:hover {
  opacity: 0.7;
}
#contact-us .contact-details ul {
  margin: 0px;
  padding: 0px;
  display: block;
  font-size: 14px;
  line-height: 21px;
}
#contact-us .contact-details ul li {
  list-style: none;
}
#contact-us .contact-details ul li strong {
  display: inline-block;
  font-weight: 400;
  width: 90px;
}
#contact-us ul.socialmedia-links {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
}
@media only screen and (max-width: 768px) {
  #contact-us {
    padding-bottom: 0px;
  }
  #contact-us .contact-form {
    margin-bottom: 60px;
  }
  #contact-us .contact-form .custom-control-label br {
    display: none;
  }
  #contact-us ul.socialmedia-links {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  #contact-us ul.socialmedia-links li {
    margin: 0px 15px;
  }
}
@media only screen and (max-width: 575px) {
  #contact-us #map {
    height: 290px;
    margin-bottom: 30px;
  }
  #contact-us .intro-text p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 30px;
  }
  #contact-us .contact-form textarea.form-control {
    height: 160px;
    margin-bottom: 30px;
  }
  #contact-us .contact-form .custom-checkbox {
    margin-bottom: 30px;
  }
  #contact-us .contact-details {
    margin-bottom: 0px;
  }
  #contact-us .contact-details h4 {
    /* border:1px solid red; */
    height: 75px;
    line-height: 75px;
    margin-bottom: 0px;
    border-bottom: 1px solid #2E2E2E;
    font-size: 16px;
    position: relative;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  #contact-us .contact-details h4 span {
    color: #cf5c39;
  }
  #contact-us .contact-details h4 span.icon-arrow-down {
    position: absolute;
    right: 0px;
    top: 35px;
    left: auto;
    font-size: 14px;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  #contact-us .contact-details .the-content {
    /* border:1px solid yellow; */
    padding: 15px 0px 30px 0px;
    display: none;
  }
  #contact-us .contact-details.active h4 span.icon-arrow-down {
    transform: rotate(180deg);
  }
  #contact-us ul.socialmedia-links {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  #contact-us ul.socialmedia-links li {
    margin: 0px 14px;
  }
  #contact-us ul.socialmedia-links li a {
    color: #cf5c39;
  }
  #contact-us ul.socialmedia-links li a i {
    color: inherit;
  }
  #contact-us ul.socialmedia-links li:first-child {
    margin-left: 0px;
  }
  #contact-us ul.socialmedia-links li:last-child {
    margin-right: 0px;
  }
}

#footer {
  padding-bottom: 50px;
  background-color: #cf5c39;
  text-align: center;
}
#footer * {
  color: #fff;
}
#footer .company-info p {
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
#footer ul.socialmedia-links {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 30px;
}
#footer ul.socialmedia-links li {
  margin: 0px 20px;
}
#footer ul.socialmedia-links li a {
  font-size: 40px;
  color: #cf5c39;
}
#footer ul.socialmedia-links li a i {
  color: #cf5c39;
}
#footer .copyright p {
  color: #9B9B9B;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
}
#footer.inner {
  padding-top: 110px;
}
@media only screen and (max-width: 768px) {
  #footer.inner {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  #footer.inner .company-info {
    margin-bottom: 30px;
  }
  #footer.inner .company-info p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 575px) {
  #footer.inner {
    padding-top: 50px;
  }
  #footer.inner .company-info {
    text-align: center;
  }
  #footer.inner ul.socialmedia-links {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  #footer.inner ul.socialmedia-links li {
    margin: 0px 15px;
  }
  #footer.inner ul.socialmedia-links li a {
    font-size: 20px;
  }
  #footer.inner ul.socialmedia-links li:first-child {
    margin-left: 0px;
  }
  #footer.inner ul.socialmedia-links li:last-child {
    margin-right: 0px;
  }
}

#inner-header {
  height: 140px;
  background-color: #cf5c39;
  position: relative;
}
#inner-header h1.page-title {
  padding: 0px 15px;
  font-size: 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 100%;
}
@media only screen and (max-width: 575px) {
  #inner-header h1.page-title {
    font-size: 30px;
  }
}

#inner-body {
  padding: 40px 0px 90px 0px;
}
#inner-body h1.page-title {
  font-size: 45px;
  letter-spacing: 1px;
  line-height: 66px;
  text-transform: uppercase;
  margin-bottom: 80px;
}
#inner-body .loadmore {
  margin-top: 70px;
}
@media only screen and (max-width: 1024px) {
  #inner-body h1.page-title {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  #inner-body {
    padding: 40px 0px 60px 0px;
  }
  #inner-body h1.page-title {
    font-size: 35px;
    letter-spacing: 1px;
    line-height: 40px;
    margin-bottom: 40px;
  }
  #inner-body .loadmore {
    margin-top: 0px;
  }
}

#inner-body .posts .the-post {
  margin-bottom: 10px;
}
#inner-body .posts .the-post a.post-thumb {
  display: block;
  text-decoration: none;
}
#inner-body .posts .the-post a.post-thumb img {
  width: 100%;
}
#inner-body .posts .the-post a.post-title {
  text-decoration: none;
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 41px;
  color: #000000;
  margin-bottom: 40px;
  margin-top: 36px;
  margin-left: 30px;
}
#inner-body .posts .the-post a.post-title:hover {
  opacity: 0.7;
}
#inner-body .posts .the-post .post-excerpt {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 80px;
  margin-left: 30px;
}
#inner-body .posts .the-post ul.post-meta {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 30px;
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-left: 30px;
}
#inner-body .posts .the-post ul.post-meta li {
  list-style: none;
}
@media only screen and (max-width: 1024px) {
  #inner-body .posts .the-post a.post-title {
    margin-bottom: 30px;
    margin-top: 15px;
    margin-left: 0px;
  }
  #inner-body .posts .the-post .post-excerpt {
    margin-left: 0px;
  }
  #inner-body .posts .the-post ul.post-meta {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 768px) {
  #inner-body .posts .the-post {
    margin-bottom: 30px;
  }
  #inner-body .posts .the-post a.post-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 575px) {
  #inner-body .posts .the-post {
    margin-bottom: 30px;
  }
  #inner-body .posts .the-post a.post-thumb {
    margin-bottom: 20px;
  }
  #inner-body .posts .the-post .post-excerpt {
    margin-bottom: 40px;
  }
  #inner-body .posts .the-post ul.post-meta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
  }
}

#inner-body.single-post h2.page-subtitle {
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#inner-body.single-post h1.page-title {
  font-size: 45px;
  line-height: 55px;
  text-transform: none;
  font-weight: 900;
}
#inner-body.single-post ul.post-meta {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 20px;
}
#inner-body.single-post ul.post-meta li {
  list-style: none;
}
#inner-body.single-post img.featured-image {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}
#inner-body.single-post .post-content .alignnone {
  margin: 0px 0px 1.4em 0px;
}
#inner-body.single-post .post-content .aligncenter,
#inner-body.single-post .post-content div.aligncenter {
  display: block;
  margin: 0px auto 1.4em auto;
}
#inner-body.single-post .post-content .alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em;
}
#inner-body.single-post .post-content .alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px;
}
#inner-body.single-post .post-content a img.alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em;
}
#inner-body.single-post .post-content a img.alignnone {
  margin: 0px 0px 1.4em 0px;
}
#inner-body.single-post .post-content a img.alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px;
}
#inner-body.single-post .post-content a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#inner-body.single-post .post-content img {
  height: auto;
}
#inner-body.single-post .post-content ul, #inner-body.single-post .post-content ol {
  margin: 0px 0px 1.4em 0px;
  padding: 0px 0px 0px 20px;
  overflow: hidden;
}
#inner-body.single-post .post-content a {
  color: #000000;
  text-decoration: underline;
}
#inner-body.single-post .post-content a:hover {
  text-decoration: none;
}
#inner-body.single-post .post-content p {
  margin: 0px 0px 1.4em 0px;
}
#inner-body.single-post .post-content blockquote {
  /* margin:0px 0px $content-margin 0px;
  p:last-child{
  	margin-bottom:0px;
  } */
}
#inner-body.single-post .share-post {
  margin-top: 70px;
}
#inner-body.single-post .share-post h4 {
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  text-transform: uppercase;
  color: #4A4A4A;
}
#inner-body.single-post .share-post ul {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#inner-body.single-post .share-post ul li {
  list-style: none;
}
#inner-body.single-post .share-post ul li {
  margin: 0px 14px;
}
#inner-body.single-post .share-post ul li a {
  font-size: 24px;
  color: #cf5c39;
  text-decoration: none;
}
#inner-body.single-post .share-post ul li a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 1024px) {
  #inner-body.single-post h1.page-title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 768px) {
  #inner-body.single-post img.featured-image {
    margin-bottom: 40px;
  }
  #inner-body.single-post .share-post {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  #inner-body.single-post h2.page-subtitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  #inner-body.single-post h1.page-title {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 30px;
  }
  #inner-body.single-post ul.post-meta {
    font-size: 14px;
    margin-bottom: 15px;
  }
  #inner-body.single-post img.featured-image {
    margin-bottom: 30px;
  }
}

#inner-body.inner-page h1.page-title {
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#inner-body.inner-page h2.page-subtitle {
  font-size: 45px;
  line-height: 55px;
  text-transform: none;
  font-weight: 900;
  margin-bottom: 30px;
}
#inner-body.inner-page.service-page h2.page-subtitle {
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#inner-body.inner-page.service-page h1.page-title {
  font-size: 45px;
  line-height: 55px;
  text-transform: none;
  font-weight: 900;
}
#inner-body.inner-page img.featured-image {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}
#inner-body.inner-page .post-content .alignnone {
  margin: 0px 0px 1.4em 0px;
}
#inner-body.inner-page .post-content .aligncenter,
#inner-body.inner-page .post-content div.aligncenter {
  display: block;
  margin: 0px auto 1.4em auto;
}
#inner-body.inner-page .post-content .alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em;
}
#inner-body.inner-page .post-content .alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px;
}
#inner-body.inner-page .post-content a img.alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em;
}
#inner-body.inner-page .post-content a img.alignnone {
  margin: 0px 0px 1.4em 0px;
}
#inner-body.inner-page .post-content a img.alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px;
}
#inner-body.inner-page .post-content a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#inner-body.inner-page .post-content img {
  height: auto;
}
#inner-body.inner-page .post-content ul, #inner-body.inner-page .post-content ol {
  margin: 0px 0px 1.4em 0px;
  padding: 0px 0px 0px 20px;
  overflow: hidden;
}
#inner-body.inner-page .post-content a {
  color: #000000;
  text-decoration: underline;
}
#inner-body.inner-page .post-content a:hover {
  text-decoration: none;
}
#inner-body.inner-page .post-content p {
  margin: 0px 0px 1.4em 0px;
}
#inner-body.inner-page .post-content blockquote {
  /* margin:0px 0px $content-margin 0px;
  p:last-child{
  	margin-bottom:0px;
  } */
}
#inner-body.inner-page .make-enquiry {
  margin-top: 70px;
}
#inner-body.inner-page .make-enquiry h4 {
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  text-transform: uppercase;
  color: #4A4A4A;
}
#inner-body.inner-page .make-enquiry ul {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#inner-body.inner-page .make-enquiry ul li {
  list-style: none;
}
#inner-body.inner-page .make-enquiry ul li {
  margin: 0px 14px;
}
#inner-body.inner-page .make-enquiry ul li a {
  font-size: 24px;
  color: #cf5c39;
  text-decoration: none;
}
#inner-body.inner-page .make-enquiry ul li a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 1024px) {
  #inner-body.inner-page h1.page-title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 768px) {
  #inner-body.inner-page img.featured-image {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 575px) {
  #inner-body.inner-page h1.page-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  #inner-body.inner-page h2.page-subtitle {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 30px;
  }
  #inner-body.inner-page.service-page h2.page-subtitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  #inner-body.inner-page.service-page h1.page-title {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 30px;
  }
  #inner-body.inner-page img.featured-image {
    margin-bottom: 30px;
  }
}

#testimonials {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#testimonials .overlay {
  padding: 100px 0px 120px 0px;
  background-color: rgba(0, 0, 0, 0.7);
}
#testimonials .overlay * {
  color: #fff;
}
#testimonials .overlay h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.78px;
  line-height: 38px;
  text-transform: uppercase;
  color: #cf5c39;
  margin-bottom: 30px;
}
#testimonials .overlay .the-carousel {
  position: relative;
}
#testimonials .overlay .the-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
#testimonials .overlay .the-carousel .slick-arrow.slick-prev {
  left: 0px;
}
#testimonials .overlay .the-carousel .slick-arrow.slick-next {
  left: auto;
  right: 0px;
}
#testimonials .overlay .the-carousel ul.slick-dots {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#testimonials .overlay .the-carousel ul.slick-dots li {
  list-style: none;
}
#testimonials .overlay .the-carousel ul.slick-dots li button {
  cursor: pointer;
}
#testimonials .overlay .the-carousel ul.slick-dots li.slick-active button {
  color: red;
}
#testimonials .overlay .the-carousel {
  position: relative;
}
#testimonials .overlay .the-carousel .the-slide .testimonial-text,
#testimonials .overlay .the-carousel .the-slide .testimonial-by {
  font-size: 14px;
  line-height: 21px;
}
#testimonials .overlay .the-carousel .slick-arrow {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  width: 60px;
  height: 60px;
  font-size: 60px;
  line-height: 60px;
  color: #cf5c39;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#testimonials .overlay .the-carousel .slick-arrow:focus {
  outline: 0;
}
#testimonials .overlay .the-carousel .slick-arrow span {
  color: inherit;
}
#testimonials .overlay .the-carousel .slick-arrow.slick-next {
  right: 0px;
}
#testimonials .overlay .the-carousel .slick-arrow.slick-prev {
  left: 0px;
}
#testimonials .overlay .the-carousel .slick-arrow:hover {
  color: #fff;
}
#testimonials .overlay .the-carousel ul.slick-dots {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: -50px;
  z-index: 2;
}
#testimonials .overlay .the-carousel ul.slick-dots li {
  list-style: none;
}
#testimonials .overlay .the-carousel ul.slick-dots li {
  margin: 0px 2px;
}
#testimonials .overlay .the-carousel ul.slick-dots li button {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  text-indent: -9999px;
  background-color: #fff;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  opacity: 0.5;
}
#testimonials .overlay .the-carousel ul.slick-dots li button:focus {
  outline: 0;
}
#testimonials .overlay .the-carousel ul.slick-dots li.slick-active button {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  #testimonials .overlay .the-carousel {
    padding: 0px 40px;
  }
  #testimonials .overlay .the-carousel .slick-arrow {
    width: 50px;
    height: 50px;
    font-size: 50px;
    line-height: 50px;
  }
  #testimonials .overlay .the-carousel .slick-arrow.slick-next {
    right: -15px;
  }
  #testimonials .overlay .the-carousel .slick-arrow.slick-prev {
    left: -15px;
  }
}

#initial-setup-fee {
  padding: 20px 0px;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 5;
  bottom: 0px;
  left: 0px;
  width: 100%;
  /* height:134px; */
}
#initial-setup-fee * {
  color: #fff;
}
#initial-setup-fee h4 {
  text-transform: none;
  font-size: 28px;
  font-family: "IsidoraSans-Black", serif;
}
#initial-setup-fee p {
  color: #9B9B9B;
  font-size: 13px;
  letter-spacing: 0.29px;
  line-height: 17px;
  font-family: "IsidoraSans-Medium", sans-serif;
  margin-bottom: 0px;
}
#initial-setup-fee .number {
  font-size: 60px;
  font-family: "Inter", sans-serif;
  letter-spacing: 1.33px;
  line-height: 72px;
  color: #cf5c39;
  text-align: center;
  font-family: "IsidoraSans-Black", serif;
}
#initial-setup-fee .below-number {
  text-align: center;
  color: #9B9B9B;
  font-size: 18px;
  letter-spacing: 0.4px;
  line-height: 22px;
  font-family: "IsidoraSans-Medium", sans-serif;
}
#initial-setup-fee a.get-started-btn {
  display: block;
  text-decoration: none;
  height: 60px;
  line-height: 60px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  background-clip: padding-box;
  text-align: center;
  background-color: #cf5c39;
  font-size: 21px;
  font-family: "IsidoraSans-Black", serif;
  color: #fff;
}
#initial-setup-fee a.get-started-btn:hover {
  background-color: #ab482a;
}
@media only screen and (max-width: 1024px) {
  #initial-setup-fee {
    /* margin-top:-144px;
    height:144px; */
  }
  #initial-setup-fee h4 {
    font-size: 24px;
  }
  #initial-setup-fee p {
    font-size: 13px;
    letter-spacing: 0.29px;
    line-height: 17px;
  }
  #initial-setup-fee .number {
    font-size: 40px;
    letter-spacing: 0px;
    line-height: 52px;
  }
  #initial-setup-fee .below-number {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 768px) {
  #initial-setup-fee {
    display: none;
  }
  #initial-setup-fee h4 {
    font-size: 18px;
  }
  #initial-setup-fee p {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 16px;
  }
  #initial-setup-fee .number {
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 42px;
  }
  #initial-setup-fee .below-number {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 575px) {
  #initial-setup-fee {
    display: none;
    position: relative;
    text-align: center;
    margin-top: 0px;
    height: auto;
    background-color: #000;
    padding: 30px 0px;
  }
  #initial-setup-fee h4 {
    font-size: 18px;
  }
  #initial-setup-fee p {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 16px;
  }
  #initial-setup-fee .number {
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 42px;
  }
  #initial-setup-fee .below-number {
    font-size: 14px;
    line-height: 18px;
  }
  #initial-setup-fee a.get-started-btn {
    margin-top: 15px;
  }
}
.text-dark{
	color: #28253C;
}
a.the-button.lined.black {
    color: #28253C!important;
    border-color: #28253C;
}
#gallery{
	background-color: #28253C!important;
}
#gallery .the-button{
	background-color: #28253C!important;
	color: #fff!important;
}
#latest-news {
    background-color: #E3E545!important;
}
.page-id-698 .post-content {
    width: 100%!important;
    flex: 1;
    max-width: 100%;
    padding-top: 100px!important;
}
.page-id-698 main .container {
    width: 100%!important;
    max-width: 95%;
}
.sub-item p{
	margin-bottom: 5px;
}
.sub-item hr{
	border-top-color: #cf5c39!important;
}
.service-slider .slick-track{
	display: flex;
}
.service-slider .slick-track .slick-slide{
	height: auto!important;
}
.service-slider .slick-track .slick-slide .the-service{
	min-height: 100%;
}
/*# sourceMappingURL=app.css.map */