/* USER VARIABLES SECTION */

:root {
	--accent: #F57500;
	--fontsize: 16px;
	--textcolor: #333;
	--dark: #303030;
	--dark-lighten-7: #424242;
	--dark-lighten-20: #636363;
	--deep: #252525;
	--deep-lighten-6: #343434;
	--lineheight: 1.7;
	--userfont: raleway-vh, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--size: 75px;
	--size-sm: 58px;
	--border-opacity: .1;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
/* .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; } */

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/oswaldbold-webfont.woff2") format("woff2"); font-family: "oswald-vh"; font-weight: 700; font-style: normal; }
@font-face { src: url("../fonts/oswaldmedium-webfont.woff2") format("woff2"); font-family: "oswald-vh"; font-weight: 500; font-style: normal; }
@font-face { src: url("../fonts/ralewayextrabold-webfont.woff2") format("woff2"); font-family: "raleway-vh"; font-weight: 800; font-style: normal; }
@font-face { src: url("../fonts/ralewaymedium-webfont.woff2") format("woff2"); font-family: "raleway-vh"; font-weight: 500; font-style: normal; }
@font-face { src: url("../fonts/ralewaysemibold-webfont.woff2") format("woff2"); font-family: "raleway-vh"; font-weight: 600; font-style: normal; }
@font-face { src: url("../fonts/robotomedium-webfont.woff2") format("woff2"); font-family: "roboto-vh"; font-weight: 500; font-style: normal; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--fontsize);
	line-height: var(--lineheight);
	color: var(--textcolor);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* USER STYLES */

body, html {
	height: 100%;
}

/* TOP LINE */

.home-header {
	background-color: var(--deep);
	height: 100%;
	color: #fff;
	padding-top: var(--size);
}

.top-line {
	position: absolute;
	width: 100%;
	height: var(--size);
	top: 0;
	border-bottom: 1px solid rgba(255,255,255, var(--border-opacity));
	z-index: 10;
	background-color: var(--deep);
	display: flex;
	align-items: center;
}

.logo {
	flex: 0 0 250px;
	display: flex;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .5em;
	text-decoration: none;
}

.logo:hover, .logo:focus {
	color: #fff;
	text-decoration: none;
}

.logo__img-wrapper {
	width: var(--size);
	height: var(--size);
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-button-container {
	flex: 0 0 200px;
	text-align: right;
	position: relative;
	height: var(--size);
}



/* N E W */

/* N E W */




.top-line__decoration {
	flex: 1 0 0;
	text-align: center;
}

.top-line__decoration::before {
	content: '';
	height: 1px;
	width: 50px;
	background-color: #fff;
	display: inline-block;
	opacity: calc(var(--border-opacity) * 1.5);
	position: relative;
	top: -5px;
}

.top-line__contacts {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .4em;
	color: rgba(#fff, .5);
	display: flex;
	align-items: center;
}

.top-line__separator {
	width: 1px;
	height: 30px;
	background-color: rgba(255,255,255, calc(var(--border-opacity) * 1.5));
	margin: 0 20px;
}

.top-line__numbers,
.top-line__text {
	font-family: roboto-vh, sans-serif;
	margin-left: 7px;
}
.top-line__numbers a,
.top-line__text a {
	color: var(--accent);
}

.top-line__numbers {
	color: #5db547;
}

.top-line__text {
	color: rgba(255,255,255, .75);
}

/* ASIDE */

.home-header__content {
	height: 100%;
}

.home-aside {
	background-color: var(--dark);
	height: 100%;
	position: absolute;
	top: 0;
	width: var(--size);
	padding-top: var(--size);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 5;
}

.home-aside__decoration {
	flex: 1 0 0;
	background-image: url(../images/decoration.svg);
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.home-aside__soc {
	flex: 1 0 0;
}

.home-aside__share-icon {
	background-color: #5db547;
	width: var(--size);
	flex: 0 0 var(--size);
	background-image: url(../images/share-solid.svg);
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: center;
}

.soc-item {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255,255,255, var(--border-opacity));
	border-bottom: 1px solid transparent;
	margin-top: -1px;
	transition: background .5s ease-out;
}

.soc-item:last-child {
	border-bottom: 1px solid rgba(255,255,255, var(--border-opacity));
}

.soc-item img {
	width: 15px;
	height: auto;
	max-height: 15px;
	opacity: .3;
	transition: opacity .5s ease-out;
}

.soc-item:hover {
	background-color: #5db547;
	;
}

.soc-item:hover img {
	opacity: 1;
}

/* SLIDER */

.slider-container {
	padding-left: var(--size);
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.slider-bottom {
	position: absolute;
	bottom: 0;
	display: flex;
	align-items: center;
	z-index: 5;
	left: var(--size);
	height: var(--size);
	width: calc(75% - var(--size));
}

.slider-share {
	flex: 0 1 auto;
}

.slider-scrollbar {
	flex: 1 0 0;
}

.slider-scrollbar .swiper-scrollbar {
	height: 1px;
	background-color: rgba(255,255,255, .2);
}

.slider-scrollbar .swiper-scrollbar-drag {
	height: 3px;
	background-color:  #5db547;
	;
	top: -1px;
}

.slider-navigation__container {
	max-width: 70px;
	position: relative;
	margin: auto;
}

.slider-navigation {
	flex: 0 0 140px;
	position: relative;
	left: 10px;
}

.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next {
	width: 32px;
	height: 32px;
	color: #5db547;
	background-color: #3c3c3c;
	border-radius: 100%;
	border: 2px solid #5db547;
	top: 5px;
}

.slider-navigation .swiper-button-prev::after,
.slider-navigation .swiper-button-next::after {
	font-size: 10px;
}

.slider-navigation .swiper-button-prev.swiper-button-disabled,
.slider-navigation .swiper-button-next.swiper-button-disabled {
	opacity: 1;
	color: #5db547;
	border-color: #5db547;
}

.slider-navigation .swiper-button-prev {
	left: 0;
}
.slider-navigation .swiper-button-next {
	right: 0;
}

.slider-share__items {
	display: flex;
	position: relative;
	bottom: -.5px;
}

.slider-share__item {
	width: var(--size);
	height: var(--size);
	border: none;
	background-color: var(--dark);
	border-right: 1px solid rgba(255,255,255, var(--border-opacity));
	margin-left: -.5px;
}

.slider-share__item:last-child {
	border: none;
}

.slider-share__item:last-child::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 3px;
	height: 100%;
	background-color: #5db547;
}

.slider-img {
	height: 100%;
	width: 75%;
	overflow: hidden;
	position: relative;
}

.slider-img::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, .45);
	z-index: 1;
}

.slider-img__slide {
	height: 100%;
	overflow: hidden;
}

.slider-img__bg {
	height: 100%;
	background-position: center;
	background-size: cover;
}

.slider-text {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: calc(100% - var(--size));
}

.slider-text__slide {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.slider-text__content {
	text-align: right;
	padding-right: 22%;
}

.slider-text__heading {
	text-transform: uppercase;
	font-size: 60px;
	line-height: 120%;
	font-family: oswald-vh, sans-serif;
	max-width: 780px;
	float: right;
	
}

.slider-text__heading span {
	color: #5db547;
	white-space: nowrap;
	
}


.slider-text__desc {
	float: right;
	max-width: 500px;
	font-size: 15px;
	font-weight: 500;
	margin-top: 15px;
	margin-bottom: 20px;
	clear: both;
}

.slider-text__button {
	float: right;
	clear: both;
}

.slider-pagination {
	flex: 0 0 140px;
	display: flex;
	justify-content: center;
	height: var(--size);
	align-items: center;
	position: relative;
}

.slider-pagination .swiper-pagination {
	margin-top: 17px;
	position: relative;
}

.slider-pagination .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	opacity: 1;
	background-color: #fff;
	margin: 0 7.5px;
}

.slider-pagination .swiper-pagination-bullet-active {
	background-color: #5db547;
	position: relative;
}

.slider-pagination .swiper-pagination-bullet-active::before {
	content: '';
	width: 14px;
	height: 14px;
	border: 1px solid #5db547;
	position: absolute;
	border-radius: 100%;
	left: -4px;
	top: -4px;
}

.slider-gear {
	width: 470px;
	height: 470px;
	position: absolute;
	background-image: url(../images/gear.svg);
	background-size: cover;
	background-position: center;
	top: 50%;
	margin-top: -270px;
	z-index: 2;
	right: calc(23.8% - 235px);
}

.slider-pagination-count {
	position: absolute;
	right: 20px;
	top: 30px;
	z-index: 0;
	width: 120px;
	height: 80px;
	font-family: oswald-vh, sans-serif;
	font-weight: 500;
	font-size: 24px;
}

.slider-pagination-count .current {
	font-size: 40px;
	color: #5db547;
	display: inline-block;
	min-width: 42px;
}

.slider-pagination-current {
	right: 40px;
	bottom: 10px;
	position: absolute;
	font-size: 105px;
	font-family: oswald-vh, sans-serif;
	color: var(--deep);
	-webkit-text-stroke: 1px #7f7f7f;
}

.slider-pagination-current__dot {
	color: #5db547;
	-webkit-text-stroke: 1px transparent;
}

/* BUTTON */

.button {
	display: inline-block;
	background-color: #5db547;
	color: #fff;
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	border: none;
	position: relative;
	padding: 14px 26px;
	font-weight: 800;
}

.button::before {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	background-color: var(--dark);
	top: 0;
	left: 0;
	transition: width .5s ease-out;
}

.button:hover::before {
	width: 100%;
}

.button span {
	position: relative;
	z-index: 2;
}

/* CURSOR */

#cursor {
	position: absolute;
	width: 17px;
	height: 17px;
	background-color: #5db547;
	z-index: 10000;
	border-radius: 100%;
	user-select: none;
	pointer-events: none;
	margin: -8.5px 0 0 -8.5px;
	transform: scale(1);
	transition: transform .65s cubic-bezier(.75,-1.27,.3,2.33);
}

