/*-------------------------------------------------------------------------------
General
-------------------------------------------------------------------------------*/
html {
  font-size: 12px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222222;
}

::selection {
  background-color: #2f4f43;
  color: #ffffff;
  text-shadow: none;
}

-webkit-::selection {
  background-color: #2f4f43;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background-color: #2f4f43;
  color: #ffffff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #2e2e2e;
}

a { color: #d7842c; }
a:hover { color: #ba7233; }
a:focus { color: #ba7233; }
a:active { color: #ba7233; }

.border-radius-3 {
	border-radius: 3px;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1600px) {
  .container-fluid {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

}

.full-height {
  min-height: 100vh;
}

h2,
.h2,
h3,
.h3 {
  font-weight: 600;
}

h4,
.h4 {
  margin-bottom: 1.75rem;
  font-weight: 600;
}

.text-bold,
.font-weight-bold {
  font-weight: 600 !important;
}

.text-normal {
  font-weight: normal;
}

.text-underline {
  text-decoration: underline;
}

html > body .lh-md {
  line-height: 1.625;
}

html > body .lh-lg {
  line-height: 1.875;
}

html > body .lh-lg2 {
  line-height: 1.8;
}

/* Forms */

.form-control {
  border-radius: 0;
  padding: .625rem 1.25rem .625rem;
  height: calc(1.5em + 1.25rem + 2px);
}

.form-control-lg {
  padding: .875rem 1.25rem .9375rem;
  height: calc(1.5em + 1.8125rem + 2px);
  font-size: 1rem;
}

.control-with-icon {
  position: relative;
}

.control-with-icon .form-control {
  padding-right: 3rem;
}

.control-icon {
  padding-top: 1px;
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 1.5rem;
  color: #999999;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.control-icon i,
.control-icon i:before {
  display: block;
  line-height: .75;
}

.control-btn {
  margin-top: 2.75rem;
}

.label-custom {
  margin-bottom: 0;
  display: block;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: bold;
}

.form-control-custom {
  border: none;
  border-bottom: #cccccc 1px solid;
  padding: 0 0 .625rem;
  height: calc(1.5em + .625rem + 1px);
  color: #222222;
  font-weight: normal;
}

.form-control-custom::-webkit-input-placeholder {
  color: #999999;
}

.form-control-custom::-moz-placeholder {
  color: #999999;
}

.form-control-custom:-ms-input-placeholder {
  color: #999999;
}

.form-control-custom::-ms-input-placeholder {
  color: #999999;
}

.form-control-custom::placeholder {
  color: #999999;
}

.form-control-custom:focus {
  border-color: #222222;
}

/* Preloader */

.preloader {
  position: fixed;
  overflow: hidden;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:#fff;
  color:#4b4b4b;
  text-align: center;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #d7842c;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/*-------------------------------------------------------------------------------
  Header
-------------------------------------------------------------------------------*/

.header {
  padding-top: 1.5rem;
  /*transition: color .2s ease-in-out;*/
  transition: margin-top .5s ease-in-out;
  margin-top: 0;
}

@media (min-width: 768px) {
  .header {
    padding-top: 1.8rem;
  }
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
}

.header-affix {
  position: fixed !important;
  top: -5rem !important;
  left: 0;
  width: 100%;
  z-index: 900;
  background: #ffffff;
  padding-top: .75rem !important;
  padding-bottom: .5rem !important;
  box-shadow: rgba(0,0,0,.1) 0 3px 15px;
  margin-top: 5rem;
}

.header-affix .nav-logo {
  transform: scale(.45);
}

@media (max-width: 767px) {
  .header-affix .nav-logo {
    margin-left: -50%;
  }
}

.menu .menu-lang,
.menu .menu-main,
.menu .social,
.menu .menu-copyright {
  opacity: 0;
  transform: translateY(3rem);
  transition: all .5s ease-in-out;
}

.menu .menu-lang {
  transition-delay: .2s;
}

.menu .menu-main {
  transition-delay: .4s;
}

.menu .social {
  transition-delay: .6s;
}

.menu .menu-copyright {
  transition-delay: .8s;
}

.body-menu-opened .menu .menu-lang,
.body-menu-opened .menu .menu-main,
.body-menu-opened .menu .social,
.body-menu-opened .menu .menu-copyright {
  opacity: 1;
  transform: translateY(0);
}

.brand {
  float: left;
  margin-right: 1.5rem;
  white-space: nowrap;
  margin-top: -8px;
}

.brand a {
  color: inherit;
  text-decoration: none;
}


.header-content {
  margin-left: 17.5%;
  margin-right: 17.5%;
}

.header-contacts {
  padding-top: .5rem;
  font-weight: bold;
}

.header-contact-item,
.header-contact-divider {
  display: inline-block;
  vertical-align: middle;
}

.header-contact-divider {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  opacity: .2;
}

.phone-link,
.phone-link:hover,
.mail-link,
.mail-link:hover {
  color: inherit;
  text-decoration: none;
}

.phone-link {
  cursor: default;
}

.nav-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  margin: .25rem 0 0;
  border-radius: 0;
  outline: none;
  float: right;
  position: relative;
  z-index: 995;
  font-weight: bold;
  text-transform: uppercase;
  color: inherit;
}

.nav-toggle-btn:hover {
  color: #d7842c;
}

.nav-toggle-btn:focus {
  outline: none;
}

.nav-toggle-title {
  display: inline-block;
  vertical-align: middle;
  margin-right: .75rem;
}

.nav-toggle {
  width: 29px;
  height: 29px;
  display: inline-flex;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
}

.nav-toggle-sm {
  transform: scale(.65);
  margin-right: -.3125rem;
}

.stick {
  width: 29px;
  height: 3px;
  margin-bottom: 5px;
  background-color: #222222;
  display: inline-block;
}

.nav-toggle-btn:hover .stick {
  background-color: #d7842c;
}

.body-menu-opened .nav-toggle-btn {
  color: #222222;
}

.body-menu-opened .nav-toggle-btn .stick {
  background-color: #222222;
}

.stick:last-child {
  margin-bottom: 0px;
}

.nav-toggle:hover .stick-2 {
  width: 29px;
}

.body-menu-opened .stick-1 {
  animation: stick-1-open .85s ease-out forwards;
}

.body-menu-opened .stick-2 {
  animation: stick-2-open .85s linear forwards;
  width: 29px;
  margin-left: 0px;
}

.body-menu-opened .stick-3 {
  animation: stick-3-open .85s linear forwards;
}

@-webkit-keyframes stick-1-open {
  0%   {width: 29px;}
  30%  {width: 3px; transform: translate(14px, 0px);}
  65%  {width: 3px; transform: translate(14px, -29px); animation-timing-function: cubic-bezier(0,1,1,1);}
  100% {width: 2px; transform: translate(9px, 17px);}
}

@keyframes stick-1-open {
  0%   {width: 29px;}
  30%  {width: 3px; transform: translate(14px, 0px);}
  65%  {width: 3px; transform: translate(14px, -29px); animation-timing-function: cubic-bezier(0,1,1,1);}
  100% {width: 2px; transform: translate(9px, 17px);}
}

@-webkit-keyframes stick-2-open {
  65%  {width: 29px; transform: translate(0px, 0px) rotate(0deg);}
  100% {width: 29px; transform: translate(0px, 0px) rotate(45deg);}
}

@keyframes stick-2-open {
  65%  {width: 29px; transform: translate(0px, 0px) rotate(0deg);}
  100% {width: 29px; transform: translate(0px, 0px) rotate(45deg);}
}

@-webkit-keyframes stick-3-open {
  65%  {transform: translate(0px, 0px) rotate(0deg);}
  100% {transform: translate(0px, -8px) rotate(-45deg);}
}

@keyframes stick-3-open {
  65%  {transform: translate(0px, 0px) rotate(0deg);}
  100% {transform: translate(0px, -8px) rotate(-45deg);}
}

.body-menu-close .stick-1 {
  width: 3px; 
  animation: stick-1-close .85s ease-out forwards;
}

.body-menu-close .stick-2 {
  animation: stick-2-close .85s ease-out forwards;
  margin-left: 0px;
}

.body-menu-close .stick-3 {
  animation: stick-3-close .85s ease-out forwards;
}

@-webkit-keyframes stick-1-close {
  0%, 70% {width: 0px; transform: translate(0, 0);}
  100%    {width: 29px; transform: translate(0, 0);}
}

@keyframes stick-1-close {
  0%, 70% {width: 0px; transform: translate(0, 0);}
  100%    {width: 29px; transform: translate(0, 0);}
}

@-webkit-keyframes stick-2-close {
  0%   {width: 29px;transform: translate(0px, 0px) rotate(45deg);}
  20%  {width: 3px; transform: translate(0, 0px) rotate(45deg);}
  40%  {width: 0px;}
  65%  {transform: translate(0, -26px); animation-timing-function: cubic-bezier(0,1,1,1);}
  80%  {width: 0px;}
  100% {width: 29px; transform: translate(0, 0px);}
}

@keyframes stick-2-close {
  0%   {width: 29px;transform: translate(0px, 0px) rotate(45deg);}
  20%  {width: 3px; transform: translate(0, 0px) rotate(45deg);}
  40%  {width: 0px;}
  65%  {transform: translate(0, -26px); animation-timing-function: cubic-bezier(0,1,1,1);}
  80%  {width: 0px;}
  100% {width: 29px; transform: translate(0, 0px);}
}

@-webkit-keyframes stick-3-close {
  0%   {width: 29px;transform: translate(0px, -8px) rotate(-45deg);}
  20%  {width: 3px; transform: translate(0, -8px) rotate(-45deg);}
  40%  {}
  65%  {transform: translate(0, -35px); animation-timing-function: cubic-bezier(0,1,1,1);}
  90%  {width: 3px;}
  100% {width: 29px; transform: translate(0, 0px);}
}

@keyframes stick-3-close {
  0%   {width: 29px;transform: translate(0px, -8px) rotate(-45deg);}
  20%  {width: 3px; transform: translate(0, -8px) rotate(-45deg);}
  40%  {}
  65%  {transform: translate(0, -35px); animation-timing-function: cubic-bezier(0,1,1,1);}
  90%  {width: 3px;}
  100% {width: 29px; transform: translate(0, 0px);}
}

@-webkit-keyframes fadeZoom {
  0%   {width: 100%;}
  100% {width: 0;}
}

@keyframes fadeZoom {
  0%   {width: 100%;}
  100% {width: 0;}
}

.navbar-nav {
  margin-left: 8rem;
  margin-right: 8rem;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
}

.navbar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav > ul > li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-nav a {
  position: relative;
  color: #999999;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.82, 0, 0.21, 1);
}

.navbar-nav a:before {
  content: attr(data-text);
  position: absolute;
  width: 0%;
  transition: width cubic-bezier(0.82, 0, 0.21, 1) 0.3s;
  color: #d7842c;
  z-index: 2;
  overflow: hidden;
}

.navbar-nav li.active > a,
.navbar-nav a:hover {
  color: #999999;
}

.navbar-nav li.active > a:before,
.navbar-nav a:hover:before {
    width: 100%;
}

.navbar-nav li.active > a {
  color: #d7842c !important;
}

.menu-main li.active > a {
  color: #d7842c !important;
}

.navbar-nav .dropdown-toggle::after {
  display: none;
}

.navbar-nav .dropdown-menu {
  width: 25rem;
  padding: 27px 40px 22px;
  border: none;
  background: #ffffff;
  border-radius: 0;
  margin-top: 1.125rem;
  margin-left: -40px;
  text-transform: none;
  box-shadow: 0 15px 25px rgba(0,0,0,0.05);
  position: absolute;
  left: 20px !important;
  top: 100% !important;
  transform: translate3d(0, 0, 0) !important;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  animation: transform .3s ease-in-out forwards;
}

.navbar-nav .dropdown-menu:before {
  content: "";
  display: block;
  width: 100%;
  height: 1.125rem;
  position: absolute;
  left: 0;
  right: 0;
  top: -1.125rem;
}

@keyframes transform {
  0%   {margin-top: 3rem; opacity: 0;}
  100% {margin-top: 1.125rem; opacity: 1;}
}



.navbar-nav .dropdown-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav .dropdown-menu ul li {
  margin-bottom: 6px;
}

.navbar-nav .dropdown-menu a {
  white-space: nowrap;
  color: #999999;
}

.navbar-nav .dropdown-menu .active a {
  font-weight: normal;
}

.dropdown-menu-title {
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #222222;
  font-weight: bold;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  background: #ffffff;
	opacity: 0.95;
  max-width: 100%;
  width: 100%;
  padding: 3.75rem 4.375rem 3.25rem;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease-in-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.body-menu-opened .menu {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media (min-width: 576px) {
  .menu {
    width: 34rem;
  }
}

@media (min-width: 992px) {
  .navbar-nav {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .navbar-nav > ul > li {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.body-menu-opened body {
  /*overflow: hidden;*/
  /*width: 100%;*/
  /*height: 100%;*/
}

@media (max-width: 575px) {
  .body-menu-opened {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
}

.hide-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 100%;
  background: rgba(0,0,0,.1);
  z-index: 980;
}

.body-menu-opened .hide-menu {
  bottom: 0;
}

.menu-main {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu-main > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-main > ul > li {
  margin-bottom: .9375rem;
}

.menu-main > ul > li > a,
.menu-main > ul > li > span {
  font-size: 1.7rem;
  color: #222;
}
.menu-main > ul > li > a:hover,
.menu-main > ul > li > span:hover {
  color: #d7842c;
}

.menu-main > ul > li ul {
  padding: 1rem 0 1px .875rem;
  margin: 0;
  list-style: none;
}

.menu-main > ul > li ul > li {
  margin-bottom: .375rem;
}

.menu-main > ul > li ul > li > a,
.menu-main > ul > li ul > li > span {
  color: #999999;
}

.menu-main a,
.menu-main a:hover {
  position: relative;
  text-decoration: none;
}

.menu-main a:before {
  content: attr(data-text);
  position: absolute;
  width: 0%;
  transition: width cubic-bezier(0.82, 0, 0.21, 1) 0.3s;
  color: #d7842c;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
}

.menu-main li.active > a:before,
.menu-main a:hover:before {
    width: 100%;
}

.header-custom {
  padding-top: 3rem;
}

.header-absolute {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 900;
}

.nav-logo {
  margin-top: -2.3125rem;
  margin-bottom: -2.3125rem;
  display: block;
}

/*-------------------------------------------------------------------------------
  Slide 4
-------------------------------------------------------------------------------*/

.text-texture {
  display: inline-block;
  background-image: url("../img/bg-title.jpg");
  background-position: 50% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-texture > .inside {
  display: inline-block;
  mix-blend-mode: lighten;
  background: #ffffff;
}

.section-item-title {
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.5;
}

.services-letter {
  	overflow: hidden;
  	position: relative;
  	font-size: 12rem;
  	font-weight: 900;
  	line-height: 1;
	margin-top: 1rem;
}

.services-letter .mask {
  	position: absolute;
  	z-index: 10;
  	width: 200%;
  	background: -webkit-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,1) 50%, rgba(255,255,255,1));
  	background: -o-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,1) 50%, rgba(255,255,255,1));
  	background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1) 50%, rgba(255,255,255,1)); 
  	height: 100%;
  	top: 0;
  	left: 100%;
}

.letter-p1 .text-texture {
  	background-image: url("../images/bg-letter-p.jpg");
  	background-position: center left;
}

.letter-p2 .text-texture {
  	background-image: url("../images/bg-letter-p.jpg");
  	background-position: center center;
}

.letter-p3 .text-texture {
  	background-image: url("../images/bg-letter-p.jpg");
  	background-position: center right;
}

.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-3-col {
  width: 33.33%;
  display: flex;
  flex-direction: column;
}

.info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.info__content {
  max-width: 100%;
	padding: 0 15px;
}
.info__link {
  width: 100%;
  align-self: flex-end;
  margin-top: 40px;
	align-items: center;
}
.flex-container .button {
	background-color: #d7842c;
   	border: none;
   	border-radius: 2px;
   	box-shadow: 0 -3px 0 rgba(0,0,0,0.15) inset;
   	color: #fff !important;
   	cursor: pointer;
   	text-align: center;
   	vertical-align: middle;
   	white-space: nowrap;
  	transition-property: transform;
  	transform: translateZ(0);
	transition: box-shadow 0.5s cubic-bezier(0.390, 0.500, 0.150, 1.360);
  	padding: 12px 50px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.5px;
	font-family: 'Poppins', sans-serif !important;
}
.flex-container .button:hover,
.flex-container .button:active,
.flex-container .button:hover,
.flex-container .button:active {
    box-shadow: 0 0 0 28px rgba(0,0,0,0.1) inset;
	background-color: #aa5f3b;
	text-decoration: none;
	color: #fff;
}
.flex-container .button:not(:disabled):not(.disabled).active,
.flex-container .button:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #aa5f3b;
    border-color: transparent;
}

.flex-container h6 {
  	margin-top: 1.625rem;
  	line-height: 1.625;
	font-weight: 400;
}


.owl-theme .owl-dots .owl-dot:focus {
  outline: none;
}

.owl-theme .owl-dots .owl-dot span {
  width: 25px;
  height: 25px;
  background: transparent;
  border: transparent 1px solid;
  position: relative;
  margin: 5px;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background: transparent;
}

.owl-theme .owl-dots .owl-dot.active span {
  border-color: #d7842c;
  background-color: transparent;
}

.owl-theme .owl-dots .owl-dot span:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #222222;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 50%;
  margin-top: -3px;
}

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

.reviews-carousel-sm.owl-theme .owl-dots .owl-dot span:before {
  background-color: #ffffff;
}

.reviews-carousel-sm.owl-theme .owl-dots .owl-dot.active span:before,
.reviews-carousel-sm.owl-theme .owl-dots .owl-dot:hover span:before {
  background-color: #f4882e;
}

.reviews-carousel-sm.owl-theme .owl-dots .owl-dot.active span {
  border-color: #f4882e;
}

.reviews-carousel-text {
  font-size: 1rem;
  line-height: 1.8;
}

.reviews-carousel-author {
  margin-top: 2.5rem;
  font-size: 1.125rem;
}

.reviews-carousel-sm .reviews-carousel-item {
  min-height: 10rem;
	margin-top: 1rem;
}

.reviews-carousel-sm .reviews-carousel-item > .inside {
  vertical-align: top;
}

.reviews-carousel-sm .owl-dots {
  margin-left: -5px;
  text-align: left;
}

@media (min-width: 992px) {
  .reviews-carousel-text {
    font-size: 2.25rem;
  }
  .reviews-carousel-sm .reviews-carousel-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}




/* Slide Settings*/

.pp-scrollable {
  overflow-x: hidden;
  overflow-y: auto;
}

.slide {
  background: #ffffff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 100vh;
}

.slide-container {
  position: relative;
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .slide-container {
    padding-top: 15vmin;
    padding-bottom: 7vmin;
  }
}

@media (min-width: 1400px) {
  .slide-container {
    padding-top: 17.66666667vmin;
  }
}

.slide-dark {
  background-color: #0c0c0c;
  color: #ffffff;
}

.slide-container .video-container {
  display: none;
  pointer-events: none;
}

.slide-container .video-container:before {
  display: none;
}

.slide-bg,
.slide-bg > .inside {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-position: 70% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-bg {
  overflow: hidden;
}

.slide-bg > .inside {
  transition: transform .8s ease-in-out;
  transform: scale(1.1);
  transition-delay: .8s;
}

.section.active .slide-bg > .inside {
  transform: scale(1);
}

.slide-container .container {
  /*position: relative;*/
  z-index: 100;
}

.slide [class^="col-"] {
  position: static;
}


.slide-content {
  min-height: 50vmin;
  margin-bottom: 3vmin;
}

.slide-video-container {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

/* Dark Slide Settings */

.dark-horizontal .header,
.dark-horizontal .social-fixed a,
.dark-horizontal .establised,
.dark-horizontal .copyright-fixed,
.dark-horizontal .social-rounded-fixed a,
.dark-horizontal .navbar-nav > ul > li > a {
  color: #ffffff;
}

.dark-horizontal .stick,
.dark-horizontal #pp-nav span,
.dark-horizontal .pp-slidesNav span {
  background: #ffffff;
}

.dark-horizontal .horizontal-nav li.active,
.dark-horizontal .horizontal-nav li.active ~ li {
  background: #333333;
}

/*-------------------------------------------------------------------------------
  Page Piling
-------------------------------------------------------------------------------*/

.home-piling .section,
.project-list-piling .section {
  transition: transform 1.2s ease-in-out;
  position: relative;
  z-index: 10;
}

.a-pagepiling.home-piling .section,
.a-pagepiling.project-list-piling .section {
  position: absolute;
}

.project-list-piling.a-pagepiling .section {
  position: absolute;
}


@media (max-width: 575px) {
  .home-piling .container {
    padding-right: 45px;
  }
}


#pp-nav.right {
  right: 15px;
}

@media (min-width: 1600px) {
  #pp-nav.right {
    right: 3.75rem;
  }
}

#pp-nav li,
.pp-slidesNav li {
  height: 24px;
  margin: 6px 0;
  width: 24px;
}

#pp-nav li a,
.pp-slidesNav li a {
  border: 1px solid transparent;
  border-radius: 20px;
}

#pp-nav li a.active,
.pp-slidesNav li a.active {
  border-color: #d7842c;
}

#pp-nav span,
.pp-slidesNav span {
  width: 6px;
  height: 6px;
  border: none;
  background: #999999;
  left: 8px;
  top: 8px;
}

#pp-nav li a.active span,
.pp-slidesNav li a.active span,
#pp-nav li a:hover span,
.pp-slidesNav li a:hover span {
  background: #d7842c;
}

.home-piling h1,
.home-piling .h1 {
  margin-bottom: 4.03703704vmin;
  font-size: 6.18518519vmin;
  line-height: 1;
  letter-spacing: 0;
}

.home-piling .slide1 {
  background: #2f4f43;
}

.slide1 .slide-title {
	padding-top: 15rem;
}

.slide3 img.profile  {
	width: 250px;
}

body::before {
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.section.active .slide-bg-list .slide-bg > .inside {
  transition: all .8s ease-in-out;
  transform: scale(1.08);
}

.slide-bg-list .slide-bg.active > .inside {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
  transform: scale(1) !important;
}

.slide-bg-list .slide-bg > .inside {
  opacity: 0;
}

.icon-quote {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../images/icons/icon-quote-mark.svg") 50% 50% no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
	margin-left: 15px;
	margin-top: 5rem;
}

.icon-quote-2 {
  display: inline-block;
  position: relative;
	margin: 1rem 0 -2rem 35px;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../images/icons/icon-quote-mark-2.svg") 50% 50% no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}

/*-------------------------------------------------------------------------------
  Home Video
-------------------------------------------------------------------------------*/

.video-container {
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.video-container:before {
   content: "";
  display: block;
  position: absolute;
  z-index: 600;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
	background: -moz-linear-gradient(top, rgba(47,79,67,1) 0%, rgba(255,255,255,0) 40%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(47,79,67,1) 0%,rgba(255,255,255,0) 40%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(47,79,67,1) 0%,rgba(255,255,255,0) 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f4f43', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

.video-container iframe {
  border: none;
  margin: 0;
  padding: 0;
  height: 500%;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*-------------------------------------------------------------------------------
  Elements
-------------------------------------------------------------------------------*/
/* Button */

 a.btn-primary,
.btn-primary{
	background-color: #d7842c;
   	border: none;
   	border-radius: 2px;
   	box-shadow: 0 -3px 0 rgba(0,0,0,0.15) inset;
   	color: #fff !important;
   	cursor: pointer;
   	text-align: center;
   	vertical-align: middle;
   	white-space: nowrap;
  	transition-property: transform;
  	transform: translateZ(0);
	transition: box-shadow 0.5s cubic-bezier(0.390, 0.500, 0.150, 1.360);
  	padding: 12px 50px;
	margin: 100px 0 !important;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.5px;
}
   
 a.btn-primary:hover,
 a.btn-primary:active,
 .btn-primary:hover,
 .btn-primary:active {
    box-shadow: 0 0 0 28px rgba(0,0,0,0.1) inset;
	background-color: #aa5f3b;
	text-decoration: none;
	color: #fff;
}
  
 .btn-primary:not(:disabled):not(.disabled).active,
 .btn-primary:not(:disabled):not(.disabled):active,
 .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #aa5f3b;
    border-color: transparent;
}

/* Contact Form */

#message {
	margin: 10px 0;
	padding: 0;
}

.error_message {
	display: block;
	height: 50px;
	line-height: 22px;
	padding: 5px 10px;
	color:#d7842c;
}

.loader {
	padding: 0 10px;
}

#contact #success_page h1 {
	font-size: 20px;
	color: #2f4f43;
}


/* Font Size */

.text-1 {
	font-size: 13px;
}

.text-2 {
	font-size: 14px;
}

.text-3 {
	font-size: 15px;
}

.text-4 {
	font-size: 16px;
}

.text-5 {
	font-size: 18px;
}

.text-6 {
	font-size: 20px;
}

.text-7 {
	font-size: 24px;
}

.text-8 {
	font-size: 28px;
}

.text-9 {
	font-size: 32px;
}

.text-10 {
	font-size: 50px;
}

.box-content {
	padding: 1.2rem 0.5rem;
	position: relative;
	background: #fff;
	border: 1px solid #ddd;
}

/* Zooming 

.zooming {
  overflow: hidden;
}

.zooming img {
  transform: scale(1);
  transition: all 1s linear;
}

.zooming:hover img,
a:hover .zooming img {
  transform: scale(1.08);
}

*/

/*-------------------------------------------------------------------------------
  Sections
-------------------------------------------------------------------------------*/

.shadow-title {
    position: relative;
	top: 30px;
    margin: 0 auto;
    font-size: 100px;
	line-height:100px;
    text-align: center;
    font-weight: 800;
    width: 100%; 
	display: block;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	opacity: .4;
 }
.shadow-gray{
	color:rgba(47, 79, 67, 0.3); }
.shadow-white{
	color:rgba(255, 255, 255, 0.3); }

@media only screen and (max-width: 768px) {
	.shadow-title {
		top: 30px;
		font-size: 80px;
		line-height:90px; }
}

@media only screen and (max-width: 480px) {
	.shadow-title {
		top: 30px;
		font-size: 55px;
		line-height:60px;}
}

.unselectable {
	user-select: none; }

.section-heading  {
    font-size: 36px;
    font-weight: 400;
	line-height: 36px;
    margin: -16px 0 30px 0;
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	letter-spacing: 1px;
}

.heading1 {
	font-size: 28px;
    letter-spacing: 2px;
    margin-top: 0;
    position: relative;
	text-transform: uppercase;
	font-weight: 500; }

.heading2 {
    letter-spacing: 0.5px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
	position: relative; 
	font-weight: 500; }

.slide2 .heading2 {
	max-width: 195px;
	font-size: 17px;
	line-height: 1.7;
	margin-left: auto;
	margin-right: auto;
	font-weight: 600;
}

.icon-media{
	width: 90px;
	height:90px;
	margin: 0 auto;   
	display:block;
	margin-bottom: 30px;
	opacity:.8}

.section-intro {
	max-width: 700px;
	font-size: 18px;
	margin: 0 auto;
	line-height: 1.8;
}

.heading-cursive {
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
}

.home-piling .slide1 {
  background: #2f4f43;
}

.home-piling .slide2 .slide-bg > .inside,
.home-piling .slide4 .slide-bg > .inside,
.home-piling .slide6 .slide-bg > .inside {
  background-image: url("../images/bg-1.jpg");
	background-color: transparent !important;
	background-position: top right;
}

.home-piling .slide3 .slide-bg > .inside,
.home-piling .slide5 .slide-bg > .inside {
  background-image: url("../images/bg-2.jpg");
	background-color: transparent !important;
	background-position: top right;
}

.home-piling .slide7 .slide-bg > .inside {
  background-image: url("../images/bg-eagle.jpg");
	background-color: transparent !important;
	background-position: top right;
}

.good-cause-bg {
 	background: url("../images/bg-good-cause-2.jpg") top center no-repeat; 
	background-size: cover;
	padding-bottom: 0;
	margin: 0;
	width: 100%;
	height: 300px;
	border-top: 1px solid #2c4a3f;
	border-bottom: 1px solid #2c4a3f;
	background-color: #58786c;
}

.slide3 img.profile  {
	width: 220px;
}


/*-------------------------------------------------------------------------------
  Modal Windows
-------------------------------------------------------------------------------*/

body.modal-open {
	overflow: visible; }

.modal { 
	overflow: auto !important; 
}

.modal-open {
    overflow: visible;
}

.modal-backdrop {
  	background-color: #2f4f43;
}

.modal-backdrop.show {
  	opacity: 0.6 !important;}

.modal-content {
  	background: transparent;
  	border: 0;
  	-webkit-box-shadow: none;
  	box-shadow: none; }

.close {
  	font-size: 40px;
  	font-weight: 400;
  	color: #fff;
  	text-shadow: 0 0 0 #fff;
  	opacity: 1;  
	right: 0; 
	top: -10px;
	position: absolute;
}

.close:before {
	float: left;
    width: 20px;
    height: 20px;
    content: "";
    background: url("../images/icons/icon-close.svg") no-repeat ; 
	background-size: 20px 20px; 
	margin: 5px 0 0 0;
}

.modal-lg {
	max-width: 70% !important;
}

.modal-body {
  	padding: 50px 30px 50px 30px;
  	background: #fff;}

.modal-body h3 {
  	letter-spacing: 0px;
  	line-height: 1.7; }	

.modal-body .title,
.modal-body .name {
  	font-size: 16px;
  	display: block;
  	letter-spacing: 0px;
  	line-height: 24px;  }	

.modal .section-intro {
	max-width: 780px;
	font-size: 16px;
	margin: 0 auto;
	line-height: 1.8;
}

.modal-body p {
  	font-size: 16px;
  	line-height: 1.8;  }

.modal li {
	margin-bottom: 10px;
}

.modal h3 {
	font-size: 2rem;
}

.blockquote-container {
	position: relative;
}

.blockquote-container hr {
	max-width: 50%;
	padding: 20px 0 10px 0;
}

.blockquote-container blockquote {
  	font-weight: 400;
  	line-height: 1.8;
	max-width: 75%;
	margin: 20px auto 5px auto;
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	font-size: 1rem;
	font-size: 18px;
	letter-spacing: 0.5px;
}

.blockquote-container cite {
  	font-size: 0.8rem;
	text-transform: uppercase;
	font-style: normal;
}

#modal7 .card {
	min-height: 300px;
}

#modal7 .card-body {
	padding-bottom: 0;
}

#modal7 .card-1 .card-header {
	background: #556f65;
}
#modal7 .card.card-1 {
	border: 1px solid  #556f65;
}

#modal7 .card-2 .card-header {
	background: #2f4f43;
}
#modal7 .card.card-2  {
	border: 1px solid #2f4f43;
}


#modal8 .card {
	min-height: 430px;
}

#modal8 .card-header {
	margin-bottom: 0;
	padding-bottom: 0;
}

#modal8 .card-1 .card-header {
	background: #7a8e87;
}
#modal8 .card.card-1 {
	border: 1px solid  #7a8e87;
}

