@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700&display=swap');

/*
font-family: 'Jost', sans-serif;
*/

html, body { width: 100%; height: 100%; margin:0; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	position: relative;
	line-height: 1.5em;
	background: none;
	margin: 0px;
}
h1 { font-size: 50px; }
h2 { font-size: 40px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 17px; }

p {
	font-family: 'Jost', sans-serif;
	font-size: 19px;
	line-height: 1.7em;
	font-weight: 400;
	margin: 0;

	-webkit-font-smoothing: antialiased;
		-moz-font-smoothing: antialiased;
}

li 	{ font-family: 'Jost', sans-serif; font-size: 16px; font-weight: 400; }
small { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 400; }

a {
	font-family: 'Jost', sans-serif;
	text-decoration: none;
	cursor: pointer;

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		 -ms-transition: all 0.2s;
		  -o-transition: all 0.2s;
			  transition: all 0.2s;
}
a:hover, a:focus, a:visited { text-decoration: none; outline: none; }



/* CUST_AMINATION
============================================================================================================================== */



/* NAVBAR
============================================================================================================================== */

.header {
	position: relative;
	z-index: 20;
}

.header_logo {
	position: relative;
	background-color: #FFF;
	padding: 25px 20px 20px 20px;
	max-width: 200px;
	margin: 0 auto -120px;
	border-radius: 0 0 50px 50px;
	text-align: center;
}
@media only screen and (max-width: 575.50px) {
	.header_logo { margin: 0 auto 0; max-width: 150px; }
}

.nav-main {
	position: relative;
	z-index: 30;
	background-color: #FFF;
}

.nav-main .navbar-nav .nav-link {
	font-family: 'Jost', sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding-right: 20px;
	padding-left: 20px;
	color: #000;
	 border-radius: 30px;
}
@media only screen and (max-width: 1267.50px) { .nav-main .navbar-nav .nav-link { font-size: 15px; padding-right: 15px; padding-left: 15px; } }
@media only screen and (max-width: 1145.50px) { .nav-main .navbar-nav .nav-link { font-size: 13px; padding-right: 12px; padding-left: 12px; } }

.nav-main .navbar-nav .nav-link:focus, .nav-main .navbar-nav .nav-link:hover { background-color: #fd2718; color: #FFF; text-decoration: none; border-radius: 30px; }
.nav-main .dropdown-menu { background-color: #fd2718; }
.nav-main .dropdown-item { background-color: #fd2718; color: #FFF; }
.nav-main .dropdown-item:focus, .dropdown-item:hover { background-color: #fdf801; color: #000 !important; }

@media only screen and (max-width: 575.50px) {
	.navbar-toggler {
		width: 100%;
		float: none;
		margin-right: 0;
	}
}



/* CAROUSEL
============================================================================================================================== */

.carousel_main .carousel-caption { top: 55%; transform: translateY(-50%); }
.carousel_main .carousel-caption h2 { font-family: 'Jost', sans-serif; font-weight: 500; line-height: 1.3em; }
.carousel_main .carousel-caption p { font-family: 'Jost', sans-serif; font-weight: 500; line-height: 1.3em; font-size: 20px; }

@media only screen and (max-width: 940.50px) {
	.carousel_main .carousel-caption { top: 40%; transform: translateY(-50%); }
}


/* FORMS
============================================================================================================================== */

label {
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.form-control, .form-select {
	font-family: 'Jost', sans-serif;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border: 1px solid #FFF;
	background-color: #f7f7f7;
	border-radius: 0;
	padding: 15px 25px 15px 25px;

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		  -o-transition: all 0.2s;
		 -ms-transition: all 0.2s;
			  transition: all 0.2s;
}
.form-control:active, .form-control:hover, .form-select:active, .form-select:hover { border-color: #ff9800; color: #004ead; }
.form-control:focus, .form-select:focus { border-color: #ff9800; color: #004ead; -webkit-box-shadow: none; box-shadow: none; }

.table { font-family: 'Jost', sans-serif; }


/* BUTTONS
============================================================================================================================== */

.btn-main {
	padding: 10px 30px 10px 30px;
	border-radius: 30px;
	border: 0;
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	letter-spacing: 1px;

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		  -o-transition: all 0.2s;
		 -ms-transition: all 0.2s;
			  transition: all 0.2s;
}

.btn-main:hover, .btn-main:active, .btn-main:focus {
	border: 1px solid #FFF;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	background-color: #FFF !important;
	color: #000;
}



/* FOOTER
============================================================================================================================== */

footer {
	padding-top: 100px;
	padding-bottom: 50px;
	background-color: #000;

	background-image: url('../imgs/line_2.png');
	background-repeat: repeat-x;
	background-position: top center;
}

footer h5, footer p { color: #FFF; }

footer a { color: #fef200; }
footer a:hover { color: #f11c20; }



/* OTHERS
============================================================================================================================== */

.card-highlight {
	border: 0;
	border-radius: 30px;
}

.card-highlight .div-img {
	position: relative;
	margin: -70px auto 30px;
	max-width: 150px;
}

.div-img .img {
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.img-donate {
	position: relative;
	margin: -70px auto 50px;
	max-width: 200px;
	border-radius: 50px;
}
.img-donate img { border-radius: 50%; }

.text-bronze { color: #d5805f; }
.border-pink { border-color: #af256c !important; }
.border-orange { border-color: #f5821f !important; }

.div-skills-title {
	height: 220px;
	width: 220px;
	border-radius: 50%;
	margin: 0 auto;
	padding: 10px;
	background-image: linear-gradient(to bottom, #af256c, #ffc00f, #f2801f, #e71a2e, #02a658, #1c388b);
}
.card-skills-title {
	height: 200px;
	width: 200px;
	border-radius: 50%;
	margin: 0 auto;
	border: 0;
}
.card-skills-title h2 { font-size: 60px; font-weight: 700; }
.card-skills-title p { font-size: 25px; font-weight: 700; line-height: 1.0em; }
.card-skills { border: 3px solid; border-radius: 30px; }
.div-skills-icon {
	position: relative;
	margin: -50px auto;
	width: 70px;
	height: 70px;
}
.div-skills-icon img { border-radius: 50% }