#cursor.active {
	transform: scale(3.4);
	background-color: rgba(255,255,255, .1);
	border: .1px solid #5db547;
}

#cursor.hidden {
	transform: scale(.001);
}

.form-input {
	display: block;
	background-color: var(--dark);
	border: 1px solid var(--dark-lighten-7);
	padding: 12px 18px;
	min-width: 280px;
	color: #fff;
	font-size: 15px;
	transition: border .25s ease-in;
}

.form-input:focus {
	border: 1px solid var(--dark-lighten-20);
}

textarea.form-input {
	min-height: 100px;
}

/* MODAL */

.modal {
	z-index: 1000000;
	position: absolute;
	font-family: raleway-vh, sans-serif;
}

.modal__container {
	background-color: var(--deep-lighten-6);
	box-shadow: 0 0 0 8px rgba(255,255,255, .1);
	border-radius: 0;
}

.modal__title {
	color: #fff;
	text-transform: uppercase;
	font-family: oswald-vh, sans-serif;
	font-weight: 400;
	display: block;
	width: 100%;
}

.modal__close {
	color: #fff;
	opacity: 0.25;
	transition: opacity .25s ease-in;
}

.modal__close:hover {
	opacity: 1;
}

.modal__header {
	text-align: center;
}

.modal__input {
	margin-bottom: 8px;
}

