.div-fondo{
	background-image: url('../img/fondo-furmulario.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo-formulario{
	width: 45%;
}
.div-fondo-colo-contacto{
	background-color: #2C425B;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 70px 20px;
}
.div-item-uno{
	width: 100%;
}
.color-blaco-letra{
	color: #fff;
}
.color-central-letra{
	color: #3FBEA9;
}
.font-weight-400{
	font-weight: 400;
}
.letter-spacing-titulo{
	letter-spacing: 5px
}
h5.letter-spacing-titulo{
	font-size: 25px;
}
h1.letter-spacing-titulo, h2.letter-spacing-titulo{
	font-size: 37px;
}
.div-contact{
	display: flex;
	flex-wrap: wrap;
}
.div-contact label{
	width: 100%;
	font-size: 18px;
}
.div-contact input, .div-contact textarea{
	width: 100%;
	background-color: transparent !important;
	border: 1px solid #fff !important;
	padding: 15px 30px !important;
	color: #fff !important;
	font-size: 18px !important;
}
.div-contact textarea{
	resize: none;
	height: 150px;
}
.form-top{
	margin-top: 80px;
}
.div-barra-scroll{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 70px;
}
.div-barra{
	width: 70px;
	height: 13px;
	border-radius: 10px;
	background-color: transparent;
	border: 1px solid #3fbea9;
}
.div-barra-active{
	background-color: #3fbea9 !important;
}
.btn-siguiente, .btn-siguiente:hover, .btn-siguiente:focus{
	width: 100%;
	background-color: #3fbea9 !important;
	color: #fff !important;
	font-size: 18px !important;
	border-radius: 0px !important;
	padding: 10px 30px !important;
}
.p-texto-size{
	font-size: 20px;
	letter-spacing: 3px
}
.div-check{
	display: flex;
	align-items: start;
}

.custom-checkbox input {
    display: none; /* Oculta el checkbox predeterminado */
}

.custom-checkbox span {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #ffffff; /* Color del borde */
    border-radius: 6px; /* Bordes redondeados */
    background-color: transparent;
    cursor: pointer;
    position: relative;
}

/* Estilo cuando el checkbox está marcado */
.custom-checkbox input:checked + span {
    background-color: #ffffff; /* Color de fondo cuando está activo */
}

/* Agregar el check cuando está marcado */
.custom-checkbox input:checked + span::after {
    content: "✔"; /* Check */
    font-size: 16px;
    color: #000000; /* Color del check */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}
.p-margin-top{
	margin-top: 180px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.div-item {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    padding: 5px;
    box-sizing: border-box;
}

@media screen and (min-width: 768px){
	.div-fondo-colo-contacto{
		padding: 30px 30px;
	}
	.div-barra{
		width: 100px;
	}
}


@media screen and (min-width: 1200px){
	.div-fondo-colo-contacto{
		padding: 70px 90px;
	}
}