html{
	scroll-behavior: smooth;
}
body{
	font-family: 'Inter', sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
	body::-webkit-scrollbar {
		width: 5px;
	}

	/* Track */
	body::-webkit-scrollbar-track {
		background: #f1f1f1; 
	}
	 
	/* Handle */
	body::-webkit-scrollbar-thumb {
		background: #888; 
	}

	/* Handle on hover */
	body::-webkit-scrollbar-thumb:hover {
		background: #555; 
	}

#inscripcion{
	display: flex;
    align-items: stretch;
	width: 100%;
    min-height: 100%;
}

	.insc-info{
		display: flex;
	    flex-direction: column;
	    justify-content: center;
		width: 50%;
		padding: 2em 5em;
	}
		.insc-info h5{
			font-weight: 700;
			font-size: 20px;
			line-height: 22px;
			color: #003333;
			margin: 10px 0;
		}

		.insc-info h2{
			padding-bottom: 25px;
			font-family: 'Roboto Slab', serif;
			font-weight: 700;
			font-size: 45px;
			line-height: 48px;
			color: #003333;
			border-bottom: 2px solid #06C263;
			margin: 10px 0;
		}
			.insc-info h2 span{
				color: #06C263;
			}

		.insc-info p{
			font-weight: 500;
			font-size: 21px;
    		line-height: 25px;
			color: #003333;
			margin-top: 10px;
		}
			.insc-info p.icon, .insc-date-hour{
				display: flex;
				align-items: center;
			}
				.insc-info p.icon img{
					margin-right: 10px;
				}
				.insc-date-hour p{
					width: 50%;
					justify-content: center;
				}
	.oradores{
		display: flex;
		margin-top: 25px;
	}
		.orador{
			width: 50%;
			display: flex;
		    flex-direction: column;
		    justify-content: center;
		    align-items: center;
		    flex-wrap: nowrap;
		    text-align: center;
		    padding: 0 10px;
		}
			.orador h3{
				font-weight: 700;
				font-size: 18px;
				line-height: 16px;
				color: #06C263;
				margin-bottom: 0;
			}
			.orador p{
				font-weight: 700;
				font-size: 14px;
				line-height: 16px;
				color: #003333;
				margin-top: 5px;
			}
.insc-form{
	display: flex;
	align-items: center;
	width: 50%;
	padding: 2em 5em;
	background-color: #003333;
	background-image: url(images/line.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}
	#logo{
		position: absolute;
		top: 1em;
		right: 2em;
	}
	.insc-form form{
		padding: 0 25px;
	}
	.insc-form form h3{
		margin-top: -50px;
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
		color: #FFFFFF;
	}
	.input-form, .input-form:active, .input-form:focus{
		display: inline-block;
		width: 100%;
		height: 50px;
		padding: 5px 20px;
		background-color: #001F1F;
		border: 0;
		color: #FFF;
		margin-bottom: 15px;
		outline: 0;
		border-radius: 5px;
		font-family: 'Inter', sans-serif;
	}
	.input-form::placeholder{
	    color: #ffffff;
	    opacity: 1;
	}
	#reservar{
		display: inline-block;
		width: 100%;
		height: 50px;
		padding: 5px 20px;
		background-color: #06C263;
		background-image: none;
		font-family: 'Inter', sans-serif;
		font-size: 16px;
		color: #FFF;
		border: 0;
		border-radius: 5px;
		cursor: pointer;

		transition: all 300ms;
	}
		#reservar:hover{
			background-color: #038141;
		}
		#reservar:active{
			background-color: #014623;
		}
#muchas-gracias{
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #EAEAEA;
    background-image: url(images/line-mg.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}
	#muchas-gracias h3{
		font-family: 'Roboto Slab', serif;
		font-size: 50px;
		font-weight: 600;
		line-height: 58px;
		text-align: center;
		color: #023A1E;
	}
@media only screen and (max-width: 992px) {
	#inscripcion{
		flex-direction: column;
	}
	#logo{
		top: 0;
    	right: 1em;
	}
	.insc-info, .insc-form{
	    width: 100%;
	    padding: 2em;
	}
		.insc-info{
			padding-top: 5em;
		}
	.insc-form form h3{
		margin-top: 0;
	}
	.insc-date-hour, .oradores{
		flex-direction: column;
	}
	.orador{
		width: 100%;
		margin-bottom: 25px;
	}
	.insc-info h2{
		font-size: 35px;
    	line-height: 38px;
	}
	.insc-date-hour p{
		width: 100%;
	}
	.insc-info p.icon, .insc-date-hour{
		justify-content: flex-start;
	}

}