#modal8 .card-2 .card-header {
	background: #556f65;
}
#modal8 .card.card-2 {
	border: 1px solid  #556f65;
}

#modal8 .card-3 .card-header {
	background: #48645a;
}
#modal8 .card.card-3  {
	border: 1px solid #48645a;
}

#modal8 .card-4 .card-header {
	background: #2f4f43;
}
#modal8 .card.card-4  {
	border: 1px solid #2f4f43;
}

/*-------------------------------------------------------------------------------
  Animated Arrow
-------------------------------------------------------------------------------*/

.arrow-container {
	position: absolute;
	bottom: 15%;
	left: 50%;
}

.arrow,
.arrow:before {
  position: absolute;
  left: 50%;
}

.arrow {
  width: 40px;
  height: 40px;
  top: 50%;
  margin: -20px 0 0 -20px;
  -webkit-transform: rotate(45deg);
  border-left: none;
  border-top: none;
  border-right: 2px #d7842c solid;
  border-bottom: 2px #d7842c solid;
}

.arrow:before {
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  margin: -10px 0 0 -10px;
  border-left: none;
  border-top: none;
  border-right: 2px #d7842c solid;
  border-bottom: 2px #d7842c solid;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: arrow;
}

@keyframes arrow {
  0% {
    opacity: 0;
    transform: translate(-10px, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

/*-------------------------------------------------------------------------------
  Footer
-------------------------------------------------------------------------------*/

a.phone-link {
  color: inherit;
  text-decoration: none;
  cursor: default;
}

.copyright-fixed {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 400;
  color: #000;
	font-size: 10px;
}

.copyright-fixed a {
  color: inherit;
}

 .navbar-nav a:before,
 .menu-main a:before,
 .menu-lang-item.active,
 .menu-lang-item:hover,
 .nav-toggle-btn:hover,
 .text-primary,
 .social:not(.social-rounded) a:hover,
 .brand-name {
  color: #d7842c !important;
}


@media (min-width: 768px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}


/* Big Screen Adjustments */

@media (min-height: 1000px) {

.mt-1 {
  margin-top: 0.5rem !important;
}
	
.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}
	
.mb-2 {
  margin-bottom: 1rem !important;
}

.mt-3 {
  margin-top: 2rem !important;
}
	
.mb-3 {
  margin-bottom: 2rem !important;
}

.mt-4 {
  margin-top: 3rem !important;
}
	
.mb-4 {
  margin-bottom: 3rem !important;
}

.mt-5  {
  margin-top: 6rem !important;
}
	
.mb-5 {
  margin-bottom: 6rem !important;
}

.slide-container {
   padding-top: 21.66666667vmin;
 }
	
.slide3 img.profile  {
	width: 300px;
}
	
.header {
    padding-top: 2.5rem;
  }
	
#modal7 .card {
	min-height: 330px;
}


}

@media (max-width: 1300px) {
 .modal-lg {
	max-width: 90% !important;
}
  }
@media (max-width: 1024px) {
 .modal-lg {
	max-width: 100% !important;
}
#modal8 .card,
#modal7 .card {
	min-height: auto;
}
.box-content .text-5 {
	font-size: 14px;
}
  }