.modal__footer {
	text-align: center;
}










/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4taVIGxA.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4kaVIGxA.woff2) format('woff2');
	unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* greek-ext */
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4saVIGxA.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
  }
  /* greek */
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4jaVIGxA.woff2) format('woff2');
	unicode-range: U+0370-03FF;
  }
  /* hebrew */
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4iaVIGxA.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
  }
  /* vietnamese */
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4vaVIGxA.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVIGxA.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	src: url(https://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVI.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
	font-family: 'Pacifico';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/pacifico/v17/FwZY7-Qmy14u9lezJ-6K6MmTpA.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
	font-family: 'Pacifico';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/pacifico/v17/FwZY7-Qmy14u9lezJ-6D6MmTpA.woff2) format('woff2');
	unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* vietnamese */
  @font-face {
	font-family: 'Pacifico';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/pacifico/v17/FwZY7-Qmy14u9lezJ-6I6MmTpA.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
	font-family: 'Pacifico';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/pacifico/v17/FwZY7-Qmy14u9lezJ-6J6MmTpA.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
	font-family: 'Pacifico';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/pacifico/v17/FwZY7-Qmy14u9lezJ-6H6Mk.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  .flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
  }
  * {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
  }
  a,
  a:visited,
  a:hover,
  a:active {
	color: inherit;
	text-decoration: none;
  }
  h1 {
	font-family: 'Pacifico', cursive;
	font-weight: 400;
	font-size: 3em;
	text-align: center;
  }
  .outer-menu {
	z-index: 9999;
	position: absolute;
	top: 0;
	right: 0;
	width: var(--size);
	height: var(--size);
	/* background-color: #3c3c3c; */

	background-repeat: no-repeat;
	background-position: center;
	transition: background .25s ease-out;
  }

  .outer-menu:hover {
	background-color: #5db547;
  }

  .outer-menu .checkbox-toggle {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	width: 100%;
	height: 100%;
	opacity: 0;
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div {
	transform: rotate(135deg);
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div:before,
  .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	top: 0;
	transform: rotate(90deg);
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	opacity: 0;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu {
	pointer-events: auto;
	visibility: visible;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu > div {
	transform: scale(1);
	transition-duration: 0.75s;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu > div > div {
	opacity: 1;
	transition: opacity 0.4s ease 0.4s;
  }
  .outer-menu .checkbox-toggle:hover + .hamburger {
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
	transform: rotate(225deg);
  }
  .outer-menu .hamburger {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 0.5em 1em;
	/* background: #3c3c3c; */
	border-radius: 0 0.12em 0.12em 0;
	cursor: pointer;
	transition: box-shadow 0.4s ease;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .checkbox-toggle:hover {
	background-color: #5db547;
}
  .outer-menu .hamburger > div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	background: #FEFEFE;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .hamburger > div:before,
  .outer-menu .hamburger > div:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -10px;
	left: 0;
	width: 100%;
	height: 2px;
	background: inherit;
	transition: all 0.4s ease;
  }
  .outer-menu .hamburger > div:after {
	top: 10px;
  }
  .outer-menu .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	backface-visibility: hidden;
	outline: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .menu > div {
	width: 300vw;
	height: 300vw;
	color: #FEFEFE;
	background: #5db547;
	border-radius: 50%;
	transition: all 0.4s ease;
	flex: none;
	transform: scale(0);
	backface-visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .menu > div > div {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: opacity 0.4s ease;
	overflow-y: auto;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .outer-menu .menu > div > div > ul {
	list-style: none;
	padding: 0 1em;
	margin: 0;
	display: block;
	max-height: 100vh;
  }
  .outer-menu .menu > div > div > ul > li {
	padding: 0;
	margin: 1em;
	font-size: 24px;
	display: block;
  }
  .outer-menu .menu > div > div > ul > li > a {
	position: relative;
	display: inline;
	cursor: pointer;
	transition: color 0.4s ease;
  }
  .outer-menu .menu > div > div > ul > li > a:hover {
	color: #e5e5e5;
  }
  .outer-menu .menu > div > div > ul > li > a:hover:after {
	width: 100%;
  }
  .outer-menu .menu > div > div > ul > li > a:after {
	content: '';
	position: absolute;
	z-index: 1;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 2px;
	background: #e5e5e5;
	transition: width 0.4s ease;
  }
  