body {
    font-family: 'Outfit', sans-serif !important;
	background-color: black;
    background-repeat: no-repeat;
    overflow-x: hidden !important;
}

img {
	max-width: 100%;
}

.mynavbar {
	top: 30px;
	padding: 15px 20px;
	background-color: #1C1C1A !important;
	transition: 1s;
}

.isscrolled {
	top: 10px !important;
	transition: 1s;
}

.mynavbar .first-part img {
	max-height: 75px;
}

.mynavbar .second-part {
	margin-top: -2px;
}

.mynavbar .second-part ul li {
	margin-right: 10px;
	font-size: 18px;
	font-weight: 400;
}

.mynavbar .second-part ul li:last-child {
	margin-right: 0;
}

.mynavbar .second-part .nav-link {
	color: white;
}

.mynavbar .second-part .nav-link:hover {
	color: wheat;
	font-weight: 500;
}

.mynavbar .third-part .mybtn-register {
	padding: 10px 32px;
	color: #FFC366;
	font-size: 17px;
	font-weight: 500;
	border: 2px solid #FFC366;
	border-radius: 27px;
	transition: 0.3s;
}

.mynavbar .third-part .mybtn-register:hover {
	background: rgba(247, 117, 36, 0.117);
	box-shadow: 0px 10px 20px -10px rgba(239, 178, 44, 1);
	transition: 0.3s;
}

.mynavbar .third-part .mybtn-login {
	padding: 12px 34px;
	background: #FFC366;
	color: black;
	font-size: 17px;
	font-weight: 500;
	border: none;
	border-radius: 27px;
	transition: 0.3s;
}

.mynavbar .third-part .mybtn-login:hover {
	box-shadow: 0px 10px 20px -10px rgba(239, 178, 44, 1);
	transition: 0.3s;
}

.mynavbar .nav-link {
	transition: 0.2s;
}

.mynavbar .nav-link:hover {
	color: white;
	transition: 0.2s;
}

.mysection1 {
	background-color: #FFC366;
	margin-top: 90px;
	padding: 50px 0 35px 0;
}

.mysection1 h1 {
	display: block;
	margin: 0 auto 20px auto;
	max-width: 742px;
	font-size: 32px;
	font-weight: 400;
}

.mysection1 h1 span.orange {
	color: black;
}

.mysection1 p {
	font-size: 24px;
}

.mysection2 {
	margin-top: 50px;
	margin-bottom: 70px;
}

.mysection2 .mybox {
	padding: 64px 48px;
	color: white;
	background-color: #1C1C1A;
}

.mysection2 .mybox h2 {
	margin-bottom: 36px;
	font-size: 32px;
	font-weight: 400;
}

.mysection2 .mybox .mycard {
	height: 100%;
	padding: 61px 36px 36px 36px;
	background-color: #FFC366;
	background-repeat: no-repeat;
  	background-position: 94% 8%;
	color: black;
	transition: 0.3s;
}

.mysection2 .mybox .mycard img.myicon {
	margin-bottom: 24px;
	filter: brightness(0) saturate(0);
	transition: 0.3s;
}

.mysection2 .mybox .mycard h4 {
	margin-bottom: 8px;
	font-size: 25px;
	transition: 0.3s;
}

.mysection2 .mybox .mycard p {
	font-size: 17px;
	transition: 0.3s;
}

.mysection2 .mybox .mycard .extra-text {
	display: none;
	transition: 0.3s;
}

.mysection2 .mybox .mycard:hover {
	padding: 40px 36px 36px 36px;
	background: white;
	background-repeat: no-repeat;
  	background-position: 94% 8%;
	color: black;
	cursor: pointer;
	transition: 0.3s;
}

.mysection2 .mybox .mycard:hover .extra-text {
	display: inline;
	transition: 0.3s;
}

.mysection2 .mybox .mycard:hover .myicon {
	display: inline-block;
	margin: 0 7px 8px 0;
	height: 28px;
	filter: brightness(15%);
	transition: 0.3s;
}

.mysection2 .mybox .mycard:hover h4 {
	display: inline-block;
	margin-bottom: 12px;
	transition: 0.3s;
}





/*---------------------------------------------------------------

Responsive MIN

-----------------------------------------------------------------*/
@media screen and (min-width: 1200px) {

}


@media screen and (min-width: 991px) and (max-width: 1200px) {

}

@media screen and (min-width: 991px) {

}



/*---------------------------------------------------------------

Responsive MAX

-----------------------------------------------------------------*/
@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1200px) {

	.mynavbar {
		top: 40px;
	}

}    

@media screen and (max-width: 991px) {

	.mynavbar .second-part .navbar-nav {
		margin-top: 17px;
		margin-bottom: 17px;
		padding-top: 14px;
		padding-bottom: 14px;
		text-align: center;
		border-top: 1px solid rgba(255, 255, 255, 0.25);
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	}

	.mynavbar .third-part {
		text-align: center;
		margin-bottom: 8px;
	}

	.mysection2 .mybox .mycard {
		margin: 0;
		margin-bottom: 20px;
		height: auto;
	}

}

@media screen and (max-width: 767px) {

	.mynavbar {
		top: 30px;
	}

}

@media screen and (max-width: 576px) { 

	body,
	html {
		overflow-x: hidden !important;
	}

	.mynavbar {
		top: 0;
		padding: 15px 10px;
		border-radius: 0;
	}

	.mynavbar .first-part img {
		max-height: 60px;
	}

	.mynavbar .third-part .mybtn-register,
	.mynavbar .third-part .mybtn-login {
		font-size: 16px;
		padding: 8px 30px;
	}

	.mynavbar .third-part .mybtn-register {
		padding: 6px 28px;
	}

	.mysection1 {
		margin-top: 40px;
	}

	.mysection1 p {
		font-size: 20px;
	}

	.mysection2 .mybox {
	}

	.mysection2 {
		margin-top: 40px;
	}

	.mysection2 .mybox {
		padding: 50px 30px;
	}

	.mysection2 .mybox h2 {
		font-size: 26px;
	}

	.mysection2 .mybox .mycard {
		padding: 40px 20px 20px 20px;
	}

	.mysection2 .mybox .mycard img.myicon {
		max-height: 70px;
	}

	.mysection2 .mybox .mycard h4 {
		font-size: 23px;
	}

}    



/*-------------------
# Back on Top Button
--------------------*/
.buttontop-top {
	display: inline-block;
	position: fixed;
	bottom: 40px;
	right: 10px;
	padding-top: 13px;
	height: 60px;
	width: 60px;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	white-space: nowrap;
	z-index: 2;
	color: #f77424;
	background: none;
	font-size: 18px;
	text-align: center;
	border: 2px solid #f77424;
	border-radius: 50%;
	transition: 0.2s;
}

.buttontop-top.buttontop-is-visible,
.buttontop-top.buttontop-fade-out,
.no-touch .buttontop-top:hover {
	transition: opacity .3s 0s, visibility 0s 0s;
}

.buttontop-top.buttontop-is-visible {
	visibility: visible;
	opacity: 1;
	transition: 0.2s;
}

.buttontop-top.buttontop-fade-out {
	opacity: .5;
}

.buttontop-top:hover {
	opacity: 1;
	color: #f77424  !important;
	text-decoration: none  !important;
	transition: 0.2s;
}









































