/* PORTADA START */
/* Responsive */
@media (max-width: 767px) {
    .description_service{
        height: 50vh;
    }
    .Service-title{
        text-align: center;
        padding-top: 20%;
    }
	.toast-panel1 {
		height: 50%;
		width: 100%;
	}
	.toast-icon img{
		height: 30%
	}
	.toast-icon {
		width: 4.5rem;
		height: 4.5rem;
  	}
  }
  
@media (min-width: 768px) and (max-width: 1024px) {
    .description_service{
        height: 60vh;
    }
    .Service-title{
        text-align: center;
		padding-top: 15%;
    }
	.toast-panel1 {
		padding: 0 5rem;
		height: 50%;
		width: 100%;
	}
	.toast-icon img{
		height: 80%
	}
	.toast-icon {
		width: 6.5rem;
		height: 6.5rem;
  	}
}
  
@media (min-width: 1025px) and (max-height: 1080px){
    .description_service{
        height: 75vh;
    }
    .Service-title{
        text-align: center;
        padding-top: 10%;
    }
	.toast-panel1 {
		padding: 0 5rem;
		height: 50%;
		width: 100%;
	}
	.toast-icon img{
		height: 80%
	}
	.toast-icon {
		width: 6.5rem;
		height: 6.5rem;
  	}
  }
.description_service{
    text-align: center;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex
}

/* Circulo section START*/

@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

:root {
	--tr: all 0.5s ease 0s;
	--ch1: #05478a;
	--ch2: #0070e0;
	--cs1: #005e38;
	--cs2: #03a65a;
	--cw1: #c24914;
	--cw2: #fc8621;
	--ce1: #851d41;
	--ce2: #db3056;
}

@property --bg-help1 {
	syntax: '<percentage>';
	inherits: false;
	initial-value: -10%;
}

@property --bg-success1 {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 145%;
}

@property --bg-warning1 {
	syntax: '<percentage>';
	inherits: false;
	initial-value: -55%;
}

@property --bg-error1 {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 112%;
}

@property --bsc {
	syntax: '<color>';
	inherits: false;
	initial-value: red;
}


.toast-panel1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: var(--tr);
	position: absolute;
	height: 50%;
    width: 100%;
}

.toast-item1 {
	/*overflow: hidden;*/
	max-height: 25rem;
	transition: var(--tr);
	position: relative;
	animation: show-toast 4s ease 3s 1;
}

@keyframes show-toast { 
	0%, 50%, 100% { max-height: 0; opacity: 0; }
	10%, 25% { max-height: 15rem; opacity: 1; }
}

.toast1 {
	width: 80vw;
	background: #fff;
	color: #011126;
	padding: 1rem 2rem 1rem 3rem;
	text-align: center;
	border-radius: 1rem;
	position: relative;
	font-weight: 300;
	margin: 1rem 0;
	text-align: left;
	transition: var(--tr);
	opacity: 1;
	border: 0.15rem solid #fff2;
	box-shadow: 0 0 1.5rem 0 #1a1f4360;
}

.toast:before {
	content: "";
	position: absolute;
	width: 0.5rem;
	height: calc(100% - 1.5rem);
	top: 0.75rem;
	left: 0.5rem;
	z-index: 0;
	border-radius: 1rem;
	background: var(--clr);
}

.toast h3 {
	font-size: 1.2rem;
	margin: 0;
	line-height: 1.35rem;
	font-weight: 600;
	position: relative;
	color: var(--clr);
}

.toast p {
	position: relative;
	font-size: 0.95rem;
	z-index: 1;
	margin: 0.25rem 0 0;
	color: #595959;
	line-height: 1.3rem;
}

.close {
	position: absolute;
	width: 1.35rem;
	height: 1.35rem;
	text-align: center;
	right: 1rem;
	cursor: pointer;
	border-radius: 100%;
}

.close:after {
	position: absolute;
	font-family: 'Varela Round', san-serif;
	width: 100%;
	height: 100%;
	left: 0;
	font-size: 1.8rem;
	content: "+";
	transform: rotate(-45deg);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #595959;
	text-indent: 1px;
}

.close:hover:after {
	background: var(--clr);
	color: #fff;
}



.toast-item1.success1 {
	animation-delay: 2s;
}

.toast-item1.warning1 {
	animation-delay: 1s;
}

.toast-item1.error1 {
	animation-delay: 0s;
}