/* Small Screen Adjustments */

@media (max-width: 768px) {
.good-cause-bg {
	height: 160px;
}
.arrow-container {
	bottom: 25%;
}
.copyright-fixed {
	display: none;
}
.iticks-notif-msg,
.notif-msg-tri {
	display: none !important;
}
.modal li {
	font-size: 14px !important;
}
.flex-3-col {
  width: 100%;
  display: block;
  flex-direction: column;
}
.box-content .text-5 {
	font-size: 17px;
}

}

@media only screen and (max-width: 576px) {	
.header {
    padding-top: 1rem;
  }
.brand {
  margin-top: 0px;
}
.brand img  {
	width: 140px !important;
}
.slide-container {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.shadow-title.shadow-gray,
.shadow-title.shadow-white {
	display: none;	
}
.section-heading  {
    font-size: 20px;
    font-weight: 600;
	line-height: 30px;
    margin: 0;
	font-family: 'Poppins', sans-serif;
	font-style: normal;
	letter-spacing: 0px;
	text-transform: uppercase;
}

.home-piling .slide7 .slide-bg > .inside {
  background-image: url("../images/bg-eagle-mobile.jpg");
	background-position: top right;
}
	
.modal h3 {
	font-size: 20px;
	line-height: 1.6;
	}

}
