*{
    padding: 0;
    margin: 0;
    border: 0;
}
*, *:before, *:after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus, :active{outline: none;}
a:focus, a:active{outline: none;}

nav,footer,header,aside{display: block;}

html, body{
    height: 100%;
    width: 100%;
    font-style: 100%;
    line-height: 1;
    font-style: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input, button, textarea{font-family: inherit;}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-ms-clear{display:none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0;border: 0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style-type: none;}
img{vertical-align: top;}

h1,h2, h3, h4, h5, h6{font-style: inherit; font-weight: 400;}



body {
	height: 100%;
	background: #030303;
}

.wrapper {
	overflow: hidden;
	min-height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

._container {
	margin: 0px auto;
	padding: 0px 10px;
}

@media (min-width: 575.98px) {
	._container {
		max-width: 540px;
		margin: auto;
		padding: 0;
	}
}

@media (min-width: 767.98px) {
	._container {
		max-width: 720px;
	}
}

@media (min-width: 991.98px) {
	._container {
		max-width: 960px;
	}
}

@media (min-width: 1199.98px) {
	._container {
		max-width: 1140px;
	}
}

@font-face {
	font-family: Urbanist;
	src: url(/fonts/Urbanist-VariableFont_wght.ttf);
}

::-webkit-scrollbar {
	width: 5px;
	background-color: black;
}

::-webkit-scrollbar-thumb {
	background-color: #ECC385;
	border-radius: 10px;
}

h1 {
	color: #FFF;
	font-family: Urbanist;
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 50px;
}

._btn {
	display: inline-flex;
    justify-content: center;
    align-items: center;
	color: #FFF;
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    border-radius: 25px;
    border: 2px solid #FFF;
    background: rgba(217, 217, 217, 0.00);
    width: 150px;
    height: 45px;
    flex-shrink: 0;
    transition-duration: 0.4s;
}

._btn:hover {
	transition-duration: 0.4s;
	filter: drop-shadow(rgba(255, 255, 1, 0.568) 2px 4px 6px);
	transform: translateY(-2px);
}

@media (max-width:991px) {
	._btn {
		font-size: 18px;
		width: 120px;
	}
}

.color {
    color: #ECC385;
}

/*----HEADER----------------------------------------------*/


@media (max-width: 657px) {
	.menu__list {
		color: white;
		padding: 14px 16px;
		text-decoration: none;
		font-size: 17px;
		display: block;
	}
}

.header {
	width: 100%;
	height: 80px;
	z-index: 100;
}

.header__container {
    margin-top: 10px;
	display: flex;
	min-height: 80px;
	align-items: center;
	justify-content: space-around;
}

.header__logoo {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 51;
	filter: drop-shadow(#ffff017a 2px 4px 8px);
}

.header__logo {
	color: #ffff01;
	font-family: Urbanist;
	font-size: 25px;
	text-align: center;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-left: 5px;
}

.header__logo__img {
	width: 50px;
}

@media (max-width:991px) {
	.header__logo {
		font-size: 25px;
	}

	.header__logo__img {
		width: 50px;
	}
}

.header__menu {
	display: flex;
}

.menu__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

.menu__item {
	padding: 5px 0;

}

.menu__item {
	margin: 0 40px 0 0;
}

@media (max-width: 1199px) {
	.menu__item {
		margin: 0 25px 0 0;
	}
}


@media (max-width:991px) {
	.menu__item {
		margin: 0 5px 0 0 !important;
	}
}


.menu__link {
	color: #fff;
	text-align: center;
	font-family: Urbanist;
	word-spacing: 2px;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	transition-duration: 0.5s;
}

.menu__link:hover {
	color: #a7a7a7;
	margin: 1px;
	margin-bottom: 2px;
}

@media (max-width:991px) {
	.menu__link {
		font-size: 17px;
		margin-right: 5px;
	}
}

@media (max-width: 900px) {
	.menu__link {
		font-size: 18px;
	}
}

@media (max-width: 900px) {
	.a__btn-nav {
		display: none;
	}
}


@media (max-width: 657px) {
	.wrapper {
		overflow: hidden;
	}

	.header__menu {
		margin: 0;
	}

	.burger {
		display: block;
	}

	.menu__list {
		display: none;
		position: absolute;
		top: 100px;
		left: 0;
		width: 100%;
		height: calc(100vh - 100px);
		background: #efeaf0;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 30px;
		transform: translateY(-100%);
		transition: transform 0.3s ease-in;
	}

	.menu__list.active {
		transform: translateY(0);
	}

	.menu__item {
		margin: 10px 0;
	}

	.menu__link:hover {
		border-bottom: none;
	}
}

/*----BURGER----------------------------------------------*/


.burger {
	display: none;
}

.burger div {
	width: 38px;
	height: 3px;
	background: #d9d9d9;
	margin: 8px;
	transition: transform 0.3s ease;
}

@media (max-width: 900px) {
	body {
		overflow-x: hidden;
	}

	.menu__list {
		display: flex;
		position: absolute;
		top: 0;
		right: 0;
		width: 100vw;
		height: 100vh;
		flex-direction: column;
		align-items: center;
		justify-content: space-evenly;
		transform: translateX(100%);
		transition: transform 0.3s ease-in;
		background: #1f1f1f;
	}

	.menu__list.active {
		transform: translateX(0%);
	}

	.menu__list li {
		margin: 0;
	}

	.burger {
		display: block;
		transition: transform 0.3s ease;
		position: absolute;
		top: 3vh;
		right: 15px;
		z-index: 51;
	}

	.burger.active div:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}

	.burger.active div:nth-child(2) {
		opacity: 0;
	}

	.burger.active div:nth-child(3) {
		transform: rotate(-45deg) translate(9px, -9px);
	}
}


/*----MAIN----------------------------------------------*/

.page {
	position: relative;
}

.main__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.main__body {
	display: flex;
	justify-content: center;
	flex-direction: column;
    width: 45%;
}

.main__subtitle {
    color: #FFF;
font-family: Urbanist;
font-size: 45px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.main__title {
    color: #FFF;
font-family: Urbanist;
font-size: 60px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}

.main__text {
    margin-top: 20px;
    color: #FFF;
font-family: Urbanist;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.main__img {
    width: 45%;
}

@media(max-width: 991px) {
    .main__row {
    flex-wrap: wrap;
    justify-content: center;
    }
    .main__body {
        width: 100%;
    }
    .main__img {
        width: 60%;
        margin-top: 10px;
    }
}

/*----STATISTIC----------------------------------------------*/

.stats {
    padding: 50px 0px;
    background-image: url(/img/statsBg.png);
    background-size: contain;
    background-position: center;
}

.stats__items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.stats__num {
    color: #FFF;
    font-family: Urbanist;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.stats__text {
    color: #FFF;
    font-family: Urbanist;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

@media (max-width: 991px) {
    .stats__items {
        justify-content: center;
    }
    .stats__item {
        margin: 30px;
    }
}

/*----WHY----------------------------------------------*/

.why {
    margin-top: 60px;
}

.why__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why__img {
    width: 45%;
}

.why__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 45%;
}

.why__text {
    color: #FFF;
    font-family: Urbanist;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.why__btn {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .why__row {
        flex-wrap: wrap-reverse;
        justify-content: center;
    }
    .why__body {
        width: 100%;
    }
    .why__img {
        width: 80%;
    }
}

/*----EDUCATION----------------------------------------------*/

.edc {
    margin-top: 120px;
}

.edc__title {
    text-align: center;
}

.edc__items {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.edc__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
}

.edc__column {
    display: flex;
    flex-direction: column;
    width: 20%;
}

.edc__column__date {
    color: #FFF;
    font-family: Urbanist;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.edc__column__name {
    color: #ECC385;
    font-family: Urbanist;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.edc__main__text {
    color: #FFF;
    font-family: Urbanist;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 33.333%;
}

.edc__sec__text {
    color: #FFF;
    font-family: Urbanist;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 33.333%;
}

.edc__line {
    width: 1178px;
    height: 3px;
    background: #121212;
    margin: 30px 0px;
}

.edc__column__date__last::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 21px;
    height: 27px;
    background-image: url("/img/downloadIcon.png");
    background-size: cover;
    margin-left: 8px;
    margin-top: -8px;
}

@media (max-width: 991px) {
    .edc__column {
        width: 30%;
    }
}

@media (max-width: 767px) {
    .edc__item {
        flex-direction: column;
    }
    .edc__column {
        width: 100%;
    }
    .edc__main__text {
        width: 100%;
        margin: 10px 0px;
    }
    .edc__sec__text {
        width: 100%;
    }
}

/*----SKILLS----------------------------------------------*/

.skl {
	margin-top: 120px;
}

.skl__row {
	display: flex;
	/* align-items: center; */
	justify-content: space-between;
}

.skl__body {
	width: 36%;
}

.skl__text {
	color: #FFF;
	font-family: Urbanist;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.skl__btns {
	display: flex;
	align-items: center;
	margin-top: 50px;
}

.skl__btn__first {
	margin-right: 20px;
}

.skl__imgs {
	width: 60%;
}

.skl__items {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.skl__item {
	border-radius: 14px;
	background: #121212;
	width: 155px;
	height: 180px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	padding: 10px;
	margin: 5px;
}

.skl__item__name {
	color: #FFF;
	font-family: Urbanist;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-align: center;
}

.skl__item__img {
	width: 60px;
}

.skl__item__block {
	width: 100px;
	height: 30px;
	flex-shrink: 0;
	border-radius: 14px;
	background: #030303;
	display: flex;
	align-items: center;
	justify-content: center;
}

.skl__item__num {
	color: #FFF;
	font-family: Urbanist;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

@media (max-width: 991px) {
	.skl__row {
		flex-wrap: wrap;
		justify-content: center;
	}

	.skl__imgs {
		margin-top: 50px;
		width: 100%;
	}

	.skl__body {
		width: 100%;
	}

}

.skills__item {
	margin-top: 120px;
}


/*----EXPERIENCE----------------------------------------------*/

.exp {
	margin-top: 120px;
}

.exp__title {
	text-align: center;
}

.exp__postitle {
	color: #FFF;
	font-family: Urbanist;
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.exp__items {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.exp__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 10px;
}

.exp__photo {
	width: 365px;
	height: 330px;
	flex-shrink: 0;
}

.exp__item__title {
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 12px 0px;
}

.exp__text {
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

@media (max-width: 1158px) {
	.exp__photo {
		width: 310px;
		height: 275px;
	}
}

@media (max-width: 991px) {
	.exp__items {
		flex-wrap: wrap;
		justify-content: center;
	}

	.exp__photo {
		width: 330px;
		height: 290px;
	}
}


/*----HYIP-OFFICE----------------------------------------------*/

.hyip {
	margin-top: 120px;
}

.hyip__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hyip__body {
	margin: 10px;
	width: 45%;
}

.hyip__text {
	color: #FFF;
	font-family: Urbanist;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.hyip__imgs {
	width: 45%;
}

.hyip__img {
	width: 400px;
	height: 320px;
	flex-shrink: 0;
	margin: 10px;
	background: #242629;
	padding: 10px;
}

@media (max-width: 991px) {
	.hyip__row {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hyip__body {
		width: 100%;
	}

	.hyip__imgs {
		margin-top: 20px;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (max-width: 420px) {
	.hyip__img {
		width: 350px;
		height: 300px;
	}
}


/*----LANGUAGES----------------------------------------------*/

.lan {
	margin-top: 120px;
}

.lan__title {
	text-align: center;
}

.lan__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lan__body {
	width: 50%;
}

.lan__item {
	margin: 40px 10px;
}

.lan__item__flag {
	width: 46px;
	height: 24px;
	margin-right: 8px;
}

.lan__item__text {
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.lan__bar__and__text {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.lan__bar {
	width: 400px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 20px;
	background: #FFF;
	position: relative;
}

.lan__bar__fullness {
	height: 20px;
	border-radius: 20px;
	background: #ECC385;
}

.lan__bar__fullness1 {
	width: 70%;
}

.lan__bar__fullness2 {
	width: 95%;
}

.lan__bar__fullness3 {
	width: 100%;
}

.lan__bar__fullness4 {
	width: 100%;
}

.lan__bar__text {
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-left: 20px;
}

.lan__img {
	width: 45%;
}

@media (max-width: 991px) {
	.lan__row {
		flex-wrap: wrap;
		justify-content: center;
	}

	.lan__body {
		width: 100%;
	}
	.lan__img {
		margin-top: 20px;
		width: 90%;
	}
	.lan__bar {
		width: 84%;
	}
}


/*----CONTACT----------------------------------------------*/

.contact {
	margin-top: 60px;
}

.contact__title {
	text-align: center;
}

.contact__items {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact__item {
	padding: 20px;
	border-radius: 6px;
	background: #121212;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	width: 320px;
	height: 260px;
	margin: 5px;
}

.contact__img__icon {
	width: 45px;
	height: 45px;
	padding: 8px;
	border-radius: 6px;
	background: #030303;
}

.contact__item__title {
	margin-top: 40px;
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.contact__text {
	margin-top: 15px;
	color: #FFF;
	font-family: Urbanist;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.contact__item__info {
	margin-top: 20px;
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration-line: underline;
}

@media (max-width: 991px) {
	.contact__items {
		flex-wrap: wrap;
	}
}

/*----FOOTER----------------------------------------------*/

.footer {
	margin-top: 60px;
	background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
	background: #121212;
	padding-top: 60px;
}

.footer__container {
	position: relative;
	z-index: 5;
}

.footer__title {
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.footer__items {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.footer__item { 
	margin: 5px;
}

.footer__item__title {
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 40px;
}

.footer__list__item {
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 10px 0px;
}

@media (max-width: 767px) {
	.footer__items {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	.footer__title {
		margin: 50px;
		text-align: center;
	}
	.footer__item {
		margin: 30px 20px;
	}
}

/*----FOOTER2----------------------------------------------*/

.footer2 {
	background: #030303;
	padding: 30px 0px;
	margin-top: 30px;
}

.footer__text2 {
	color: #FFF;
	text-align: center;
	font-family: Urbanist;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}


/*----ROADMAP----------------------------------------------*/

.sec__page {
	margin: 80px 0px;
}
.sec__page__title {
	text-align: center;
}

.road__row {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.road__body__left {
	text-align: end;
	width: 45%;
}

.road__body__right {
	width: 45%;
}

.road__item__title {
	color: #FFF;
	font-family: Urbanist;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.road__item__text {
	color: #FFF;
	text-align: right;
	font-family: Urbanist;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.road__lines {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 10%;
	position: relative;
}

.road__line {
	height: 1800px;
	width: 2px;
	background: #fff;
}

.road__circle {
	position: absolute;
}

.road__circle__1 {
	top: 0%;
	position: absolute;
}

.road__miniline {
	position: absolute;
	width: 140px;
	height: 1px;
	background: #fff;
}

.road__circle__2 {
	top: 12%;
}

.road__miniline1 {
	top: 13.5%;
	left: 32%;
}

.road__circle__3 {
	top: 22%;
}

.road__miniline2 {
	top: 23.5%;
	right: 32%;
}

.road__circle__4 {
	top: 32%;
}

.road__miniline3 {
	top: 33.5%;
	left: 32%;
}

.road__circle__5 {
	top: 42%;
}

.road__miniline4 {
	top: 43.5%;
	right: 32%;
}

.road__circle__6 {
	top: 52%;
}

.road__miniline5 {
	top: 53.5%;
	left: 32%;
}

.road__circle__7 {
	top: 70%;
}

.road__miniline6 {
	top: 71.5%;
	right: 32%;
}

.road__circle__8 {
	top: 80%;
}

.road__miniline7 {
	top: 81.5%;
	left: 32%;
}

.road__circle__9 {
	top: 91%;
}

.road__miniline8 {
	top: 92.5%;
	right: 32%;
}

.road__item__text__right {
	text-align: start;
}

.road__body__item {
	position: absolute;
}

.road__body__item1 {
	top: 12.5%;
	margin-left: 75px;
	max-width: 347px;
}

.road__body__item2 {
	top: 22.5%;
	margin-right: 75px;
}

.road__body__item3 {
	top: 32.5%;
	margin-left: 75px;
}

.road__body__item4 {
	top: 42.5%;
	margin-left: 35px;
	max-width: 400px;
}

.road__body__item5 {
	top: 52.6%;
	margin-left: 75px; 
	max-width: 440px;
}

.road__body__item6 {
	top: 70.5%;
}

.road__body__item7 {
	top: 80.5%;
	margin-left: 75px; 
	max-width: 408px;
}

.road__body__item8 {
	top: 91.5%;
	max-width: 329px;
	margin-left: 105px;
}


@media (max-width: 1199px) {
	.road__body__item1 {
		top: 15.3%;
		margin-left: 95px;
	}

	.road__body__item2 {
		max-width: 325px;
	}

	.road__body__item3 {
		margin-left: 95px;
	}

	.road__body__item4 {
		max-width: 350px;
        margin-left: -20px;
	}

	.road__body__item5 {
		margin-left: 95px;
	}

	.road__body__item6 {
		max-width: 350px;
        margin-left: -20px;
	}

	.road__body__item7 {
		margin-left: 95px;
	}

	.road__body__item8 {
		max-width: 350px;
        margin-left: -20px;
	}
}

.road__phone {
	display: none;
}

@media (max-width: 991px) {
	
	.road__row {
		display: none;
	}

	.road__phone {
		display: block;
	}

	.road__row__ph {
		display: flex;
		justify-content: space-between;
	}

	.road__lines__ph {
		display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 10%;
	position: relative;
	}

	.road__line__ph {
		height: 2500px;
		width: 2px;
		background: #fff;
	}

	.road__circle__ph {
		position: absolute;
		top: 0%;
	}

	.road__texts__ph__block {
		width: 90%;
		position: relative;
	}

	.road__circle__item {
		position: absolute;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.road__circle__item1 {
		top: 12%;
	}

	.road__circle__item2 {
		top: 22%;
	}

	.road__circle__item3 {
		top: 32%;
	}

	.road__circle__item4 {
		top: 42%;
	}

	.road__circle__item5 {
		top: 52%;
	}

	.road__circle__item6 {
		top: 68%;
	}

	.road__circle__item7 {
		top: 78%;
	}

	.road__circle__item8 {
		top: 90%;
	}

	.road__circle {
		position: relative;
	}

	.road__miniline {
		left: 5%;
		width: 120px;
	}

	.road__texts__ph {
		position: absolute;
		margin-left: 12px;
	}

	.road__texts__ph1 {
		top: 14%;
	}

	.road__texts__ph2 {
		top: 24%;
	}

	.road__texts__ph3 {
		top: 34%;
	}

	.road__texts__ph4 {
		top: 44%;
	}

	.road__texts__ph5 {
		top: 54%;
	}

	.road__texts__ph6 {
		top: 70%;
	}

	.road__texts__ph7 {
		top: 80%;
	}

	.road__texts__ph8 {
		top: 92%;
	}

}

/*----GET----------------------------------------------*/

.get__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 15px;
}

.get__item__body {
	width: 45%;
}

.get__title {
	text-transform: uppercase;
}

.get__text {
	color: #FFF;
	font-family: Urbanist;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.get__img {
	width: 50%;
}

@media (max-width: 991px) {
	.get__item {
		flex-wrap: wrap;
		justify-content: center;
	}

	.get__item__body {
		width: 100%;
	}

	.get__img {
		width: 80%;
		margin-top: 15px;
	}
}

/*----ABOUT----------------------------------------------*/

.about__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.about__body {
	width: 50%;
}

.about__text {
	color: #FFF;
	font-family: Urbanist;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.about__img {
	width: 40%;
}

@media (max-width: 991px) {
	.about__row {
		flex-wrap: wrap;
		justify-content: center;
	}

	.about__body {
		width: 100%;
	}

	.about__img {
		width: 80%;
		margin-top: 15px;
	}
}

.about_icon {
	height: 230px;
}

.about_section_mt {
	padding-top: 120px;
}

/* BOOKS */
.books-cont {
	width: 80%;
}

.books-item {
	width: 23%;
}

@media (max-width: 991px) {
	.books-item {
	width: 44%;
}
}

@media (max-width: 525px) {
	.books-item {
	width: 90%;
}
}