.toast.help1 {
	--bg: var(--ch1);
	--clr: var(--ch2);
	--brd: var(--ch3);
}
.icon-help1:after {
	content: "";
}

.toast.success1 {
	--bg: var(--cs1);
	--clr: var(--cs2);
	--brd: var(--cs3);
}

.icon-success1:after {
	content: "";
}

.toast.warning1 {
	--bg: var(--cw1);
	--clr: var(--cw2);
	--brd: var(--cw3);
}

.icon-warning1:after {
	content: "";
}

.toast.error1 {
	--bg: var(--ce1);
	--clr: var(--ce2);
	--brd: var(--ce3);
}

.icon-error1:after {
	content: "";
}






.toast a {
	color: var(--clr);
}

.toast a:hover {
	color: var(--bg);
}





/*** ICONS ***/

.toast-icons {
	background: #fff;
	padding: 1rem 1rem 1.25rem 1rem;
	display: flex;
	justify-content: space-around;
	border-radius: 1rem;
	gap: 1.5rem;
	box-sizing: border-box;
	margin-top: 1rem;
	margin-bottom: 1rem;
	position: relative;
	border: 0.15rem solid #fff1;
	box-shadow: 0 0 1.5rem 0 #1a1f4340;
	width: 80%;
	height: 50%;
}

.toast-icons:before {
	position: absolute;
	width: calc(100% + 0.3rem);
	height: calc(100% + 0.25rem);
	--bg-help1: 45%;
	--bg-success1: 45%;
	--bg-warning1: 45%;
	--bg-error1: 45%;
	--bsc: #fff0;
	background: 
		radial-gradient(circle at 14% var(--bg-help1), var(--ch1), #fff0 1.5rem), radial-gradient(circle at 38% var(--bg-success1), var(--cs1), #fff0 1.5rem), radial-gradient(circle at 62% var(--bg-warning1), var(--cw1), #fff0 1.5rem), radial-gradient(circle at 86% var(--bg-error1), var(--ce1), #fff0 1.5rem);
	content: "";
	bottom: -0.15rem;
	border-radius: 1rem;
	z-index: 0;
	transition: --bg-help1 0.5s ease 0s, --bg-success1 0.5s ease 0s, --bg-warning1 0.5s ease 0s, --bg-error1 0.5s ease 0s, --bsc 0.5s ease 0s;
	box-shadow: 0 0 1.5rem 0 #1a1f4320;
}

.toast-icons:has(label[for=t-help1]:hover):before {
	--bg-help1: 53%;
	--bsc: var(--ch2);
}
.toast-icons:has(label[for=t-success1]:hover):before {
	--bg-success1: 53%;
	--bsc: var(--cs2);
}
.toast-icons:has(label[for=t-warning1]:hover):before {
	--bg-warning1: 53%;
	--bsc: var(--cw2);
}
.toast-icons:has(label[for=t-error1]:hover):before {
	--bg-error1: 53%;
	--bsc: var(--ce2);
}

.toast-icon {
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	position: relative;
	background: radial-gradient(circle at 50% 50%, var(--clr) 1.25rem, var(--brd) calc(1.25rem + 1px) 100%);
}



.toast-icon:after {
	font-size: 1.75rem;
}
.icon-success1:after {
	font-size: 1.5rem;
	padding-bottom: 0.25rem;
}
.icon-error1:after {
	font-size: 2.85rem;
	line-height: 2rem;
	font-weight: 500;
	padding-top: 0.25rem;
	max-height: 2rem;
}


.icon-help1,
.toast-item1.help1 {
	--clr: #0070e0;
	--brd: #0070e040;
}

.icon-success1,
.toast-item1.success1 {
	--clr: #03a65a;
	--brd: #03a65a40;
}

.icon-warning1,
.toast-item1.warning1 {
	--clr: #fc8621;
	--brd: #fc862140;
}

.icon-error1,
.toast-item1.error1 {
	--clr: #db3056;
	--brd: #db305640;
}


#t-help1:checked ~ .toast-panel1 .toast-item1.help1,
#t-success1:checked ~ .toast-panel1 .toast-item1.success1,
#t-warning1:checked ~ .toast-panel1 .toast-item1.warning1,
#t-error1:checked ~ .toast-panel1 .toast-item1.error1,
.toast-icon input[type=checkbox]:checked ~ .toast-panel1 .toast-item1 {
    max-height: 0;
    opacity: 0;
}

input[type=checkbox] {
	display: none;
}
/* Circulo section END*/
/* PORTADA END */