:root {
  --font-primary: 'Eurostile-Reg', sans-serif;
  --font-secondary: 'Eurostile-Med', sans-serif;
  --font-default: 'Eurostile-Bol', sans-serif;
}



:root {
    --index: calc(1vw + 1vh);
}


/*--------------------------------------------------------------
# slider-main
--------------------------------------------------------------*/

.main-header {
	position: relative;
}
.main-header::after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	height: calc(var(--index) * 10);
	background-image: url(../assets/img/slider-main/ground.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	bottom: calc(var(--index) * -4.5);
}
.layers {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.layer {
	height: 100%;
	width: 100%;
	position: absolute;
	background-size: cover;
	background-position: center;
	will-change: transform;
	z-index: 2;
	transition: transform .75s cubic-bezier(.075, .5, 0, 1);
}
.layers__base {
	transform: translate3d(0, calc(var(--scrollTop) / 1.6), 0);
	z-index: 0;
}
.layers__middle {
	transform: translate3d(0, calc(var(--scrollTop) / 2.5), 0);
}
.layers__front {
	transform: translate3d(0, calc(var(--scrollTop) / 5.7), 0);
}

.main-article {
	min-height: 50vh;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	/* Update: */
	top: -1px;
	z-index: 10;
}
.main-article__header {
	text-transform: none;
	font-size: 48px;
	letter-spacing: 4;
	transition: transform .75s cubic-bezier(.075, .5, 0, 1);
	will-change: transform;
    color: #52565e;
    font-family: 'Eurostile-Med', sans-serif;
    font-weight: 600;
}
.main-article__paragraph {
	max-width: calc(var(--index) * 30);
	font-size: calc(var(--index) * 1);
	margin-top: calc(var(--index) / 1.25);
	transition: transform .75s cubic-bezier(.075, .5, 0, 1);
	will-change: transform;
    font-family: 'Eurostile-Reg', sans-serif;
    color: #52565e;
    line-height: 1.2;
}
.content {
	will-change: transform;
}

@media (min-width: 320px) and (max-width: 960px) {
  
    .layers {
	height: 35vh;
}

    .layer {
	height: 35vh;
}
    .main-article__header {
	font-size: 26px;
    padding: 0px 10px; 
}
    .main-article__paragraph {
	font-size: 18px;
	margin-top: calc(var(--index) / 1);
    line-height: 1.2;
    padding: 0px 10px 30px 10px; 
} 
    .main-article {
	min-height: 20vh;
    padding-top: 50px;
}
} 




.feature-style-one .row + .row {
  margin-top: 2px;
}
.feature-style-one .feature-content {
  background-color: #f5f6f7;
  padding: 40px 30px;
  border-bottom: 4px solid #b1adeb;
}
.feature-style-one .feature-content .tag-line {
  color: #b1adeb;
  font-size: 16px;
  font-family: 'Eurostile-Med', sans-serif;
}
.feature-style-one .feature-content .tag-line:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 2px;
  background: #b1adeb;
  margin-right: 15px;
}
.feature-style-one .feature-content h3 {
  font-size: 32px;
  line-height: 55px;
  font-weight: normal;
  color: #52565e;
  margin: 0;
  margin-top: 18px;
  margin-bottom: 20px;
}
.feature-style-one .feature-content p {
  color: #838893;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  margin-bottom: 30px;
  font-family: 'Eurostile-Reg', sans-serif;
}
.feature-style-one .feature-content a.view-more {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  height: 50px;
  background: #b1adeb;
  color: #fff;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  border-radius: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  font-family: 'Eurostile-Med', sans-serif;
}
.feature-style-one .feature-content a.view-more:hover {
  background: #52565e;
  font-family: 'Eurostile-Med', sans-serif;
}
.feature-style-one .img-box {
  display: inline-block;
  position: relative;
  margin-top: 0;
}
.feature-style-one .img-box:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  content: '';
}
.feature-style-one .img-box .inner {
  margin-left: 0px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.feature-style-one .img-box .inner img {
  border-radius: 0px;
  width: 100%; 
}

@media (min-width: 320px) and (max-width: 960px) {
 
  .feature-style-one .row + .row {
  margin-top: 0px;
}
  .feature-style-one .feature-content {
  background-color: #f5f6f7;
  padding: 40px 20px;
  border-bottom: 4px solid #b1adeb;
}
  .feature-style-one .feature-content h3 {
  font-size: 28px;
  line-height: 28px;
}
.feature-style-one .feature-content p {
  font-size: 16px;
  line-height: 18px; 
}
}